Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
f198d334
Commit
f198d334
authored
9 years ago
by
Danilo Piparo
Browse files
Options
Downloads
Patches
Plain Diff
Factorise entirely execution and output capturing
parent
10b434ff
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bindings/pyroot/JupyROOT/kernel/rootkernel.py
+16
-37
16 additions, 37 deletions
bindings/pyroot/JupyROOT/kernel/rootkernel.py
with
16 additions
and
37 deletions
bindings/pyroot/JupyROOT/kernel/rootkernel.py
+
16
−
37
View file @
f198d334
...
...
@@ -15,18 +15,6 @@ from __future__ import print_function
import
sys
,
os
,
select
,
tempfile
#trying to find ROOT lib path to PYTHONPATH
#NOTE: required for JupyterHub
try
:
ROOT_PYTHON_PATH
=
os
.
popen
(
"
root-config --libdir
"
)
os
.
environ
[
'
PYTHONPATH
'
]
=
os
.
environ
[
'
PYTHONPATH
'
]
+
"
:
"
+
ROOT_PYTHON_PATH
.
read
()
ROOT_PYTHON_PATH
.
close
()
except
Exception
as
e
:
pass
#setting up PYTHONPATH
os
.
environ
[
'
PYTHONPATH
'
]
=
os
.
environ
[
'
PYTHONPATH
'
]
+
"
:
"
+
os
.
path
.
dirname
(
__file__
)
try
:
from
metakernel
import
MetaKernel
,
Parser
from
metakernel.display
import
HTML
...
...
@@ -41,6 +29,7 @@ except ImportError:
try
:
from
JupyROOT.utils
import
setStyle
,
invokeAclic
from
JupyROOT.handlers
import
RunAsyncAndPrint
from
JupyROOT.cppcompleter
import
CppCompleter
from
JupyROOT.kernel.draw
import
LoadDrawer
,
CanvasDrawer
from
JupyROOT.kernel.utils
import
GetIOHandler
,
GetExecutor
,
GetDeclarer
,
MagicLoader
...
...
@@ -52,11 +41,8 @@ import IPython
# We want iPython to take over the graphics
ROOT
.
gROOT
.
SetBatch
()
_debug
=
True
def
Debug
(
msg
):
print
(
'
out: %r
'
%
msg
,
file
=
sys
.
__stderr__
)
print
(
'
Kernel main: %r
'
%
msg
,
file
=
sys
.
__stderr__
)
class
ROOTKernel
(
MetaKernel
):
implementation
=
'
ROOT
'
...
...
@@ -84,28 +70,27 @@ class ROOTKernel(MetaKernel):
self
.
completer
=
CppCompleter
()
self
.
completer
.
activate
()
def
get_completions
(
self
,
info
):
if
_debug
:
Debug
(
info
)
return
self
.
completer
.
_completeImpl
(
info
[
'
code
'
])
def
print_output
(
self
,
handler
):
streamDicts
=
handler
.
GetStreamsDicts
()
for
streamDict
in
filter
(
lambda
d
:
None
!=
d
,
streamDicts
):
self
.
send_response
(
self
.
iopub_socket
,
'
stream
'
,
streamDict
)
def
do_execute_direct
(
self
,
code
,
silent
=
False
):
if
not
code
.
strip
():
return
status
=
'
ok
'
traceback
=
None
std_out
=
""
std_err
=
""
try
:
self
.
ioHandler
.
Clear
()
self
.
ioHandler
.
InitCapture
()
root_status
=
self
.
Executor
.
Run
(
str
(
code
))
self
.
ioHandler
.
EndCapture
()
std_out
=
self
.
ioHandler
.
GetStdout
()
std_err
=
self
.
ioHandler
.
GetStderr
()
RunAsyncAndPrint
(
self
.
Executor
,
str
(
code
),
self
.
ioHandler
,
self
.
print_output
,
silent
,
.
1
)
canvaslist
=
ROOT
.
gROOT
.
GetListOfCanvases
()
if
canvaslist
:
...
...
@@ -123,16 +108,10 @@ class ROOTKernel(MetaKernel):
self
.
interpreter
.
gROOT
.
SetInterrupt
()
status
=
'
interrupted
'
self
.
ioHandler
.
EndCapture
()
std_out
=
self
.
ioHandler
.
GetStdout
()
std_err
=
self
.
ioHandler
.
GetStderr
()
if
not
silent
:
## Send output on stdout
stream_content_stdout
=
{
'
name
'
:
'
stdout
'
,
'
text
'
:
std_out
}
self
.
send_response
(
self
.
iopub_socket
,
'
stream
'
,
stream_content_stdout
)
if
std_err
!=
""
:
stream_content_stderr
=
{
'
name
'
:
'
stderr
'
,
'
text
'
:
std_err
}
self
.
send_response
(
self
.
iopub_socket
,
'
stream
'
,
stream_content_stderr
)
self
.
print_output
(
self
.
ioHandler
)
traceback
=
None
reply
=
{
'
status
'
:
status
,
'
execution_count
'
:
self
.
execution_count
,
'
payload
'
:
[],
...
...
@@ -153,7 +132,7 @@ class ROOTKernel(MetaKernel):
pass
else
:
raise
ValueError
(
"
Invalid status: %r
"
%
status
)
#return reply
def
main
():
"""
launch a root kernel
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment