]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/queuehandler.php
d3d091f2ff038cfd467d9db15c8380d3307e199b
[quix0rs-gnu-social.git] / lib / queuehandler.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, 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
33     function __construct($id=null, $daemonize=true)
34     {
35         parent::__construct($daemonize);
36
37         if ($id) {
38             $this->set_id($id);
39         }
40     }
41
42     function timeout()
43     {
44         return 60;
45     }
46
47     function class_name()
48     {
49         return ucfirst($this->transport()) . 'Handler';
50     }
51
52     function name()
53     {
54         return strtolower($this->class_name().'.'.$this->get_id());
55     }
56
57     function transport()
58     {
59         return null;
60     }
61
62     function start()
63     {
64     }
65
66     function finish()
67     {
68     }
69
70     function handle_notice($notice)
71     {
72         return true;
73     }
74
75     function run()
76     {
77         if (!$this->start()) {
78             return false;
79         }
80
81         $this->log(LOG_INFO, 'checking for queued notices');
82
83         $queue   = $this->transport();
84         $timeout = $this->timeout();
85
86         $qm = QueueManager::get();
87
88         $qm->service($queue, $this);
89
90         if (!$this->finish()) {
91             return false;
92         }
93         return true;
94     }
95
96     function idle($timeout=0)
97     {
98         if ($timeout > 0) {
99             sleep($timeout);
100         }
101     }
102
103     function log($level, $msg)
104     {
105         common_log($level, $this->class_name() . ' ('. $this->get_id() .'): '.$msg);
106     }
107
108     function getSockets()
109     {
110         return array();
111     }
112 }
113