2008-07-04 05:07:46 +01:00
|
|
|
<?php
|
2020-06-28 23:41:46 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2008-07-04 05:07:46 +01:00
|
|
|
/**
|
|
|
|
* Table Definition for queue_item
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
|
|
|
|
defined('GNUSOCIAL') || die();
|
2008-07-04 05:07:46 +01:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
class Queue_item extends Managed_DataObject
|
2008-07-04 05:07:46 +01:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'queue_item'; // table name
|
2010-01-22 20:52:36 +00:00
|
|
|
public $id; // int(4) primary_key not_null
|
|
|
|
public $frame; // blob not_null
|
2013-09-18 00:21:53 +01:00
|
|
|
public $transport; // varchar(32)
|
2020-06-28 23:41:46 +01:00
|
|
|
public $created; // datetime()
|
2009-06-28 19:38:34 +01:00
|
|
|
public $claimed; // datetime()
|
2008-07-04 05:07:46 +01:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2008-07-09 23:46:30 +01:00
|
|
|
|
2011-08-22 22:52:02 +01:00
|
|
|
public static function schemaDef()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'fields' => array(
|
|
|
|
'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
|
|
|
|
'frame' => array('type' => 'blob', 'not null' => true, 'description' => 'data: object reference or opaque string'),
|
2013-09-18 00:21:53 +01:00
|
|
|
'transport' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'queue for what? "email", "xmpp", "sms", "irc", ...'),
|
2020-06-28 23:41:46 +01:00
|
|
|
'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
|
2011-08-22 22:52:02 +01:00
|
|
|
'claimed' => array('type' => 'datetime', 'description' => 'date this item was claimed'),
|
|
|
|
),
|
|
|
|
'primary key' => array('id'),
|
|
|
|
'indexes' => array(
|
|
|
|
'queue_item_created_idx' => array('created'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-01-22 20:52:36 +00:00
|
|
|
/**
|
|
|
|
* @param mixed $transports name of a single queue or array of queues to pull from
|
|
|
|
* If not specified, checks all queues in the system.
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
public static function top($transports = null, array $ignored_transports = [])
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$qi = new Queue_item();
|
2010-01-22 20:52:36 +00:00
|
|
|
if ($transports) {
|
|
|
|
if (is_array($transports)) {
|
|
|
|
// @fixme use safer escaping
|
2010-11-19 23:06:26 +00:00
|
|
|
$list = implode("','", array_map(array($qi, 'escape'), $transports));
|
2010-01-22 20:52:36 +00:00
|
|
|
$qi->whereAdd("transport in ('$list')");
|
|
|
|
} else {
|
|
|
|
$qi->transport = $transports;
|
|
|
|
}
|
2010-01-13 03:57:15 +00:00
|
|
|
}
|
2015-07-18 00:09:50 +01:00
|
|
|
if (!empty($ignored_transports)) {
|
|
|
|
// @fixme use safer escaping
|
|
|
|
$list = implode("','", array_map(array($qi, 'escape'), $ignored_transports));
|
|
|
|
$qi->whereAdd("transport NOT IN ('$list')");
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
$qi->orderBy('created');
|
2008-12-23 19:21:29 +00:00
|
|
|
$qi->whereAdd('claimed is null');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$qi->limit(1);
|
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
$cnt = $qi->find(true);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if ($cnt) {
|
2011-03-22 15:54:23 +00:00
|
|
|
// XXX: potential race condition
|
|
|
|
// can we force it to only update if claimed is still null
|
|
|
|
// (or old)?
|
2015-12-31 12:00:20 +00:00
|
|
|
common_log(LOG_INFO, 'claiming queue item id = ' . $qi->getID() . ' for transport ' . $qi->transport);
|
2008-12-23 19:19:07 +00:00
|
|
|
$orig = clone($qi);
|
|
|
|
$qi->claimed = common_sql_now();
|
|
|
|
$result = $qi->update($orig);
|
|
|
|
if ($result) {
|
2015-12-31 12:00:20 +00:00
|
|
|
common_log(LOG_DEBUG, 'claim succeeded.');
|
2008-12-23 19:19:07 +00:00
|
|
|
return $qi;
|
|
|
|
} else {
|
2015-12-31 12:04:50 +00:00
|
|
|
common_log(LOG_ERR, 'claim of queue item id= ' . $qi->getID() . ' for transport ' . $qi->transport . ' failed.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-23 19:21:29 +00:00
|
|
|
$qi = null;
|
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2010-06-26 20:07:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Release a claimed item.
|
|
|
|
*/
|
2020-06-28 23:41:46 +01:00
|
|
|
public function releaseClaim()
|
2010-06-26 20:07:32 +01:00
|
|
|
{
|
2020-07-27 17:10:33 +01:00
|
|
|
// @fixme Consider $this->sqlValue('NULL')
|
|
|
|
$ret = $this->query(sprintf(
|
2020-08-10 15:46:30 +01:00
|
|
|
'UPDATE queue_item SET claimed = NULL WHERE id = %d',
|
2020-07-27 17:10:33 +01:00
|
|
|
$this->getID()
|
|
|
|
));
|
2010-06-26 20:07:32 +01:00
|
|
|
|
2020-07-27 17:10:33 +01:00
|
|
|
if ($ret) {
|
|
|
|
$this->claimed = null;
|
|
|
|
$this->encache();
|
|
|
|
}
|
2010-06-26 20:07:32 +01:00
|
|
|
}
|
2008-07-04 05:07:46 +01:00
|
|
|
}
|