Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
a239d355
Commit
a239d355
authored
Mar 14, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve subprocess control and use it on KE
a kill command that will dump tracebacks is printed in the console
parent
cf89700c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
26 deletions
+47
-26
dream/platform/__init__.py
dream/platform/__init__.py
+47
-26
No files found.
dream/platform/__init__.py
View file @
a239d355
...
...
@@ -95,45 +95,55 @@ def positionGraph():
return
jsonify
(
preference_dict
)
class
TimeoutError
(
Exception
):
pass
@
app
.
route
(
"/runSimulation"
,
methods
=
[
"POST"
,
"OPTIONS"
])
def
runSimulation
():
parameter_dict
=
request
.
json
[
'json'
]
if
0
:
app
.
logger
.
debug
(
"running with:
\
n
%s"
%
(
json
.
dumps
(
parameter_dict
,
sort_keys
=
True
,
indent
=
2
)))
try
:
timeout
=
int
(
parameter_dict
[
'general'
][
'processTimeout'
])
except
(
KeyError
,
ValueError
,
TypeError
):
timeout
=
60
def
runWithTimeout
(
func
,
timeout
,
*
args
,
**
kw
):
queue
=
multiprocessing
.
Queue
()
process
=
multiprocessing
.
Process
(
target
=
_run
Simulation
,
args
=
(
parameter_dict
,
queue
))
target
=
_run
WithTimeout
,
args
=
(
queue
,
func
,
args
,
kw
))
process
.
start
()
process
.
join
(
timeout
)
if
process
.
is_alive
():
# process still alive after timeout, terminate it
process
.
terminate
()
process
.
join
()
return
jsonify
(
dict
(
error
=
'Timeout after %s seconds'
%
timeout
))
raise
TimeoutError
()
return
queue
.
get
()
def
_runWithTimeout
(
queue
,
func
,
args
,
kw
):
import
signal
import
traceback
signal
.
signal
(
signal
.
SIGUSR1
,
lambda
sig
,
stack
:
traceback
.
print_stack
(
stack
))
import
os
print
"To see current traceback:"
print
" kill -SIGUSR1 %s"
%
os
.
getpid
()
result
=
queue
.
get
()
if
0
:
app
.
logger
.
debug
(
"result
\
n
%s"
%
(
json
.
dumps
(
result
,
sort_keys
=
True
,
indent
=
2
)))
return
jsonify
(
result
)
queue
.
put
(
func
(
*
args
,
**
kw
))
def
_runSimulation
(
parameter_dict
,
queue
):
@
app
.
route
(
"/runSimulation"
,
methods
=
[
"POST"
,
"OPTIONS"
])
def
runSimulation
():
parameter_dict
=
request
.
json
[
'json'
]
try
:
result
=
getGUIInstance
().
run
(
parameter_dict
)
queue
.
put
(
dict
(
success
=
result
))
timeout
=
int
(
parameter_dict
[
'general'
][
'processTimeout'
])
except
(
KeyError
,
ValueError
,
TypeError
):
timeout
=
60
try
:
result
=
runWithTimeout
(
_runSimulation
,
timeout
,
parameter_dict
)
return
jsonify
(
result
)
except
TimeoutError
:
return
jsonify
(
dict
(
error
=
"Timeout after %s seconds"
%
timeout
))
def
_runSimulation
(
parameter_dict
):
try
:
return
dict
(
success
=
getGUIInstance
().
run
(
parameter_dict
))
except
Exception
,
e
:
tb
=
traceback
.
format_exc
()
app
.
logger
.
error
(
tb
)
queue
.
put
(
dict
(
error
=
tb
)
)
return
dict
(
error
=
tb
)
def
getGUIInstance
():
# XXX do not instanciate each time!
...
...
@@ -148,7 +158,18 @@ def getConfigurationDict():
@
app
.
route
(
"/runKnowledgeExtraction"
,
methods
=
[
"POST"
,
"OPTIONS"
])
def
runKnowledgeExtraction
():
parameter_dict
=
request
.
json
[
'json'
]
try
:
timeout
=
int
(
parameter_dict
[
'general'
][
'processTimeout'
])
except
(
KeyError
,
ValueError
,
TypeError
):
timeout
=
60
try
:
result
=
runWithTimeout
(
_runKnowledgeExtraction
,
timeout
,
parameter_dict
)
return
jsonify
(
result
)
except
TimeoutError
:
return
jsonify
(
dict
(
error
=
"Timeout after %s seconds"
%
timeout
))
def
_runKnowledgeExtraction
(
parameter_dict
):
try
:
workbook
=
xlrd
.
open_workbook
(
file_contents
=
urllib
.
urlopen
(
parameter_dict
[
'general'
][
'ke_url'
]).
read
())
...
...
@@ -182,11 +203,11 @@ def runKnowledgeExtraction():
if
bParameter
:
dictToAdd
[
bParameter
]
=
bParameterValue
parameter_dict
[
'nodes'
][
element
][
'processingTime'
]
=
dictToAdd
return
jsonify
(
dict
(
success
=
True
,
data
=
parameter_dict
)
)
return
dict
(
success
=
True
,
data
=
parameter_dict
)
except
Exception
,
e
:
tb
=
traceback
.
format_exc
()
app
.
logger
.
error
(
tb
)
return
jsonify
(
dict
(
error
=
tb
)
)
return
dict
(
error
=
tb
)
def
main
(
*
args
):
parser
=
argparse
.
ArgumentParser
(
description
=
'Launch the DREAM simulation platform.'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment