]> git.mxchange.org Git - friendica.git/blob - include/poller.php
Prevent double execution
[friendica.git] / include / poller.php
1 <?php
2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3         $directory = dirname($_SERVER["argv"][0]);
4
5         if (substr($directory, 0, 1) != "/")
6                 $directory = $_SERVER["PWD"]."/".$directory;
7
8         $directory = realpath($directory."/..");
9
10         chdir($directory);
11 }
12
13 require_once("boot.php");
14
15 function poller_run(&$argv, &$argc){
16         global $a, $db;
17
18         if(is_null($a)) {
19                 $a = new App;
20         }
21
22         if(is_null($db)) {
23                 @include(".htconfig.php");
24                 require_once("include/dba.php");
25                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
26                 unset($db_host, $db_user, $db_pass, $db_data);
27         };
28
29         if(function_exists('sys_getloadavg')) {
30                 $maxsysload = intval(get_config('system','maxloadavg'));
31                 if($maxsysload < 1)
32                         $maxsysload = 50;
33
34                 $load = sys_getloadavg();
35                 if(intval($load[0]) > $maxsysload) {
36                         logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.');
37                         return;
38                 }
39         }
40
41         if(($argc <= 1) OR ($argv[1] != "no_cron")) {
42                 // Run the cron job that calls all other jobs
43                 proc_run("php","include/cron.php");
44
45                 // Run the cronhooks job separately from cron for being able to use a different timing
46                 proc_run("php","include/cronhooks.php");
47
48                 // Cleaning dead processes
49                 $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
50                 foreach($r AS $pid)
51                         if (!posix_kill($pid["pid"], 0))
52                                 q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d",
53                                         intval($pid["pid"]));
54                         else {
55                                 // To-Do: Kill long running processes
56                                 // But: Update processes (like the database update) mustn't be killed
57                         }
58
59         } else
60                 // Sleep two seconds before checking for running processes to avoid having too many workers
61                 sleep(4);
62
63         // Checking number of workers
64         if (poller_too_much_workers())
65                 return;
66
67         $starttime = time();
68
69         while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) {
70
71                 // Quit the poller once every hour
72                 if (time() > ($starttime + 3600))
73                         return;
74
75                 // Count active workers and compare them with a maximum value that depends on the load
76                 if (poller_too_much_workers())
77                         return;
78
79                 q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `executed` = '0000-00-00 00:00:00'",
80                         dbesc(datetime_convert()),
81                         intval(getmypid()),
82                         intval($r[0]["id"]));
83
84                 // Assure that there are no tasks executed twice
85                 $id = q("SELECT `id` FROM `workerqueue` WHERE `id` = %d AND `pid` = %d",
86                         intval($r[0]["id"]),
87                         intval(getmypid()));
88                 if (!$id)
89                         continue;
90
91                 $argv = json_decode($r[0]["parameter"]);
92
93                 $argc = count($argv);
94
95                 // Check for existance and validity of the include file
96                 $include = $argv[0];
97
98                 if (!validate_include($include)) {
99                         logger("Include file ".$argv[0]." is not valid!");
100                         q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
101                         continue;
102                 }
103
104                 require_once($include);
105
106                 $funcname=str_replace(".php", "", basename($argv[0]))."_run";
107
108                 if (function_exists($funcname)) {
109                         logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]);
110                         $funcname($argv, $argc);
111
112                         logger("Process ".getmypid().": ".$funcname." - done");
113
114                         q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
115                 } else
116                         logger("Function ".$funcname." does not exist");
117         }
118
119 }
120
121 function poller_too_much_workers() {
122
123         $queues = get_config("system", "worker_queues");
124
125         if ($queues == 0)
126                 $queues = 4;
127
128         $active = poller_active_workers();
129
130         // Decrease the number of workers at higher load
131         if(function_exists('sys_getloadavg')) {
132                 $load = max(sys_getloadavg());
133
134                 $maxsysload = intval(get_config('system','maxloadavg'));
135                 if($maxsysload < 1)
136                         $maxsysload = 50;
137
138                 $maxworkers = $queues;
139
140                 // Some magical mathemathics to reduce the workers
141                 $exponent = 3;
142                 $slope = $maxworkers / pow($maxsysload, $exponent);
143                 $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent));
144
145                 logger("Current load: ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG);
146
147         }
148
149         return($active >= $queues);
150 }
151
152 function poller_active_workers() {
153         $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
154
155         return($workers[0]["workers"]);
156 }
157
158 if (array_search(__file__,get_included_files())===0){
159   poller_run($_SERVER["argv"],$_SERVER["argc"]);
160   killme();
161 }
162 ?>