From aed0fff4ea668de83405a4457fe238cf36c78d8f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Sep 2008 14:40:31 -0400 Subject: scripts daemonize themselves darcs-hash:20080904184031-84dde-eba2061f3aa898d0c791ffeb70837f759778c567.gz --- lib/common.php | 4 ++ lib/daemon.php | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++ lib/queuehandler.php | 19 ++++++++- 3 files changed, 138 insertions(+), 2 deletions(-) create mode 100644 lib/daemon.php (limited to 'lib') diff --git a/lib/common.php b/lib/common.php index e4c8e9032..80aab806f 100644 --- a/lib/common.php +++ b/lib/common.php @@ -94,6 +94,10 @@ $config = 'public' => array()), # JIDs of users who want to receive the public stream 'tag' => array('dropoff' => 864000.0), + 'daemon' => + array('piddir' => '/var/run', + 'user' => false, + 'group' => false) ); $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options'); diff --git a/lib/daemon.php b/lib/daemon.php new file mode 100644 index 000000000..09144afe7 --- /dev/null +++ b/lib/daemon.php @@ -0,0 +1,117 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +class Daemon { + + function name() { + return NULL; + } + + function background() { + $pid = pcntl_fork(); + if ($pid < 0) { # error + return false; + } else if ($pid > 0) { # parent + common_log(LOG_INFO, "Successfully forked."); + exit(0); + } else { # child + 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; + } + + file_put_contents($pidfilename, posix_getpid()); + } + + function clearPidFile() { + $pidfilename = $this->pidFilename(); + unlink($pidfilename); + } + + function pidFilename() { + $piddir = common_config('daemon', 'piddir'); + if (!$piddir) { + return NULL; + } + $name = $this->name(); + if (!$name) { + return NULL; + } + return $piddir . '/' . $name; + } + + function changeUser() { + + if (common_config('daemon', 'user')) { + $user_info = posix_getpwnam(common_config('daemon', 'user')); + common_log(LOG_INFO, "Setting user to " . common_config('daemon', 'user')); + posix_setuid($user_info['uid']); + } + + if (common_config('daemon', 'group')) { + $group_info = posix_getgrnam(common_config('daemon', 'group')); + common_log(LOG_INFO, "Setting group to " . common_config('daemon', 'group')); + posix_setgid($group_info['gid']); + } + } + + function runOnce() { + if ($this->alreadyRunning()) { + common_log(LOG_INFO, $this->name() . ' already running. Exiting.'); + exit(0); + } + if ($this->background()) { + $this->writePidFile(); + $this->changeUser(); + $this->run(); + $this->clearPidFile(); + } + } + + function run() { + return true; + } +} diff --git a/lib/queuehandler.php b/lib/queuehandler.php index 3115ea38d..d673f7f94 100644 --- a/lib/queuehandler.php +++ b/lib/queuehandler.php @@ -19,7 +19,11 @@ define('CLAIM_TIMEOUT', 1200); -class QueueHandler { +if (!defined('LACONICA')) { exit(1); } + +require_once(INSTALLDIR.'/lib/daemon.php'); + +class QueueHandler extends Daemon { var $_id = 'generic'; @@ -32,6 +36,10 @@ class QueueHandler { function class_name() { return ucfirst($this->transport()) . 'Handler'; } + + function name() { + return strtolower($this->class_name().'.'.$this->get_id()); + } function get_id() { return $this->_id; @@ -55,7 +63,10 @@ class QueueHandler { return true; } - function handle_queue() { + function run() { + if (!$this->start()) { + return false; + } $this->log(LOG_INFO, 'checking for queued notices'); $transport = $this->transport(); do { @@ -87,6 +98,10 @@ class QueueHandler { $this->idle(5); } } while (true); + if (!$this->finish()) { + return false; + } + return true; } function idle($timeout=0) { -- cgit v1.2.3-54-g00ecf