Add analytics
[bus.git] / busui / owa / includes / Daemon.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
/**
 * @package binarychoice.system.unix
 * @since 1.0.3
 */
 
// Log message levels
define('DLOG_TO_CONSOLE', 1);
define('DLOG_NOTICE', 2);
define('DLOG_WARNING', 4);
define('DLOG_ERROR', 8);
define('DLOG_CRITICAL', 16);
 
/**
 * Daemon base class
 *
 * Requirements:
 * Unix like operating system
 * PHP 4 >= 4.3.0 or PHP 5
 * PHP compiled with:
 * --enable-sigchild
 * --enable-pcntl
 *
 * @package binarychoice.system.unix
 * @author Michal 'Seth' Golebiowski <seth at binarychoice dot pl>
 * @copyright Copyright 2005 Seth
 * @since 1.0.3
 */
class Daemon
{
   /**#@+
    * @access public
    */
   /**
    * User ID
    * 
    * @var int
    * @since 1.0
    */
   var $userID = 99;
 
   /**
    * Group ID
    * 
    * @var integer
    * @since 1.0
    */
   var $groupID = 99;
   
   /**
    * Terminate daemon when set identity failure ?
    * 
    * @var bool
    * @since 1.0.3
    */
   var $requireSetIdentity = false;
 
   /**
    * Path to PID file
    * 
    * @var string
    * @since 1.0.1
    */
   var $pidFileLocation = '/tmp/daemon.pid';
 
   /**
    * Home path
    * 
    * @var string
    * @since 1.0
    */
   var $homePath = '/';
   /**#@-*/
 
 
   /**#@+
    * @access protected
    */
   /**
    * Current process ID
    * 
    * @var int
    * @since 1.0
    */
   var $_pid = 0;
 
   /**
    * Is this process a children
    * 
    * @var boolean
    * @since 1.0
    */
   var $_isChildren = false;
 
   /**
    * Is daemon running
    * 
    * @var boolean
    * @since 1.0
    */
   var $_isRunning = false;
   /**#@-*/
 
 
   /**
    * Constructor
    *
    * @access public
    * @since 1.0
    * @return void
    */
   function __construct()
   {
      error_reporting(0);
      set_time_limit(0);
      ob_implicit_flush();
 
   }
 
   /**
    * Starts daemon
    *
    * @access public
    * @since 1.0
    * @return bool
    */
   function start()
   {
      $this->_logMessage('Starting daemon');
 
      if (!$this->_daemonize())
      {
         $this->_logMessage('Could not start daemon', DLOG_ERROR);
 
         return false;
      }
 
 
      $this->_logMessage('Running...');
 
      $this->_isRunning = true;
 
 
      while ($this->_isRunning)
      {
         $this->_doTask();
      }
 
      return true;
   }
 
   /**
    * Stops daemon
    *
    * @access public
    * @since 1.0
    * @return void
    */
   function stop()
   {
      $this->_logMessage('Stoping daemon');
 
      $this->_isRunning = false;
   }
 
   /**
    * Do task
    *
    * @access protected
    * @since 1.0
    * @return void
    */
   function _doTask()
   {
          // override this method
   }
 
   /**
    * Logs message
    *
    * @access protected
    * @since 1.0
    * @return void
    */
   function _logMessage($msg, $level = DLOG_NOTICE)
   {
         // override this method
   }
 
   /**
    * Daemonize
    *
    * Several rules or characteristics that most daemons possess:
    * 1) Check is daemon already running
    * 2) Fork child process
    * 3) Sets identity
    * 4) Make current process a session laeder
    * 5) Write process ID to file
    * 6) Change home path
    * 7) umask(0)
    * 
    * @access private
    * @since 1.0
    * @return void
    */
   function _daemonize()
   {
      ob_end_flush();
 
      if ($this->_isDaemonRunning())
      {
         // Deamon is already running. Exiting
         return false;
      }
 
      if (!$this->_fork())
      {
         // Coudn't fork. Exiting.
         return false;
      }
 
      if (!$this->_setIdentity() && $this->requireSetIdentity)
      {
         // Required identity set failed. Exiting
         return false;
      }
 
      if (!posix_setsid())
      {
         $this->_logMessage('Could not make the current process a session leader', DLOG_ERROR);
 
         return false;
      }
 
      if (!$fp = @fopen($this->pidFileLocation, 'w'))
      {
         $this->_logMessage('Could not write to PID file', DLOG_ERROR);
 
         return false;
      }
      else
      {
         fputs($fp, $this->_pid);
         fclose($fp);
      }
 
      @chdir($this->homePath);
      umask(0);
 
      declare(ticks = 1);
 
      pcntl_signal(SIGCHLD, array(&$this, 'sigHandler'));
      pcntl_signal(SIGTERM, array(&$this, 'sigHandler'));
 
      return true;
   }
 
   /**
    * Cheks is daemon already running
    *
    * @access private
    * @since 1.0.3
    * @return bool
    */
   function _isDaemonRunning()
   {
      $oldPid = @file_get_contents($this->pidFileLocation);
 
      if ($oldPid !== false && posix_kill(trim($oldPid),0))
      {
         $this->_logMessage('Daemon already running with PID: '.$oldPid, (DLOG_TO_CONSOLE | DLOG_ERROR));
 
         return true;
      }
      else
      {
         return false;
      }
   }
 
   /**
    * Forks process
    *
    * @access private
    * @since 1.0
    * @return bool
    */
   function _fork()
   {
      $this->_logMessage('Forking...');
      
      if (!function_exists('pcntl_fork')) {
        $this->_logMessage('Forking 2...');
      }
      $pid = pcntl_fork();
      
      if ($pid == -1) // error
      {
         $this->_logMessage('Could not fork', DLOG_ERROR);
 
         return false;
      }
      else if ($pid) // parent
      {
         $this->_logMessage('Killing parent');
 
         exit();
      }
      else // children
      {
         $this->_isChildren = true;
         $this->_pid = posix_getpid();
 
         return true;
      }
   }
 
   /**
    * Sets identity of a daemon and returns result
    *
    * @access private
    * @since 1.0
    * @return bool
    */
   function _setIdentity()
   {
      if (!posix_setgid($this->groupID) || !posix_setuid($this->userID))
      {
         $this->_logMessage('Could not set identity', DLOG_WARNING);
 
         return false;
      }
      else
      {
         return true;
      }
   }
 
   /**
    * Signals handler
    *
    * @access public
    * @since 1.0
    * @return void
    */
   function sigHandler($sigNo)
   {
      switch ($sigNo)
      {
         case SIGTERM:   // Shutdown
            $this->_logMessage('Shutdown signal');
            exit();
            break;
 
         case SIGCHLD:   // Halt
            $this->_logMessage('Halt signal');
            while (pcntl_waitpid(-1, $status, WNOHANG) > 0);
            break;
      }
   }
 
   /**
    * Releases daemon pid file
    * This method is called on exit (destructor like)
    *
    * @access public
    * @since 1.0
    * @return void
    */
   function __destruct()
   {
      if ($this->_isChildren && file_exists($this->pidFileLocation))
      {
         $this->_logMessage('Releasing daemon');
 
         unlink($this->pidFileLocation);
      }
   }
}
?>