123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- class Daemon
- {
- var $daemonize = true;
- var $_id = 'generic';
- function __construct($daemonize = true)
- {
- $this->daemonize = $daemonize;
- }
- function name()
- {
- return null;
- }
- function get_id()
- {
- return $this->_id;
- }
- function set_id($id)
- {
- $this->_id = $id;
- }
- function background()
- {
-
- global $_DB_DATAOBJECT;
- unset($_DB_DATAOBJECT['CONNECTIONS']);
- $pid = pcntl_fork();
- if ($pid < 0) {
- common_log(LOG_ERR, "Could not fork.");
- return false;
- } else if ($pid > 0) {
- common_log(LOG_INFO, "Successfully forked.");
- exit(0);
- } else {
- return true;
- }
- }
- function alreadyRunning()
- {
- $pidfilename = $this->pidFilename();
- if (!$pidfilename) {
- return false;
- }
- if (!file_exists($pidfilename)) {
- return false;
- }
- $contents = file_get_contents($pidfilename);
- if (posix_kill(trim($contents), 0)) {
- return true;
- } else {
- return false;
- }
- }
- function writePidFile()
- {
- $pidfilename = $this->pidFilename();
- if (!$pidfilename) {
- return false;
- }
- return file_put_contents($pidfilename, posix_getpid() . "\n");
- }
- function clearPidFile()
- {
- $pidfilename = $this->pidFilename();
- if (!$pidfilename) {
- return false;
- }
- return unlink($pidfilename);
- }
- function pidFilename()
- {
- $piddir = common_config('daemon', 'piddir');
- if (!$piddir) {
- return null;
- }
- $name = $this->name();
- if (!$name) {
- return null;
- }
- return $piddir . '/' . $name . '.pid';
- }
- function changeUser()
- {
- $groupname = common_config('daemon', 'group');
- if ($groupname) {
- $group_info = posix_getgrnam($groupname);
- if (!$group_info) {
- common_log(LOG_WARNING,
- 'Ignoring unknown group for daemon: ' . $groupname);
- } else {
- common_log(LOG_INFO, "Setting group to " . $groupname);
- posix_setgid($group_info['gid']);
- }
- }
- $username = common_config('daemon', 'user');
- if ($username) {
- $user_info = posix_getpwnam($username);
- if (!$user_info) {
- common_log(LOG_WARNING,
- 'Ignoring unknown user for daemon: ' . $username);
- } else {
- common_log(LOG_INFO, "Setting user to " . $username);
- posix_setuid($user_info['uid']);
- }
- }
- }
- function runOnce()
- {
- if ($this->alreadyRunning()) {
- common_log(LOG_INFO, $this->name() . ' already running. Exiting.');
- exit(0);
- }
- if ($this->daemonize) {
- common_log(LOG_INFO, 'Backgrounding daemon "'.$this->name().'"');
- $this->background();
- }
- $this->writePidFile();
- $this->changeUser();
- $this->run();
- $this->clearPidFile();
- }
- function run()
- {
- return true;
- }
- }
|