1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
|
from IPython.kernel.zmq.kernelbase import Kernel
from IPython.utils.path import locate_profile
from IPython.core.oinspect import Inspector, cast_unicode
from scilab2py import Scilab2PyError, scilab
import os
import signal
from subprocess import check_output, CalledProcessError
import re
import logging
from optparse import OptionParser
from glob import glob
import tempfile
import base64
from shutil import rmtree
from xml.dom import minidom
__version__ = '0.3'
version_pat = re.compile(r'version "(\d+(\.\d+)+)')
class ScilabKernel(Kernel):
implementation = 'scilab_kernel'
implementation_version = __version__
language = 'scilab'
@property
def language_version(self):
self.log.info(self.banner)
m = version_pat.search(self.banner)
return m.group(1)
_banner = None
@property
def banner(self):
if self._banner is None:
if os.name == 'nt':
prog = 'Scilex'
else:
prog = 'scilab'
try:
banner = check_output([prog, '-version'])
banner = banner.decode('utf-8')
except CalledProcessError as e:
banner = e.output.decode('utf-8')
self._banner = banner
return self._banner
def __init__(self, **kwargs):
Kernel.__init__(self, **kwargs)
self.log.setLevel(logging.INFO)
# Signal handlers are inherited by forked processes,
# and we can't easily reset it from the subprocess.
# Since kernelapp ignores SIGINT except in message handlers,
# we need to temporarily reset the SIGINT handler here
# so that octave and its children are interruptible.
sig = signal.signal(signal.SIGINT, signal.SIG_DFL)
try:
self.scilab_wrapper = scilab
scilab.restart()
# start scilab and override gettext function
self.log.info('starting up')
self.eval('_ = ""')
self.log.info('started')
finally:
signal.signal(signal.SIGINT, sig)
try:
self.hist_file = os.path.join(locate_profile(),
'scilab_kernel.hist')
except IOError:
self.hist_file = None
self.log.warn('No default profile found, history unavailable')
self.inspector = Inspector()
self.inspector.set_active_scheme("Linux")
self.max_hist_cache = 1000
self.hist_cache = []
self.inline = False
self.plot_format = 'png' if not os.name == 'nt' else 'svg'
self.plot_size = '640,480'
p = self.inline_parser = OptionParser()
p.add_option(
'-f', '--format', action='store', help='Plot format (png, svg or jpg).')
p.add_option('-s', '--size', action='store',
help='Pixel size of plots, "width,height". Default is "-s 400,250".')
def do_execute(self, code, silent, store_history=True,
user_expressions=None, allow_stdin=False):
"""Execute a line of code in Octave."""
code = code.strip()
abort_msg = {'status': 'abort',
'execution_count': self.execution_count}
if code and store_history:
self.hist_cache.append(code)
if not code or code == 'keyboard' or code.startswith('keyboard('):
return {'status': 'ok', 'execution_count': self.execution_count,
'payload': [], 'user_expressions': {}}
elif (code == 'exit' or code.startswith('exit(')
or code == 'quit' or code.startswith('quit(')):
# TODO: exit gracefully here
self.do_shutdown(False)
return abort_msg
elif code in ['restart', '%restart'] or code.startswith('restart('):
self.scilab_wrapper.restart()
return abort_msg
elif code.endswith('?') or code.startswith('?'):
self._get_help(code)
return abort_msg
elif code.startswith('%inline'):
self._handle_inline(code)
return abort_msg
plot_width, plot_height = [int(s) for s in self.plot_size.split(',')]
if self.inline:
self.plot_dir = tempfile.mkdtemp()
self.log.info(self.plot_dir)
else:
self.plot_dir = None
try:
output = self.eval(code, plot_dir=self.plot_dir,
plot_format=self.plot_format,
plot_width=plot_width, plot_height=plot_height)
except Scilab2PyError as e:
return self._handle_error(str(e))
if not silent:
stream_content = {'name': 'stdout', 'text': output}
self.send_response(self.iopub_socket, 'stream', stream_content)
if self.inline:
self._handle_figures()
if output == 'Octave Session Interrupted':
return abort_msg
return {'status': 'ok', 'execution_count': self.execution_count,
'payload': [], 'user_expressions': {}}
def do_complete(self, code, cursor_pos):
"""Get code completions using Scilab's ``completions``"""
code = code[:cursor_pos]
default = {'matches': [], 'cursor_start': 0,
'cursor_end': cursor_pos, 'metadata': dict(),
'status': 'ok'}
if code[-1] == ' ':
return default
tokens = code.replace(';', ' ').split()
if not tokens:
return default
token = tokens[-1]
start = cursor_pos - len(token)
cmd = 'completion("%s")' % token
output = self.eval(cmd)
matches = []
if not output is None:
matches = output.replace('!', ' ').split()
for item in dir(self.scilab_wrapper):
if item.startswith(token) and not item in matches:
matches.append(item)
matches.extend(_complete_path(token))
return {'matches': matches, 'cursor_start': start,
'cursor_end': cursor_pos, 'metadata': dict(),
'status': 'ok'}
def do_inspect(self, code, cursor_pos, detail_level=0):
"""If the code ends with a (, try to return a calltip docstring"""
default = {'status': 'aborted', 'data': dict(), 'metadata': dict()}
if (not code or not len(code) >= cursor_pos or
not code[cursor_pos - 1] == '('):
return default
else:
token = code[:cursor_pos - 1].replace(';', '').split()[-1]
info = self._get_scilab_info(token, detail_level)
docstring = info['docstring']
if docstring:
data = {'text/plain': docstring}
return {'status': 'ok', 'data': data, 'metadata': dict()}
return default
def do_history(self, hist_access_type, output, raw, session=None,
start=None, stop=None, n=None, pattern=None, unique=False):
"""Access history at startup.
"""
if not self.hist_file:
return {'history': []}
if not os.path.exists(self.hist_file):
with open(self.hist_file, 'wb') as fid:
fid.write(''.encode('utf-8'))
with open(self.hist_file, 'rb') as fid:
history = fid.readlines()
history = history[-self.max_hist_cache:]
history = [h.decode('utf-8') for h in history]
self.hist_cache = history
self.log.info('**HISTORY:')
self.log.info(self.hist_file)
self.log.info(history[-10:])
history = [(None, None, h) for h in history]
return {'history': history}
def do_shutdown(self, restart):
"""Shut down the app gracefully, saving history.
"""
self.log.info("**Shutting down")
if restart:
self.scilab_wrapper.restart()
else:
self.scilab_wrapper.exit()
if self.hist_file:
with open(self.hist_file, 'wb') as fid:
msg = '\n'.join(self.hist_cache[-self.max_hist_cache:])
fid.write(msg.encode('utf-8'))
return {'status': 'ok', 'restart': restart}
def eval(self, code, *args, **kwargs):
output = ''
try:
output = self.scilab_wrapper.eval(str(code), *args, **kwargs)
except KeyboardInterrupt:
self.scilab_wrapper._session.proc.send_signal(signal.SIGINT)
output = 'Octave Session Interrupted'
except Scilab2PyError as e:
raise Scilab2PyError(str(e))
except Exception as e:
self.log.error(e)
self.scilab_wrapper.restart()
output = 'Uncaught Exception, Restarting Octave'
if output is None:
output = ''
output = str(output)
return output
def _handle_figures(self):
plot_dir = self.plot_dir
plot_format = self.plot_format
width, height = [int(s) for s in self.plot_size.split(',')]
_mimetypes = {'png': 'image/png',
'svg': 'image/svg+xml',
'jpg': 'image/jpeg',
'jpeg': 'image/jpeg'}
images = []
for imgfile in glob("%s/*" % plot_dir):
with open(imgfile, 'rb') as fid:
images.append(fid.read())
rmtree(plot_dir)
plot_mime_type = _mimetypes.get(plot_format, 'image/png')
for image in images:
if plot_format == 'svg':
image = _fix_svg_size(image, size=(width, height))
else:
image = base64.b64encode(image).decode('ascii')
data = {plot_mime_type: image}
metadata = {plot_mime_type: {'width': width, 'height': height}}
self.log.info('Sending a plot')
stream_content = {'source': 'octave_kernel', 'data': data,
'metadata': metadata}
self.send_response(self.iopub_socket, 'display_data',
stream_content)
def _get_help(self, code):
if code.startswith('??') or code.endswith('??'):
detail_level = 1
else:
detail_level = 0
code = code.replace('?', '')
tokens = code.replace(';', ' ').split()
if not tokens:
return
token = tokens[-1]
try:
info = self._get_scilab_info(token, detail_level)
except Exception as e:
self.log.error(e)
return
if 'built-in Scilab function.' in info['docstring']:
self.scilab_wrapper.help(token)
output = 'Calling Help Browser for `%s`' % token
stream_content = {'name': 'stdout', 'data': output}
self.send_response(self.iopub_socket, 'stream', stream_content)
elif info['docstring']:
output = _get_printable_info(self.inspector, info, detail_level)
stream_content = {'name': 'stdout', 'data': output}
self.send_response(self.iopub_socket, 'stream', stream_content)
def _handle_error(self, err):
if 'parse error:' in err:
err = 'Parse Error'
elif 'Scilab returned:' in err:
err = err[err.index('Scilab returned:'):]
err = err[len('Scilab returned:'):].lstrip()
elif 'Syntax Error' in err:
err = 'Syntax Error'
stream_content = {'name': 'stdout', 'data': err.strip()}
self.send_response(self.iopub_socket, 'stream', stream_content)
return {'status': 'error', 'execution_count': self.execution_count,
'ename': '', 'evalue': err, 'traceback': []}
def _handle_inline(self, code):
if len(code.split()) == 1:
self.inline = not self.inline
else:
self.inline = True
if not self.inline:
self.plot_size = '620,590'
args, name = self.inline_parser.parse_args(code.split())
self.plot_format = args.format or self.plot_format
self.plot_size = args.size or self.plot_size
state = "OFF" if not self.inline else "ON"
output = "Inline plotting is %s" % state
stream_content = {'name': 'stdout', 'data': output}
self.send_response(self.iopub_socket, 'stream', stream_content)
def _get_scilab_info(self, obj, detail_level):
info = dict(argspec=None, base_class=None, call_def=None,
call_docstring=None, class_docstring=None,
definition=None, docstring='', file=None,
found=False, init_definition=None,
init_docstring=None, isalias=0, isclass=None,
ismagic=0, length=None, name='', namespace=None,
source=None, string_form=None, type_name='')
sci = self.scilab_wrapper
if obj in dir(sci):
obj = getattr(sci, obj)
return self.inspector.info(obj, detail_level=detail_level)
exist = self.eval('exists("%s")' % obj)
if exist == 0 or exist is None:
return info
typeof = self.eval('typeof(%s);' % obj) or 'Error'
lookup = dict(st="structure array", ce="cell array",
fptr="built-in Scilab function")
typeof = lookup.get(typeof, typeof)
var = None
if typeof in ['function', 'built-in Scilab function']:
docstring = getattr(sci, obj).__doc__
else:
docstring = 'A %s' % typeof
try:
var = sci.pull(obj)
except Scilab2PyError:
pass
if typeof == 'function':
info['definition'] = docstring.strip().splitlines()[0].strip()
docstring = '\n'.join(docstring.strip().splitlines()[1:])
source = docstring
info['found'] = True
info['docstring'] = docstring
info['type_name'] = typeof.capitalize()
info['source'] = source
info['string_form'] = obj if var is None else str(var)
return info
def _get_printable_info(inspector, info, detail_level=0):
displayfields = []
def add_fields(fields):
for title, key in fields:
field = info[key]
if field is not None:
displayfields.append((title, field.rstrip()))
add_fields(inspector.pinfo_fields1)
add_fields(inspector.pinfo_fields2)
add_fields(inspector.pinfo_fields3)
# Source or docstring, depending on detail level and whether
# source found.
if detail_level > 0 and info['source'] is not None:
source = cast_unicode(info['source'])
displayfields.append(("Source", source))
elif info['docstring'] is not None:
displayfields.append(("Docstring", info["docstring"]))
# Info for objects:
else:
add_fields(inspector.pinfo_fields_obj)
# Finally send to printer/pager:
if displayfields:
return inspector._format_fields(displayfields)
def _listdir(root):
"List directory 'root' appending the path separator to subdirs."
res = []
for name in os.listdir(root):
path = os.path.join(root, name)
if os.path.isdir(path):
name += os.sep
res.append(name)
return res
def _complete_path(path=None):
"""Perform completion of filesystem path.
http://stackoverflow.com/questions/5637124/tab-completion-in-pythons-raw-input
"""
if not path:
return _listdir('.')
dirname, rest = os.path.split(path)
tmp = dirname if dirname else '.'
res = [os.path.join(dirname, p)
for p in _listdir(tmp) if p.startswith(rest)]
# more than one match, or single match which does not exist (typo)
if len(res) > 1 or not os.path.exists(path):
return res
# resolved to a single directory, so return list of files below it
if os.path.isdir(path):
return [os.path.join(path, p) for p in _listdir(path)]
# exact file match terminates this completion
return [path + ' ']
def _fix_svg_size(image, size=None):
"""
Scliab SVGs do not have height/width attributes. Set
these to be the same as the viewBox, so that the browser
scales the image correctly.
Parameters
----------
image : str
SVG data.
size : tuple of int
Image width, height.
"""
(svg,) = minidom.parseString(image).getElementsByTagName('svg')
viewbox = svg.getAttribute('viewBox').split(' ')
if size is not None:
width, height = size
else:
width, height = viewbox[2:]
svg.setAttribute('width', '%dpx' % width)
svg.setAttribute('height', '%dpx' % height)
return svg.toxml()
if __name__ == '__main__':
from IPython.kernel.zmq.kernelapp import IPKernelApp
IPKernelApp.launch_instance(kernel_class=ScilabKernel)
|