]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Worker.php
Move Temporal::convert() to DateTimeFormat::convert()
[friendica.git] / src / Core / Worker.php
index 48f689d61dea81d5fe43bf047c92e92991aa463e..fd5a0bf4c3a3db97dae2c1aff4926df552b355f7 100644 (file)
@@ -4,13 +4,14 @@
  */
 namespace Friendica\Core;
 
-use Friendica\App;
-use Friendica\Core\System;
+use Friendica\Core\Addon;
 use Friendica\Core\Config;
-use Friendica\Core\Worker;
+use Friendica\Core\System;
 use Friendica\Database\DBM;
+use Friendica\Model\Process;
+use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Lock;
-
+use Friendica\Util\Network;
 use dba;
 
 require_once 'include/dba.php';
@@ -50,7 +51,7 @@ class Worker
                }
 
                // We now start the process. This is done after the load check since this could increase the load.
-               $a->start_process();
+               self::startProcess();
 
                // Kill stale processes every 5 minutes
                $last_cleanup = Config::get('system', 'poller_last_cleaned', 0);
@@ -164,7 +165,7 @@ class Worker
         */
        private static function highestPriority()
        {
-               $condition = array("`executed` <= ? AND NOT `done`", NULL_DATE);
+               $condition = ["`executed` <= ? AND NOT `done`", NULL_DATE];
                $workerqueue = dba::selectFirst('workerqueue', ['priority'], $condition, ['order' => ['priority']]);
                if (DBM::is_result($workerqueue)) {
                        return $workerqueue["priority"];
@@ -182,7 +183,7 @@ class Worker
         */
        private static function processWithPriorityActive($priority)
        {
-               $condition = array("`priority` <= ? AND `executed` > ? AND NOT `done`", $priority, NULL_DATE);
+               $condition = ["`priority` <= ? AND `executed` > ? AND NOT `done`", $priority, NULL_DATE];
                return dba::exists('workerqueue', $condition);
        }
 
@@ -233,7 +234,7 @@ class Worker
 
                        if ($age > 1) {
                                $stamp = (float)microtime(true);
-                               dba::update('workerqueue', array('executed' => datetime_convert()), array('pid' => $mypid, 'done' => false));
+                               dba::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
                                self::$db_duration += (microtime(true) - $stamp);
                        }
 
@@ -242,8 +243,8 @@ class Worker
                        self::execFunction($queue, $include, $argv, true);
 
                        $stamp = (float)microtime(true);
-                       if (dba::update('workerqueue', array('done' => true), array('id' => $queue["id"]))) {
-                               Config::set('system', 'last_poller_execution', datetime_convert());
+                       if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
+                               Config::set('system', 'last_poller_execution', DateTimeFormat::utcNow());
                        }
                        self::$db_duration = (microtime(true) - $stamp);
 
@@ -257,7 +258,7 @@ class Worker
 
                if (!validate_include($include)) {
                        logger("Include file ".$argv[0]." is not valid!");
-                       dba::delete('workerqueue', array('id' => $queue["id"]));
+                       dba::delete('workerqueue', ['id' => $queue["id"]]);
                        return true;
                }
 
@@ -276,20 +277,20 @@ class Worker
 
                        if ($age > 1) {
                                $stamp = (float)microtime(true);
-                               dba::update('workerqueue', array('executed' => datetime_convert()), array('pid' => $mypid, 'done' => false));
+                               dba::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
                                self::$db_duration += (microtime(true) - $stamp);
                        }
 
                        self::execFunction($queue, $funcname, $argv, false);
 
                        $stamp = (float)microtime(true);
-                       if (dba::update('workerqueue', array('done' => true), array('id' => $queue["id"]))) {
-                               Config::set('system', 'last_poller_execution', datetime_convert());
+                       if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
+                               Config::set('system', 'last_poller_execution', DateTimeFormat::utcNow());
                        }
                        self::$db_duration = (microtime(true) - $stamp);
                } else {
                        logger("Function ".$funcname." does not exist");
-                       dba::delete('workerqueue', array('id' => $queue["id"]));
+                       dba::delete('workerqueue', ['id' => $queue["id"]]);
                }
 
                return true;
@@ -330,7 +331,7 @@ class Worker
                        $a->performance["parser"] = 0;
                        $a->performance["marktime"] = 0;
                        $a->performance["markstart"] = microtime(true);
-                       $a->callstack = array();
+                       $a->callstack = [];
                }
 
                // For better logging create a new process id for every worker call
@@ -528,27 +529,27 @@ class Worker
        {
                $entries = dba::select(
                        'workerqueue',
-                       array('id', 'pid', 'executed', 'priority', 'parameter'),
-                       array('`executed` > ? AND NOT `done` AND `pid` != 0', NULL_DATE),
-                       array('order' => array('priority', 'created'))
+                       ['id', 'pid', 'executed', 'priority', 'parameter'],
+                       ['`executed` > ? AND NOT `done` AND `pid` != 0', NULL_DATE],
+                       ['order' => ['priority', 'created']]
                );
 
                while ($entry = dba::fetch($entries)) {
                        if (!posix_kill($entry["pid"], 0)) {
                                dba::update(
                                        'workerqueue',
-                                       array('executed' => NULL_DATE, 'pid' => 0),
-                                       array('id' => $entry["id"])
+                                       ['executed' => NULL_DATE, 'pid' => 0],
+                                       ['id' => $entry["id"]]
                                );
                        } else {
                                // Kill long running processes
                                // Check if the priority is in a valid range
-                               if (!in_array($entry["priority"], array(PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE))) {
+                               if (!in_array($entry["priority"], [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE])) {
                                        $entry["priority"] = PRIORITY_MEDIUM;
                                }
 
                                // Define the maximum durations
-                               $max_duration_defaults = array(PRIORITY_CRITICAL => 720, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 720);
+                               $max_duration_defaults = [PRIORITY_CRITICAL => 720, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 720];
                                $max_duration = $max_duration_defaults[$entry["priority"]];
 
                                $argv = json_decode($entry["parameter"]);
@@ -572,8 +573,8 @@ class Worker
                                        }
                                        dba::update(
                                                'workerqueue',
-                                               array('executed' => NULL_DATE, 'created' => datetime_convert(), 'priority' => $new_priority, 'pid' => 0),
-                                               array('id' => $entry["id"])
+                                               ['executed' => NULL_DATE, 'created' => DateTimeFormat::utcNow(), 'priority' => $new_priority, 'pid' => 0],
+                                               ['id' => $entry["id"]]
                                        );
                                } else {
                                        logger("Worker process ".$entry["pid"]." (".implode(" ", $argv).") now runs for ".round($duration)." of ".$max_duration." allowed minutes. That's okay.", LOGGER_DEBUG);
@@ -610,7 +611,7 @@ class Worker
 
                        if (Config::get('system', 'worker_debug')) {
                                // Create a list of queue entries grouped by their priority
-                               $listitem = array();
+                               $listitem = [];
 
                                // Adding all processes with no workerqueue entry
                                $processes = dba::p(
@@ -636,8 +637,8 @@ class Worker
                                }
                                dba::close($entries);
 
-                               $intervals = array(1, 10, 60);
-                               $jobs_per_minute = array();
+                               $intervals = [1, 10, 60];
+                               $jobs_per_minute = [];
                                foreach ($intervals as $interval) {
                                        $jobs = dba::p("SELECT COUNT(*) AS `jobs` FROM `workerqueue` WHERE `done` AND `executed` > UTC_TIMESTAMP() - INTERVAL ".intval($interval)." MINUTE");
                                        if ($job = dba::fetch($jobs)) {
@@ -707,7 +708,7 @@ class Worker
                if (!DBM::is_result($r)) {
                        return false;
                }
-               $priorities = array();
+               $priorities = [];
                while ($line = dba::fetch($r)) {
                        $priorities[] = $line["priority"];
                }
@@ -823,7 +824,7 @@ class Worker
                if ($found) {
                        $condition = "`id` IN (".substr(str_repeat("?, ", count($ids)), 0, -2).") AND `pid` = 0 AND NOT `done`";
                        array_unshift($ids, $condition);
-                       dba::update('workerqueue', array('executed' => datetime_convert(), 'pid' => $mypid), $ids);
+                       dba::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $mypid], $ids);
                }
 
                return $found;
@@ -840,7 +841,7 @@ class Worker
                $stamp = (float)microtime(true);
 
                // There can already be jobs for us in the queue.
-               $r = dba::select('workerqueue', array(), array('pid' => getmypid(), 'done' => false));
+               $r = dba::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
                if (DBM::is_result($r)) {
                        self::$db_duration += (microtime(true) - $stamp);
                        return dba::inArray($r);
@@ -860,7 +861,7 @@ class Worker
                Lock::remove('poller_worker_process');
 
                if ($found) {
-                       $r = dba::select('workerqueue', array(), array('pid' => getmypid(), 'done' => false));
+                       $r = dba::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
                        return dba::inArray($r);
                }
                return false;
@@ -874,7 +875,7 @@ class Worker
        {
                $mypid = getmypid();
 
-               dba::update('workerqueue', array('executed' => NULL_DATE, 'pid' => 0), array('pid' => $mypid, 'done' => false));
+               dba::update('workerqueue', ['executed' => NULL_DATE, 'pid' => 0], ['pid' => $mypid, 'done' => false]);
        }
 
        /**
@@ -888,7 +889,7 @@ class Worker
                }
 
                $url = System::baseUrl()."/worker";
-               fetch_url($url, false, $redirects, 1);
+               Network::fetchUrl($url, false, $redirects, 1);
        }
 
        /**
@@ -915,7 +916,7 @@ class Worker
                        if (self::tooMuchWorkers()) {
                                // Cleaning dead processes
                                self::killStaleWorkers();
-                               get_app()->remove_inactive_processes();
+                               Process::deleteInactive();
 
                                return;
                        }
@@ -950,8 +951,8 @@ class Worker
                $timeout = Config::get("system", "frontend_worker_timeout", 10);
 
                /// @todo We should clean up the corresponding workerqueue entries as well
-               $condition = array("`created` < ? AND `command` = 'worker.php'",
-                               datetime_convert('UTC', 'UTC', "now - ".$timeout." minutes"));
+               $condition = ["`created` < ? AND `command` = 'worker.php'",
+                               DateTimeFormat::utc("now - ".$timeout." minutes")];
                dba::delete('process', $condition);
        }
 
@@ -981,7 +982,7 @@ class Worker
         */
        public static function spawnWorker()
        {
-               $args = array("scripts/worker.php", "no_cron");
+               $args = ["scripts/worker.php", "no_cron"];
                get_app()->proc_run($args);
        }
 
@@ -1005,7 +1006,7 @@ class Worker
        {
                $proc_args = func_get_args();
 
-               $args = array();
+               $args = [];
                if (!count($proc_args)) {
                        return false;
                }
@@ -1029,16 +1030,16 @@ class Worker
                // Now we add the run parameters back to the array
                array_unshift($args, $run_parameter);
 
-               $arr = array('args' => $args, 'run_cmd' => true);
+               $arr = ['args' => $args, 'run_cmd' => true];
 
-               call_hooks("proc_run", $arr);
+               Addon::callHooks("proc_run", $arr);
                if (!$arr['run_cmd'] || !count($args)) {
                        return true;
                }
 
                $priority = PRIORITY_MEDIUM;
                $dont_fork = Config::get("system", "worker_dont_fork");
-               $created = datetime_convert();
+               $created = DateTimeFormat::utcNow();
 
                if (is_int($run_parameter)) {
                        $priority = $run_parameter;
@@ -1058,7 +1059,7 @@ class Worker
                array_shift($argv);
 
                $parameters = json_encode($argv);
-               $found = dba::exists('workerqueue', array('parameter' => $parameters, 'done' => false));
+               $found = dba::exists('workerqueue', ['parameter' => $parameters, 'done' => false]);
 
                // Quit if there was a database error - a precaution for the update process to 3.5.3
                if (dba::errorNo() != 0) {
@@ -1066,7 +1067,7 @@ class Worker
                }
 
                if (!$found) {
-                       dba::insert('workerqueue', array('parameter' => $parameters, 'created' => $created, 'priority' => $priority));
+                       dba::insert('workerqueue', ['parameter' => $parameters, 'created' => $created, 'priority' => $priority]);
                }
 
                // Should we quit and wait for the worker to be called as a cronjob?
@@ -1092,4 +1093,31 @@ class Worker
 
                return true;
        }
+
+       /**
+        * Log active processes into the "process" table
+        *
+        * @brief Log active processes into the "process" table
+        */
+       public static function startProcess()
+       {
+               $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
+
+               $command = basename($trace[0]['file']);
+
+               Process::deleteInactive();
+
+               Process::insert($command);
+       }
+
+       /**
+        * Remove the active process from the "process" table
+        *
+        * @brief Remove the active process from the "process" table
+        * @return bool
+        */
+       public static function endProcess()
+       {
+               return Process::deleteByPid();
+       }
 }