Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
e6158d86
Commit
e6158d86
authored
8 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Async.idle now allows a delay to be specified, after which the task will
be executed.
parent
66b8a3a9
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
fsl/utils/async.py
+68
-10
68 additions, 10 deletions
fsl/utils/async.py
with
68 additions
and
10 deletions
fsl/utils/async.py
+
68
−
10
View file @
e6158d86
...
@@ -42,6 +42,7 @@ import collections
...
@@ -42,6 +42,7 @@ import collections
try
:
import
queue
try
:
import
queue
except
:
import
Queue
as
queue
except
:
import
Queue
as
queue
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
...
@@ -143,6 +144,29 @@ currently queued on the idle loop (see the ``name`` parameter to the
...
@@ -143,6 +144,29 @@ currently queued on the idle loop (see the ``name`` parameter to the
"""
"""
class
IdleTask
(
object
):
"""
Container object used by the :func:`idle` and :func:`_wxIdleLoop`
functions.
"""
def
__init__
(
self
,
name
,
task
,
schedtime
,
after
,
timeout
,
args
,
kwargs
):
self
.
name
=
name
self
.
task
=
task
self
.
schedtime
=
schedtime
self
.
after
=
after
self
.
timeout
=
timeout
self
.
args
=
args
self
.
kwargs
=
kwargs
def
_wxIdleLoop
(
ev
):
def
_wxIdleLoop
(
ev
):
"""
Function which is called on ``wx.EVT_IDLE`` events. If there
"""
Function which is called on ``wx.EVT_IDLE`` events. If there
is a function on the :attr:`_idleQueue`, it is popped and called.
is a function on the :attr:`_idleQueue`, it is popped and called.
...
@@ -154,20 +178,30 @@ def _wxIdleLoop(ev):
...
@@ -154,20 +178,30 @@ def _wxIdleLoop(ev):
ev
.
Skip
()
ev
.
Skip
()
try
:
try
:
task
,
schedtime
,
name
,
timeout
,
args
,
kwargs
=
_idleQueue
.
get_nowait
()
task
=
_idleQueue
.
get_nowait
()
except
queue
.
Empty
:
except
queue
.
Empty
:
return
return
now
=
time
.
time
()
now
=
time
.
time
()
elapsed
=
now
-
schedtime
elapsed
=
now
-
task
.
schedtime
if
timeout
==
0
or
(
elapsed
<
timeout
):
# Has enouggh time elapsed
# since the task was scheduled?
# If not, re-queue the task.
if
elapsed
<
task
.
after
:
log
.
debug
(
'
Re-queueing function ({}) on wx idle
'
'
loop
'
.
format
(
getattr
(
task
.
task
,
'
__name__
'
,
'
<unknown>
'
)))
_idleQueue
.
put_nowait
(
task
)
# Has the task timed out?
elif
task
.
timeout
==
0
or
(
elapsed
<
task
.
timeout
):
log
.
debug
(
'
Running function ({}) on wx idle
'
log
.
debug
(
'
Running function ({}) on wx idle
'
'
loop
'
.
format
(
getattr
(
task
,
'
__name__
'
,
'
<unknown>
'
)))
'
loop
'
.
format
(
getattr
(
task
.
task
,
'
__name__
'
,
'
<unknown>
'
)))
task
(
*
args
,
**
kwargs
)
task
.
task
(
*
task
.
args
,
**
task
.
kwargs
)
if
name
is
not
None
:
if
task
.
name
is
not
None
:
_idleQueueSet
.
discard
(
name
)
_idleQueueSet
.
discard
(
task
.
name
)
if
_idleQueue
.
qsize
()
>
0
:
if
_idleQueue
.
qsize
()
>
0
:
ev
.
RequestMore
()
ev
.
RequestMore
()
...
@@ -190,15 +224,29 @@ def idle(task, *args, **kwargs):
...
@@ -190,15 +224,29 @@ def idle(task, *args, **kwargs):
argument. Specifies a name that can be used to query
argument. Specifies a name that can be used to query
the state of this task via the :func:`inIdle` function.
the state of this task via the :func:`inIdle` function.
:arg after: Optional. If provided, must be provided as a keyword
argument. A time, in seconds, which specifies the amount
of time to wait before running this task after it has
been scheduled.
:arg timeout: Optional. If provided, must be provided as a keyword
:arg timeout: Optional. If provided, must be provided as a keyword
argument. Specifies a time out, in seconds. If this
argument. Specifies a time out, in seconds. If this
amount of time passes before the function gets
amount of time passes before the function gets
scheduled to be called on the idle loop, the function
scheduled to be called on the idle loop, the function
is not called, and is dropped from the queue.
is not called, and is dropped from the queue.
All other arguments are passed through to the task function.
All other arguments are passed through to the task function.
If a ``wx.App`` is not running, the task is called directly.
If a ``wx.App`` is not running, the ``after`` and ``timeout`` arguments
are ignored, and the task is called directly.
.. note:: If the ``after`` argument is used, there is no guarantee that
the task will be executed in the order that it is scheduled.
This is because, if the required time has not elapsed when
the task is poppsed from the queue, it will be re-queued.
"""
"""
global
_idleRegistered
global
_idleRegistered
...
@@ -207,6 +255,7 @@ def idle(task, *args, **kwargs):
...
@@ -207,6 +255,7 @@ def idle(task, *args, **kwargs):
schedtime
=
time
.
time
()
schedtime
=
time
.
time
()
timeout
=
kwargs
.
pop
(
'
timeout
'
,
0
)
timeout
=
kwargs
.
pop
(
'
timeout
'
,
0
)
after
=
kwargs
.
pop
(
'
after
'
,
0
)
name
=
kwargs
.
pop
(
'
name
'
,
None
)
name
=
kwargs
.
pop
(
'
name
'
,
None
)
if
_haveWX
():
if
_haveWX
():
...
@@ -219,7 +268,16 @@ def idle(task, *args, **kwargs):
...
@@ -219,7 +268,16 @@ def idle(task, *args, **kwargs):
log
.
debug
(
'
Scheduling idle task ({}) on wx idle
'
log
.
debug
(
'
Scheduling idle task ({}) on wx idle
'
'
loop
'
.
format
(
getattr
(
task
,
'
__name__
'
,
'
<unknown>
'
)))
'
loop
'
.
format
(
getattr
(
task
,
'
__name__
'
,
'
<unknown>
'
)))
_idleQueue
.
put_nowait
((
task
,
schedtime
,
name
,
timeout
,
args
,
kwargs
))
idleTask
=
IdleTask
(
name
,
task
,
schedtime
,
after
,
timeout
,
args
,
kwargs
)
_idleQueue
.
put_nowait
(
idleTask
)
if
name
is
not
None
:
if
name
is
not
None
:
_idleQueueSet
.
add
(
name
)
_idleQueueSet
.
add
(
name
)
...
...
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