6
6
get_failure_hook_name ,
7
7
get_creation_hook_name ,
8
8
)
9
- from jsonfield import JSONField
10
- from django .db .models import UUIDField , Count
9
+ from django .db .models import JSONField , UUIDField , Count , TextChoices
11
10
import datetime
12
11
import logging
13
12
import uuid
@@ -74,27 +73,19 @@ def to_process(self, queue_name):
74
73
75
74
76
75
class Job (models .Model ):
77
- class STATES :
76
+ class STATES ( TextChoices ) :
78
77
NEW = "NEW"
79
78
READY = "READY"
80
79
PROCESSING = "PROCESSING"
81
80
FAILED = "FAILED"
82
81
COMPLETE = "COMPLETE"
83
82
84
- STATE_CHOICES = [
85
- (STATES .NEW , "NEW" ),
86
- (STATES .READY , "READY" ),
87
- (STATES .PROCESSING , "PROCESSING" ),
88
- (STATES .FAILED , "FAILED" ),
89
- (STATES .COMPLETE , "COMPLETE" ),
90
- ]
91
-
92
83
id = UUIDField (primary_key = True , default = uuid .uuid4 , editable = False )
93
84
created = models .DateTimeField (auto_now_add = True , db_index = True )
94
85
modified = models .DateTimeField (auto_now = True )
95
86
name = models .CharField (max_length = 100 )
96
87
state = models .CharField (
97
- max_length = 20 , choices = STATE_CHOICES , default = STATES .NEW , db_index = True
88
+ max_length = 20 , choices = STATES . choices , default = STATES .NEW , db_index = True
98
89
)
99
90
next_task = models .CharField (max_length = 100 , blank = True )
100
91
workspace = JSONField (null = True )
@@ -107,9 +98,7 @@ class Meta:
107
98
objects = JobManager ()
108
99
109
100
def save (self , * args , ** kwargs ):
110
- is_new = not Job .objects .filter (pk = self .pk ).exists ()
111
-
112
- if is_new :
101
+ if self ._state .adding :
113
102
self .next_task = get_next_task_name (self .name )
114
103
self .workspace = self .workspace or {}
115
104
@@ -121,7 +110,7 @@ def save(self, *args, **kwargs):
121
110
)
122
111
return # cancel the save
123
112
124
- return super (Job , self ).save (* args , ** kwargs )
113
+ return super ().save (* args , ** kwargs )
125
114
126
115
def update_next_task (self ):
127
116
self .next_task = get_next_task_name (self .name , self .next_task ) or ""
0 commit comments