]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/queuehandler.php
Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into...
[quix0rs-gnu-social.git] / lib / queuehandler.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/daemon.php');
23 require_once(INSTALLDIR.'/classes/Queue_item.php');
24 require_once(INSTALLDIR.'/classes/Notice.php');
25
26 define('CLAIM_TIMEOUT', 1200);
27 define('QUEUE_HANDLER_MISS_IDLE', 10);
28 define('QUEUE_HANDLER_HIT_IDLE', 0);
29
30 class QueueHandler extends Daemon
31 {
32     var $_id = 'generic';
33
34     function __construct($id=null, $daemonize=true)
35     {
36         parent::__construct($daemonize);
37
38         if ($id) {
39             $this->set_id($id);
40         }
41     }
42
43     function timeout()
44     {
45         return 60;
46     }
47
48     function class_name()
49     {
50         return ucfirst($this->transport()) . 'Handler';
51     }
52
53     function name()
54     {
55         return strtolower($this->class_name().'.'.$this->get_id());
56     }
57
58     function get_id()
59     {
60         return $this->_id;
61     }
62
63     function set_id($id)
64     {
65         $this->_id = $id;
66     }
67
68     function transport()
69     {
70         return null;
71     }
72
73     function start()
74     {
75     }
76
77     function finish()
78     {
79     }
80
81     function handle_notice($notice)
82     {
83         return true;
84     }
85
86     function run()
87     {
88         if (!$this->start()) {
89             return false;
90         }
91
92         $this->log(LOG_INFO, 'checking for queued notices');
93
94         $queue   = $this->transport();
95         $timeout = $this->timeout();
96
97         $qm = QueueManager::get();
98
99         $qm->service($queue, $this);
100
101         if (!$this->finish()) {
102             return false;
103         }
104         return true;
105     }
106
107     function idle($timeout=0)
108     {
109         if ($timeout > 0) {
110             sleep($timeout);
111         }
112     }
113
114     function log($level, $msg)
115     {
116         common_log($level, $this->class_name() . ' ('. $this->get_id() .'): '.$msg);
117     }
118 }
119