-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsTask.php
More file actions
404 lines (354 loc) · 10.4 KB
/
sTask.php
File metadata and controls
404 lines (354 loc) · 10.4 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<?php namespace Seiger\sTask;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Collection;
use Seiger\sTask\Models\sTaskModel;
use Seiger\sTask\Models\sWorker;
use Seiger\sTask\Services\WorkerDiscovery;
use Seiger\sTask\Services\WorkerService;
use Seiger\sTask\Services\MetricsService;
use Seiger\sTask\Contracts\TaskInterface;
/**
* Class sTask
*
* This class handles asynchronous task management for Evolution CMS.
* Provides methods for creating, executing, and monitoring background tasks.
*
* @package Seiger\sTask
* @author Seiger IT Team
* @since 1.0.0
*/
class sTask
{
/**
* Worker service instance
*
* @var WorkerService
*/
private WorkerService $workerService;
/**
* Metrics service instance
*
* @var MetricsService
*/
private MetricsService $metricsService;
/**
* sTask constructor
*/
public function __construct()
{
$this->workerService = app(WorkerService::class);
$this->metricsService = app(MetricsService::class);
}
/**
* Create a new task
*
* @param string $identifier Worker identifier
* @param string $action Action to perform
* @param array $data Task data and parameters
* @param string $priority Task priority (low, normal, high)
* @param int $userId User ID who initiated the task
* @return sTaskModel
*/
public function create(string $identifier, string $action, array $data = [], string $priority = 'normal', ?int $userId = null): sTaskModel
{
return sTaskModel::create([
'identifier' => $identifier,
'action' => $action,
'meta' => $data,
'priority' => $priority,
'started_by' => $userId,
'status' => sTaskModel::TASK_STATUS_QUEUED,
'progress' => 0,
'attempts' => 0,
'max_attempts' => 3,
]);
}
/**
* Execute a task by invoking its action method
*
* @param sTaskModel $task
* @return bool
*/
public function execute(sTaskModel $task): bool
{
try {
// Record task start metrics
$this->metricsService->recordTaskStart($task);
// Mark task as running
$task->markAsRunning();
// Get worker for this task identifier using optimized service
$worker = $this->workerService->resolveWorker($task->identifier);
// Invoke the action method
$worker->invokeAction($task->action, $task, $task->meta);
$task->markAsFinished('Task completed successfully');
// Record successful completion metrics
$this->metricsService->recordTaskEnd($task, true);
return true;
} catch (\Exception $e) {
$task->markAsFailed($e->getMessage());
// Record failed completion metrics
$this->metricsService->recordTaskEnd($task, false, $e->getMessage());
// If max attempts reached, mark as failed permanently
if ($task->attempts >= $task->max_attempts) {
$task->markAsFailed('Max retry attempts reached. Task failed permanently.');
}
return false;
}
}
/**
* Get pending tasks
*
* @param int $limit
* @return Collection
*/
public function getPendingTasks(int $limit = 10): Collection
{
$priorities = [
'high' => 1,
'normal' => 5,
'low' => 10,
];
return sTaskModel::where('status', 10) // pending
->orderByRaw("CASE priority
WHEN 'high' THEN {$priorities['high']}
WHEN 'normal' THEN {$priorities['normal']}
WHEN 'low' THEN {$priorities['low']}
ELSE {$priorities['normal']} END")
->orderBy('created_at')
->limit($limit)
->get();
}
/**
* Process pending tasks
*
* @param int $batchSize
* @return int Number of processed tasks
*/
public function processPendingTasks(?int $batchSize = null): int
{
$batchSize = $batchSize ?? 10;
$processed = 0;
$tasks = $this->getPendingTasks($batchSize);
foreach ($tasks as $task) {
if ($this->execute($task)) {
$processed++;
}
}
return $processed;
}
/**
* Get task statistics
*
* @return array
*/
public function getStats(): array
{
return [
'pending' => sTaskModel::queued()->count(),
'running' => sTaskModel::running()->count(),
'completed' => sTaskModel::finished()->count(),
'failed' => sTaskModel::failed()->count(),
'total' => sTaskModel::count(),
'total_workers' => sWorker::count(),
'active_workers' => sWorker::active()->count(),
];
}
/**
* Get performance metrics
*
* @param int $hours Number of hours to analyze
* @return array Performance metrics
*/
public function getPerformanceMetrics(int $hours = 24): array
{
return $this->metricsService->getSystemSummary($hours);
}
/**
* Get worker performance statistics
*
* @param string|null $identifier Specific worker identifier
* @param int $hours Number of hours to analyze
* @return array Worker statistics
*/
public function getWorkerStats(?string $identifier = null, int $hours = 24): array
{
return $this->metricsService->getWorkerStats($identifier, $hours);
}
/**
* Get performance alerts
*
* @return array Performance alerts
*/
public function getPerformanceAlerts(): array
{
return $this->metricsService->getPerformanceAlerts();
}
/**
* Get worker service cache statistics
*
* @return array Cache statistics
*/
public function getCacheStats(): array
{
return $this->workerService->getCacheStats();
}
/**
* Clear worker cache
*
* @param string|null $identifier Worker identifier to clear, or null for all
* @return void
*/
public function clearWorkerCache(?string $identifier = null): void
{
$this->workerService->clearCache($identifier);
}
/**
* Clean old completed tasks
*
* @param int $days Number of days to keep completed tasks
* @return int Number of deleted tasks
*/
public function cleanOldTasks(int $days = 30): int
{
$cutoff = now()->subDays($days);
return sTaskModel::finished()
->where('finished_at', '<', $cutoff)
->delete();
}
/**
* Resolve worker class for task identifier
*
* @param string $identifier
* @return TaskInterface|null
*/
private function resolveWorker(string $identifier): ?TaskInterface
{
// First try to get from database
$worker = sWorker::where('identifier', $identifier)->where('active', true)->first();
if ($worker && $worker->canBeUsed()) {
try {
return $worker->getInstance();
} catch (\Exception $e) {
Log::error("Failed to resolve worker for identifier '{$identifier}': " . $e->getMessage());
}
}
// Try auto-discovery if worker not found
$this->autoDiscoverWorkers();
// Try again after discovery
$worker = sWorker::where('identifier', $identifier)->where('active', true)->first();
if ($worker && $worker->canBeUsed()) {
try {
return $worker->getInstance();
} catch (\Exception $e) {
Log::error("Failed to resolve worker for identifier '{$identifier}': " . $e->getMessage());
}
}
return null;
}
/**
* Auto-discover workers from registered packages
*
* @return void
*/
private function autoDiscoverWorkers(): void
{
// Auto-discovery is handled by WorkerDiscovery service
// This method is kept for compatibility but delegates to discoverWorkers()
$this->discoverWorkers();
}
/**
* Discover and register new workers
*
* @return array
*/
public function discoverWorkers(): array
{
$discovery = app(WorkerDiscovery::class);
return $discovery->discover();
}
/**
* Register a single worker
*
* @param string $className
* @return sWorker|null
*/
public function registerWorker(string $className): ?sWorker
{
$discovery = app(WorkerDiscovery::class);
return $discovery->registerWorker($className);
}
/**
* Clean orphaned workers
*
* @return int
*/
public function cleanOrphanedWorkers(): int
{
$discovery = app(WorkerDiscovery::class);
return $discovery->cleanOrphaned();
}
/**
* Get all workers
*
* @param bool $activeOnly
* @return Collection
*/
public function getWorkers(bool $activeOnly = false): Collection
{
$query = sWorker::ordered();
if ($activeOnly) {
$query->active();
}
return $query->get();
}
/**
* Get worker by identifier
*
* @param string $identifier
* @return sWorker|null
*/
public function getWorker(string $identifier): ?sWorker
{
return sWorker::where('identifier', $identifier)->first();
}
/**
* Activate worker
*
* @param string $identifier
* @return bool
*/
public function activateWorker(string $identifier): bool
{
$worker = $this->getWorker($identifier);
if (!$worker) {
return false;
}
$worker->active = true;
$result = $worker->save();
// Clear cache to ensure fresh data
if ($result) {
$this->workerService->clearCache($identifier);
}
return $result;
}
/**
* Deactivate worker
*
* @param string $identifier
* @return bool
*/
public function deactivateWorker(string $identifier): bool
{
$worker = $this->getWorker($identifier);
if (!$worker) {
return false;
}
$worker->active = false;
$result = $worker->save();
// Clear cache to ensure fresh data
if ($result) {
$this->workerService->clearCache($identifier);
}
return $result;
}
}