forked from peppeocchi/php-cron-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScheduler.php
327 lines (279 loc) · 7.24 KB
/
Scheduler.php
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
<?php namespace GO;
use DateTime;
use Exception;
use InvalidArgumentException;
class Scheduler
{
/**
* The queued jobs.
*
* @var array
*/
private $jobs = [];
/**
* Successfully executed jobs.
*
* @var array
*/
private $executedJobs = [];
/**
* Failed jobs.
*
* @var FailedJob[]
*/
private $failedJobs = [];
/**
* The verbose output of the scheduled jobs.
*
* @var array
*/
private $outputSchedule = [];
/**
* @var array
*/
private $config;
/**
* Create new instance.
*
* @param array $config
*/
public function __construct(array $config = [])
{
$this->config = $config;
}
/**
* Queue a job for execution in the correct queue.
*
* @param Job $job
* @return void
*/
private function queueJob(Job $job)
{
$this->jobs[] = $job;
}
/**
* Prioritise jobs in background.
*
* @return array
*/
private function prioritiseJobs()
{
$background = [];
$foreground = [];
foreach ($this->jobs as $job) {
if ($job->canRunInBackground()) {
$background[] = $job;
} else {
$foreground[] = $job;
}
}
return array_merge($background, $foreground);
}
/**
* Get the queued jobs.
*
* @return array
*/
public function getQueuedJobs()
{
return $this->prioritiseJobs();
}
/**
* Queues a function execution.
*
* @param callable $fn The function to execute
* @param array $args Optional arguments to pass to the php script
* @param string $id Optional custom identifier
* @return Job
*/
public function call(callable $fn, $args = [], $id = null)
{
$job = new Job($fn, $args, $id);
$this->queueJob($job->configure($this->config));
return $job;
}
/**
* Queues a php script execution.
*
* @param string $script The path to the php script to execute
* @param string $bin Optional path to the php binary
* @param array $args Optional arguments to pass to the php script
* @param string $id Optional custom identifier
* @return Job
*/
public function php($script, $bin = null, $args = [], $id = null)
{
if (! is_string($script)) {
throw new InvalidArgumentException('The script should be a valid path to a file.');
}
$bin = $bin !== null && is_string($bin) && file_exists($bin) ?
$bin : (PHP_BINARY === '' ? '/usr/bin/php' : PHP_BINARY);
$job = new Job($bin . ' ' . $script, $args, $id);
if (! file_exists($script)) {
$this->pushFailedJob(
$job,
new InvalidArgumentException('The script should be a valid path to a file.')
);
}
$this->queueJob($job->configure($this->config));
return $job;
}
/**
* Queue a raw shell command.
*
* @param string $command The command to execute
* @param array $args Optional arguments to pass to the command
* @param string $id Optional custom identifier
* @return Job
*/
public function raw($command, $args = [], $id = null)
{
$job = new Job($command, $args, $id);
$this->queueJob($job->configure($this->config));
return $job;
}
/**
* Run the scheduler.
*
* @param DateTime $runTime Optional, run at specific moment
* @return array Executed jobs
*/
public function run(Datetime $runTime = null)
{
$jobs = $this->getQueuedJobs();
if (is_null($runTime)) {
$runTime = new DateTime('now');
}
foreach ($jobs as $job) {
if ($job->isDue($runTime)) {
try {
$job->run();
$this->pushExecutedJob($job);
} catch (\Exception $e) {
$this->pushFailedJob($job, $e);
}
}
}
return $this->getExecutedJobs();
}
/**
* Reset all collected data of last run.
*
* Call before run() if you call run() multiple times.
*/
public function resetRun()
{
// Reset collected data of last run
$this->executedJobs = [];
$this->failedJobs = [];
$this->outputSchedule = [];
return $this;
}
/**
* Add an entry to the scheduler verbose output array.
*
* @param string $string
* @return void
*/
private function addSchedulerVerboseOutput($string)
{
$now = '[' . (new DateTime('now'))->format('c') . '] ';
$this->outputSchedule[] = $now . $string;
// Print to stdoutput in light gray
// echo "\033[37m{$string}\033[0m\n";
}
/**
* Push a succesfully executed job.
*
* @param Job $job
* @return Job
*/
private function pushExecutedJob(Job $job)
{
$this->executedJobs[] = $job;
$compiled = $job->compile();
// If callable, log the string Closure
if (is_callable($compiled)) {
$compiled = 'Closure';
}
$this->addSchedulerVerboseOutput("Executing {$compiled}");
return $job;
}
/**
* Get the executed jobs.
*
* @return array
*/
public function getExecutedJobs()
{
return $this->executedJobs;
}
/**
* Push a failed job.
*
* @param Job $job
* @param Exception $e
* @return Job
*/
private function pushFailedJob(Job $job, Exception $e)
{
$this->failedJobs[] = new FailedJob($job, $e);
$compiled = $job->compile();
// If callable, log the string Closure
if (is_callable($compiled)) {
$compiled = 'Closure';
}
$this->addSchedulerVerboseOutput("{$e->getMessage()}: {$compiled}");
return $job;
}
/**
* Get the failed jobs.
*
* @return FailedJob[]
*/
public function getFailedJobs()
{
return $this->failedJobs;
}
/**
* Get the scheduler verbose output.
*
* @param string $type Allowed: text, html, array
* @return mixed The return depends on the requested $type
*/
public function getVerboseOutput($type = 'text')
{
switch ($type) {
case 'text':
return implode("\n", $this->outputSchedule);
case 'html':
return implode('<br>', $this->outputSchedule);
case 'array':
return $this->outputSchedule;
default:
throw new InvalidArgumentException('Invalid output type');
}
}
/**
* Remove all queued Jobs.
*/
public function clearJobs()
{
$this->jobs = [];
return $this;
}
/**
* Start a worker.
*
* @param array $seconds - When the scheduler should run
*/
public function work(array $seconds = [0])
{
while (true) {
if (in_array((int) date('s'), $seconds)) {
$this->run();
sleep(1);
}
}
}
}