My favorites
▼
|
Sign in
redis-ajax-chat
AGPsource Ajax Chat based on Redis server
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
lib
/
Redis_Server.php
‹r4
r5
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
<?php
/**
* Redis_Server main class
*
*
* @category Redis
* @package Redis_Server
* @copyright Copyright (c) Aleksandr Lozovuk (http://abrdev.com)
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
*/
//including Redis Exception defination
// included in the end of this file
class Redis_Server
{
/**
* @var default Redis port
*/
private $_defaultPort = 6379;
/**
* @var default Redis host
*/
private $_defaultHost = 'localhost';
/**
* using PHP-extension or pure PHP library
* http://code.google.com/p/phpredis
* @var
*/
private $using = 'php'; //php or ext
/**
* Last error
* @var
*/
private $_error = null;
/**
* Default timeout to using with sockets,detailed see manual for stream_set_timeout
* @var
*/
private $_socketTimeout = 30;
/**
* Experimental - using persistent socket connection (see pfsockopen PHP function)
* @var
*/
private $_usingPsocketConnection = false;
/**
* Experimental - save opened db before destruct object (! not close connection individually)
* @var
*/
public $_useSaveBeforeClose = false;
private $_minimalTimeoutForSave = 300; //timeout between save in shutdown
private $_sendQuitCommandToServer = true; //using QUIT command before close connection
/**
* Default delimetr
* @var
*/
private $_defaultDelimetr = "\r\n";
/**
* Delimetr in bulk responce, e.g. INFO command
* @var
*/
private $_keyValueDelimetr = ':';
/**
* Always using serialization before add
* @var
*/
public $useSerialization = false;
/**
* Using if the multiple server instance is used by one application. Default using instance in index 0
* @var
*/
private $server = Array();
/**
*
* @return int - index of our server connection or Exception
* @param string $host[optional] Host for connect to Redis server
* @param integer $port[optional] Port for Redis server
* //Depricated @param integer $indexInstance[optional] If multiple instance, set the index (default 0)
* @param integer $timeout[optional]
* @param Boolean $pconnect[optional] Force using pesistent socket connection
* @param string $using[optional] Option, force using PHP pure library or extension
*/
public function __construct($host = null, $port = null, $timeout = 30, $pconnect = false, $using = 'php')
{
if ((isset($using)) && ($using == 'ext'))
{
if ($this->__check_module() === FALSE)
{
//no extension
throw new Redis_Server_ModuleException('You must compile and enabled redis module before using it');
}
else
$this->using = $using;
}
if (($host == null) || (empty($host))) $host = $this->_defaultHost;
if (($port == null) || (empty($port))) $port = $this->_defaultPort;
if (($timeout == null) || (empty($timeout))) $timeout = $this->_socketTimeout;
if (($pconnect == false) || (empty($pconnect))) $pconnect = $this->_usingPsocketConnection;
$connection_handler = null;
if ($this->using == 'php')
{
if ($pconnect == false)
{
$tmp = fsockopen($host, $port, $errno, $this->_error, $timeout);
}
else
{
$tmp = pfsockopen($host, $port, $errno, $this->_error, $timeout);
}
if ($tmp !== FALSE)
{
//It's OK
$count = array_push($this->server, $tmp);
return ($count - 1);
}
else
throw new Redis_Server_SocketException('Can\'t connection from socket, host: ' . $host . ',:' . $port .'. ErrorMsg: ' . $this->_error);
}
else
{
$tmp = new Redis();
$tmp->connect($host, $port);
if (!is_bool($tmp))
{
$count = array_push($this->server, $tmp);
return ($count - 1);
}
else
throw new Redis_Server_SocketException('Can\'t connection from PHP extension. host : ' . $host . ',:' . $port);
}
//NOTE! if using native PHP extension, in the array $server we have Redis instance, in the PHP library - socket descriptor
}
/**
* Creating new server connection with options and return it's index or generate Exception
* @return
* @param object $host[optional]
* @param object $port[optional]
* @param object $timeout[optional]
* @param object $pconnect[optional]
* @param object $using[optional]
*/
public function addServer($host = null, $port = null, $timeout = 30, $pconnect = false, $using = 'php')
{
return $this->__construct($host, $port, $timeout, $pconnect, $using);
}
/**
* Destruct and closing all connection
* @return
*/
public function __destruct()
{
foreach ($this->server as $k=>$item)
{
if ( (!is_bool($item)) && (isset($item)) )
{
if (is_object($item))
{
//using Extension
if ($this->_sendQuitCommandToServer == true)
{
$this->server[$k]->close();
}
else
$this->server[$k]->close();
}
else
if (is_resource($item))
{
//using socket
if ($this->_sendQuitCommandToServer == true)
{
$command = 'QUIT' . $this->_defaultDelimetr;
fwrite($this->server[$k],$command, strlen($command));
}
if (!fclose($this->server[$k]))
throw new Redis_Server_Exception('Can\'t closing connection for server instance at index '.$k .' in server\'s list.');
}
}
}
return true;
}
/**
* return count of server link or instance, opened at now
* @return
*/
public function countServers()
{
// simple method - return count($this->server);
//advanced method, with validation
$count = 0;
foreach ($this->server as $item)
{
if ( (!is_bool($item)) && ( (is_object($item)) || (is_resource($item)) ))
{
$count++;
}
}
return $count;
}
/**
* Commands for Redis server
* @see
*
*/
/**
* SET
* if $useSerialization == true, using serialize()
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $value[optional]
* @param object $useSerialization[optional]
*/
public function set($instance = 0, $key = null, $value = null, $useSerialization = false)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (((empty($key)) || ($key == null)) || ((empty($value)) || ($value == null))) return false;
if ($useSerialization == true)
{
$value = serialize($value);
}
$value_len = strlen($value . '');
$this->_commandQuery('SET ' . $key . ' ' .$value_len . $this->_defaultDelimetr . $value . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* GET
* @return false if error, null if no key exist, or string value
* @param object $instance[optional]
* @param object $key[optional]
*/
public function get($instance = 0, $key = null, $useSerialization = false)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$this->_commandQuery('GET ' . $key . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ($result != false)
{
if ($useSerialization == true)
{
return unserialize($result);
}
else
return $result;
}
else
return false;
}
/**
* MGET
* @return
* @param object $instance[optional]
* @param object $keys[optional]
*/
public function mget($instance = 0, $keys = array(), $useSerialization = false)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($keys)) || (count($keys) == 0)) return false;
$this->_commandQuery('MGET ' . implode(' ', $keys) . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if (($result != false) && (is_array($result)))
{
if ($useSerialization == false)
{
return $result;
}
else
{
foreach ($result as $k=>$i)
{
$result[$k] = unserialize($i);
}
return $result;
}
}
else
return false;
}
/**
* Exists - if return true, keu is existing in db, else return false;
* @return Boolean
* @param object $instance[optional]
* @param object $key[optional]
*/
public function exists($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$this->_commandQuery('EXISTS ' . $key . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ($result == '0') return false;
else
return true;
}
/**
* SETNX
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $value[optional]
*/
public function setnx($instance = 0, $key = null, $value = null, $useSerialization = false)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
if ($this->exists($instance, $key) === true)
{
return true;
}
else
{
return $this->set($instance, $key, $value, $useSerialization);
}
}
/**
* INKR
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function incr($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$this->_commandQuery('INCR ' . $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* DECR
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function decr($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$this->_commandQuery('DECR ' . $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* INCRBY
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $by[optional]
*/
public function incrby($instance = 0, $key = null, $by = 1)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
if (!is_int($by)) $by = 1;
$this->_commandQuery('INCRBY ' . $key . ' ' . $by . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* DECRBY
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $by[optional]
*/
public function decrby($instance = 0, $key = null, $by = 1)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
if (!is_int($by)) $by = 1;
$this->_commandQuery('DECRBY ' . $key . ' ' . $by . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* DELete key, alvays return true
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function del($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return true;
$this->_commandQuery('DEL ' . $key . $this->_defaultDelimetr, $instance, null);
$this->_commandResponseRead($instance);
return true; //always return true
}
/**
* Return type of value, associated with key.
* Possible: none, string, list, set
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function type($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$this->_commandQuery('TYPE ' . $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SORT - Sort the elements contained in the List or Set value at key.
* By defaultsorting is numeric with elements being compared as double precisionfloating point numbers
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $by_pattern[optional]
* @param object $limit_start[optional]
* @param object $limit_end[optional]
* @param object $get_pattern[optional]
* @param object $ask_desk[optional]
* @param object $is_alpha[optional]
*/
public function sort($instance = 0,
$key = null,
$by_pattern = null,
$limit_start = null,
$limit_end = null,
$get_pattern = null,
$ask_desk = null,
$is_alpha = false)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($key)) || ($key == null)) return false;
$command = 'SORT ' . $key;
if ((isset($by_pattern)) && (!empty($by_pattern)))
{
$command = $command . ' BY ' . $by_pattern;
}
if ((isset($limit_end)) && (!empty($limit_end)))
{
if (empty($limit_start)) $limit_start = 0;
$command = $command . ' LIMIT '. $limit_start .' ' . $limit_end;
}
if ((isset($get_pattern)) && (!empty($get_pattern)))
{
$command = $command . ' GET ' . $get_pattern;
}
//default is DESC
if ((isset($ask_desk)) && (!empty($ask_desk)))
{
if (($ask_desk != 'ASC') || ($ask_desk != 'DESC'))
{
$ask_desk = 'DESC';
}
$command = $command . ' ' . $ask_desk;
}
if ((isset($is_alpha)) && (is_bool($is_alpha)))
{
if ($is_alpha == true)
{
$command = $command . ' ALPHA';
}
}
//
$this->_commandQuery($command . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
//========== Commands on Set
/**
* SADD - Add the specified member to the set value stored at key.
* If memberis already a member of the set no operation is performed.
* If keydoes not exist a new set with the specified member as sole member iscrated.
* If the key exists but does not hold a set value an error isreturned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $member[optional]
*/
public function sadd($instance = 0, $key = null, $member = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (empty($member)) return false;
$this->_commandQuery('SADD '. $key . ' ' . strlen($member) . $this->_defaultDelimetr . $member . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SREM - Remove the specified member from the set value stored at key.
* If_member_ was not a member of the set no operation is performed.
* If keydoes not exist or does not hold a set value an error is returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $member[optional]
*/
public function srem($instance = 0, $key = null, $member = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (empty($member)) return false;
$this->_commandQuery('SREM '. $key . ' ' .strlen($member) . $this->_defaultDelimetr . $member . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SCARD - Return the set cardinality (number of elements).
* If the key does notexist 0 is returned, like for empty sets.
* If the key does not holda set value -1 is returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function scard($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
$this->_commandQuery('SCARD '. $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SISMEMBER - Return 1 if member is a member of the set stored at key, otherwise0 is returned.
* On error a negative value is returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $member[optional]
*/
public function sismember($instance = 0, $key = null, $member = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (empty($member)) return false;
$this->_commandQuery('SREM '. $key . ' ' . strlen($member) . $this->_defaultDelimetr . $member . $this->_defaultDelimetr, $instance, null);
$tmp = $this->_commandResponseRead($instance);
if ($tmp == 1) return true;
else
return false;
}
/**
* SINTER - Time complexity O(NM) worst case where N is the cardinality of the smallest set and M the number of sets_
* Return the members of a set resulting from the intersection of all thesets hold at the specified keys.
* Like in LRANGE the result is sent tothe client as a multi-bulk reply (see the protocol specification formore information).
* If just a single key is specified, then this commandproduces the same result as SELEMENTS.
* Actually SELEMENTS is just syntaxsugar for SINTERSECT.
* @return
* @param object $instance[optional]
* @param Array $key[optional]
*/
public function sinter($instance = 0, $keys = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($keys)) return false;
if ((is_array($keys)) && (count($keys) < 1)) return false;
$str = implode(' ', $keys);
$this->_commandQuery('SINTER '. $str . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SINTERSTORE - Time complexity O(NM) worst case where N is the cardinality of the smallest set and M the number of sets_
* This commnad works exactly like SINTER but instead of being returned the resulting set is sotred as _dstkey_.
* @return
* @param object $instance[optional]
* @param object $keys[optional]
*/
public function sinterstore($instance = 0, $dstkey = null, $keys = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($keys)) return false;
if (empty($dstkey)) return false;
if ((is_array($keys)) && (count($keys) < 1)) return false;
$str = implode(' ', $keys);
$this->_commandQuery('SINTERSTORE '. $dstkey . ' ' . $str . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
//
}
/**
* SMEMBERS - Return all the members (elements) of the set value stored at key.
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function smembers($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
$this->_commandQuery('SMEMBERS '. $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
//=============== List Command
// RPUSH
/**
* RPUSH - Add the string value to the head (RPUSH) or tail (LPUSH) of the liststored at key.
* If the key does not exist an empty list is created just beforethe append operation.
* If the key exists but is not a List an erroris returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $value[optional]
*/
public function rpush($instance = 0, $key = null, $value = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (empty($value)) return false;
$this->_commandQuery('RPUSH '. $key . ' ' . strlen($value) . $this->_defaultDelimetr . $value . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LPUSH - Add the string value to the head (RPUSH) or tail (LPUSH) of the liststored at key.
* If the key does not exist an empty list is created just beforethe append operation.
* If the key exists but is not a List an erroris returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $value[optional]
*/
public function lpush($instance = 0, $key = null, $value = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (empty($value)) return false;
$this->_commandQuery('LPUSH '. $key . ' ' . strlen($value) . $this->_defaultDelimetr . $value . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LLEN - Return the length of the list stored at the specified key.
* If thekey does not exist zero is returned (the same behaviour as forempty lists).
* If the value stored at key is not a list an error is returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function llen($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
$this->_commandQuery('LLEN '. $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LRANGE - Return the specified elements of the list stored at the specifiedkey.
* Start and end are zero-based indexes. 0 is the first elementof the list (the list head), 1 the next element and so on.
* For example LRANGE foobar 0 2 will return the first three elementsof the list.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $start[optional]
* @param object $end[optional]
*/
public function lrange($instance = 0, $key = null, $start = null, $end = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if ((!is_int($start)) || (!is_int($end))) return false;
$this->_commandQuery('LRANGE '. $key . ' ' . $start . ' ' . $end . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LTRIM - Trim an existing list so that it will contain only the specifiedrange of elements specified.
* Start and end are zero-based indexes.0 is the first element of the list (the list head), 1 the next elementand so on.
* For example LTRIM foobar 0 2 will modify the list stored at foobarkey
* so that only the first three elements of the list will remain.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $start[optional]
* @param object $end[optional]
*/
public function ltrim($instance = 0, $key = null, $start = null, $end = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if ((!is_int($start)) || (!is_int($end))) return false;
$this->_commandQuery('LTRIM '. $key . ' ' . $start . ' ' . $end . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LINDEX - Return the specified element of the list stored at the specifiedkey.
* 0 is the first element, 1 the second and so on.
* Negative indexesare supported, for example -1 is the last element, -2 the penultimateand so on.
* If the value stored at key is not of list type an error is returned.
* If the index is out of range an empty string is returned.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $index[optional]
*/
public function lindex($instance = 0, $key = null, $index = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (!is_int($index)) return false;
$this->_commandQuery('LINDEX '. $key . ' ' . $index . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LSET - Set the list element at index (see LINDEX for information about the_index_ argument) with the new value.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $index[optional]
* @param object $value[optional]
*/
public function lset($instance = 0, $key = null, $index = null, $value = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (!is_int($index)) return false;
if (empty($value)) return false;
$this->_commandQuery('LSET '. $key . ' ' . $index .' ' . strlen($value) . $this->_defaultDelimetr . $value . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LREM - Remove the first count occurrences of the value element from the list.
* If count is zero all the elements are removed.
* If count is negativeelements are removed from tail to head,
* instead to go from head to tailthat is the normal behaviour.
* So for example LREM with count -2 and_hello_ as value to remove against the list (a,b,c,hello,x,hello,hello)
* willlave the list (a,b,c,hello,x). The number of removed elements is returnedas an integer,
* see below for more information aboht the returned value.
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $count[optional]
* @param object $value[optional]
*/
public function lrem($instance = 0, $key = null, $count = null, $value = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
if (!is_int($count)) return false;
//if (empty($value)) return false;
$this->_commandQuery('LREM '. $key . ' ' . $count .' ' . strlen($value) . $this->_defaultDelimetr . $value . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* LPOP - Atomically return and remove the first (LPOP) or last (RPOP) elementof the list.
* For example if the list contains the elements "a","b","c" LPOPwill return "a" and the list will become "b","c".
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function lpop($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
$this->_commandQuery('LPOP '. $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* RPOP - Atomically return and remove the first (LPOP) or last (RPOP) elementof the list.
* For example if the list contains the elements "a","b","c" LPOPwill return "a" and the list will become "b","c".
* @return
* @param object $instance[optional]
* @param object $key[optional]
*/
public function rpop($instance = 0, $key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (empty($key)) return false;
$this->_commandQuery('RPOP '. $key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
//======== Service Commands
/**
* PING
* @return
* @param object $instance[optional]
*/
public function ping($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('PING'. $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if (strtolower($result) == strtolower('PONG')) return true;
else
return false;
}
/**
* INFO command
* @return Array or false if error (or Exception generated)
* @param object $instance[optional]
*/
public function info($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('INFO'. $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if (is_array($result))
{
$info = Array();
foreach ($result as $item)
{
$tmp = explode($this->_keyValueDelimetr, $item);
$info[trim($tmp[0])] = trim($tmp[1]);
}
return $info;
}
else
return $result;
}
/**
* QUIT
* @return
* @param object $instance[optional]
*/
public function quit($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('QUIT '. $this->_defaultDelimetr, $instance, null);
return true;
}
/**
* DBSIZE - counts key in current db
* @return
* @param object $instance[optional]
*/
public function dbsize($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('DBSIZE'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SHUTDOWN - Stop all the clients, save the DB, then quit the server.
* This commands makes sure that the DB is switched off without the lost of any data.
* This is not guaranteed if the client uses simply "SAVE" and then "QUIT"
* because other clients may alter the DB data between the two commands.
* @return Boolean
* @param object $instance[optional]
*/
public function shutdown($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('SHUTDOWN'.$this->_defaultDelimetr, $instance, null);
$this->_commandResponseRead($instance);
return true;
}
/**
* LASTSAVE Return the UNIX TIME of the last DB save executed with success
* @return
* @param object $instance[optional]
*/
public function lastsave($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('LASTSAVE'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* BGSAVE Save the DB in background. The OK code is immediately returned.
* Redis forks, the parent continues to server the clients, the child saves the DB on disk then exit.
* @return Boolean true if OK, false if error or Exception
* @param object $instance[optional]
*/
public function bgsave($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('BGSAVE'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SAVE Save the DB on disk.
* The server hangs while the saving is not completed, no connection is served in the meanwhile.
* An OK code is returned when the DB was fully stored in disk.
* @return
* @param object $instance[optional]
*/
public function save($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('SAVE'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* FLUSHALL Delete all the keys of all the existing databases, not just the currently selected one. This command never fails.
* @return
* @param object $instance[optional]
*/
public function flushall($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('FLUSHALL'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* FLUSHDB Delete all the keys of the currently selected DB. This command never fails.
* @return
* @param object $instance[optional]
*/
public function flushdb($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('FLUSHDB'.$this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* SELECT db
* @return
* @param object $instance[optional]
* @param object $db[optional]
*/
public function select($instance = 0, $db = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ((empty($db)) || (!isset($db))) $db = 0;
$this->_commandQuery('SELECT '. $db . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* RANDOMKEY: Return a randomly selected key from the currently selected DB.
* @return String or Boolean (false)
* @param object $instance[optional]
*/
public function randomkey($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$this->_commandQuery('RANDOMKEY'. $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* KEYS
* @return Array of Boolean (false)
* @param object $instance[optional]
* @param object $pattern[optional]
*/
public function keys($instance = 0, $pattern = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ($pattern == null) return false;
$this->_commandQuery('KEYS '. $pattern . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if (empty($result)) return false;
else
{
$tmp = explode(' ', $result);
if ((count($tmp) > 0) && (is_array($tmp)))
{
foreach ($tmp as $k=>$i)
{
$tmp[$k] = trim($i);
}
return $tmp;
}
else
return false;
}
}
/**
* RENAME Atomically renames the key oldkey to newkey.
* If the source anddestination name are the same an error is returned.
* If newkeyalready exists it is overwritten.
* @return
* @param object $instance[optional]
* @param object $old_key[optional]
* @param object $new_key[optional]
*/
public function rename($instance = 0, $old_key = null, $new_key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (($old_key == null) || ($new_key == null)) return false;
$this->_commandQuery('RENAME '. $old_key . ' ' . $new_key . $this->_defaultDelimetr, $instance, null);
return $this->_commandResponseRead($instance);
}
/**
* RENAMENX Rename oldkey into newkey but fails if the destination key newkey already exists.
* @return Boolean
* @param object $instance[optional]
* @param object $old_key[optional]
* @param object $new_key[optional]
*/
public function renamenx($instance = 0, $old_key = null, $new_key = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (($old_key == null) || ($new_key == null)) return false;
$this->_commandQuery('RENAMENX '. $old_key . ' ' . $new_key . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ($result == 1) return true;
else
return false;
}
/**
* MOVE Move the specified key from the currently selected DB to the specifieddestination DB.
* Note that this command returns 1 only if the key wassuccessfully moved,
* and 0 if the target key was already there or if thesource key was not found at all,
* so it is possible to use MOVE as a lockingprimitive.
* @return Boolean
* @param object $instance[optional]
* @param object $key[optional]
* @param object $db_index[optional]
*/
public function move($instance = 0, $key = null, $db_index = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (($key == null) || ($db_index == null)) return false;
$this->_commandQuery('MOVE '. $key . ' ' . $db_index . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ($result == 1) return true;
else
return false;
}
/**
* EXPIRE -
* @return
* @param object $instance[optional]
* @param object $key[optional]
* @param object $expire[optional]
*/
public function expire($instance = 0, $key = null, $expire = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if (($key == null) || ($expire == null)) return false;
if (!is_int($expire)) $expire = (int)$expire;
$this->_commandQuery('EXPIRE '. $key . ' ' . $expire . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ((is_int($result)) && ($result == 1)) return true;
else
return false;
}
/**
* Basic authenfication, call before first command
* @return
* @param object $instance[optional]
* @param object $pass[optional]
*/
public function auth($instance = 0, $pass = null)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
if ($pass == null) return false;
$this->_commandQuery('AUTH '. $pass . $this->_defaultDelimetr, $instance, null);
$result = $this->_commandResponseRead($instance);
if ($result == TRUE) return true;
else
return $result;
}
/**
* Low-level command query
* @return
* @param object $command[optional]
* @param object $instance[optional]
*/
private function _commandQuery($command = 'PING', $instance = 0)
{
if ((!isset($command)) || (empty($command))) $command = 'PING' . $this->_defaultDelimetr;
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$command_len = strlen($command);
if ($command_len > (1024 * 1024 * 1024))
throw new Redis_Server_ValueLengthException('Length of command is too long');
if (($this->using == 'php') && (is_resource($this->server[$instance])))
{
$res = fwrite($this->server[$instance], $command, $command_len);
if ($res === FALSE)
throw new Redis_Server_SocketException('Can\'t write commad in socket at index '.$instance.' in instance array');
else
return false;
}
else
throw new Redis_Server_SocketException('Can\'t find open connection at index '.$instance.' in instance array');
}
/**
* Low-level implementation of new protocol
* @return
* @param object $instance[optional]
*/
private function _commandResponseRead($instance = 0)
{
if ((empty($instance)) || (!isset($instance))) $instance = 0;
$returnBuffer = trim(fgets($this->server[$instance]));
if (empty($returnBuffer))
{
$returnBuffer = trim(fgets($this->server[$instance]));
if (empty($returnBuffer)) return false;
}
$responceType = substr($returnBuffer, 0, 1);
if ($responceType == '-')
{
//ERROR
$responce = substr($returnBuffer, 1, (strlen($returnBuffer)-1));
if (substr($returnBuffer,0, 4) == '-ERR')
{
throw new Redis_Server_Exception('Redis server error: ' . $returnBuffer);
}
else
{
if (is_numeric($returnBuffer) == TRUE) //numeric responce
{
return (int)$returnBuffer;
}
else
{
throw new Redis_Server_Exception('Redis server error: ' . $responce);
}
}
}
if ($responceType == ':')
{
// simple integer responce
$returnBuffer = (int)substr($returnBuffer, 1, strlen($returnBuffer));
return $returnBuffer;
}
if ($responceType == '+')
{
if ($returnBuffer == '+OK') return true;
else
{
$returnBuffer = substr($returnBuffer, 1, strlen($returnBuffer));
return $returnBuffer;
}
}
if ($responceType == '$')
{
//Bulk data
$result_byte = (int)substr($returnBuffer, 1, strlen($returnBuffer));
if ($result_byte < 0) //error
{
if ($result_byte == -1) throw new Redis_Server_KeyException('Key not found');
if ($result_byte == -2) throw new Redis_Server_TypeException('Key contains a value of the wrong type');
if ($result_byte == -3) throw new Redis_Server_TypeException('Source object and destination object are the same');
if ($result_byte == -4) throw new Redis_Server_KeyException('Out of range argument');
return false;
}
else
{
$c = 0;
$result = Array();
while ($c < $result_byte)
{
$next_str = trim(fgets($this->server[$instance]));
if (!empty($next_str))
{
$result[] = $next_str;
$c = $c + strlen($next_str);
continue;
}
else
break;
}
if (count($result) == 1) return $result[0];
else
return $result;
}
}
if ($responceType == '*')
{
//Multi-Bulk
$result_byte = (int)substr($returnBuffer, 1, strlen($returnBuffer));
if (($result_byte < 0) && ($result_byte == -1)) //error
{
return false; //!TODO: my be exception?
}
else
{
$c = 0;
$result = Array(); //results array
while ($c < $result_byte)
{
$next_str = trim(fgets($this->server[$instance]));
$next_str_len = (int)substr($next_str, 1, strlen($next_str));
if ((($next_str_len < 0) && ($next_str_len == -1)) || (empty($next_str)))
{
$result[] = false;
//continue;
}
else
{
$next_str_data = trim(fgets($this->server[$instance]));
if (!empty($next_str_data))
{
$result[] = $next_str_data;
}
else
{
$result[] = false;
}
}
$c++;
}
return $result;
}
}
}
/**
* Check, if the extension presents, or use pure PHP
* @return
*/
private function __check_module()
{
//check if module phpredis
if (extension_loaded('redis') === FALSE)
{
$this->using = 'php'; //set using PHP
return false;
}
else
return true;
}
}
/**
* Some Exception's class to Redis_Server
*
*
* @category Redis
* @package Redis_Server
* @copyright Copyright (c) Aleksandr Lozovuk (http://abrdev.com)
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
*/
//general
class Redis_Server_Exception extends Exception {}
//Auth error
class Redis_Server_AuthException extends Redis_Server_Exception {}
//network or socket connection error
class Redis_Server_SocketException extends Redis_Server_Exception {}
//Redis error - no key
class Redis_Server_KeyException extends Redis_Server_Exception {}
//Exception if PHP extension missing
class Redis_Server_ModuleException extends Redis_Server_Exception {}
//Type error - if unknown type or other (e.g. build-in serialize using)
class Redis_Server_TypeException extends Redis_Server_Exception {}
class Redis_Server_SerializeException extends Redis_Server_Exception {}
//If max value length is missing (of couse, one Gb is so big.. but...)
class Redis_Server_ValueLengthException extends Redis_Server_Exception {}
//No specific database selection in select or move commands
class Redis_Server_DatabaseException extends Redis_Server_Exception {}
//Unknown command exception
class Redis_Server_UnknownCommandException extends Redis_Server_Exception {}
Show details
Hide details
Change log
r5
by aleks.raiden on Apr 12, 2009
Diff
[No log message]
Go to:
/trunk/lib/Redis_Server.php
Project members,
sign in
to write a code review
Older revisions
r4
by aleks.raiden on Apr 2, 2009
Diff
[No log message]
r3
by aleks.raiden on Mar 31, 2009
Diff
[No log message]
All revisions of this file
File info
Size: 42369 bytes, 1513 lines
View raw file
Powered by
Google Project Hosting