]> git.mxchange.org Git - friendica.git/blob - bin/daemon.php
Merge pull request #5157 from annando/daemon
[friendica.git] / bin / daemon.php
1 #!/usr/bin/env php
2 <?php
3 /**
4  * @file bin/daemon.php
5  * @brief Run the worker from a daemon.
6  *
7  * This script was taken from http://php.net/manual/en/function.pcntl-fork.php
8  */
9
10 use Friendica\App;
11 use Friendica\BaseObject;
12 use Friendica\Core\Config;
13 use Friendica\Core\Worker;
14
15 // Ensure that daemon.php is executed from the base path of the installation
16 if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
17         $directory = dirname($_SERVER["argv"][0]);
18
19         if (substr($directory, 0, 1) != "/") {
20                 $directory = $_SERVER["PWD"]."/".$directory;
21         }
22         $directory = realpath($directory."/..");
23
24         chdir($directory);
25 }
26
27 require_once "boot.php";
28 require_once "include/dba.php";
29
30 $a = new App(dirname(__DIR__));
31 BaseObject::setApp($a);
32
33 require_once ".htconfig.php";
34 dba::connect($db_host, $db_user, $db_pass, $db_data);
35
36 Config::load();
37
38 if (!isset($pidfile)) {
39         die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
40                 '$pidfile = "/path/to/daemon.pid";'."\n");
41 }
42
43 if (in_array("start", $_SERVER["argv"])) {
44         $mode = "start";
45 }
46
47 if (in_array("stop", $_SERVER["argv"])) {
48         $mode = "stop";
49 }
50
51 if (in_array("status", $_SERVER["argv"])) {
52         $mode = "status";
53 }
54
55 if (!isset($mode)) {
56         die("Please use either 'start', 'stop' or 'status'.\n");
57 }
58
59 if (empty($_SERVER["argv"][0])) {
60         die("Unexpected script behaviour. This message should never occur.\n");
61 }
62
63 $pid = @file_get_contents($pidfile);
64
65 if (empty($pid) && in_array($mode, ["stop", "status"])) {
66         Config::set('system', 'worker_daemon_mode', false);
67         die("Pidfile wasn't found. Is the daemon running?\n");
68 }
69
70 if ($mode == "status") {
71         if (posix_kill($pid, 0)) {
72                 die("Daemon process $pid is running.\n");
73         }
74
75         unlink($pidfile);
76
77         Config::set('system', 'worker_daemon_mode', false);
78         die("Daemon process $pid isn't running.\n");
79 }
80
81 if ($mode == "stop") {
82         posix_kill($pid, SIGTERM);
83
84         unlink($pidfile);
85
86         logger("Worker daemon process $pid was killed.", LOGGER_DEBUG);
87
88         Config::set('system', 'worker_daemon_mode', false);
89         die("Worker daemon process $pid was killed.\n");
90 }
91
92 if (!empty($pid) && posix_kill($pid, 0)) {
93         die("Daemon process $pid is already running.\n");
94 }
95
96 logger('Starting worker daemon.', LOGGER_DEBUG);
97 echo "Starting worker daemon.\n";
98
99 // Switch over to daemon mode.
100 if ($pid = pcntl_fork())
101         return;     // Parent
102
103 fclose(STDIN);  // Close all of the standard
104 fclose(STDOUT); // file descriptors as we
105 fclose(STDERR); // are running as a daemon.
106
107 register_shutdown_function('shutdown');
108
109 if (posix_setsid() < 0)
110         return;
111
112 if ($pid = pcntl_fork())
113         return;     // Parent
114
115 // We lose the database connection upon forking
116 dba::connect($db_host, $db_user, $db_pass, $db_data);
117 unset($db_host, $db_user, $db_pass, $db_data);
118
119 Config::set('system', 'worker_daemon_mode', true);
120
121 // Just to be sure that this script really runs endlessly
122 set_time_limit(0);
123
124 $pid = getmypid();
125 file_put_contents($pidfile, $pid);
126
127 $wait_interval = intval(Config::get('system', 'cron_interval', 5)) * 60;
128
129 // Now running as a daemon.
130 while (true) {
131         logger('Call the worker', LOGGER_DEBUG);
132         Worker::spawnWorker();
133
134         logger("Sleep for $wait_interval seconds - or when a worker needs to be called", LOGGER_DEBUG);
135         $i = 0;
136         do {
137                 sleep(1);
138         } while (($i++ < $wait_interval) && !Worker::IPCJobsExists());
139 }
140
141 function shutdown() {
142         posix_kill(posix_getpid(), SIGHUP);
143 }