Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
0d35f974
Verified
Commit
0d35f974
authored
4 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Factor recorded_task out of class for brevity
parent
a8400ce4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!494
Refactor ProgressRecorder for non-optional Celery usage and add doc strings
,
!491
Resolve "Make Celery non-optional"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/util/celery_progress.py
+16
-13
16 additions, 13 deletions
aleksis/core/util/celery_progress.py
with
16 additions
and
13 deletions
aleksis/core/util/celery_progress.py
+
16
−
13
View file @
0d35f974
...
...
@@ -21,9 +21,9 @@ class ProgressRecorder(AbstractProgressRecorder):
from django.contrib import messages
from aleksis.core.util.celery_progress import
ProgressRecorder
from aleksis.core.util.celery_progress import
recorded_task
@
ProgressRecorder.
recorded_task
@recorded_task
def do_something(foo, bar, recorder, baz=None):
# ...
recorder.total = len(list_with_data)
...
...
@@ -98,16 +98,19 @@ class ProgressRecorder(AbstractProgressRecorder):
self
.
messages
.
append
((
level
,
message
))
self
.
set_progress
(
self
.
current
)
@classmethod
def
recorded_task
(
cls
,
orig
:
Callable
)
->
app
.
Task
:
"""
Create a Celery task that receives a ProgressRecorder.
Returns a Task object with a wrapper that passes the recorder instance
as the recorder keyword argument.
"""
@wraps
(
orig
)
def
_inject_recorder
(
task
,
*
args
,
**
kwargs
):
recorder
=
ProgressRecorder
(
task
)
return
orig
(
*
args
,
**
kwargs
,
recorder
=
recorder
)
def
recorded_task
(
orig
:
Callable
,
*
args
,
**
kwargs
)
->
app
.
Task
:
"""
Create a Celery task that receives a ProgressRecorder.
Returns a Task object with a wrapper that passes the recorder instance
as the recorder keyword argument.
"""
@wraps
(
orig
)
def
_inject_recorder
(
task
,
*
args
,
**
kwargs
):
recorder
=
ProgressRecorder
(
task
)
return
orig
(
*
args
,
**
kwargs
,
recorder
=
recorder
)
return
app
.
task
(
_inject_recorder
,
bind
=
True
)
# Force bind to True because _inject_recorder needs the Task object
kwargs
[
"
bind
"
]
=
True
return
app
.
task
(
_inject_recorder
,
*
args
,
**
kwargs
)
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