-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackgroundJob.php
More file actions
254 lines (216 loc) · 6.02 KB
/
Copy pathBackgroundJob.php
File metadata and controls
254 lines (216 loc) · 6.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
namespace ADT\BackgroundQueue\Entity;
use DateTime;
use DateTimeImmutable;
use Exception;
use ReflectionClass;
final class BackgroundJob
{
const STATE_READY = 1; // připraveno
const STATE_PROCESSING = 2; // zpracovává se
const STATE_FINISHED = 3; // dokončeno
const STATE_TEMPORARILY_FAILED = 4; // opakovatelná chyba (např. nedostupné API)
const STATE_PERMANENTLY_FAILED = 5; // kritická chyba (např. chyba v implementaci)
const STATE_WAITING = 6; // ceka na pristi zpracovani
const STATE_REDUNDANT = 7; // je nadbytecny (kdyz isUnique = true)
const STATE_BROKER_FAILED = 8; // nepodarilo se ulozit job do brokera
const READY_TO_PROCESS_STATES = [
self::STATE_READY => self::STATE_READY,
self::STATE_TEMPORARILY_FAILED => self::STATE_TEMPORARILY_FAILED,
self::STATE_WAITING => self::STATE_WAITING,
self::STATE_BROKER_FAILED => self::STATE_BROKER_FAILED
];
const FINISHED_STATES = [
self::STATE_FINISHED => self::STATE_FINISHED,
self::STATE_REDUNDANT => self::STATE_REDUNDANT,
];
private ?int $id = null;
private string $queue;
private string $callbackName;
private $parameters;
private int $state = self::STATE_READY;
private DateTimeImmutable $createdAt;
private ?DateTimeImmutable $lastAttemptAt = null;
private int $numberOfAttempts = 0;
private ?string $errorMessage = null;
private ?string $serialGroup = null;
private ?string $identifier = null;
private bool $isUnique = false;
private ?int $postponedBy = null;
private bool $processedByBroker = false;
public function __construct()
{
$this->createdAt = new DateTimeImmutable();
}
public function __clone()
{
$this->id = null;
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): ?int
{
return $this->id;
}
public function setQueue(string $queue): self
{
$this->queue = $queue;
return $this;
}
public function getCallbackName(): string
{
return $this->callbackName;
}
public function setCallbackName(string $callbackName): self
{
$this->callbackName = $callbackName;
return $this;
}
public function getSerialGroup(): ?string
{
return $this->serialGroup;
}
public function setSerialGroup(?string $serialGroup): self
{
$this->serialGroup = $serialGroup;
return $this;
}
public function getParameters(): array
{
return unserialize($this->parameters);
}
/**
* @param object|array|string|int|float|bool|null $parameters
*/
public function setParameters($parameters): self
{
$this->parameters = serialize(is_array($parameters) ? $parameters : [$parameters]);
return $this;
}
public function getState(): int
{
return $this->state;
}
public function setState(int $state): self
{
$this->state = $state;
return $this;
}
public function getLastAttemptAt(): ?DateTimeImmutable
{
return $this->lastAttemptAt;
}
public function updateLastAttemptAt(): self
{
$this->lastAttemptAt = new DateTimeImmutable();
return $this;
}
public function getNumberOfAttempts(): int
{
return $this->numberOfAttempts;
}
public function increaseNumberOfAttempts(): self
{
$this->numberOfAttempts++;
return $this;
}
public function getErrorMessage(): ?string
{
return $this->errorMessage;
}
public function setErrorMessage(?string $errorMessage): self
{
$this->errorMessage = $errorMessage;
return $this;
}
public function getIdentifier(): ?string
{
return $this->identifier;
}
public function setIdentifier(?string $identifier): self
{
$this->identifier = $identifier;
return $this;
}
public function isUnique(): bool
{
return $this->isUnique;
}
public function setIsUnique(bool $isUnique): self
{
$this->isUnique = $isUnique;
return $this;
}
public function getPostponedBy(): ?int
{
return $this->postponedBy;
}
public function setPostponedBy(?int $postponedBy): self
{
$this->postponedBy = $postponedBy;
return $this;
}
public function getProcessedByBroker(): bool
{
return $this->processedByBroker;
}
public function setProcessedByBroker(bool $processedByBroker): self
{
$this->processedByBroker = $processedByBroker;
return $this;
}
public function isReadyForProcess(): bool
{
return isset(self::READY_TO_PROCESS_STATES[$this->state]);
}
/**
* @throws Exception
*/
public static function createEntity(array $values): BackgroundJob
{
$entity = (new ReflectionClass(self::class))->newInstanceWithoutConstructor();
$entity->id = $values['id'];
$entity->queue = $values['queue'];
$entity->callbackName = $values['callback_name'];
$entity->parameters = $values['parameters'];
$entity->state = $values['state'];
$entity->createdAt = new DateTimeImmutable($values['created_at']);
$entity->lastAttemptAt = $values['last_attempt_at'] ? new DateTimeImmutable($values['last_attempt_at']) : null;
$entity->numberOfAttempts = $values['number_of_attempts'];
$entity->errorMessage = $values['error_message'];
$entity->serialGroup = $values['serial_group'];
$entity->identifier = $values['identifier'];
$entity->isUnique = $values['is_unique'];
$entity->postponedBy = $values['postponed_by'];
$entity->processedByBroker = $values['processed_by_broker'];
return $entity;
}
public function getDatabaseValues(): array
{
return [
'queue' => $this->queue,
'callback_name' => $this->callbackName,
'parameters' => $this->parameters,
'state' => $this->state,
'created_at' => $this->createdAt->format('Y-m-d H:i:s'),
'last_attempt_at' => $this->lastAttemptAt ? $this->lastAttemptAt->format('Y-m-d H:i:s') : null,
'number_of_attempts' => $this->numberOfAttempts,
'error_message' => $this->errorMessage,
'serial_group' => $this->serialGroup,
'identifier' => $this->identifier,
'is_unique' => (int) $this->isUnique,
'postponed_by' => $this->postponedBy,
'processed_by_broker' => (int) $this->processedByBroker,
];
}
/**
* @throws Exception
*/
public function getAvailableFrom(): DateTime
{
return new DateTime('@' . (max($this->createdAt->getTimestamp(), $this->lastAttemptAt ? $this->lastAttemptAt->getTimestamp() : 0) + ceil($this->postponedBy/ 1000)));
}
}