]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Queue_item.php
some formatting changes to make inblobs work
[quix0rs-gnu-social.git] / classes / Queue_item.php
1 <?php
2 /**
3  * Table Definition for queue_item
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class Queue_item extends Memcached_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'queue_item';                      // table name
13     public $notice_id;                       // int(4)  primary_key not_null
14     public $transport;                       // varchar(8)  primary_key not_null
15     public $created;                         // datetime()   not_null
16     public $claimed;                         // datetime()
17
18     /* Static get */
19     function staticGet($k,$v=null)
20     { return Memcached_DataObject::staticGet('Queue_item',$k,$v); }
21
22     /* the code above is auto generated do not remove the tag below */
23     ###END_AUTOCODE
24
25     function sequenceKey()
26     { return array(false, false); }
27
28     static function top($transport) {
29
30         $qi = new Queue_item();
31         $qi->transport = $transport;
32         $qi->orderBy('created');
33         $qi->whereAdd('claimed is null');
34
35         $qi->limit(1);
36
37         $cnt = $qi->find(true);
38
39         if ($cnt) {
40             # XXX: potential race condition
41             # can we force it to only update if claimed is still null
42             # (or old)?
43             common_log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id . ' for transport ' . $transport);
44             $orig = clone($qi);
45             $qi->claimed = common_sql_now();
46             $result = $qi->update($orig);
47             if ($result) {
48                 common_log(LOG_INFO, 'claim succeeded.');
49                 return $qi;
50             } else {
51                 common_log(LOG_INFO, 'claim failed.');
52             }
53         }
54         $qi = null;
55         return null;
56     }
57
58     function &pkeyGet($kv)
59     {
60         return Memcached_DataObject::pkeyGet('Queue_item', $kv);
61     }
62 }