Skip to content
Snippets Groups Projects
Commit 44748470 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

async.run accepts a callback function to be called if the task raises an

error.
parent 52316ae7
No related branches found
No related tags found
No related merge requests found
...@@ -56,13 +56,17 @@ def _haveWX(): ...@@ -56,13 +56,17 @@ def _haveWX():
return False return False
def run(task, onFinish=None, name=None): def run(task, onFinish=None, onError=None, name=None):
"""Run the given ``task`` in a separate thread. """Run the given ``task`` in a separate thread.
:arg task: The function to run. Must accept no arguments. :arg task: The function to run. Must accept no arguments.
:arg onFinish: An optional function to schedule on the ``wx.MainLoop`` :arg onFinish: An optional function to schedule (on the ``wx.MainLoop``,
once the ``task`` has finished. via :func:`idle`) once the ``task`` has finished.
:arg onError: An optional function to be called (on the ``wx.MainLoop``,
via :func:`idle`) if the ``task`` raises an error. Passed
the ``Exception`` that was raised.
:arg name: An optional name to use for this task in log statements. :arg name: An optional name to use for this task in log statements.
...@@ -78,33 +82,42 @@ def run(task, onFinish=None, name=None): ...@@ -78,33 +82,42 @@ def run(task, onFinish=None, name=None):
haveWX = _haveWX() haveWX = _haveWX()
def wrapper(): # Calls the onFinish or onError handler
def callback(cb, *args, **kwargs):
log.debug('Running task "{}"...'.format(name))
task() if cb is None:
return
log.debug('Task "{}" finished'.format(name))
if haveWX: idle(cb, *args, **kwargs)
if (onFinish is not None): else: cb( *args, **kwargs)
import wx
log.debug('Scheduling task "{}" finish handler ' # Runs the task, and calls
'on wx.MainLoop'.format(name)) # callback functions as needed.
def wrapper():
# Should I use the idle function here? try:
wx.CallAfter(onFinish) task()
log.debug('Task "{}" finished'.format(name))
callback(onFinish)
except Exception as e:
log.warn('Task "{}" crashed', exc_info=True)
callback(onError, e)
# If WX, run on a thread
if haveWX: if haveWX:
log.debug('Running task "{}" on thread'.format(name))
thread = threading.Thread(target=wrapper) thread = threading.Thread(target=wrapper)
thread.start() thread.start()
return thread return thread
# Otherwise run directly
else: else:
log.debug('Running task "{}" directly'.format(name)) log.debug('Running task "{}" directly'.format(name))
task() wrapper()
log.debug('Running task "{}" finish handler'.format(name))
onFinish()
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment