#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $shortoptions = 'fi::a'; $longoptions = array('id::', 'foreground', 'all'); $helptext = <<allsites = $allsites; } function runThread() { common_log(LOG_INFO, 'Waiting to listen to IM connections and queues'); $master = new ImMaster($this->get_id(), $this->processManager()); $master->init($this->allsites); $master->service(); common_log(LOG_INFO, 'terminating normally'); return $master->respawn ? self::EXIT_RESTART : self::EXIT_SHUTDOWN; } } class ImMaster extends IoMaster { protected $processManager; function __construct($id, $processManager) { parent::__construct($id); $this->processManager = $processManager; } /** * Initialize IoManagers for the currently configured site * which are appropriate to this instance. */ function initManagers() { $classes = array(); if (Event::handle('StartImDaemonIoManagers', array(&$classes))) { $qm = QueueManager::get(); $qm->setActiveGroup('im'); $classes[] = $qm; $classes[] = $this->processManager; } Event::handle('EndImDaemonIoManagers', array(&$classes)); foreach ($classes as $class) { $this->instantiate($class); } } } if (version_compare(PHP_VERSION, '5.2.6', '<')) { $arch = php_uname('m'); if ($arch == 'x86_64' || $arch == 'amd64') { print "Aborting daemon - 64-bit PHP prior to 5.2.6 has known bugs in stream_select; you are running " . PHP_VERSION . " on $arch.\n"; exit(1); } } if (have_option('i', 'id')) { $id = get_option_value('i', 'id'); } else if (count($args) > 0) { $id = $args[0]; } else { $id = null; } $foreground = have_option('f', 'foreground'); $all = have_option('a') || have_option('--all'); $daemon = new ImDaemon($id, !$foreground, 1, $all); $daemon->runOnce();