]> git.mxchange.org Git - friendica.git/blob - src/Core/Worker.php
Merge remote-tracking branch 'upstream/develop' into server-detection
[friendica.git] / src / Core / Worker.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core;
23
24 use Friendica\Core\Worker\Entity\Process;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Util\DateTimeFormat;
28
29 /**
30  * Contains the class for the worker background job processing
31  */
32 class Worker
33 {
34         const STATE_STARTUP    = 1; // Worker is in startup. This takes most time.
35         const STATE_LONG_LOOP  = 2; // Worker is processing the whole - long - loop.
36         const STATE_REFETCH    = 3; // Worker had refetched jobs in the execution loop.
37         const STATE_SHORT_LOOP = 4; // Worker is processing preassigned jobs, thus saving much time.
38
39         const FAST_COMMANDS = ['APDelivery', 'Delivery'];
40
41         const LOCK_PROCESS = 'worker_process';
42         const LOCK_WORKER = 'worker';
43
44         private static $up_start;
45         private static $db_duration = 0;
46         private static $db_duration_count = 0;
47         private static $db_duration_write = 0;
48         private static $db_duration_stat = 0;
49         private static $lock_duration = 0;
50         private static $last_update;
51         private static $state;
52         /** @var Process */
53         private static $process;
54
55         /**
56          * Processes the tasks that are in the workerqueue table
57          *
58          * @param boolean $run_cron Should the cron processes be executed?
59          * @param Process $process  The current running process
60          * @return void
61          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
62          */
63         public static function processQueue(bool $run_cron, Process $process)
64         {
65                 self::$up_start = microtime(true);
66
67                 // At first check the maximum load. We shouldn't continue with a high load
68                 if (DI::system()->isMaxLoadReached()) {
69                         Logger::notice('Pre check: maximum load reached, quitting.');
70                         return;
71                 }
72
73                 // We now start the process. This is done after the load check since this could increase the load.
74                 self::$process = $process;
75
76                 // Kill stale processes every 5 minutes
77                 $last_cleanup = DI::config()->get('system', 'worker_last_cleaned', 0);
78                 if (time() > ($last_cleanup + 300)) {
79                         DI::config()->set('system', 'worker_last_cleaned', time());
80                         Worker\Cron::killStaleWorkers();
81                 }
82
83                 // Check if the system is ready
84                 if (!self::isReady()) {
85                         return;
86                 }
87
88                 // Now we start additional cron processes if we should do so
89                 if ($run_cron) {
90                         Worker\Cron::run();
91                 }
92
93                 $last_check = $starttime = time();
94                 self::$state = self::STATE_STARTUP;
95
96                 // We fetch the next queue entry that is about to be executed
97                 while ($r = self::workerProcess()) {
98                         if (Worker\IPC::JobsExists(getmypid())) {
99                                 Worker\IPC::DeleteJobState(getmypid());
100                         }
101
102                         // Don't refetch when a worker fetches tasks for multiple workers
103                         $refetched = DI::config()->get('system', 'worker_multiple_fetch');
104                         foreach ($r as $entry) {
105                                 // The work will be done
106                                 if (!self::execute($entry)) {
107                                         Logger::notice('Process execution failed, quitting.');
108                                         return;
109                                 }
110
111                                 // Trying to fetch new processes - but only once when successful
112                                 if (!$refetched && DI::lock()->acquire(self::LOCK_PROCESS, 0)) {
113                                         self::findWorkerProcesses();
114                                         DI::lock()->release(self::LOCK_PROCESS);
115                                         self::$state = self::STATE_REFETCH;
116                                         $refetched = true;
117                                 } else {
118                                         self::$state = self::STATE_SHORT_LOOP;
119                                 }
120                         }
121
122                         // To avoid the quitting of multiple workers only one worker at a time will execute the check
123                         if ((time() > $last_check + 5) && !self::getWaitingJobForPID()) {
124                                 self::$state = self::STATE_LONG_LOOP;
125
126                                 if (DI::lock()->acquire(self::LOCK_WORKER, 0)) {
127                                 // Count active workers and compare them with a maximum value that depends on the load
128                                         if (self::tooMuchWorkers()) {
129                                                 Logger::notice('Active worker limit reached, quitting.');
130                                                 DI::lock()->release(self::LOCK_WORKER);
131                                                 return;
132                                         }
133
134                                         // Check free memory
135                                         if (DI::system()->isMinMemoryReached()) {
136                                                 Logger::warning('Memory limit reached, quitting.');
137                                                 DI::lock()->release(self::LOCK_WORKER);
138                                                 return;
139                                         }
140                                         DI::lock()->release(self::LOCK_WORKER);
141                                 }
142                                 $last_check = time();
143                         }
144
145                         // Quit the worker once every cron interval
146                         if (time() > ($starttime + (DI::config()->get('system', 'cron_interval') * 60))) {
147                                 Logger::info('Process lifetime reached, respawning.');
148                                 self::unclaimProcess($process);
149                                 if (Worker\Daemon::isMode()) {
150                                         Worker\IPC::SetJobState(true);
151                                 } else {
152                                         self::spawnWorker();
153                                 }
154                                 return;
155                         }
156                 }
157
158                 // Cleaning up. Possibly not needed, but it doesn't harm anything.
159                 if (Worker\Daemon::isMode()) {
160                         Worker\IPC::SetJobState(false);
161                 }
162                 Logger::info("Couldn't select a workerqueue entry, quitting process", ['pid' => getmypid()]);
163         }
164
165         /**
166          * Checks if the system is ready.
167          *
168          * Several system parameters like memory, connections and processes are checked.
169          *
170          * @return boolean
171          */
172         public static function isReady(): bool
173         {
174                 // Count active workers and compare them with a maximum value that depends on the load
175                 if (self::tooMuchWorkers()) {
176                         Logger::notice('Active worker limit reached, quitting.');
177                         return false;
178                 }
179
180                 // Do we have too few memory?
181                 if (DI::system()->isMinMemoryReached()) {
182                         Logger::warning('Memory limit reached, quitting.');
183                         return false;
184                 }
185
186                 // Possibly there are too much database connections
187                 if (self::maxConnectionsReached()) {
188                         Logger::warning('Maximum connections reached, quitting.');
189                         return false;
190                 }
191
192                 // Possibly there are too much database processes that block the system
193                 if (DI::system()->isMaxProcessesReached()) {
194                         Logger::warning('Maximum processes reached, quitting.');
195                         return false;
196                 }
197
198                 return true;
199         }
200
201         /**
202          * Check if non executed tasks do exist in the worker queue
203          *
204          * @return boolean Returns "true" if tasks are existing
205          * @throws \Exception
206          */
207         public static function entriesExists(): bool
208         {
209                 $stamp = (float)microtime(true);
210                 $exists = DBA::exists('workerqueue', ["NOT `done` AND `pid` = 0 AND `next_try` < ?", DateTimeFormat::utcNow()]);
211                 self::$db_duration += (microtime(true) - $stamp);
212                 return $exists;
213         }
214
215         /**
216          * Returns the number of deferred entries in the worker queue
217          *
218          * @return integer Number of deferred entries in the worker queue
219          * @throws \Exception
220          */
221         private static function deferredEntries(): int
222         {
223                 $stamp = (float)microtime(true);
224                 $count = DBA::count('workerqueue', ["NOT `done` AND `pid` = 0 AND `retrial` > ?", 0]);
225                 self::$db_duration += (microtime(true) - $stamp);
226                 self::$db_duration_count += (microtime(true) - $stamp);
227                 return $count;
228         }
229
230         /**
231          * Returns the number of non executed entries in the worker queue
232          *
233          * @return integer Number of non executed entries in the worker queue
234          * @throws \Exception
235          */
236         private static function totalEntries(): int
237         {
238                 $stamp = (float)microtime(true);
239                 $count = DBA::count('workerqueue', ['done' => false, 'pid' => 0]);
240                 self::$db_duration += (microtime(true) - $stamp);
241                 self::$db_duration_count += (microtime(true) - $stamp);
242                 return $count;
243         }
244
245         /**
246          * Returns the highest priority in the worker queue that isn't executed
247          *
248          * @return integer Number of active worker processes
249          * @throws \Exception
250          */
251         private static function highestPriority(): int
252         {
253                 $stamp = (float)microtime(true);
254                 $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
255                 $workerqueue = DBA::selectFirst('workerqueue', ['priority'], $condition, ['order' => ['priority']]);
256                 self::$db_duration += (microtime(true) - $stamp);
257                 if (DBA::isResult($workerqueue)) {
258                         return $workerqueue['priority'];
259                 } else {
260                         return 0;
261                 }
262         }
263
264         /**
265          * Returns if a process with the given priority is running
266          *
267          * @param integer $priority The priority that should be checked
268          *
269          * @return integer Is there a process running with that priority?
270          * @throws \Exception
271          */
272         private static function processWithPriorityActive(int $priority): int
273         {
274                 $condition = ["`priority` <= ? AND `pid` != 0 AND NOT `done`", $priority];
275                 return DBA::exists('workerqueue', $condition);
276         }
277
278         /**
279          * Checks if the given file is valid to be included
280          *
281          * @param mixed $file
282          * @return bool
283          */
284         private static function validateInclude(&$file): bool
285         {
286                 $orig_file = $file;
287
288                 $file = realpath($file);
289
290                 if (strpos($file, getcwd()) !== 0) {
291                         return false;
292                 }
293
294                 $file = str_replace(getcwd() . "/", "", $file, $count);
295                 if ($count != 1) {
296                         return false;
297                 }
298
299                 if ($orig_file !== $file) {
300                         return false;
301                 }
302
303                 $valid = false;
304                 if (strpos($file, "include/") === 0) {
305                         $valid = true;
306                 }
307
308                 if (strpos($file, "addon/") === 0) {
309                         $valid = true;
310                 }
311
312                 // Simply return flag
313                 return $valid;
314         }
315
316         /**
317          * Execute a worker entry
318          *
319          * @param array $queue Workerqueue entry
320          *
321          * @return boolean "true" if further processing should be stopped
322          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
323          */
324         public static function execute(array $queue): bool
325         {
326                 $mypid = getmypid();
327
328                 // Quit when in maintenance
329                 if (DI::config()->get('system', 'maintenance', false, true)) {
330                         Logger::notice("Maintenance mode - quit process", ['pid' => $mypid]);
331                         return false;
332                 }
333
334                 // Constantly check the number of parallel database processes
335                 if (DI::system()->isMaxProcessesReached()) {
336                         Logger::warning("Max processes reached for process", ['pid' => $mypid]);
337                         return false;
338                 }
339
340                 // Constantly check the number of available database connections to let the frontend be accessible at any time
341                 if (self::maxConnectionsReached()) {
342                         Logger::warning("Max connection reached for process", ['pid' => $mypid]);
343                         return false;
344                 }
345
346                 $argv = json_decode($queue['parameter'], true);
347                 if (!is_array($argv)) {
348                         $argv = [];
349                 }
350
351                 if (!empty($queue['command'])) {
352                         array_unshift($argv, $queue['command']);
353                 }
354
355                 if (empty($argv)) {
356                         Logger::warning('Parameter is empty', ['queue' => $queue]);
357                         return false;
358                 }
359
360                 // Check for existance and validity of the include file
361                 $include = $argv[0];
362
363                 if (method_exists(sprintf('Friendica\Worker\%s', $include), 'execute')) {
364                         // We constantly update the "executed" date every minute to avoid being killed too soon
365                         if (!isset(self::$last_update)) {
366                                 self::$last_update = strtotime($queue["executed"]);
367                         }
368
369                         $age = (time() - self::$last_update) / 60;
370                         self::$last_update = time();
371
372                         if ($age > 1) {
373                                 $stamp = (float)microtime(true);
374                                 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
375                                 self::$db_duration += (microtime(true) - $stamp);
376                                 self::$db_duration_write += (microtime(true) - $stamp);
377                         }
378
379                         array_shift($argv);
380
381                         self::execFunction($queue, $include, $argv, true);
382
383                         $stamp = (float)microtime(true);
384                         $condition = ["`id` = ? AND `next_try` < ?", $queue['id'], DateTimeFormat::utcNow()];
385                         if (DBA::update('workerqueue', ['done' => true], $condition)) {
386                                 DI::config()->set('system', 'last_worker_execution', DateTimeFormat::utcNow());
387                         }
388                         self::$db_duration = (microtime(true) - $stamp);
389                         self::$db_duration_write += (microtime(true) - $stamp);
390
391                         return true;
392                 }
393
394                 // The script could be provided as full path or only with the function name
395                 if ($include == basename($include)) {
396                         $include = "include/".$include.".php";
397                 }
398
399                 if (!self::validateInclude($include)) {
400                         Logger::warning("Include file is not valid", ['file' => $argv[0]]);
401                         $stamp = (float)microtime(true);
402                         DBA::delete('workerqueue', ['id' => $queue["id"]]);
403                         self::$db_duration = (microtime(true) - $stamp);
404                         self::$db_duration_write += (microtime(true) - $stamp);
405                         return true;
406                 }
407
408                 require_once $include;
409
410                 $funcname = str_replace(".php", "", basename($argv[0]))."_run";
411
412                 if (function_exists($funcname)) {
413                         // We constantly update the "executed" date every minute to avoid being killed too soon
414                         if (!isset(self::$last_update)) {
415                                 self::$last_update = strtotime($queue["executed"]);
416                         }
417
418                         $age = (time() - self::$last_update) / 60;
419                         self::$last_update = time();
420
421                         if ($age > 1) {
422                                 $stamp = (float)microtime(true);
423                                 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
424                                 self::$db_duration += (microtime(true) - $stamp);
425                                 self::$db_duration_write += (microtime(true) - $stamp);
426                         }
427
428                         self::execFunction($queue, $funcname, $argv, false);
429
430                         $stamp = (float)microtime(true);
431                         if (DBA::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
432                                 DI::config()->set('system', 'last_worker_execution', DateTimeFormat::utcNow());
433                         }
434                         self::$db_duration = (microtime(true) - $stamp);
435                         self::$db_duration_write += (microtime(true) - $stamp);
436                 } else {
437                         Logger::warning("Function does not exist", ['function' => $funcname]);
438                         $stamp = (float)microtime(true);
439                         DBA::delete('workerqueue', ['id' => $queue["id"]]);
440                         self::$db_duration = (microtime(true) - $stamp);
441                         self::$db_duration_write += (microtime(true) - $stamp);
442                 }
443
444                 return true;
445         }
446
447         /**
448          * Execute a function from the queue
449          *
450          * @param array   $queue       Workerqueue entry
451          * @param string  $funcname    name of the function
452          * @param array   $argv        Array of values to be passed to the function
453          * @param boolean $method_call boolean
454          * @return void
455          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
456          */
457         private static function execFunction(array $queue, string $funcname, array $argv, bool $method_call)
458         {
459                 $a = DI::app();
460
461                 $cooldown = DI::config()->get("system", "worker_cooldown", 0);
462                 if ($cooldown > 0) {
463                         Logger::info('Pre execution cooldown.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'cooldown' => $cooldown]);
464                         sleep($cooldown);
465                 }
466
467                 Logger::enableWorker($funcname);
468
469                 Logger::info("Process start.", ['priority' => $queue['priority'], 'id' => $queue["id"]]);
470
471                 $stamp = (float)microtime(true);
472
473                 // We use the callstack here to analyze the performance of executed worker entries.
474                 // For this reason the variables have to be initialized.
475                 DI::profiler()->reset();
476
477                 $a->setQueue($queue);
478
479                 $up_duration = microtime(true) - self::$up_start;
480
481                 // Reset global data to avoid interferences
482                 unset($_SESSION);
483
484                 // Set the workerLogger as new default logger
485                 if ($method_call) {
486                         call_user_func_array(sprintf('Friendica\Worker\%s::execute', $funcname), $argv);
487                 } else {
488                         $funcname($argv, count($argv));
489                 }
490
491                 Logger::disableWorker();
492
493                 $a->setQueue([]);
494
495                 $duration = (microtime(true) - $stamp);
496
497                 /* With these values we can analyze how effective the worker is.
498                  * The database and rest time should be low since this is the unproductive time.
499                  * The execution time is the productive time.
500                  * By changing parameters like the maximum number of workers we can check the effectivness.
501                 */
502                 $dbtotal = round(self::$db_duration, 2);
503                 $dbread  = round(self::$db_duration - (self::$db_duration_count + self::$db_duration_write + self::$db_duration_stat), 2);
504                 $dbcount = round(self::$db_duration_count, 2);
505                 $dbstat  = round(self::$db_duration_stat, 2);
506                 $dbwrite = round(self::$db_duration_write, 2);
507                 $dblock  = round(self::$lock_duration, 2);
508                 $rest    = round(max(0, $up_duration - (self::$db_duration + self::$lock_duration)), 2);
509                 $exec    = round($duration, 2);
510
511                 Logger::info('Performance:', ['state' => self::$state, 'count' => $dbcount, 'stat' => $dbstat, 'write' => $dbwrite, 'lock' => $dblock, 'total' => $dbtotal, 'rest' => $rest, 'exec' => $exec]);
512
513                 self::$up_start = microtime(true);
514                 self::$db_duration = 0;
515                 self::$db_duration_count = 0;
516                 self::$db_duration_stat = 0;
517                 self::$db_duration_write = 0;
518                 self::$lock_duration = 0;
519
520                 if ($duration > 3600) {
521                         Logger::info('Longer than 1 hour.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
522                 } elseif ($duration > 600) {
523                         Logger::info('Longer than 10 minutes.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
524                 } elseif ($duration > 300) {
525                         Logger::info('Longer than 5 minutes.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
526                 } elseif ($duration > 120) {
527                         Logger::info('Longer than 2 minutes.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
528                 }
529
530                 Logger::info('Process done.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'duration' => round($duration, 3)]);
531
532                 DI::profiler()->saveLog(DI::logger(), "ID " . $queue["id"] . ": " . $funcname);
533
534                 if ($cooldown > 0) {
535                         Logger::info('Post execution cooldown.', ['priority' => $queue['priority'], 'id' => $queue["id"], 'cooldown' => $cooldown]);
536                         sleep($cooldown);
537                 }
538         }
539
540         /**
541          * Checks if the number of database connections has reached a critical limit.
542          *
543          * @return bool Are more than 3/4 of the maximum connections used?
544          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
545          */
546         private static function maxConnectionsReached(): bool
547         {
548                 // Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself.
549                 $max = DI::config()->get("system", "max_connections");
550
551                 // Fetch the percentage level where the worker will get active
552                 $maxlevel = DI::config()->get("system", "max_connections_level", 75);
553
554                 if ($max == 0) {
555                         // the maximum number of possible user connections can be a system variable
556                         $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'");
557                         if (DBA::isResult($r)) {
558                                 $max = $r["Value"];
559                         }
560                         // Or it can be granted. This overrides the system variable
561                         $stamp = (float)microtime(true);
562                         $r = DBA::p('SHOW GRANTS');
563                         self::$db_duration += (microtime(true) - $stamp);
564                         while ($grants = DBA::fetch($r)) {
565                                 $grant = array_pop($grants);
566                                 if (stristr($grant, "GRANT USAGE ON")) {
567                                         if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match)) {
568                                                 $max = $match[1];
569                                         }
570                                 }
571                         }
572                         DBA::close($r);
573                 }
574
575                 // If $max is set we will use the processlist to determine the current number of connections
576                 // The processlist only shows entries of the current user
577                 if ($max != 0) {
578                         $stamp = (float)microtime(true);
579                         $r = DBA::p('SHOW PROCESSLIST');
580                         self::$db_duration += (microtime(true) - $stamp);
581                         $used = DBA::numRows($r);
582                         DBA::close($r);
583
584                         Logger::info("Connection usage (user values)", ['usage' => $used, 'max' => $max]);
585
586                         $level = ($used / $max) * 100;
587
588                         if ($level >= $maxlevel) {
589                                 Logger::warning("Maximum level (".$maxlevel."%) of user connections reached: ".$used."/".$max);
590                                 return true;
591                         }
592                 }
593
594                 // We will now check for the system values.
595                 // This limit could be reached although the user limits are fine.
596                 $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_connections'");
597                 if (!DBA::isResult($r)) {
598                         return false;
599                 }
600                 $max = intval($r["Value"]);
601                 if ($max == 0) {
602                         return false;
603                 }
604                 $r = DBA::fetchFirst("SHOW STATUS WHERE `variable_name` = 'Threads_connected'");
605                 if (!DBA::isResult($r)) {
606                         return false;
607                 }
608                 $used = intval($r["Value"]);
609                 if ($used == 0) {
610                         return false;
611                 }
612                 Logger::info("Connection usage (system values)", ['used' => $used, 'max' => $max]);
613
614                 $level = $used / $max * 100;
615
616                 if ($level < $maxlevel) {
617                         return false;
618                 }
619                 Logger::warning("Maximum level (".$level."%) of system connections reached: ".$used."/".$max);
620                 return true;
621         }
622
623
624         /**
625          * Checks if the number of active workers exceeds the given limits
626          *
627          * @return bool Are there too much workers running?
628          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
629          */
630         private static function tooMuchWorkers(): bool
631         {
632                 $queues = DI::config()->get("system", "worker_queues", 10);
633
634                 $maxqueues = $queues;
635
636                 $active = self::activeWorkers();
637
638                 // Decrease the number of workers at higher load
639                 $load = System::currentLoad();
640                 if ($load) {
641                         $maxsysload = intval(DI::config()->get("system", "maxloadavg", 20));
642
643                         /* Default exponent 3 causes queues to rapidly decrease as load increases.
644                          * If you have 20 max queues at idle, then you get only 5 queues at 37.1% of $maxsysload.
645                          * For some environments, this rapid decrease is not needed.
646                          * With exponent 1, you could have 20 max queues at idle and 13 at 37% of $maxsysload.
647                          */
648                         $exponent = intval(DI::config()->get('system', 'worker_load_exponent', 3));
649                         $slope = pow(max(0, $maxsysload - $load) / $maxsysload, $exponent);
650                         $queues = intval(ceil($slope * $maxqueues));
651
652                         $processlist = '';
653
654                         if (DI::config()->get('system', 'worker_jpm')) {
655                                 $intervals = explode(',', DI::config()->get('system', 'worker_jpm_range'));
656                                 $jobs_per_minute = [];
657                                 foreach ($intervals as $interval) {
658                                         if ($interval == 0) {
659                                                 continue;
660                                         } else {
661                                                 $interval = (int)$interval;
662                                         }
663
664                                         $stamp = (float)microtime(true);
665                                         $jobs = DBA::count('workerqueue', ["`done` AND `executed` > ?", DateTimeFormat::utc('now - ' . $interval . ' minute')]);
666                                         self::$db_duration += (microtime(true) - $stamp);
667                                         self::$db_duration_stat += (microtime(true) - $stamp);
668                                         $jobs_per_minute[$interval] = number_format($jobs / $interval, 0);
669                                 }
670                                 $processlist = ' - jpm: '.implode('/', $jobs_per_minute);
671                         }
672
673                         // Create a list of queue entries grouped by their priority
674                         $listitem = [0 => ''];
675
676                         $idle_workers = $active;
677
678                         $deferred = self::deferredEntries();
679
680                         if (DI::config()->get('system', 'worker_debug')) {
681                                 $waiting_processes = 0;
682                                 // Now adding all processes with workerqueue entries
683                                 $stamp = (float)microtime(true);
684                                 $jobs = DBA::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` WHERE NOT `done` GROUP BY `priority`");
685                                 self::$db_duration += (microtime(true) - $stamp);
686                                 self::$db_duration_stat += (microtime(true) - $stamp);
687                                 while ($entry = DBA::fetch($jobs)) {
688                                         $stamp = (float)microtime(true);
689                                         $running = DBA::count('workerqueue-view', ['priority' => $entry['priority']]);
690                                         self::$db_duration += (microtime(true) - $stamp);
691                                         self::$db_duration_stat += (microtime(true) - $stamp);
692                                         $idle_workers -= $running;
693                                         $waiting_processes += $entry["entries"];
694                                         $listitem[$entry['priority']] = $entry['priority'] . ":" . $running . "/" . $entry["entries"];
695                                 }
696                                 DBA::close($jobs);
697                         } else {
698                                 $waiting_processes =  self::totalEntries();
699                                 $stamp = (float)microtime(true);
700                                 $jobs = DBA::p("SELECT COUNT(*) AS `running`, `priority` FROM `workerqueue-view` GROUP BY `priority` ORDER BY `priority`");
701                                 self::$db_duration += (microtime(true) - $stamp);
702                                 self::$db_duration_stat += (microtime(true) - $stamp);
703
704                                 while ($entry = DBA::fetch($jobs)) {
705                                         $idle_workers -= $entry["running"];
706                                         $listitem[$entry['priority']] = $entry['priority'].":".$entry["running"];
707                                 }
708                                 DBA::close($jobs);
709                         }
710
711                         $waiting_processes -= $deferred;
712
713                         $listitem[0] = "0:" . max(0, $idle_workers);
714
715                         $processlist .= ' ('.implode(', ', $listitem).')';
716
717                         if (DI::config()->get("system", "worker_fastlane", false) && ($queues > 0) && ($active >= $queues) && self::entriesExists()) {
718                                 $top_priority = self::highestPriority();
719                                 $high_running = self::processWithPriorityActive($top_priority);
720
721                                 if (!$high_running && ($top_priority > PRIORITY_UNDEFINED) && ($top_priority < PRIORITY_NEGLIGIBLE)) {
722                                         Logger::info("Jobs with a higher priority are waiting but none is executed. Open a fastlane.", ['priority' => $top_priority]);
723                                         $queues = $active + 1;
724                                 }
725                         }
726
727                         Logger::notice("Load: " . $load ."/" . $maxsysload . " - processes: " . $deferred . "/" . $active . "/" . $waiting_processes . $processlist . " - maximum: " . $queues . "/" . $maxqueues);
728
729                         // Are there fewer workers running as possible? Then fork a new one.
730                         if (!DI::config()->get("system", "worker_dont_fork", false) && ($queues > ($active + 1)) && self::entriesExists()) {
731                                 Logger::info("There are fewer workers as possible, fork a new worker.", ['active' => $active, 'queues' => $queues]);
732                                 if (Worker\Daemon::isMode()) {
733                                         Worker\IPC::SetJobState(true);
734                                 } else {
735                                         self::spawnWorker();
736                                 }
737                         }
738                 }
739
740                 // if there are too much worker, we don't spawn a new one.
741                 if (Worker\Daemon::isMode() && ($active > $queues)) {
742                         Worker\IPC::SetJobState(false);
743                 }
744
745                 return $active > $queues;
746         }
747
748         /**
749          * Returns the number of active worker processes
750          *
751          * @return integer Number of active worker processes
752          * @throws \Exception
753          */
754         private static function activeWorkers(): int
755         {
756                 $stamp = (float)microtime(true);
757                 $count = DI::process()->countCommand('Worker.php');
758                 self::$db_duration += (microtime(true) - $stamp);
759                 self::$db_duration_count += (microtime(true) - $stamp);
760                 return $count;
761         }
762
763         /**
764          * Returns the number of active worker processes
765          *
766          * @return array List of worker process ids
767          * @throws \Exception
768          */
769         private static function getWorkerPIDList(): array
770         {
771                 $ids = [];
772                 $stamp = (float)microtime(true);
773
774                 $queues = DBA::p("SELECT `process`.`pid`, COUNT(`workerqueue`.`pid`) AS `entries` FROM `process`
775                         LEFT JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` AND NOT `workerqueue`.`done`
776                         GROUP BY `process`.`pid`");
777                 while ($queue = DBA::fetch($queues)) {
778                         $ids[$queue['pid']] = $queue['entries'];
779                 }
780                 DBA::close($queues);
781
782                 self::$db_duration += (microtime(true) - $stamp);
783                 self::$db_duration_count += (microtime(true) - $stamp);
784                 return $ids;
785         }
786
787         /**
788          * Returns waiting jobs for the current process id
789          *
790          * @return array|bool waiting workerqueue jobs or FALSE on failture
791          * @throws \Exception
792          */
793         private static function getWaitingJobForPID()
794         {
795                 $stamp = (float)microtime(true);
796                 $r = DBA::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
797                 self::$db_duration += (microtime(true) - $stamp);
798                 if (DBA::isResult($r)) {
799                         return DBA::toArray($r);
800                 }
801                 DBA::close($r);
802
803                 return false;
804         }
805
806         /**
807          * Returns the next jobs that should be executed
808          * @param int $limit
809          * @return array array with next jobs
810          * @throws \Exception
811          */
812         private static function nextProcess(int $limit): array
813         {
814                 $priority = self::nextPriority();
815                 if (empty($priority)) {
816                         Logger::info('No tasks found');
817                         return [];
818                 }
819
820                 $ids = [];
821                 $stamp = (float)microtime(true);
822                 $condition = ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()];
823                 $tasks = DBA::select('workerqueue', ['id', 'command', 'parameter'], $condition, ['limit' => $limit, 'order' => ['retrial', 'created']]);
824                 self::$db_duration += (microtime(true) - $stamp);
825                 while ($task = DBA::fetch($tasks)) {
826                         $ids[] = $task['id'];
827                         // Only continue that loop while we are storing commands that can be processed quickly
828                         if (!empty($task['command'])) {
829                                 $command = $task['command'];
830                         } else {
831                                 $command = json_decode($task['parameter'])[0];
832                         }
833
834                         if (!in_array($command, self::FAST_COMMANDS)) {
835                                 break;
836                         }
837                 }
838                 DBA::close($tasks);
839
840                 Logger::info('Found:', ['priority' => $priority, 'id' => $ids]);
841                 return $ids;
842         }
843
844         /**
845          * Returns the priority of the next workerqueue job
846          *
847          * @return string|bool priority or FALSE on failure
848          * @throws \Exception
849          */
850         private static function nextPriority()
851         {
852                 $waiting = [];
853                 $priorities = [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE];
854                 foreach ($priorities as $priority) {
855                         $stamp = (float)microtime(true);
856                         if (DBA::exists('workerqueue', ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()])) {
857                                 $waiting[$priority] = true;
858                         }
859                         self::$db_duration += (microtime(true) - $stamp);
860                 }
861
862                 if (!empty($waiting[PRIORITY_CRITICAL])) {
863                         return PRIORITY_CRITICAL;
864                 }
865
866                 $running = [];
867                 $running_total = 0;
868                 $stamp = (float)microtime(true);
869                 $processes = DBA::p("SELECT COUNT(DISTINCT(`pid`)) AS `running`, `priority` FROM `workerqueue-view` GROUP BY `priority`");
870                 self::$db_duration += (microtime(true) - $stamp);
871                 while ($process = DBA::fetch($processes)) {
872                         $running[$process['priority']] = $process['running'];
873                         $running_total += $process['running'];
874                 }
875                 DBA::close($processes);
876
877                 foreach ($priorities as $priority) {
878                         if (!empty($waiting[$priority]) && empty($running[$priority])) {
879                                 Logger::info('No running worker found with priority {priority} - assigning it.', ['priority' => $priority]);
880                                 return $priority;
881                         }
882                 }
883
884                 $active = max(self::activeWorkers(), $running_total);
885                 $priorities = max(count($waiting), count($running));
886                 $exponent = 2;
887
888                 $total = 0;
889                 for ($i = 1; $i <= $priorities; ++$i) {
890                         $total += pow($i, $exponent);
891                 }
892
893                 $limit = [];
894                 for ($i = 1; $i <= $priorities; ++$i) {
895                         $limit[$priorities - $i] = max(1, round($active * (pow($i, $exponent) / $total)));
896                 }
897
898                 $i = 0;
899                 foreach ($running as $priority => $workers) {
900                         if ($workers < $limit[$i++]) {
901                                 Logger::info('Priority {priority} has got {workers} workers out of a limit of {limit}', ['priority' => $priority, 'workers' => $workers, 'limit' => $limit[$i - 1]]);
902                                 return $priority;
903                         }
904                 }
905
906                 if (!empty($waiting)) {
907                         $priority = array_keys($waiting)[0];
908                         Logger::info('No underassigned priority found, now taking the highest priority.', ['priority' => $priority]);
909                         return $priority;
910                 }
911
912                 return false;
913         }
914
915         /**
916          * Find and claim the next worker process for us
917          *
918          * @return void
919          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
920          */
921         private static function findWorkerProcesses()
922         {
923                 $fetch_limit = DI::config()->get('system', 'worker_fetch_limit', 1);
924
925                 if (DI::config()->get('system', 'worker_multiple_fetch')) {
926                         $pids = [];
927                         foreach (self::getWorkerPIDList() as $pid => $count) {
928                                 if ($count <= $fetch_limit) {
929                                         $pids[] = $pid;
930                                 }
931                         }
932                         if (empty($pids)) {
933                                 return;
934                         }
935                         $limit = $fetch_limit * count($pids);
936                 } else {
937                         $pids = [getmypid()];
938                         $limit = $fetch_limit;
939                 }
940
941                 $ids = self::nextProcess($limit);
942                 $limit -= count($ids);
943
944                 // If there is not enough results we check without priority limit
945                 if ($limit > 0) {
946                         $stamp = (float)microtime(true);
947                         $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
948                         $tasks = DBA::select('workerqueue', ['id', 'command', 'parameter'], $condition, ['limit' => $limit, 'order' => ['priority', 'retrial', 'created']]);
949                         self::$db_duration += (microtime(true) - $stamp);
950
951                         while ($task = DBA::fetch($tasks)) {
952                                 $ids[] = $task['id'];
953                                 // Only continue that loop while we are storing commands that can be processed quickly
954                                 if (!empty($task['command'])) {
955                                         $command = $task['command'];
956                                 } else {
957                                         $command = json_decode($task['parameter'])[0];
958                                 }
959                                 if (!in_array($command, self::FAST_COMMANDS)) {
960                                         break;
961                                 }
962                         }
963                         DBA::close($tasks);
964                 }
965
966                 if (empty($ids)) {
967                         return;
968                 }
969
970                 // Assign the task ids to the workers
971                 $worker = [];
972                 foreach (array_unique($ids) as $id) {
973                         $pid = next($pids);
974                         if (!$pid) {
975                                 $pid = reset($pids);
976                         }
977                         $worker[$pid][] = $id;
978                 }
979
980                 $stamp = (float)microtime(true);
981                 foreach ($worker as $worker_pid => $worker_ids) {
982                         Logger::info('Set queue entry', ['pid' => $worker_pid, 'ids' => $worker_ids]);
983                         DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $worker_pid],
984                                 ['id' => $worker_ids, 'done' => false, 'pid' => 0]);
985                 }
986                 self::$db_duration += (microtime(true) - $stamp);
987                 self::$db_duration_write += (microtime(true) - $stamp);
988         }
989
990         /**
991          * Returns the next worker process
992          *
993          * @return array worker processes
994          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
995          */
996         public static function workerProcess(): array
997         {
998                 // There can already be jobs for us in the queue.
999                 $waiting = self::getWaitingJobForPID();
1000                 if (!empty($waiting)) {
1001                         return $waiting;
1002                 }
1003
1004                 $stamp = (float)microtime(true);
1005                 if (!DI::lock()->acquire(self::LOCK_PROCESS)) {
1006                         return [];
1007                 }
1008                 self::$lock_duration += (microtime(true) - $stamp);
1009
1010                 self::findWorkerProcesses();
1011
1012                 DI::lock()->release(self::LOCK_PROCESS);
1013
1014                 // Prevents "Return value of Friendica\Core\Worker::workerProcess() must be of the type array, bool returned"
1015                 $process = self::getWaitingJobForPID();
1016                 return (is_array($process) ? $process : []);
1017         }
1018
1019         /**
1020          * Removes a workerqueue entry from the current process
1021          *
1022          * @param Process $process the process behind the workerqueue
1023          *
1024          * @return void
1025          * @throws \Exception
1026          */
1027         public static function unclaimProcess(Process $process)
1028         {
1029                 $stamp = (float)microtime(true);
1030                 DBA::update('workerqueue', ['executed' => DBA::NULL_DATETIME, 'pid' => 0], ['pid' => $process->pid, 'done' => false]);
1031                 self::$db_duration += (microtime(true) - $stamp);
1032                 self::$db_duration_write += (microtime(true) - $stamp);
1033         }
1034
1035         /**
1036          * Fork a child process
1037          *
1038          * @param boolean $do_cron
1039          * @return void
1040          */
1041         private static function forkProcess(bool $do_cron)
1042         {
1043                 if (DI::system()->isMinMemoryReached()) {
1044                         Logger::warning('Memory limit reached - quitting');
1045                         return;
1046                 }
1047
1048                 // Children inherit their parent's database connection.
1049                 // To avoid problems we disconnect and connect both parent and child
1050                 DBA::disconnect();
1051                 $pid = pcntl_fork();
1052                 if ($pid == -1) {
1053                         DBA::connect();
1054                         Logger::warning('Could not spawn worker');
1055                         return;
1056                 } elseif ($pid) {
1057                         // The parent process continues here
1058                         DBA::connect();
1059
1060                         Worker\IPC::SetJobState(true, $pid);
1061                         Logger::info('Spawned new worker', ['pid' => $pid]);
1062
1063                         $cycles = 0;
1064                         while (Worker\IPC::JobsExists($pid) && (++$cycles < 100)) {
1065                                 usleep(10000);
1066                         }
1067
1068                         Logger::info('Spawned worker is ready', ['pid' => $pid, 'wait_cycles' => $cycles]);
1069                         return;
1070                 }
1071
1072                 // We now are in the new worker
1073                 DBA::connect();
1074
1075                 DI::flushLogger();
1076                 $process = DI::process()->create(getmypid(), basename(__FILE__));
1077
1078                 $cycles = 0;
1079                 while (!Worker\IPC::JobsExists($process->pid) && (++$cycles < 100)) {
1080                         usleep(10000);
1081                 }
1082
1083                 Logger::info('Worker spawned', ['pid' => $process->pid, 'wait_cycles' => $cycles]);
1084
1085                 self::processQueue($do_cron, $process);
1086
1087                 self::unclaimProcess($process);
1088
1089                 Worker\IPC::SetJobState(false, $process->pid);
1090                 DI::process()->delete($process);
1091                 Logger::info('Worker ended', ['pid' => $process->pid]);
1092                 exit();
1093         }
1094
1095         /**
1096          * Spawns a new worker
1097          *
1098          * @param bool $do_cron
1099          * @return void
1100          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1101          */
1102         public static function spawnWorker(bool $do_cron = false)
1103         {
1104                 if (Worker\Daemon::isMode() && DI::config()->get('system', 'worker_fork')) {
1105                         self::forkProcess($do_cron);
1106                 } else {
1107                         DI::system()->run('bin/worker.php', ['no_cron' => !$do_cron]);
1108                 }
1109                 if (Worker\Daemon::isMode()) {
1110                         Worker\IPC::SetJobState(false);
1111                 }
1112         }
1113
1114         /**
1115          * Adds tasks to the worker queue
1116          *
1117          * @param (integer|array) priority or parameter array, strings are deprecated and are ignored
1118          *
1119          * next args are passed as $cmd command line
1120          * or: Worker::add(PRIORITY_HIGH, "Notifier", Delivery::DELETION, $drop_id);
1121          * or: Worker::add(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "Delivery", $post_id);
1122          *
1123          * @return int "0" if worker queue entry already existed or there had been an error, otherwise the ID of the worker task
1124          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1125          * @note $cmd and string args are surrounded with ""
1126          *
1127          * @hooks 'proc_run'
1128          *    array $arr
1129          *
1130          */
1131         public static function add(...$args)
1132         {
1133                 if (!count($args)) {
1134                         return 0;
1135                 }
1136
1137                 $arr = ['args' => $args, 'run_cmd' => true];
1138
1139                 Hook::callAll("proc_run", $arr);
1140                 if (!$arr['run_cmd'] || !count($args)) {
1141                         return 1;
1142                 }
1143
1144                 $priority = PRIORITY_MEDIUM;
1145                 // Don't fork from frontend tasks by default
1146                 $dont_fork = DI::config()->get("system", "worker_dont_fork", false) || !DI::mode()->isBackend();
1147                 $created = DateTimeFormat::utcNow();
1148                 $delayed = DBA::NULL_DATETIME;
1149                 $force_priority = false;
1150
1151                 $run_parameter = array_shift($args);
1152
1153                 if (is_int($run_parameter)) {
1154                         $priority = $run_parameter;
1155                 } elseif (is_array($run_parameter)) {
1156                         if (isset($run_parameter['delayed'])) {
1157                                 $delayed = $run_parameter['delayed'];
1158                         }
1159                         if (isset($run_parameter['priority'])) {
1160                                 $priority = $run_parameter['priority'];
1161                         }
1162                         if (isset($run_parameter['created'])) {
1163                                 $created = $run_parameter['created'];
1164                         }
1165                         if (isset($run_parameter['dont_fork'])) {
1166                                 $dont_fork = $run_parameter['dont_fork'];
1167                         }
1168                         if (isset($run_parameter['force_priority'])) {
1169                                 $force_priority = $run_parameter['force_priority'];
1170                         }
1171                 } else {
1172                         throw new \InvalidArgumentException('Priority number or task parameter array expected as first argument');
1173                 }
1174
1175                 $command = array_shift($args);
1176                 $parameters = json_encode($args);
1177                 $found = DBA::exists('workerqueue', ['command' => $command, 'parameter' => $parameters, 'done' => false]);
1178                 $added = 0;
1179
1180                 if (!is_int($priority) || !in_array($priority, PRIORITIES)) {
1181                         Logger::warning('Invalid priority', ['priority' => $priority, 'command' => $command, 'callstack' => System::callstack(20)]);
1182                         $priority = PRIORITY_MEDIUM;
1183                 }
1184
1185                 // Quit if there was a database error - a precaution for the update process to 3.5.3
1186                 if (DBA::errorNo() != 0) {
1187                         return 0;
1188                 }
1189
1190                 if (!$found) {
1191                         if (!DBA::insert('workerqueue', ['command' => $command, 'parameter' => $parameters, 'created' => $created,
1192                                 'priority' => $priority, 'next_try' => $delayed])) {
1193                                 return 0;
1194                         }
1195                         $added = DBA::lastInsertId();
1196                 } elseif ($force_priority) {
1197                         DBA::update('workerqueue', ['priority' => $priority], ['command' => $command, 'parameter' => $parameters, 'done' => false, 'pid' => 0]);
1198                 }
1199
1200                 // Set the IPC flag to ensure an immediate process execution via daemon
1201                 if (Worker\Daemon::isMode()) {
1202                         Worker\IPC::SetJobState(true);
1203                 }
1204
1205                 Worker\Daemon::checkState();
1206
1207                 // Should we quit and wait for the worker to be called as a cronjob?
1208                 if ($dont_fork) {
1209                         return $added;
1210                 }
1211
1212                 // If there is a lock then we don't have to check for too much worker
1213                 if (!DI::lock()->acquire(self::LOCK_WORKER, 0)) {
1214                         return $added;
1215                 }
1216
1217                 // If there are already enough workers running, don't fork another one
1218                 $quit = self::tooMuchWorkers();
1219                 DI::lock()->release(self::LOCK_WORKER);
1220
1221                 if ($quit) {
1222                         return $added;
1223                 }
1224
1225                 // Quit on daemon mode
1226                 if (Worker\Daemon::isMode()) {
1227                         return $added;
1228                 }
1229
1230                 // Now call the worker to execute the jobs that we just added to the queue
1231                 self::spawnWorker();
1232
1233                 return $added;
1234         }
1235
1236         public static function countWorkersByCommand(string $command): int
1237         {
1238                 return DBA::count('workerqueue', ['done' => false, 'pid' => 0, 'command' => $command]);
1239         }
1240
1241         /**
1242          * Returns the next retrial level for worker jobs.
1243          * This function will skip levels when jobs are older.
1244          *
1245          * @param array $queue Worker queue entry
1246          * @param integer $max_level maximum retrial level
1247          * @return integer the next retrial level value
1248          */
1249         private static function getNextRetrial(array $queue, int $max_level): int
1250         {
1251                 $created = strtotime($queue['created']);
1252                 $retrial_time = time() - $created;
1253
1254                 $new_retrial = $queue['retrial'] + 1;
1255                 $total = 0;
1256                 for ($retrial = 0; $retrial <= $max_level + 1; ++$retrial) {
1257                         $delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
1258                         $total += $delay;
1259                         if (($total < $retrial_time) && ($retrial > $queue['retrial'])) {
1260                                 $new_retrial = $retrial;
1261                         }
1262                 }
1263                 Logger::notice('New retrial for task', ['id' => $queue['id'], 'created' => $queue['created'], 'old' => $queue['retrial'], 'new' => $new_retrial]);
1264                 return $new_retrial;
1265         }
1266
1267         /**
1268          * Defers the current worker entry
1269          *
1270          * @return boolean had the entry been deferred?
1271          * @throws \Exception
1272          */
1273         public static function defer(): bool
1274         {
1275                 $queue = DI::app()->getQueue();
1276
1277                 if (empty($queue)) {
1278                         return false;
1279                 }
1280
1281                 $id = $queue['id'];
1282                 $priority = $queue['priority'];
1283
1284                 $max_level = DI::config()->get('system', 'worker_defer_limit');
1285
1286                 $new_retrial = self::getNextRetrial($queue, $max_level);
1287
1288                 if ($new_retrial > $max_level) {
1289                         Logger::notice('The task exceeded the maximum retry count', ['id' => $id, 'created' => $queue['created'], 'old_prio' => $queue['priority'], 'old_retrial' => $queue['retrial'], 'max_level' => $max_level, 'retrial' => $new_retrial]);
1290                         return false;
1291                 }
1292
1293                 // Calculate the delay until the next trial
1294                 $delay = (($new_retrial + 2) ** 4) + (rand(1, 30) * ($new_retrial));
1295                 $next = DateTimeFormat::utc('now + ' . $delay . ' seconds');
1296
1297                 if (($priority < PRIORITY_MEDIUM) && ($new_retrial > 3)) {
1298                         $priority = PRIORITY_MEDIUM;
1299                 } elseif (($priority < PRIORITY_LOW) && ($new_retrial > 6)) {
1300                         $priority = PRIORITY_LOW;
1301                 } elseif (($priority < PRIORITY_NEGLIGIBLE) && ($new_retrial > 8)) {
1302                         $priority = PRIORITY_NEGLIGIBLE;
1303                 }
1304
1305                 Logger::info('Deferred task', ['id' => $id, 'retrial' => $new_retrial, 'created' => $queue['created'], 'next_execution' => $next, 'old_prio' => $queue['priority'], 'new_prio' => $priority]);
1306
1307                 $stamp = (float)microtime(true);
1308                 $fields = ['retrial' => $new_retrial, 'next_try' => $next, 'executed' => DBA::NULL_DATETIME, 'pid' => 0, 'priority' => $priority];
1309                 DBA::update('workerqueue', $fields, ['id' => $id]);
1310                 self::$db_duration += (microtime(true) - $stamp);
1311                 self::$db_duration_write += (microtime(true) - $stamp);
1312
1313                 return true;
1314         }
1315
1316         /**
1317          * Check if the system is inside the defined maintenance window
1318          *
1319          * @param bool $check_last_execution Whether check last execution
1320          * @return boolean
1321          */
1322         public static function isInMaintenanceWindow(bool $check_last_execution = false): bool
1323         {
1324                 // Calculate the seconds of the start end end of the maintenance window
1325                 $start = strtotime(DI::config()->get('system', 'maintenance_start')) % 86400;
1326                 $end = strtotime(DI::config()->get('system', 'maintenance_end')) % 86400;
1327
1328                 Logger::info('Maintenance window', ['start' => date('H:i:s', $start), 'end' => date('H:i:s', $end)]);
1329
1330                 if ($check_last_execution) {
1331                         // Calculate the window duration
1332                         $duration = max($start, $end) - min($start, $end);
1333
1334                         // Quit when the last cron execution had been after the previous window
1335                         $last_cron = DI::config()->get('system', 'last_cron_daily');
1336                         if ($last_cron + $duration > time()) {
1337                                 Logger::info('The Daily cron had been executed recently', ['last' => date(DateTimeFormat::MYSQL, $last_cron), 'start' => date('H:i:s', $start), 'end' => date('H:i:s', $end)]);
1338                                 return false;
1339                         }
1340                 }
1341
1342                 $current = time() % 86400;
1343
1344                 if ($start < $end) {
1345                         // Execute if we are inside the window
1346                         $execute = ($current >= $start) && ($current <= $end);
1347                 } else {
1348                         // Don't execute if we are outside the window
1349                         $execute = !(($current > $end) && ($current < $start));
1350                 }
1351
1352                 if ($execute) {
1353                         Logger::info('We are inside the maintenance window', ['current' => date('H:i:s', $current), 'start' => date('H:i:s', $start), 'end' => date('H:i:s', $end)]);
1354                 } else {
1355                         Logger::info('We are outside the maintenance window', ['current' => date('H:i:s', $current), 'start' => date('H:i:s', $start), 'end' => date('H:i:s', $end)]);
1356                 }
1357
1358                 return $execute;
1359         }
1360 }