Skip to content
Snippets Groups Projects
Verified Commit 0d35f974 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Factor recorded_task out of class for brevity

parent a8400ce4
No related branches found
No related tags found
2 merge requests!494Refactor ProgressRecorder for non-optional Celery usage and add doc strings,!491Resolve "Make Celery non-optional"
......@@ -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)
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