-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathConcurrentFIFO.php
311 lines (272 loc) · 8.23 KB
/
ConcurrentFIFO.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
<?php
/**
* File-based FIFO specifically designed for concurrent access - think IPC,
* processing queues etc. Can do over 18K/s operations depending
* on disk speed with guaranteed atomicicity.
*
* Data is written sequencially to the file and the first item pointer is advanced
* as items are dequeued. The file is truncated when all items have been dequeued and
* compacted when the the wasted space is greater than 4K so the file should remain a
* reasonable size as long as the number of dequeues > enqueues over time.
*/
class ConcurrentFIFO {
/**
* Our file pointer
* @var resource
*/
private $fp, $filename;
const INDEX_FORMAT = 'V4';
const INDEX_UNPACK = 'Vstart/Vend/Vlen/Vchecksum';
const INDEX_SIZE = 16;
const LENGTH_FORMAT = 'v';
const LENGTH_SIZE = 2;
const BUFSIZ = 8192; // copy 8K chunks when compacting
const COMPACT_AT = 4096; // allow 4K before truncating
/**
* Poll frequency for blocking operations (in microseconds)
* @var int
*/
public $poll_frequency = 100000;
/**
* Open or create a new list
*
* @param string $filename path to file
* @throws Exception if the open fails for any reason
*/
function __construct($filename) {
touch($filename);
$this->fp = fopen($filename, 'rb+');
$this->filename = $filename;
if(!$this->fp) throw new Exception("Failed to open '{$filename}'");
}
/**
* Read the list index and validate the checksum.
* Returns an assoc array with the elements 'start', 'end', 'len' and 'checksum'
*
* @access private
* @return multitype:int
*/
function _read_index() {
fseek($this->fp, 0);
$buffer = fread($this->fp, self::INDEX_SIZE);
if(!$buffer) return null;
$data = unpack(self::INDEX_UNPACK, $buffer);
if(($data['start'] ^ $data['end'] ^ $data['len']) != $data['checksum']) throw new Exception("Index corrupt - rebuild required");
return $data;
}
/**
* Writes the list index including a checksum.
*
* @access private
* @param int $start first item pointer
* @param int $end end of data pointer
* @param int $len number of items
*/
function _write_index($start, $end, $len) {
$checksum = $start ^ $end ^ $len;
fseek($this->fp, 0);
fwrite($this->fp, pack(self::INDEX_FORMAT, $start, $end, $len, $checksum));
}
/**
* Read an integer from the datafile according to the format provided.
*
* @access private
* @param string $format one of the unpack() format strings
* @param int $size number of bytes the format string requires
* @return int
*/
function _read_int($format, $size) {
$buffer = fread($this->fp, $size);
if(!$buffer) return 0;
$u = unpack($format, $buffer);
return $u[1];
}
/**
* Get the first available from the queue, or null if the queue is empty
*
* @return string
*/
function dequeue() {
// need an exclusive lock
flock($this->fp, LOCK_EX) or die('Failed to get lock');
$index = $this->_read_index();
if($index) {
// read the length and get the data
fseek($this->fp, $index['start']);
$l = $this->_read_int(self::LENGTH_FORMAT, self::LENGTH_SIZE);
// TODO: should be able to recover from zero data length here
if(!$l) throw new Exception("Zero data length");
$data = fread($this->fp, $l);
$p = ftell($this->fp);
// check if there is any more data
if($p < $index['end']) {
if($p > self::COMPACT_AT) {
// compaction writes the new index
$this->_compact($p, $index['end'], $index['len'] - 1);
} else {
// just update the start pointer
$this->_write_index($p, $index['end'], $index['len'] - 1);
}
} else {
// can just truncate the whole file
ftruncate($this->fp, 0);
}
} else {
$data = null;
}
flock($this->fp, LOCK_UN);
return $data;
}
/**
* Add an item to the queue.
*
* @param unknown_type $data
* @throws Exception if there is no data to add
* @return int the number of items in the queue after this operation
*/
function enqueue($data) {
$data = (string) $data;
$c = strlen($data);
if($c == 0) throw new Exception("No data");
// get exclusive lock
flock($this->fp, LOCK_EX) or die('Failed to get lock');
// read and update the index
$index = $this->_read_index();
if(!$index) {
$index = array('start' => self::INDEX_SIZE, 'end' => self::INDEX_SIZE, 'len' => 0);
}
fseek($this->fp, $index['end']);
// write length followed by data
fwrite($this->fp, pack(self::LENGTH_FORMAT, $c), self::LENGTH_SIZE);
fwrite($this->fp, $data, $c);
$this->_write_index($index['start'], $index['end'] + $c + self::LENGTH_SIZE, $index['len'] + 1);
//echo "Wrote {$data} at {$index['end']}\n";
// release lock
flock($this->fp, LOCK_UN);
return $index['len'] + 1;
}
/**
* Check if the queue is empty.
* Note that calling dequeue() and checking for null is an atomic operation where as
* if (!$q->is_empty()) $data = $q->dequeue()
* is not!
* @return boolean
*/
function is_empty() {
flock($this->fp, LOCK_SH) or die('Failed to get lock');
$index = $this->_read_index();
flock($this->fp, LOCK_UN);
return ($index === null);
}
/**
* Get the number of items currently in the queue
*
* @return int
*/
function count() {
flock($this->fp, LOCK_SH) or die('Failed to get lock');
$index = $this->_read_index();
flock($this->fp, LOCK_UN);
return ($index === null) ? 0 : $index['len'];
}
/**
* Remove all elements from the queue.
* Actually just truncates the file.
*/
function clear() {
flock($this->fp, LOCK_EX) or die('Failed to get lock');
ftruncate($this->fp, 0);
flock($this->fp, LOCK_UN);
}
/**
* Delete the queue entirely.
* Note any further attempts to modify the queue will result in an exception.
*/
function delete() {
flock($this->fp, LOCK_EX) or die('Failed to get lock');
fclose($this->fp);
unlink($this->filename);
$this->fp = null;
}
/**
* Return an array of items from the queue. Does not modify the queue in any way.
*
* @param int $offset skip $offset items at the start
* @param int $count return up to $count items
* @return multitype:string
*/
function items($offset=0, $count=0) {
flock($this->fp, LOCK_SH) or die('Failed to get lock');
$index = $this->_read_index();
if(!$index) return array();
$result = array();
$p = $index['start'];
while($p < $index['end']) {
$l = $this->_read_int(self::LENGTH_FORMAT, self::LENGTH_SIZE);
if(!$l) break;
$data = fread($this->fp, $l);
$p += $l + self::LENGTH_SIZE;
assert($p == ftell($this->fp));
if($offset) {
$offset--;
} else {
$result[] = $data;
if($count) {
$count--;
if(!$count) break;
}
}
}
flock($this->fp, LOCK_UN);
return $result;
}
/**
* Compacts the data file by shifting the unprocessed items to the start of the datafile
* and truncating to the new length. This is currently an unprotected operation so
* if this crashes mid operation the the data will corrupt. The parameters are the current
* values from the index.
*
* @access private
* @todo protect this operation
* @param int $start current start pointer
* @param int $end current end pointer
* @param int $len number of items
*/
function _compact($start, $end, $len) {
// truncate start
$p_current = $start;
$p_new = self::INDEX_SIZE;
fseek($this->fp, $p_current);
while($buffer = fread($this->fp, self::BUFSIZ)) {
fseek($this->fp, $p_new);
$c = strlen($buffer);
//echo "Writing {$c} bytes from {$p_current} to {$p_new}\n";
fwrite($this->fp, $buffer, $c);
$p_current += $c;
$p_new += $c;
fseek($this->fp, $p_current);
}
ftruncate($this->fp, $p_new);
$this->_write_index(self::INDEX_SIZE, $end - $start + self::INDEX_SIZE, $len);
}
/**
* Pseudo blocking version of dequeue()
* Returns immediately if data is available, otherwise polls/sleeps
* every ConcurrentFIFO::$poll_frequency microseconds until data becomes available.
*
* @param int $timeout maximum time (in seconds) to block for, or zero for forever
* @return string data or null if timed out
*/
function bdequeue($timeout) {
$start = microtime(true);
while(true) {
$data = $this->dequeue();
if($data !== null) return $data;
usleep($this->poll_frequency);
if($timeout && (microtime(true) > $start + $timeout)) return null;
}
}
function __toString() {
return "<FIFO: {$this->filename}>";
}
}