django-admin-background-task 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_admin_background_task-0.1.0/LICENSE +201 -0
- django_admin_background_task-0.1.0/PKG-INFO +62 -0
- django_admin_background_task-0.1.0/README.md +41 -0
- django_admin_background_task-0.1.0/bgtask/.DS_Store +0 -0
- django_admin_background_task-0.1.0/bgtask/__init__.py +0 -0
- django_admin_background_task-0.1.0/bgtask/admin.py +30 -0
- django_admin_background_task-0.1.0/bgtask/apps.py +6 -0
- django_admin_background_task-0.1.0/bgtask/migrations/0001_initial.py +38 -0
- django_admin_background_task-0.1.0/bgtask/migrations/__init__.py +0 -0
- django_admin_background_task-0.1.0/bgtask/models.py +235 -0
- django_admin_background_task-0.1.0/bgtask/stack_contexts.py +11 -0
- django_admin_background_task-0.1.0/bgtask/static/bgtask/js/bgtask-once.js +19 -0
- django_admin_background_task-0.1.0/bgtask/static/bgtask/js/bgtask.js +414 -0
- django_admin_background_task-0.1.0/bgtask/templates/bgtask/bg_changelist_status_column.html +30 -0
- django_admin_background_task-0.1.0/bgtask/templates/bgtask/bgtask_templates.html +1 -0
- django_admin_background_task-0.1.0/bgtask/templates/bgtask/bgtask_view.html +74 -0
- django_admin_background_task-0.1.0/bgtask/templates/bgtask/progress.html +5 -0
- django_admin_background_task-0.1.0/bgtask/templatetags/__init__.py +0 -0
- django_admin_background_task-0.1.0/bgtask/templatetags/bgtask.py +13 -0
- django_admin_background_task-0.1.0/bgtask/tests/test_bgtask.py +35 -0
- django_admin_background_task-0.1.0/bgtask/urls.py +10 -0
- django_admin_background_task-0.1.0/bgtask/views.py +65 -0
- django_admin_background_task-0.1.0/pyproject.toml +63 -0
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
@@ -0,0 +1,62 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: django-admin-background-task
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: A set of tools for django apps to persist and monitor the status of background tasks
|
5
|
+
Home-page: https://github.com/daphtdazz/django-bgtask
|
6
|
+
License: Apache-2.0
|
7
|
+
Author: David Park
|
8
|
+
Author-email: david@greenparksoftware.co.uk
|
9
|
+
Requires-Python: >=3.11,<4.0
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
14
|
+
Provides-Extra: all
|
15
|
+
Requires-Dist: Django (>=4.2,<4.3) ; extra == "all"
|
16
|
+
Requires-Dist: django-model-utils (>=4.4.0,<4.5.0)
|
17
|
+
Requires-Dist: psycopg2 (>=2.9.9,<3.0.0)
|
18
|
+
Project-URL: Repository, https://github.com/daphtdazz/django-bgtask
|
19
|
+
Description-Content-Type: text/markdown
|
20
|
+
|
21
|
+
# django-bgtask
|
22
|
+
|
23
|
+
Background task monitoring tool for django apps
|
24
|
+
|
25
|
+
## Installation
|
26
|
+
|
27
|
+
Grab it from PyPI, e.g:
|
28
|
+
|
29
|
+
```
|
30
|
+
pip install django-admin-background-task
|
31
|
+
```
|
32
|
+
|
33
|
+
## Setup
|
34
|
+
|
35
|
+
Add it to your django apps:
|
36
|
+
|
37
|
+
```
|
38
|
+
INSTALLED_APPS = [
|
39
|
+
...
|
40
|
+
"bgtask",
|
41
|
+
]
|
42
|
+
```
|
43
|
+
|
44
|
+
And mount the amdin monitoring URLs:
|
45
|
+
|
46
|
+
```
|
47
|
+
urlpatterns = [
|
48
|
+
# You should be able to mount them anywhere but I put them here
|
49
|
+
path(r"admin/background-task/", include("bgtask.urls")),
|
50
|
+
path("admin", admin.site.urls),
|
51
|
+
]
|
52
|
+
```
|
53
|
+
|
54
|
+
## Usage
|
55
|
+
|
56
|
+
### Creating a task and updating it
|
57
|
+
|
58
|
+
```
|
59
|
+
from bgtask.models import BackgroundTask
|
60
|
+
|
61
|
+
BackgroundTask.new(name)
|
62
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# django-bgtask
|
2
|
+
|
3
|
+
Background task monitoring tool for django apps
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Grab it from PyPI, e.g:
|
8
|
+
|
9
|
+
```
|
10
|
+
pip install django-admin-background-task
|
11
|
+
```
|
12
|
+
|
13
|
+
## Setup
|
14
|
+
|
15
|
+
Add it to your django apps:
|
16
|
+
|
17
|
+
```
|
18
|
+
INSTALLED_APPS = [
|
19
|
+
...
|
20
|
+
"bgtask",
|
21
|
+
]
|
22
|
+
```
|
23
|
+
|
24
|
+
And mount the amdin monitoring URLs:
|
25
|
+
|
26
|
+
```
|
27
|
+
urlpatterns = [
|
28
|
+
# You should be able to mount them anywhere but I put them here
|
29
|
+
path(r"admin/background-task/", include("bgtask.urls")),
|
30
|
+
path("admin", admin.site.urls),
|
31
|
+
]
|
32
|
+
```
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
### Creating a task and updating it
|
37
|
+
|
38
|
+
```
|
39
|
+
from bgtask.models import BackgroundTask
|
40
|
+
|
41
|
+
BackgroundTask.new(name)
|
Binary file
|
File without changes
|
@@ -0,0 +1,30 @@
|
|
1
|
+
from django.contrib import admin
|
2
|
+
from django.template.loader import render_to_string
|
3
|
+
|
4
|
+
from .models import BackgroundTask
|
5
|
+
from .views import task_dict
|
6
|
+
|
7
|
+
|
8
|
+
def background_task_status(obj):
|
9
|
+
if isinstance(obj, BackgroundTask):
|
10
|
+
bgtask = obj
|
11
|
+
else:
|
12
|
+
bgtasks = BackgroundTask.objects.filter(acted_on_object_id=obj.id).order_by("-created")
|
13
|
+
|
14
|
+
# for now just pick the most recent
|
15
|
+
bgtask = bgtasks.first()
|
16
|
+
|
17
|
+
output = render_to_string(
|
18
|
+
"bgtask/bg_changelist_status_column.html", {"bgtask": bgtask and task_dict(bgtask)}
|
19
|
+
)
|
20
|
+
return output
|
21
|
+
|
22
|
+
|
23
|
+
background_task_status.__name__ = "Task Status"
|
24
|
+
|
25
|
+
|
26
|
+
@admin.register(BackgroundTask)
|
27
|
+
class BackgroundTaskAdmin(admin.ModelAdmin):
|
28
|
+
list_filter = ["state", "result"]
|
29
|
+
list_display = ("created", background_task_status, "result", "completed_at")
|
30
|
+
ordering = ["-created"]
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# Generated by Django 3.2.18 on 2023-04-08 13:59
|
2
|
+
|
3
|
+
from django.db import migrations, models
|
4
|
+
import django.db.models.deletion
|
5
|
+
import uuid
|
6
|
+
|
7
|
+
|
8
|
+
class Migration(migrations.Migration):
|
9
|
+
|
10
|
+
initial = True
|
11
|
+
|
12
|
+
dependencies = [
|
13
|
+
('contenttypes', '0002_remove_content_type_name'),
|
14
|
+
]
|
15
|
+
|
16
|
+
operations = [
|
17
|
+
migrations.CreateModel(
|
18
|
+
name='BackgroundTask',
|
19
|
+
fields=[
|
20
|
+
('created', models.DateTimeField(auto_now_add=True)),
|
21
|
+
('updated', models.DateTimeField(auto_now=True)),
|
22
|
+
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
23
|
+
('name', models.CharField(max_length=1000)),
|
24
|
+
('state', models.CharField(choices=[('not_started', 'not_started'), ('running', 'running'), ('success', 'success'), ('partial_success', 'partial_success'), ('failed', 'failed')], default='not_started', max_length=16)),
|
25
|
+
('steps_to_complete', models.PositiveIntegerField(blank=True, help_text='The number of steps in the task for it to be completed.', null=True)),
|
26
|
+
('steps_completed', models.PositiveIntegerField(blank=True, help_text='The number of steps completed so far by this task', null=True)),
|
27
|
+
('started_at', models.DateTimeField(blank=True, null=True)),
|
28
|
+
('completed_at', models.DateTimeField(blank=True, null=True)),
|
29
|
+
('result', models.JSONField(blank=True, help_text='The result(s) of the task, if any', null=True)),
|
30
|
+
('errors', models.JSONField(blank=True, default=list, help_text='Any errors that occurred during processing')),
|
31
|
+
('acted_on_object_id', models.TextField(blank=True, db_index=True, null=True)),
|
32
|
+
('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')),
|
33
|
+
],
|
34
|
+
options={
|
35
|
+
'ordering': ['created', 'id'],
|
36
|
+
},
|
37
|
+
),
|
38
|
+
]
|
File without changes
|
@@ -0,0 +1,235 @@
|
|
1
|
+
import functools
|
2
|
+
import logging
|
3
|
+
import os
|
4
|
+
import time
|
5
|
+
import traceback
|
6
|
+
import uuid
|
7
|
+
|
8
|
+
from django.contrib.contenttypes.fields import GenericForeignKey
|
9
|
+
from django.contrib.contenttypes.models import ContentType
|
10
|
+
from django.db import models, transaction
|
11
|
+
from django.utils import timezone
|
12
|
+
|
13
|
+
from model_utils import Choices
|
14
|
+
|
15
|
+
|
16
|
+
log = logging.getLogger(__name__)
|
17
|
+
|
18
|
+
|
19
|
+
def locked(meth):
|
20
|
+
@functools.wraps(meth)
|
21
|
+
def _locked_meth(self, *args, **kwargs):
|
22
|
+
with transaction.atomic():
|
23
|
+
BackgroundTask.objects.filter(id=self.id).select_for_update().only("id").get()
|
24
|
+
return meth(self, *args, **kwargs)
|
25
|
+
|
26
|
+
return _locked_meth
|
27
|
+
|
28
|
+
|
29
|
+
def only_if_state(state):
|
30
|
+
def only_if_state_decorator(meth):
|
31
|
+
def only_if_state_wrapper(self, *args, **kwargs):
|
32
|
+
if self.state != state:
|
33
|
+
raise RuntimeError(
|
34
|
+
"%s cannot execute %s as in state %s not %s"
|
35
|
+
% (self, meth.__name__, self.state, state)
|
36
|
+
)
|
37
|
+
return meth(self, *args, **kwargs)
|
38
|
+
|
39
|
+
return only_if_state_wrapper
|
40
|
+
|
41
|
+
return only_if_state_decorator
|
42
|
+
|
43
|
+
|
44
|
+
class CreatedUpdatedMixin(models.Model):
|
45
|
+
class Meta:
|
46
|
+
abstract = True
|
47
|
+
|
48
|
+
|
49
|
+
class BackgroundTask(CreatedUpdatedMixin):
|
50
|
+
id = models.UUIDField(primary_key=True, editable=False, default=uuid.uuid4)
|
51
|
+
name = models.CharField(max_length=1000)
|
52
|
+
|
53
|
+
STATES = Choices("not_started", "running", "success", "partial_success", "failed")
|
54
|
+
state = models.CharField(max_length=16, default=STATES.not_started, choices=STATES)
|
55
|
+
steps_to_complete = models.PositiveIntegerField(
|
56
|
+
null=True, blank=True, help_text="The number of steps in the task for it to be completed."
|
57
|
+
)
|
58
|
+
steps_completed = models.PositiveIntegerField(
|
59
|
+
null=True, blank=True, help_text="The number of steps completed so far by this task"
|
60
|
+
)
|
61
|
+
|
62
|
+
started_at = models.DateTimeField(null=True, blank=True)
|
63
|
+
completed_at = models.DateTimeField(null=True, blank=True)
|
64
|
+
result = models.JSONField(null=True, blank=True, help_text="The result(s) of the task, if any")
|
65
|
+
errors = models.JSONField(
|
66
|
+
default=list, blank=True, help_text="Any errors that occurred during processing"
|
67
|
+
)
|
68
|
+
|
69
|
+
# This follows the pattern described in
|
70
|
+
# https://docs.djangoproject.com/en/3.0/ref/contrib/contenttypes/#generic-relations
|
71
|
+
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE, blank=True, null=True)
|
72
|
+
acted_on_object_id = models.TextField(db_index=True, blank=True, null=True)
|
73
|
+
content_object = GenericForeignKey("content_type", "acted_on_object_id")
|
74
|
+
|
75
|
+
# Helpful to have these for debugging mostly
|
76
|
+
created = models.DateTimeField(auto_now_add=True)
|
77
|
+
updated = models.DateTimeField(auto_now=True)
|
78
|
+
|
79
|
+
class Meta:
|
80
|
+
ordering = ["created", "id"]
|
81
|
+
|
82
|
+
@property
|
83
|
+
def num_failed_steps(self):
|
84
|
+
return sum(error.get("num_failed_steps", 0) for error in self.errors)
|
85
|
+
|
86
|
+
@property
|
87
|
+
def incomplete(self):
|
88
|
+
return self.state in [self.STATES.not_started, self.STATES.running]
|
89
|
+
|
90
|
+
@locked
|
91
|
+
@only_if_state(STATES.not_started)
|
92
|
+
def start(self):
|
93
|
+
log.info("%s starting", self)
|
94
|
+
self.state = self.STATES.running
|
95
|
+
self.started_at = timezone.now()
|
96
|
+
self.save()
|
97
|
+
|
98
|
+
@locked
|
99
|
+
@only_if_state(STATES.running)
|
100
|
+
def fail(self, exc):
|
101
|
+
"""Call to indicate a complete and final failure of the task"""
|
102
|
+
log.info("%s failed: %s", self, exc)
|
103
|
+
self.state = self.STATES.failed
|
104
|
+
self.completed_at = timezone.now()
|
105
|
+
self.errors.append(
|
106
|
+
{"datetime": self.completed_at.isoformat(), **self._error_dict_for_error(exc)},
|
107
|
+
)
|
108
|
+
self.save()
|
109
|
+
|
110
|
+
@locked
|
111
|
+
@only_if_state(STATES.running)
|
112
|
+
def succeed(self, result):
|
113
|
+
log.info("%s succeeded.", self)
|
114
|
+
self.state = self.STATES.success
|
115
|
+
self.completion = 1
|
116
|
+
self.completed_at = timezone.now()
|
117
|
+
self.result = self.serialize_result(result)
|
118
|
+
self.save()
|
119
|
+
|
120
|
+
@locked
|
121
|
+
@only_if_state(STATES.running)
|
122
|
+
def finish(self):
|
123
|
+
"""Mark task as finished, automatically deducing the final state."""
|
124
|
+
if not self.errors:
|
125
|
+
log.info("Finishing as success with no errors")
|
126
|
+
self.state = self.STATES.success
|
127
|
+
elif self.steps_to_complete is None:
|
128
|
+
log.info("Finishing as failure with no steps to complete configured")
|
129
|
+
self.state = self.STATES.failed
|
130
|
+
elif self.num_failed_steps == self.steps_to_complete:
|
131
|
+
log.info("Finishing as failure with all steps failed")
|
132
|
+
self.state = self.STATES.failed
|
133
|
+
else:
|
134
|
+
log.info("Finishing as partial success with some steps failed")
|
135
|
+
self.state = self.STATES.partial_success
|
136
|
+
|
137
|
+
@locked
|
138
|
+
def add_successful_steps(self, num_steps):
|
139
|
+
self.steps_completed += num_steps
|
140
|
+
self._maybe_finish()
|
141
|
+
self.save()
|
142
|
+
|
143
|
+
@locked
|
144
|
+
def steps_failed(self, num_steps, steps_identifier=None, error=None):
|
145
|
+
self.steps_completed += num_steps
|
146
|
+
error_dict = {
|
147
|
+
"datetime": timezone.now().isoformat(),
|
148
|
+
"num_failed_steps": num_steps,
|
149
|
+
}
|
150
|
+
if steps_identifier:
|
151
|
+
error_dict["steps_identifier"] = steps_identifier
|
152
|
+
|
153
|
+
error_dict.update(self._error_dict_for_error(error))
|
154
|
+
|
155
|
+
self.errors.append(error_dict)
|
156
|
+
self._maybe_finish()
|
157
|
+
self.save()
|
158
|
+
|
159
|
+
def dispatch(self):
|
160
|
+
# double fork to avoid zombies
|
161
|
+
pid = os.fork()
|
162
|
+
|
163
|
+
if pid != 0:
|
164
|
+
log.info("Waiting for child %d", pid)
|
165
|
+
os.waitpid(pid, 0)
|
166
|
+
log.info("Child exited")
|
167
|
+
return
|
168
|
+
|
169
|
+
# get fresh db connections in all children
|
170
|
+
from django import db
|
171
|
+
|
172
|
+
db.connections.close_all()
|
173
|
+
|
174
|
+
pid2 = os.fork()
|
175
|
+
if pid2 != 0:
|
176
|
+
log.info("Child exiting %d", os.getpid())
|
177
|
+
os._exit(0)
|
178
|
+
|
179
|
+
self.start()
|
180
|
+
|
181
|
+
time.sleep(5)
|
182
|
+
self.steps_to_complete = 100
|
183
|
+
self.steps_completed = 0
|
184
|
+
self.save()
|
185
|
+
|
186
|
+
def raise_an_exception():
|
187
|
+
raise Exception("Some exception")
|
188
|
+
|
189
|
+
for ii in range(100):
|
190
|
+
time.sleep(0.2)
|
191
|
+
|
192
|
+
if ii % 52 == 0:
|
193
|
+
try:
|
194
|
+
raise_an_exception()
|
195
|
+
except Exception as exc:
|
196
|
+
self.steps_failed(1, str(ii), error=exc)
|
197
|
+
else:
|
198
|
+
self.add_successful_steps(1)
|
199
|
+
if ii % 10 == 0:
|
200
|
+
log.info("Completed %d items", ii)
|
201
|
+
|
202
|
+
os._exit(0)
|
203
|
+
|
204
|
+
# ----------------------------------------------------------------------------------------------
|
205
|
+
# For overriding by subclasses
|
206
|
+
# ----------------------------------------------------------------------------------------------
|
207
|
+
def __str__(self):
|
208
|
+
return "%s %s %s" % (type(self).__name__, self.id, self.state)
|
209
|
+
|
210
|
+
@staticmethod
|
211
|
+
def serialize_result(result):
|
212
|
+
return result
|
213
|
+
|
214
|
+
# ----------------------------------------------------------------------------------------------
|
215
|
+
# Internals
|
216
|
+
# ----------------------------------------------------------------------------------------------
|
217
|
+
@staticmethod
|
218
|
+
def _error_dict_for_error(error):
|
219
|
+
if not error:
|
220
|
+
return {}
|
221
|
+
|
222
|
+
error_dict = {"error_message": str(error)}
|
223
|
+
|
224
|
+
if hasattr(error, "__traceback__"):
|
225
|
+
error_dict["traceback"] = "".join(
|
226
|
+
traceback.format_list(traceback.extract_tb(error.__traceback__))
|
227
|
+
)
|
228
|
+
return error_dict
|
229
|
+
|
230
|
+
def _maybe_finish(self):
|
231
|
+
if self.steps_to_complete is None:
|
232
|
+
return
|
233
|
+
|
234
|
+
if self.steps_completed >= self.steps_to_complete:
|
235
|
+
self.finish()
|
@@ -0,0 +1,19 @@
|
|
1
|
+
// Add bgtask.js into the page just once, allowing this to be added many times on the same page
|
2
|
+
// without running into errors due to redeclaring variables etc.
|
3
|
+
//
|
4
|
+
// Must be executed syncronously, so without the async flag to <script>
|
5
|
+
(() => {
|
6
|
+
if (window.BG_TASK_ADDED) {
|
7
|
+
// Have already bootstrapped.
|
8
|
+
return;
|
9
|
+
}
|
10
|
+
|
11
|
+
// Get the URL of the current script. This only works if this script is executed synchronously.
|
12
|
+
const scripts = document.getElementsByTagName('script');
|
13
|
+
const thisScript = scripts[scripts.length - 1];
|
14
|
+
const src = thisScript.src;
|
15
|
+
const baseSrc = src.replace(/[^\/]+$/, '');
|
16
|
+
|
17
|
+
// Use document.write() to inject the main script immediately.
|
18
|
+
document.write(`<script src="${baseSrc}bgtask.js"></script>`);
|
19
|
+
})();
|