]> git.mxchange.org Git - friendica.git/blob - include/poller.php
22fb65a4f8fda474f225fa45971daef9e82426ec
[friendica.git] / include / poller.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\Config;
5
6 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
7         $directory = dirname($_SERVER["argv"][0]);
8
9         if (substr($directory, 0, 1) != "/")
10                 $directory = $_SERVER["PWD"]."/".$directory;
11
12         $directory = realpath($directory."/..");
13
14         chdir($directory);
15 }
16
17 require_once("boot.php");
18
19 function poller_run($argv, $argc){
20         global $a, $db;
21
22         if (is_null($a)) {
23                 $a = new App(dirname(__DIR__));
24         }
25
26         if(is_null($db)) {
27                 @include(".htconfig.php");
28                 require_once("include/dba.php");
29                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
30                 unset($db_host, $db_user, $db_pass, $db_data);
31         };
32
33         Config::load();
34
35         // Quit when in maintenance
36         if (Config::get('system', 'maintenance', true)) {
37                 return;
38         }
39
40         $a->set_baseurl(Config::get('system', 'url'));
41
42         load_hooks();
43
44         $a->start_process();
45
46         if ($a->min_memory_reached()) {
47                 return;
48         }
49
50         if (poller_max_connections_reached()) {
51                 return;
52         }
53
54         if ($a->maxload_reached()) {
55                 return;
56         }
57
58         if(($argc <= 1) OR ($argv[1] != "no_cron")) {
59                 poller_run_cron();
60         }
61
62         if ($a->max_processes_reached()) {
63                 return;
64         }
65
66         // Checking the number of workers
67         if (poller_too_much_workers()) {
68                 poller_kill_stale_workers();
69                 return;
70         }
71
72         $starttime = time();
73
74         while ($r = poller_worker_process()) {
75
76                 if (!poller_claim_process($r[0])) {
77                         continue;
78                 }
79
80                 // Check free memory
81                 if ($a->min_memory_reached()) {
82                         logger('Memory limit reached, quitting.', LOGGER_DEBUG);
83                         return;
84                 }
85
86                 // Count active workers and compare them with a maximum value that depends on the load
87                 if (poller_too_much_workers()) {
88                         logger('Active worker limit reached, quitting.', LOGGER_DEBUG);
89                         return;
90                 }
91
92                 if (!poller_execute($r[0])) {
93                         logger('Process execution failed, quitting.', LOGGER_DEBUG);
94                         return;
95                 }
96
97                 // Quit the poller once every hour
98                 if (time() > ($starttime + 3600)) {
99                         logger('Process lifetime reachted, quitting.', LOGGER_DEBUG);
100                         return;
101                 }
102         }
103         logger("Couldn't select a workerqueue entry, quitting.", LOGGER_DEBUG);
104 }
105
106 /**
107  * @brief Execute a worker entry
108  *
109  * @param array $queue Workerqueue entry
110  *
111  * @return boolean "true" if further processing should be stopped
112  */
113 function poller_execute($queue) {
114
115         $a = get_app();
116
117         $mypid = getmypid();
118
119         // Quit when in maintenance
120         if (Config::get('system', 'maintenance', true)) {
121                 logger("Maintenance mode - quit process ".$mypid, LOGGER_DEBUG);
122                 return false;
123         }
124
125         // Constantly check the number of parallel database processes
126         if ($a->max_processes_reached()) {
127                 logger("Max processes reached for process ".$mypid, LOGGER_DEBUG);
128                 return false;
129         }
130
131         // Constantly check the number of available database connections to let the frontend be accessible at any time
132         if (poller_max_connections_reached()) {
133                 logger("Max connection reached for process ".$mypid, LOGGER_DEBUG);
134                 return false;
135         }
136
137         $argv = json_decode($queue["parameter"]);
138
139         // Check for existance and validity of the include file
140         $include = $argv[0];
141
142         if (!validate_include($include)) {
143                 logger("Include file ".$argv[0]." is not valid!");
144                 dba::delete('workerqueue', array('id' => $queue["id"]));
145                 return true;
146         }
147
148         require_once($include);
149
150         $funcname = str_replace(".php", "", basename($argv[0]))."_run";
151
152         if (function_exists($funcname)) {
153
154                 poller_exec_function($queue, $funcname, $argv);
155                 dba::delete('workerqueue', array('id' => $queue["id"]));
156         } else {
157                 logger("Function ".$funcname." does not exist");
158         }
159
160         return true;
161 }
162
163 /**
164  * @brief Execute a function from the queue
165  *
166  * @param array $queue Workerqueue entry
167  * @param string $funcname name of the function
168  * @param array $argv Array of values to be passed to the function
169  */
170 function poller_exec_function($queue, $funcname, $argv) {
171
172         $a = get_app();
173
174         $mypid = getmypid();
175
176         $argc = count($argv);
177
178         logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]);
179
180         $stamp = (float)microtime(true);
181
182         // We use the callstack here to analyze the performance of executed worker entries.
183         // For this reason the variables have to be initialized.
184         if (Config::get("system", "profiler")) {
185                 $a->performance["start"] = microtime(true);
186                 $a->performance["database"] = 0;
187                 $a->performance["database_write"] = 0;
188                 $a->performance["network"] = 0;
189                 $a->performance["file"] = 0;
190                 $a->performance["rendering"] = 0;
191                 $a->performance["parser"] = 0;
192                 $a->performance["marktime"] = 0;
193                 $a->performance["markstart"] = microtime(true);
194                 $a->callstack = array();
195         }
196
197         // For better logging create a new process id for every worker call
198         // But preserve the old one for the worker
199         $old_process_id = $a->process_id;
200         $a->process_id = uniqid("wrk", true);
201
202         $funcname($argv, $argc);
203
204         $a->process_id = $old_process_id;
205
206         $duration = number_format(microtime(true) - $stamp, 3);
207
208         if ($duration > 3600) {
209                 logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 1 hour (".round($duration/60, 3).")", LOGGER_DEBUG);
210         } elseif ($duration > 600) {
211                 logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 10 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
212         } elseif ($duration > 300) {
213                 logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 5 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
214         } elseif ($duration > 120) {
215                 logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 2 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
216         }
217
218         logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds.");
219
220         // Write down the performance values into the log
221         if (Config::get("system", "profiler")) {
222                 $duration = microtime(true)-$a->performance["start"];
223
224                 if (Config::get("rendertime", "callstack")) {
225                         if (isset($a->callstack["database"])) {
226                                 $o = "\nDatabase Read:\n";
227                                 foreach ($a->callstack["database"] AS $func => $time) {
228                                         $time = round($time, 3);
229                                         if ($time > 0)
230                                                 $o .= $func.": ".$time."\n";
231                                 }
232                         }
233                         if (isset($a->callstack["database_write"])) {
234                                 $o .= "\nDatabase Write:\n";
235                                 foreach ($a->callstack["database_write"] AS $func => $time) {
236                                         $time = round($time, 3);
237                                         if ($time > 0)
238                                                 $o .= $func.": ".$time."\n";
239                                 }
240                         }
241                         if (isset($a->callstack["network"])) {
242                                 $o .= "\nNetwork:\n";
243                                 foreach ($a->callstack["network"] AS $func => $time) {
244                                         $time = round($time, 3);
245                                         if ($time > 0)
246                                                 $o .= $func.": ".$time."\n";
247                                 }
248                         }
249                 } else {
250                         $o = '';
251                 }
252
253                 logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s".$o,
254                         number_format($a->performance["database"] - $a->performance["database_write"], 2),
255                         number_format($a->performance["database_write"], 2),
256                         number_format($a->performance["network"], 2),
257                         number_format($a->performance["file"], 2),
258                         number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2),
259                         number_format($duration, 2)),
260                         LOGGER_DEBUG);
261         }
262
263         $cooldown = Config::get("system", "worker_cooldown", 0);
264
265         if ($cooldown > 0) {
266                 logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds");
267                 sleep($cooldown);
268         }
269 }
270
271 /**
272  * @brief Checks if the number of database connections has reached a critical limit.
273  *
274  * @return bool Are more than 3/4 of the maximum connections used?
275  */
276 function poller_max_connections_reached() {
277
278         // Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself.
279         $max = Config::get("system", "max_connections");
280
281         // Fetch the percentage level where the poller will get active
282         $maxlevel = Config::get("system", "max_connections_level", 75);
283
284         if ($max == 0) {
285                 // the maximum number of possible user connections can be a system variable
286                 $r = q("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'");
287                 if ($r)
288                         $max = $r[0]["Value"];
289
290                 // Or it can be granted. This overrides the system variable
291                 $r = q("SHOW GRANTS");
292                 if ($r)
293                         foreach ($r AS $grants) {
294                                 $grant = array_pop($grants);
295                                 if (stristr($grant, "GRANT USAGE ON"))
296                                         if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match))
297                                                 $max = $match[1];
298                         }
299         }
300
301         // If $max is set we will use the processlist to determine the current number of connections
302         // The processlist only shows entries of the current user
303         if ($max != 0) {
304                 $r = q("SHOW PROCESSLIST");
305                 if (!dbm::is_result($r))
306                         return false;
307
308                 $used = count($r);
309
310                 logger("Connection usage (user values): ".$used."/".$max, LOGGER_DEBUG);
311
312                 $level = ($used / $max) * 100;
313
314                 if ($level >= $maxlevel) {
315                         logger("Maximum level (".$maxlevel."%) of user connections reached: ".$used."/".$max);
316                         return true;
317                 }
318         }
319
320         // We will now check for the system values.
321         // This limit could be reached although the user limits are fine.
322         $r = q("SHOW VARIABLES WHERE `variable_name` = 'max_connections'");
323         if (!$r)
324                 return false;
325
326         $max = intval($r[0]["Value"]);
327         if ($max == 0)
328                 return false;
329
330         $r = q("SHOW STATUS WHERE `variable_name` = 'Threads_connected'");
331         if (!$r)
332                 return false;
333
334         $used = intval($r[0]["Value"]);
335         if ($used == 0)
336                 return false;
337
338         logger("Connection usage (system values): ".$used."/".$max, LOGGER_DEBUG);
339
340         $level = $used / $max * 100;
341
342         if ($level < $maxlevel)
343                 return false;
344
345         logger("Maximum level (".$level."%) of system connections reached: ".$used."/".$max);
346         return true;
347 }
348
349 /**
350  * @brief fix the queue entry if the worker process died
351  *
352  */
353 function poller_kill_stale_workers() {
354         $r = q("SELECT `pid`, `executed`, `priority`, `parameter` FROM `workerqueue` WHERE `executed` > '%s'", dbesc(NULL_DATE));
355
356         if (!dbm::is_result($r)) {
357                 // No processing here needed
358                 return;
359         }
360
361         foreach ($r AS $pid) {
362                 if (!posix_kill($pid["pid"], 0)) {
363                         dba::update('workerqueue', array('executed' => NULL_DATE, 'pid' => 0),
364                                         array('pid' => $pid["pid"]));
365                 } else {
366                         // Kill long running processes
367
368                         // Check if the priority is in a valid range
369                         if (!in_array($pid["priority"], array(PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE)))
370                                 $pid["priority"] = PRIORITY_MEDIUM;
371
372                         // Define the maximum durations
373                         $max_duration_defaults = array(PRIORITY_CRITICAL => 360, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 360);
374                         $max_duration = $max_duration_defaults[$pid["priority"]];
375
376                         $argv = json_decode($pid["parameter"]);
377                         $argv[0] = basename($argv[0]);
378
379                         // How long is the process already running?
380                         $duration = (time() - strtotime($pid["executed"])) / 60;
381                         if ($duration > $max_duration) {
382                                 logger("Worker process ".$pid["pid"]." (".implode(" ", $argv).") took more than ".$max_duration." minutes. It will be killed now.");
383                                 posix_kill($pid["pid"], SIGTERM);
384
385                                 // We killed the stale process.
386                                 // To avoid a blocking situation we reschedule the process at the beginning of the queue.
387                                 // Additionally we are lowering the priority.
388                                 dba::update('workerqueue',
389                                                 array('executed' => NULL_DATE, 'created' => datetime_convert(), 'priority' => PRIORITY_NEGLIGIBLE, 'pid' => 0),
390                                                 array('pid' => $pid["pid"]));
391                         } else {
392                                 logger("Worker process ".$pid["pid"]." (".implode(" ", $argv).") now runs for ".round($duration)." of ".$max_duration." allowed minutes. That's okay.", LOGGER_DEBUG);
393                         }
394                 }
395         }
396 }
397
398 /**
399  * @brief Checks if the number of active workers exceeds the given limits
400  *
401  * @return bool Are there too much workers running?
402  */
403 function poller_too_much_workers() {
404         $queues = Config::get("system", "worker_queues", 4);
405
406         $maxqueues = $queues;
407
408         $active = poller_active_workers();
409
410         // Decrease the number of workers at higher load
411         $load = current_load();
412         if ($load) {
413                 $maxsysload = intval(Config::get("system", "maxloadavg", 50));
414
415                 $maxworkers = $queues;
416
417                 // Some magical mathemathics to reduce the workers
418                 $exponent = 3;
419                 $slope = $maxworkers / pow($maxsysload, $exponent);
420                 $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent));
421
422                 // Create a list of queue entries grouped by their priority
423                 $listitem = array();
424
425                 // Adding all processes with no workerqueue entry
426                 $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` WHERE NOT EXISTS (SELECT id FROM `workerqueue` WHERE `workerqueue`.`pid` = `process`.`pid`)");
427                 if ($process = dba::fetch($processes)) {
428                         $listitem[0] = "0:".$process["running"];
429                 }
430                 dba::close($processes);
431
432                 // Now adding all processes with workerqueue entries
433                 $entries = dba::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`");
434                 while ($entry = dba::fetch($entries)) {
435                         $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE `priority` = ?", $entry["priority"]);
436                         if ($process = dba::fetch($processes)) {
437                                 $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"];
438                         }
439                         dba::close($processes);
440                 }
441                 dba::close($entries);
442
443                 $processlist = implode(', ', $listitem);
444
445                 $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `executed` <= '%s'", dbesc(NULL_DATE));
446                 $entries = $s[0]["total"];
447
448                 if (Config::get("system", "worker_fastlane", false) AND ($queues > 0) AND ($entries > 0) AND ($active >= $queues)) {
449                         $s = q("SELECT `priority` FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority` LIMIT 1", dbesc(NULL_DATE));
450                         $top_priority = $s[0]["priority"];
451
452                         $s = q("SELECT `id` FROM `workerqueue` WHERE `priority` <= %d AND `executed` > '%s' LIMIT 1",
453                                 intval($top_priority), dbesc(NULL_DATE));
454                         $high_running = dbm::is_result($s);
455
456                         if (!$high_running AND ($top_priority > PRIORITY_UNDEFINED) AND ($top_priority < PRIORITY_NEGLIGIBLE)) {
457                                 logger("There are jobs with priority ".$top_priority." waiting but none is executed. Open a fastlane.", LOGGER_DEBUG);
458                                 $queues = $active + 1;
459                         }
460                 }
461
462                 logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries." (".$processlist.") - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG);
463
464                 // Are there fewer workers running as possible? Then fork a new one.
465                 if (!Config::get("system", "worker_dont_fork") AND ($queues > ($active + 1)) AND ($entries > 1)) {
466                         logger("Active workers: ".$active."/".$queues." Fork a new worker.", LOGGER_DEBUG);
467                         $args = array("include/poller.php", "no_cron");
468                         $a = get_app();
469                         $a->proc_run($args);
470                 }
471         }
472
473         return($active >= $queues);
474 }
475
476 /**
477  * @brief Returns the number of active poller processes
478  *
479  * @return integer Number of active poller processes
480  */
481 function poller_active_workers() {
482         $workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'poller.php'");
483
484         return($workers[0]["processes"]);
485 }
486
487 /**
488  * @brief Check if we should pass some slow processes
489  *
490  * When the active processes of the highest priority are using more than 2/3
491  * of all processes, we let pass slower processes.
492  *
493  * @param string $highest_priority Returns the currently highest priority
494  * @return bool We let pass a slower process than $highest_priority
495  */
496 function poller_passing_slow(&$highest_priority) {
497
498         $highest_priority = 0;
499
500         $r = q("SELECT `priority`
501                 FROM `process`
502                 INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`");
503
504         // No active processes at all? Fine
505         if (!dbm::is_result($r))
506                 return(false);
507
508         $priorities = array();
509         foreach ($r AS $line)
510                 $priorities[] = $line["priority"];
511
512         // Should not happen
513         if (count($priorities) == 0)
514                 return(false);
515
516         $highest_priority = min($priorities);
517
518         // The highest process is already the slowest one?
519         // Then we quit
520         if ($highest_priority == PRIORITY_NEGLIGIBLE)
521                 return(false);
522
523         $high = 0;
524         foreach ($priorities AS $priority)
525                 if ($priority == $highest_priority)
526                         ++$high;
527
528         logger("Highest priority: ".$highest_priority." Total processes: ".count($priorities)." Count high priority processes: ".$high, LOGGER_DEBUG);
529         $passing_slow = (($high/count($priorities)) > (2/3));
530
531         if ($passing_slow)
532                 logger("Passing slower processes than priority ".$highest_priority, LOGGER_DEBUG);
533
534         return($passing_slow);
535 }
536
537 /**
538  * @brief Returns the next worker process
539  *
540  * @return string SQL statement
541  */
542 function poller_worker_process() {
543
544         // Check if we should pass some low priority process
545         $highest_priority = 0;
546
547         if (poller_passing_slow($highest_priority)) {
548                 dba::p('LOCK TABLES `workerqueue` WRITE');
549
550                 // Are there waiting processes with a higher priority than the currently highest?
551                 $r = q("SELECT * FROM `workerqueue`
552                                 WHERE `executed` <= '%s' AND `priority` < %d
553                                 ORDER BY `priority`, `created` LIMIT 1",
554                                 dbesc(NULL_DATE),
555                                 intval($highest_priority));
556                 if (dbm::is_result($r)) {
557                         return $r;
558                 }
559                 // Give slower processes some processing time
560                 $r = q("SELECT * FROM `workerqueue`
561                                 WHERE `executed` <= '%s' AND `priority` > %d
562                                 ORDER BY `priority`, `created` LIMIT 1",
563                                 dbesc(NULL_DATE),
564                                 intval($highest_priority));
565
566                 if (dbm::is_result($r)) {
567                         return $r;
568                 }
569         } else {
570                 dba::p('LOCK TABLES `workerqueue` WRITE');
571         }
572
573         // If there is no result (or we shouldn't pass lower processes) we check without priority limit
574         if (!dbm::is_result($r)) {
575                 $r = q("SELECT * FROM `workerqueue` WHERE `executed` <= '%s' ORDER BY `priority`, `created` LIMIT 1", dbesc(NULL_DATE));
576         }
577
578         // We only unlock the tables here, when we got no data
579         if (!dbm::is_result($r)) {
580                 dba::p('UNLOCK TABLES');
581         }
582
583         return $r;
584 }
585
586 /**
587  * @brief Assigns a workerqueue entry to the current process
588  *
589  * When we are sure that the table locks are working correctly, we can remove the checks from here
590  *
591  * @param array $queue Workerqueue entry
592  *
593  * @return boolean "true" if the claiming was successful
594  */
595 function poller_claim_process($queue) {
596         $mypid = getmypid();
597
598         $success = dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid),
599                         array('id' => $queue["id"], 'pid' => 0));
600         dba::p('UNLOCK TABLES');
601
602         if (!$success) {
603                 logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG);
604                 return false;
605         }
606
607         // Assure that there are no tasks executed twice
608         $id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($queue["id"]));
609         if (!$id) {
610                 logger("Queue item ".$queue["id"]." vanished - skip this execution", LOGGER_DEBUG);
611                 return false;
612         } elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) {
613                 logger("Entry for queue item ".$queue["id"]." wasn't stored - skip this execution", LOGGER_DEBUG);
614                 return false;
615         } elseif ($id[0]["pid"] != $mypid) {
616                 logger("Queue item ".$queue["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG);
617                 return false;
618         }
619         return true;
620 }
621
622 /**
623  * @brief Removes a workerqueue entry from the current process
624  */
625 function poller_unclaim_process() {
626         $mypid = getmypid();
627
628         dba::update('workerqueue', array('executed' => NULL_DATE, 'pid' => 0), array('pid' => $mypid));
629 }
630
631 /**
632  * @brief Call the front end worker
633  */
634 function call_worker() {
635         if (!Config::get("system", "frontend_worker")) {
636                 return;
637         }
638
639         $url = App::get_baseurl()."/worker";
640         fetch_url($url, false, $redirects, 1);
641 }
642
643 /**
644  * @brief Call the front end worker if there aren't any active
645  */
646 function call_worker_if_idle() {
647         if (!Config::get("system", "frontend_worker")) {
648                 return;
649         }
650
651         // Do we have "proc_open"? Then we can fork the poller
652         if (function_exists("proc_open")) {
653                 // When was the last time that we called the worker?
654                 // Less than one minute? Then we quit
655                 if ((time() - Config::get("system", "worker_started")) < 60) {
656                         return;
657                 }
658
659                 set_config("system", "worker_started", time());
660
661                 // Do we have enough running workers? Then we quit here.
662                 if (poller_too_much_workers()) {
663                         // Cleaning dead processes
664                         poller_kill_stale_workers();
665                         get_app()->remove_inactive_processes();
666
667                         return;
668                 }
669
670                 poller_run_cron();
671
672                 logger('Call poller', LOGGER_DEBUG);
673
674                 $args = array("include/poller.php", "no_cron");
675                 $a = get_app();
676                 $a->proc_run($args);
677                 return;
678         }
679
680         // We cannot execute background processes.
681         // We now run the processes from the frontend.
682         // This won't work with long running processes.
683         poller_run_cron();
684
685         clear_worker_processes();
686
687         $workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
688
689         if ($workers[0]["processes"] == 0) {
690                 call_worker();
691         }
692 }
693
694 /**
695  * @brief Removes long running worker processes
696  */
697 function clear_worker_processes() {
698         $timeout = Config::get("system", "frontend_worker_timeout", 10);
699
700         /// @todo We should clean up the corresponding workerqueue entries as well
701         q("DELETE FROM `process` WHERE `created` < '%s' AND `command` = 'worker.php'",
702                 dbesc(datetime_convert('UTC','UTC',"now - ".$timeout." minutes")));
703 }
704
705 /**
706  * @brief Runs the cron processes
707  */
708 function poller_run_cron() {
709         logger('Add cron entries', LOGGER_DEBUG);
710
711         // Check for spooled items
712         proc_run(PRIORITY_HIGH, "include/spool_post.php");
713
714         // Run the cron job that calls all other jobs
715         proc_run(PRIORITY_MEDIUM, "include/cron.php");
716
717         // Run the cronhooks job separately from cron for being able to use a different timing
718         proc_run(PRIORITY_MEDIUM, "include/cronhooks.php");
719
720         // Cleaning dead processes
721         poller_kill_stale_workers();
722 }
723
724 if (array_search(__file__,get_included_files())===0){
725         poller_run($_SERVER["argv"],$_SERVER["argc"]);
726
727         poller_unclaim_process();
728
729         get_app()->end_process();
730
731         killme();
732 }