forked from jamesls/fakeredis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fakeredis.py
1305 lines (1112 loc) · 42.7 KB
/
fakeredis.py
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
import random
import warnings
import copy
from ctypes import CDLL, POINTER, c_double, c_char_p, pointer
from ctypes.util import find_library
import fnmatch
from collections import MutableMapping
from datetime import datetime, timedelta
import operator
import sys
import re
import redis
from redis.exceptions import ResponseError
import redis.client
__version__ = '0.5.1'
if sys.version_info[0] == 2:
text_type = unicode
string_types = (str, unicode)
byte_to_int = ord
int_to_byte = chr
def to_bytes(x, charset=sys.getdefaultencoding(), errors='strict'):
if x is None:
return None
if isinstance(x, (bytes, bytearray, buffer)) or hasattr(x, '__str__'):
return bytes(x)
if isinstance(x, unicode):
return x.encode(charset, errors)
if hasattr(x, '__unicode__'):
return unicode(x).encode(charset, errors)
raise TypeError('expected bytes or unicode, not ' + type(x).__name__)
def to_native(x, charset=sys.getdefaultencoding(), errors='strict'):
if x is None or isinstance(x, str):
return x
return x.encode(charset, errors)
iterkeys = lambda d: d.iterkeys()
itervalues = lambda d: d.itervalues()
iteritems = lambda d: d.iteritems()
from urlparse import urlparse
else:
text_type = str
string_types = (str,)
def byte_to_int(b):
if isinstance(b, int):
return b
raise TypeError('an integer is required')
int_to_byte = operator.methodcaller('to_bytes', 1, 'big')
def to_bytes(x, charset=sys.getdefaultencoding(), errors='strict'):
if x is None:
return None
if isinstance(x, (bytes, bytearray, memoryview)):
return bytes(x)
if isinstance(x, str):
return x.encode(charset, errors)
if hasattr(x, '__str__'):
return str(x).encode(charset, errors)
raise TypeError('expected bytes or str, not ' + type(x).__name__)
def to_native(x, charset=sys.getdefaultencoding(), errors='strict'):
if x is None or isinstance(x, str):
return x
return x.decode(charset, errors)
iterkeys = lambda d: iter(d.keys())
itervalues = lambda d: iter(d.values())
iteritems = lambda d: iter(d.items())
from urllib.parse import urlparse
DATABASES = {}
_libc = CDLL(find_library('c'))
_libc.strtod.restype = c_double
_libc.strtod.argtypes = [c_char_p, POINTER(c_char_p)]
_strtod = _libc.strtod
def timedelta_total_seconds(delta):
return delta.days * 86400 + delta.seconds + delta.microseconds / 1E6
class _StrKeyDict(MutableMapping):
def __init__(self, *args, **kwargs):
self._dict = dict(*args, **kwargs)
self._ex_keys = {}
def __getitem__(self, key):
self._update_expired_keys()
return self._dict[to_bytes(key)]
def __setitem__(self, key, value):
self._dict[to_bytes(key)] = value
def __delitem__(self, key):
del self._dict[to_bytes(key)]
def __len__(self):
return len(self._dict)
def __iter__(self):
return iter(self._dict)
def expire(self, key, timestamp):
self._ex_keys[key] = timestamp
def expiring(self, key):
if not key in self._ex_keys:
return None
return self._ex_keys[key]
def _update_expired_keys(self):
now = datetime.now()
deleted = []
for key in self._ex_keys:
if now > self._ex_keys[key]:
deleted.append(key)
for key in deleted:
del self._ex_keys[key]
del self[key]
def copy(self):
new_copy = _StrKeyDict()
for key, value in self._dict.items():
new_copy[key] = value
return new_copy
def clear(self):
super(_StrKeyDict, self).clear()
self._ex_keys.clear()
def to_bare_dict(self):
return copy.deepcopy(self._dict)
class FakeStrictRedis(object):
@classmethod
def from_url(cls, url, db=None, **kwargs):
url = urlparse(url)
if db is None:
try:
db = int(url.path.replace('/', ''))
except (AttributeError, ValueError):
db = 0
return cls(db=db)
def __init__(self, db=0, charset='utf-8', errors='strict', **kwargs):
if db not in DATABASES:
DATABASES[db] = _StrKeyDict()
self._db = DATABASES[db]
self._db_num = db
self._encoding = charset
self._encoding_errors = errors
def flushdb(self):
DATABASES[self._db_num].clear()
return True
def flushall(self):
for db in DATABASES:
DATABASES[db].clear()
# Basic key commands
def append(self, key, value):
self._db[key] += to_bytes(value)
return len(self._db[key])
def bitcount(self, name, start=0, end=-1):
if end == -1:
end = None
else:
end += 1
try:
s = self._db[name][start:end]
return sum([bin(byte_to_int(l)).count('1') for l in s])
except KeyError:
return 0
def decr(self, name, amount=1):
try:
self._db[name] = int(self._db.get(name, '0')) - amount
except (TypeError, ValueError):
raise redis.ResponseError("value is not an integer or out of "
"range.")
return self._db[name]
def exists(self, name):
return name in self._db
__contains__ = exists
def expire(self, name, time):
if isinstance(time, timedelta):
time = int(timedelta_total_seconds(time))
if self.exists(name):
self._db.expire(name, datetime.now() + timedelta(seconds=time))
else:
return False
def expireat(self, name, when):
if not self.exists(name):
return False
if isinstance(when, datetime):
self._db.expire(name, when)
else:
self._db.expire(name, datetime.fromtimestamp(when))
def get(self, name):
value = self._db.get(name)
if value is not None:
return to_bytes(value)
def __getitem__(self, name):
return self._db[name]
def getbit(self, name, offset):
"""Returns a boolean indicating the value of ``offset`` in ``name``"""
val = self._db.get(name, '\x00')
byte = offset // 8
remaining = offset % 8
actual_bitoffset = 7 - remaining
try:
actual_val = byte_to_int(val[byte])
except IndexError:
return 0
return 1 if (1 << actual_bitoffset) & actual_val else 0
def getset(self, name, value):
"""
Set the value at key ``name`` to ``value`` if key doesn't exist
Return the value at key ``name`` atomically
"""
val = self._db.get(name)
if val is None:
self._db[name] = value
return val
def incr(self, name, amount=1):
"""
Increments the value of ``key`` by ``amount``. If no key exists,
the value will be initialized as ``amount``
"""
try:
self._db[name] = int(self._db.get(name, '0')) + amount
except (TypeError, ValueError):
raise redis.ResponseError("value is not an integer or out of "
"range.")
return self._db[name]
def keys(self, pattern=None):
return [key for key in self._db
if not key or not pattern or
fnmatch.fnmatch(to_native(key), to_native(pattern))]
def mget(self, keys, *args):
all_keys = self._list_or_args(keys, args)
found = []
for key in all_keys:
found.append(self._db.get(key))
return found
def mset(self, mapping):
for key, val in iteritems(mapping):
self.set(key, val)
return True
def msetnx(self, mapping):
"""
Sets each key in the ``mapping`` dict to its corresponding value if
none of the keys are already set
"""
if not any(k in self._db for k in mapping):
for key, val in iteritems(mapping):
self.set(key, val)
return True
return False
def move(self, name, db):
pass
def persist(self, name):
pass
def ping(self):
return True
def randomkey(self):
pass
def rename(self, src, dst):
try:
value = self._db[src]
except KeyError:
raise redis.ResponseError("No such key: %s" % src)
self._db[dst] = value
del self._db[src]
return True
def renamenx(self, src, dst):
if dst in self._db:
return False
else:
return self.rename(src, dst)
def set(self, name, value, ex=None, px=None, nx=False, xx=False):
if (not nx and not xx) \
or (nx and self._db.get(name, None) is None) \
or (xx and not self._db.get(name, None) is None):
if ex is not None and ex > 0:
self._db.expire(name, datetime.now() + timedelta(seconds=ex))
elif px is not None and px > 0:
self._db.expire(name, datetime.now() + timedelta(milliseconds=px))
self._db[name] = to_bytes(value)
return True
else:
return None
__setitem__ = set
def setbit(self, name, offset, value):
val = self._db.get(name, b'\x00')
byte = offset // 8
remaining = offset % 8
actual_bitoffset = 7 - remaining
if len(val) - 1 < byte:
# We need to expand val so that we can set the appropriate
# bit.
needed = byte - (len(val) - 1)
val += b'\x00' * needed
if value == 1:
new_byte = byte_to_int(val[byte]) | (1 << actual_bitoffset)
else:
new_byte = byte_to_int(val[byte]) ^ (1 << actual_bitoffset)
reconstructed = bytearray(val)
reconstructed[byte] = new_byte
self._db[name] = bytes(reconstructed)
def setex(self, name, time, value):
if isinstance(time, timedelta):
time = int(timedelta_total_seconds(time))
return self.set(name, value, ex=time)
def psetex(self, name, time_ms, value):
if isinstance(time_ms, timedelta):
time_ms = int(timedelta_total_seconds(time_ms) * 1000)
if time_ms == 0:
raise ResponseError("invalid expire time in SETEX")
return self.set(name, value, px=time_ms)
def setnx(self, name, value):
result = self.set(name, value, nx=True)
# Real Redis returns False from setnx, but None from set(nx=...)
if not result:
return False
return result
def setrange(self, name, offset, value):
pass
def strlen(self, name):
try:
return len(self._db[name])
except KeyError:
return 0
def substr(self, name, start, end=-1):
if end == -1:
end = None
else:
end += 1
try:
return self._db[name][start:end]
except KeyError:
return b''
# Redis >= 2.0.0 this command is called getrange
# according to the docs.
getrange = substr
def ttl(self, name):
return self._ttl(name)
def pttl(self, name):
return self._ttl(name, 1000)
def _ttl(self, name, multiplier=1):
if name not in self._db:
return None
exp_time = self._db.expiring(name)
if not exp_time:
return None
now = datetime.now()
if now > exp_time:
return None
else:
return round(((exp_time - now).days * 3600 * 24
+ (exp_time - now).seconds
+ (exp_time - now).microseconds / 1E6) * multiplier)
def type(self, name):
pass
def watch(self, *names):
pass
def unwatch(self):
pass
def delete(self, *names):
deleted = 0
for name in names:
try:
del self._db[name]
if name in self._db._ex_keys:
del self._db._ex_keys[name]
deleted += 1
except KeyError:
continue
return deleted
def sort(self, name, start=None, num=None, by=None, get=None, desc=False,
alpha=False, store=None):
"""Sort and return the list, set or sorted set at ``name``.
``start`` and ``num`` allow for paging through the sorted data
``by`` allows using an external key to weight and sort the items.
Use an "*" to indicate where in the key the item value is located
``get`` allows for returning items from external keys rather than the
sorted data itself. Use an "*" to indicate where int he key
the item value is located
``desc`` allows for reversing the sort
``alpha`` allows for sorting lexicographically rather than numerically
``store`` allows for storing the result of the sort into
the key ``store``
"""
if (start is None and num is not None) or \
(start is not None and num is None):
raise redis.RedisError(
"RedisError: ``start`` and ``num`` must both be specified")
try:
data = list(self._db[name])[:]
if by is not None:
# _sort_using_by_arg mutates data so we don't
# need need a return value.
self._sort_using_by_arg(data, by=by)
elif not alpha:
data.sort(key=self._strtod_key_func)
else:
data.sort()
if desc:
data = list(reversed(data))
if not (start is None and num is None):
data = data[start:start + num]
if store is not None:
self._db[store] = data
return len(data)
else:
return self._retrive_data_from_sort(data, get)
except KeyError:
return []
def _retrive_data_from_sort(self, data, get):
if get is not None:
if isinstance(get, string_types):
get = [get]
new_data = []
for k in data:
for g in get:
single_item = self._get_single_item(k, g)
new_data.append(single_item)
data = new_data
return data
def _get_single_item(self, k, g):
g = to_bytes(g)
if b'*' in g:
g = g.replace(b'*', k)
if b'->' in g:
key, hash_key = g.split(b'->')
single_item = self._db.get(key, {}).get(hash_key)
else:
single_item = self._db.get(g)
elif b'#' in g:
single_item = k
else:
single_item = None
return single_item
def _strtod_key_func(self, arg):
# str()'ing the arg is important! Don't ever remove this.
arg = to_bytes(arg)
end = c_char_p()
val = _strtod(arg, pointer(end))
# real Redis also does an isnan check, not sure if
# that's needed here or not.
if end.value:
raise redis.ResponseError(
"One or more scores can't be converted into double")
else:
return val
def _sort_using_by_arg(self, data, by):
by = to_bytes(by)
def _by_key(arg):
key = by.replace(b'*', arg)
if b'->' in by:
key, hash_key = key.split(b'->')
return self._db.get(key, {}).get(hash_key)
else:
return self._db.get(key)
data.sort(key=_by_key)
def lpush(self, name, *values):
self._db.setdefault(name, [])[0:0] = list(reversed(
[to_bytes(x) for x in values]))
return len(self._db[name])
def lrange(self, name, start, end):
if end == -1:
end = None
else:
end += 1
return self._db.get(name, [])[start:end]
def llen(self, name):
return len(self._db.get(name, []))
def lrem(self, name, count, value):
value = to_bytes(value)
a_list = self._db.get(name, [])
found = []
for i, el in enumerate(a_list):
if el == value:
found.append(i)
if count > 0:
indices_to_remove = found[:count]
elif count < 0:
indices_to_remove = found[count:]
else:
indices_to_remove = found
# Iterating in reverse order to ensure the indices
# remain valid during deletion.
for index in reversed(indices_to_remove):
del a_list[index]
return len(indices_to_remove)
def rpush(self, name, *values):
self._db.setdefault(name, []).extend([to_bytes(x) for x in values])
return len(self._db[name])
def lpop(self, name):
try:
return self._db.get(name, []).pop(0)
except IndexError:
return None
def lset(self, name, index, value):
try:
self._db.get(name, [])[index] = to_bytes(value)
except IndexError:
raise redis.ResponseError("index out of range")
def rpushx(self, name, value):
try:
self._db[name].append(to_bytes(value))
except KeyError:
return
def ltrim(self, name, start, end):
try:
val = self._db[name]
except KeyError:
return True
if end == -1:
end = None
else:
end += 1
self._db[name] = val[start:end]
return True
def lindex(self, name, index):
try:
return self._db.get(name, [])[index]
except IndexError:
return None
def lpushx(self, name, value):
try:
self._db[name].insert(0, to_bytes(value))
except KeyError:
return
def rpop(self, name):
try:
return self._db.get(name, []).pop()
except IndexError:
return None
def linsert(self, name, where, refvalue, value):
index = self._db.get(name, []).index(to_bytes(refvalue))
self._db.get(name, []).insert(index, to_bytes(value))
def rpoplpush(self, src, dst):
el = self.rpop(src)
if el is not None:
try:
self._db[dst].insert(0, el)
except KeyError:
self._db[dst] = [el]
return el
def blpop(self, keys, timeout=0):
# This has to be a best effort approximation which follows
# these rules:
# 1) For each of those keys see if there's something we can
# pop from.
# 2) If this is not the case then simulate a timeout.
# This means that there's not really any blocking behavior here.
if isinstance(keys, string_types):
keys = [to_bytes(keys)]
else:
keys = [to_bytes(k) for k in keys]
for key in keys:
if self._db.get(key, []):
return (key, self._db[key].pop(0))
def brpop(self, keys, timeout=0):
if isinstance(keys, string_types):
keys = [to_bytes(keys)]
else:
keys = [to_bytes(k) for k in keys]
for key in keys:
if self._db.get(key, []):
return (key, self._db[key].pop())
def brpoplpush(self, src, dst, timeout=0):
el = self.rpop(src)
if el is not None:
try:
self._db[dst].insert(0, el)
except KeyError:
self._db[dst] = [el]
return el
def hdel(self, name, *keys):
h = self._db.get(name, {})
rem = 0
for k in keys:
if k in h:
del h[k]
rem += 1
return rem
def hexists(self, name, key):
"Returns a boolean indicating if ``key`` exists within hash ``name``"
if self._db.get(name, {}).get(key) is None:
return 0
else:
return 1
def hget(self, name, key):
"Return the value of ``key`` within the hash ``name``"
return self._db.get(name, {}).get(key)
def hgetall(self, name):
"Return a Python dict of the hash's name/value pairs"
all_items = self._db.get(name, {})
if hasattr(all_items, 'to_bare_dict'):
all_items = all_items.to_bare_dict()
return all_items
def hincrby(self, name, key, amount=1):
"Increment the value of ``key`` in hash ``name`` by ``amount``"
new = int(self._db.setdefault(name, _StrKeyDict()).get(key, '0')) + amount
self._db[name][key] = new
return new
def hkeys(self, name):
"Return the list of keys within hash ``name``"
return list(self._db.get(name, {}))
def hlen(self, name):
"Return the number of elements in hash ``name``"
return len(self._db.get(name, {}))
def hset(self, name, key, value):
"""
Set ``key`` to ``value`` within hash ``name``
Returns 1 if HSET created a new field, otherwise 0
"""
key_is_new = key not in self._db.get(name, {})
self._db.setdefault(name, _StrKeyDict())[key] = to_bytes(value)
return 1 if key_is_new else 0
def hsetnx(self, name, key, value):
"""
Set ``key`` to ``value`` within hash ``name`` if ``key`` does not
exist. Returns 1 if HSETNX created a field, otherwise 0.
"""
if key in self._db.get(name, {}):
return False
self._db.setdefault(name, _StrKeyDict())[key] = to_bytes(value)
return True
def hmset(self, name, mapping):
"""
Sets each key in the ``mapping`` dict to its corresponding value
in the hash ``name``
"""
if not mapping:
raise redis.DataError("'hmset' with 'mapping' of length 0")
for k, v in mapping.items():
mapping[k] = to_bytes(v)
self._db.setdefault(name, _StrKeyDict()).update(mapping)
return True
def hmget(self, name, keys, *args):
"Returns a list of values ordered identically to ``keys``"
h = self._db.get(name, {})
all_keys = self._list_or_args(keys, args)
return [h.get(k) for k in all_keys]
def hvals(self, name):
"Return the list of values within hash ``name``"
return self._db.get(name, {}).values()
def sadd(self, name, *values):
"Add ``value`` to set ``name``"
a_set = self._db.setdefault(name, set())
card = len(a_set)
a_set |= set(to_bytes(x) for x in values)
return len(a_set) - card
def scard(self, name):
"Return the number of elements in set ``name``"
return len(self._db.get(name, set()))
def sdiff(self, keys, *args):
"Return the difference of sets specified by ``keys``"
all_keys = (to_bytes(x) for x in self._list_or_args(keys, args))
diff = self._db.get(next(all_keys), set()).copy()
for key in all_keys:
diff -= self._db.get(key, set())
return diff
def sdiffstore(self, dest, keys, *args):
"""
Store the difference of sets specified by ``keys`` into a new
set named ``dest``. Returns the number of keys in the new set.
"""
diff = self.sdiff(keys, *args)
self._db[dest] = diff
return len(diff)
def sinter(self, keys, *args):
"Return the intersection of sets specified by ``keys``"
all_keys = (to_bytes(x) for x in self._list_or_args(keys, args))
intersect = self._db.get(next(all_keys), set()).copy()
for key in all_keys:
intersect.intersection_update(self._db.get(key, set()))
return intersect
def sinterstore(self, dest, keys, *args):
"""
Store the intersection of sets specified by ``keys`` into a new
set named ``dest``. Returns the number of keys in the new set.
"""
intersect = self.sinter(keys, *args)
self._db[dest] = intersect
return len(intersect)
def sismember(self, name, value):
"Return a boolean indicating if ``value`` is a member of set ``name``"
return to_bytes(value) in self._db.get(name, set())
def smembers(self, name):
"Return all members of the set ``name``"
return self._db.get(name, set())
def smove(self, src, dst, value):
value = to_bytes(value)
try:
self._db.get(src, set()).remove(value)
self._db.setdefault(dst, set()).add(value)
return True
except KeyError:
return False
def spop(self, name):
"Remove and return a random member of set ``name``"
try:
return self._db.get(name, set()).pop()
except KeyError:
return None
def srandmember(self, name, number=None):
"Return a random member of set ``name``"
members = self._db.get(name, set())
if number is not None and number != 1:
results = set()
for _ in range(number):
remaining_elements = members-results
if remaining_elements:
index = random.randint(0, len(remaining_elements) - 1)
results.add(list(remaining_elements)[index])
return results
if members:
index = random.randint(0, len(members) - 1)
return list(members)[index]
def srem(self, name, *values):
"Remove ``value`` from set ``name``"
a_set = self._db.setdefault(name, set())
card = len(a_set)
a_set -= set(to_bytes(x) for x in values)
return card - len(a_set)
def sunion(self, keys, *args):
"Return the union of sets specifiued by ``keys``"
all_keys = (to_bytes(x) for x in self._list_or_args(keys, args))
union = self._db.get(next(all_keys), set()).copy()
for key in all_keys:
union.update(self._db.get(key, set()))
return union
def sunionstore(self, dest, keys, *args):
"""
Store the union of sets specified by ``keys`` into a new
set named ``dest``. Returns the number of keys in the new set.
"""
union = self.sunion(keys, *args)
self._db[dest] = union
return len(union)
def _get_zelement_range_filter_func(self, min_val, max_val):
# This will return a filter function based on the
# min and max values. It takes a single argument
# and return True if it matches the range filter
# criteria, and False otherwise.
# This will also handle the case when
# min/max are '-inf', '+inf'.
# It needs to handle exclusive intervals
# where the min/max value is something like
# '(0'
# a < x < b
# ^ ^ ^ ^
# actual_min left_comp right_comp actual_max
left_comparator, actual_min = self._get_comparator_and_val(min_val)
right_comparator, actual_max = self._get_comparator_and_val(max_val)
def _matches(x):
return (left_comparator(actual_min, x) and
right_comparator(x, actual_max))
return _matches
def _get_comparator_and_val(self, value):
try:
if isinstance(value, string_types) and value.startswith('('):
comparator = operator.lt
actual_value = float(value[1:])
else:
comparator = operator.le
actual_value = float(value)
except ValueError:
raise redis.ResponseError('min or max is not a float')
return comparator, actual_value
def zadd(self, name, *args, **kwargs):
"""
Set any number of score, element-name pairs to the key ``name``. Pairs
can be specified in two ways:
As *args, in the form of: score1, name1, score2, name2, ...
or as **kwargs, in the form of: name1=score1, name2=score2, ...
The following example would add four values to the 'my-key' key:
redis.zadd('my-key', 1.1, 'name1', 2.2, 'name2', name3=3.3, name4=4.4)
"""
if len(args) % 2 != 0:
raise redis.RedisError("ZADD requires an equal number of "
"values and scores")
zset = self._db.setdefault(name, _StrKeyDict())
added = 0
for score, value in zip(*[args[i::2] for i in range(2)]):
if value not in zset:
added += 1
try:
zset[value] = float(score)
except ValueError:
raise redis.ResponseError("value is not a valid float")
for value, score in kwargs.items():
if value not in zset:
added += 1
try:
zset[value] = float(score)
except ValueError:
raise redis.ResponseError("value is not a valid float")
return added
def zcard(self, name):
"Return the number of elements in the sorted set ``name``"
return len(self._db.get(name, {}))
def zcount(self, name, min, max):
found = 0
filter_func = self._get_zelement_range_filter_func(min, max)
for score in self._db.get(name, {}).values():
if filter_func(score):
found += 1
return found
def zincrby(self, name, value, amount=1):
"Increment the score of ``value`` in sorted set ``name`` by ``amount``"
d = self._db.setdefault(name, _StrKeyDict())
score = d.get(value, 0) + amount
d[value] = score
return score
def zinterstore(self, dest, keys, aggregate=None):
"""
Intersect multiple sorted sets specified by ``keys`` into
a new sorted set, ``dest``. Scores in the destination will be
aggregated based on the ``aggregate``, or SUM if none is provided.
"""
if not keys:
raise redis.ResponseError("At least one key must be specified "
"for ZINTERSTORE/ZUNIONSTORE")
# keys can be a list or a dict so it needs to be converted to
# a list first.
list_keys = list(keys)
valid_keys = set(self._db.get(list_keys[0], {}))
for key in list_keys[1:]:
valid_keys.intersection_update(self._db.get(key, {}))
return self._zaggregate(dest, keys, aggregate,
lambda x: x in
valid_keys)
def zrange(self, name, start, end, desc=False, withscores=False):
"""
Return a range of values from sorted set ``name`` between
``start`` and ``end`` sorted in ascending order.
``start`` and ``end`` can be negative, indicating the end of the range.
``desc`` indicates to sort in descending order.
``withscores`` indicates to return the scores along with the values.
The return type is a list of (value, score) pairs
"""
if end == -1:
end = None
else:
end += 1
all_items = self._db.get(name, {})
if desc:
reverse = True
else:
reverse = False
in_order = self._get_zelements_in_order(all_items, reverse)
items = in_order[start:end]
if not withscores:
return items
else:
return [(k, all_items[k]) for k in items]
def _get_zelements_in_order(self, all_items, reverse=False):
by_keyname = sorted(all_items.items(), key=lambda x: x[0], reverse=reverse)
in_order = sorted(by_keyname, key=lambda x: x[1], reverse=reverse)
return [el[0] for el in in_order]
def zrangebyscore(self, name, min, max,
start=None, num=None, withscores=False):
"""
Return a range of values from the sorted set ``name`` with scores
between ``min`` and ``max``.
If ``start`` and ``num`` are specified, then return a slice
of the range.
``withscores`` indicates to return the scores along with the values.
The return type is a list of (value, score) pairs
"""