forked from colinmollenhour/credis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.php
513 lines (461 loc) · 15.5 KB
/
Client.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<?php
/**
* Credis_Client, a fork of Redisent (a Redis interface for the modest)
*
* All commands are compatible with phpredis library except:
* - use "pipeline()" to start a pipeline of commands instead of multi(Redis::PIPELINE)
* - any arrays passed as arguments will be flattened automatically
* - setOption and getOption are not supported in native mode
* - order of arguments follows redis-cli instead of phpredis where they differ
*
* Uses phpredis library if extension is installed.
*
* Establishes connection lazily.
*
* @author Colin Mollenhour <colin@mollenhour.com>
* @author Justin Poliey <jdp34@njit.edu>
* @copyright 2009 Justin Poliey <jdp34@njit.edu>, Colin Mollenhour <colin@mollenhour.com>
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
* @package Credis_Client
*/
namespace Credis;
if( ! defined('CRLF')) define('CRLF', sprintf('%s%s', chr(13), chr(10)));
/**
* Wraps native Redis errors in friendlier PHP exceptions
*/
class CredisException extends \Exception {
}
/**
* Credis_Client, a Redis interface for the modest among us
*
* Server/Connection:
* @method string auth(string $password)
* @method string select(int $index)
* @method Client pipeline()
* @method Client multi()
* @method array exec()
* @method string flushAll()
* @method string flushDb()
*
* Keys:
* @method int del(string $key)
* @method int exists(string $key)
* @method int expire(string $key, int $seconds)
* @method int expireAt(string $key, int $timestamp)
* @method int persist(string $key)
* @method int ttl(string $key)
* @method string type(string $key)
* @method array keys(string $key)
*
* Strings:
* @method null|string get(string $key)
* @method string set(string $key, string $value)
* @method string setEx(string $key, int $seconds, string $value)
*
* Sets:
* @method int sAdd(string $key, string|array $value, ...)
* @method int sRem(string $key, string|array $value, ...)
* @method array sMembers(string $key)
* @method array sUnion(string|array $key, string $key2, ...)
* @method array sInter(string|array $key, string $key2, ...)
* @method array sDiff(string|array $key, string $key2, ...)
*/
class Client {
const TYPE_STRING = 'string';
const TYPE_LIST = 'list';
const TYPE_SET = 'set';
const TYPE_ZSET = 'zset';
const TYPE_HASH = 'hash';
const TYPE_NONE = 'none';
const FREAD_BLOCK_SIZE = 8192;
/**
* Socket connection to the Redis server or Redis library instance
* @var resource|Redis
*/
protected $redis;
protected $redisMulti;
/**
* Host of the Redis server
* @var string
*/
protected $host;
/**
* Port on which the Redis server is running
* @var integer
*/
protected $port;
/**
* Timeout for connecting to Redis server
* @var float
*/
protected $timeout;
/**
* @var bool
*/
protected $connected = FALSE;
/**
* @var bool
*/
protected $standalone;
/**
* @var bool
*/
protected $use_pipeline = FALSE;
/**
* @var array
*/
protected $commandNames;
/**
* @var string
*/
protected $commands;
/**
* @var bool
*/
protected $is_multi = FALSE;
/**
* Aliases for backwards compatibility with phpredis
* @var array
*/
protected $aliased_methods = array("delete"=>"del","getkeys"=>"keys","sremove"=>"srem");
/**
* Creates a Redisent connection to the Redis server on host {@link $host} and port {@link $port}.
* @param string $host The hostname of the Redis server
* @param integer $port The port number of the Redis server
* @param float $timeout Timeout period in seconds
*/
public function __construct($host = '127.0.0.1', $port = 6379, $timeout = 2.5)
{
$this->host = $host;
$this->port = $port;
$this->timeout = $timeout;
$this->standalone = ! extension_loaded('redis');
}
public function __destruct()
{
$this->close();
}
/**
* @return Client
*/
public function forceStandalone()
{
if($this->connected) {
throw new CredisException('Cannot force Credis_Client to use standalone PHP driver after a connection has already been established.');
}
$this->standalone = TRUE;
return $this;
}
/**
* @throws CredisException
*/
public function connect()
{
if($this->standalone) {
if(substr($this->host,0,1) == '/') {
$remote_socket = 'unix://'.$this->host;
$this->port = null;
}
else {
$remote_socket = 'tcp://'.$this->host.':'.$this->port;
}
#$this->redis = @fsockopen($this->host, $this->port, $errno, $errstr, $this->timeout);
$this->redis = @stream_socket_client($remote_socket, $errno, $errstr, $this->timeout);
if( ! $this->redis) {
throw new CredisException("Connection to {$this->host}".($this->port ? ":{$this->port}":'')." failed: $errstr ($errno)");
}
}
else {
$this->redis = new \Redis;
if(substr($this->host,0,1) == '/') {
$result = $this->redis->connect($this->host, null, $this->timeout);
} else {
$result = $this->redis->connect($this->host, $this->port, $this->timeout);
}
if( ! $result) {
throw new CredisException("An error occurred connecting to Redis.");
}
}
$this->connected = TRUE;
}
/**
* @return bool
*/
public function close()
{
$result = TRUE;
if($this->connected) {
if($this->standalone) {
$result = fclose($this->redis);
}
else {
$result = $this->redis->close();
}
$this->connected = FALSE;
}
return $result;
}
public function __call($name, $args)
{
// Lazy connection
$this->connected or $this->connect();
$name = strtolower($name);
// Flatten array arguments to multiple arguments except if using phpredis with mget
if($name == 'mget' && ! $this->standalone) {
if(isset($args[0]) && ! is_array($args[0])) {
$args = array($args);
}
}
else if($name == 'lrem' && ! $this->standalone) {
$args = array($args[0], $args[2], $args[1]);
}
else {
$argsFlat = NULL;
foreach($args as $index => $arg) {
if(is_array($arg)) {
if($argsFlat === NULL) {
$argsFlat = array_slice($args, 0, $index);
}
$argsFlat = array_merge($argsFlat, $arg);
} else if($argsFlat !== NULL) {
$argsFlat[] = $arg;
}
}
if($argsFlat !== NULL) {
$args = $argsFlat;
$argsFlat = NULL;
}
}
// Send request via native PHP
if($this->standalone)
{
// In pipeline mode
if($this->use_pipeline)
{
if($name == 'pipeline') {
throw new CredisException('A pipeline is already in use and only one pipeline is supported.');
}
else if($name == 'exec') {
if($this->is_multi) {
$this->commandNames[] = $name;
$this->commands .= self::_prepare_command(array($name));
}
// Write request
if($this->commands) {
$this->write_command($this->commands);
}
$this->commands = NULL;
// Read response
$response = array();
foreach($this->commandNames as $command) {
$response[] = $this->read_reply($command);
}
$this->commandNames = NULL;
if($this->is_multi) {
$response = array_pop($response);
}
$this->use_pipeline = $this->is_multi = FALSE;
return $response;
}
else {
if($name == 'multi') {
$this->is_multi = TRUE;
}
array_unshift($args, $name);
$this->commandNames[] = $name;
$this->commands .= self::_prepare_command($args);
return $this;
}
}
// Start pipeline mode
if($name == 'pipeline')
{
$this->use_pipeline = TRUE;
$this->commandNames = array();
$this->commands = '';
return $this;
}
// Non-pipeline mode
array_unshift($args, $name);
$command = self::_prepare_command($args);
$this->write_command($command);
$response = $this->read_reply($name);
// Transaction mode
if($this->is_multi && ($name == 'exec' || $name == 'discard')) {
$this->is_multi = FALSE;
}
// Started transaction
else if($this->is_multi || $name == 'multi') {
$this->is_multi = TRUE;
$response = $this;
}
}
// Send request via phpredis client
else
{
try {
// Proxy pipeline mode to the phpredis library
if($name == 'pipeline' || $name == 'multi') {
if($this->is_multi) {
return $this;
} else {
$this->is_multi = TRUE;
$this->redisMulti = call_user_func_array(array($this->redis, $name), $args);
}
}
else if($name == 'exec' || $name == 'discard') {
$this->is_multi = FALSE;
$response = $this->redisMulti->$name();
$this->redisMulti = NULL;
return $response;
}
// Use aliases to be compatible with phpredis wrapper
if(isset($this->aliased_methods[$name])) {
$name = $this->aliased_methods[$name];
}
// Multi and pipeline return self for chaining
if($this->is_multi) {
call_user_func_array(array($this->redisMulti, $name), $args);
return $this;
}
$response = call_user_func_array(array($this->redis, $name), $args);
}
// Wrap exceptions
catch(\RedisException $e) {
throw new CredisException($e->getMessage(), $e->getCode());
}
// phpredis sometimes does not use correct return values (we adhere to official redis docs)
switch($name)
{
// Convert false back to null
case 'get':
if($response === FALSE) {
$response = NULL;
}
break;
case 'set':
case 'flushdb':
case 'flushall':
$response = 'OK';
break;
case 'ttl':
if($response === FALSE) {
$response = -1;
}
break;
case 'type':
$typemap = array(
self::TYPE_NONE,
self::TYPE_STRING,
self::TYPE_SET,
self::TYPE_LIST,
self::TYPE_ZSET,
self::TYPE_HASH,
);
$response = $typemap[$response];
break;
// Convert bool back to int
default:
if(is_bool($response)) {
$response = (int) $response;
}
}
}
return $response;
}
protected function write_command($command)
{
/* Execute the command */
for ($written = 0; $written < strlen($command); $written += $fwrite) {
$fwrite = fwrite($this->redis, substr($command, $written));
if ($fwrite === FALSE) {
throw new CredisException('Failed to write entire command to stream');
}
}
}
protected function read_reply($name = '')
{
$reply = fgets($this->redis);
if($reply !== FALSE) {
$reply = rtrim($reply, CRLF);
}
switch (substr($reply, 0, 1)) {
/* Error reply */
case '-':
if($this->is_multi || $this->use_pipeline) {
$response = FALSE;
} else {
throw new CredisException(substr($reply, 4));
}
break;
/* Inline reply */
case '+':
$response = substr($reply, 1);
break;
/* Bulk reply */
case '$':
if ($reply == '$-1') return null;
$size = (int) substr($reply, 1);
$response = stream_get_contents($this->redis, $size + 2);
if( ! $response)
throw new CredisException('Error reading reply.');
$response = substr($response, 0, $size);
break;
/* Multi-bulk reply */
case '*':
$count = substr($reply, 1);
if ($count == '-1') return null;
$response = array();
for ($i = 0; $i < $count; $i++) {
$response[] = $this->read_reply();
}
break;
/* Integer reply */
case ':':
$response = intval(substr($reply, 1));
break;
default:
throw new CredisException('Invalid response: '.print_r($reply));
break;
}
// Smooth over differences between phpredis and standalone response
switch($name)
{
case '': break;
case 'hgetall':
$keys = $values = array();
while($response) {
$keys[] = array_shift($response);
$values[] = array_shift($response);
}
$response = array_combine($keys, $values);
break;
case 'info':
$lines = explode(CRLF, $response);
$response = array();
foreach($lines as $line) {
list($key, $value) = explode(':', $line, 2);
$response[$key] = $value;
}
break;
default:
break;
}
/* Party on */
return $response;
}
/**
* Build the Redis unified protocol command
*
* @param array $args
* @return string
*/
private static function _prepare_command($args)
{
return sprintf('*%d%s%s%s', count($args), CRLF, implode(array_map(array('self', '_map'), $args), CRLF), CRLF);
}
private static function _map($arg)
{
return sprintf('$%d%s%s', strlen($arg), CRLF, $arg);
}
}