Module: MockRedis::ListMethods
- Includes:
- Assertions, UtilityMethods
- Included in:
- Database
- Defined in:
- lib/mock_redis/list_methods.rb
Instance Method Summary collapse
- #blmove(source, destination, wherefrom, whereto, options = {}) ⇒ Object
- #blpop(*args) ⇒ Object
- #brpop(*args) ⇒ Object
- #brpoplpush(source, destination, options = {}) ⇒ Object
- #lindex(key, index) ⇒ Object
- #linsert(key, position, pivot, value) ⇒ Object
- #llen(key) ⇒ Object
- #lmove(source, destination, wherefrom, whereto) ⇒ Object
- #lpop(key, count = nil) ⇒ Object
- #lpush(key, values) ⇒ Object
- #lpushx(key, value) ⇒ Object
- #lrange(key, start, stop) ⇒ Object
- #lrem(key, count, value) ⇒ Object
- #lset(key, index, value) ⇒ Object
- #ltrim(key, start, stop) ⇒ Object
- #rpop(key, count = nil) ⇒ Object
- #rpoplpush(source, destination) ⇒ Object
- #rpush(key, values) ⇒ Object
- #rpushx(key, value) ⇒ Object
Instance Method Details
#blmove(source, destination, wherefrom, whereto, options = {}) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/mock_redis/list_methods.rb', line 9 def blmove(source, destination, wherefrom, whereto, = {}) = { :timeout => } if .is_a?(Integer) timeout = .is_a?(Hash) && [:timeout] || 0 assert_valid_timeout(timeout) if llen(source) > 0 lmove(source, destination, wherefrom, whereto) elsif timeout > 0 nil else raise MockRedis::WouldBlock, "Can't block forever" end end |
#blpop(*args) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/mock_redis/list_methods.rb', line 23 def blpop(*args) lists, timeout = extract_timeout(args) nonempty_list = first_nonempty_list(lists) if nonempty_list [nonempty_list, lpop(nonempty_list)] elsif timeout > 0 nil else raise MockRedis::WouldBlock, "Can't block forever" end end |
#brpop(*args) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/mock_redis/list_methods.rb', line 36 def brpop(*args) lists, timeout = extract_timeout(args) nonempty_list = first_nonempty_list(lists) if nonempty_list [nonempty_list, rpop(nonempty_list)] elsif timeout > 0 nil else raise MockRedis::WouldBlock, "Can't block forever" end end |
#brpoplpush(source, destination, options = {}) ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/mock_redis/list_methods.rb', line 49 def brpoplpush(source, destination, = {}) = { :timeout => } if .is_a?(Integer) timeout = .is_a?(Hash) && [:timeout] || 0 assert_valid_timeout(timeout) if llen(source) > 0 rpoplpush(source, destination) elsif timeout > 0 nil else raise MockRedis::WouldBlock, "Can't block forever" end end |
#lindex(key, index) ⇒ Object
63 64 65 |
# File 'lib/mock_redis/list_methods.rb', line 63 def lindex(key, index) with_list_at(key) { |l| l[index.to_i] } end |
#linsert(key, position, pivot, value) ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/mock_redis/list_methods.rb', line 67 def linsert(key, position, pivot, value) unless %w[before after].include?(position.to_s) raise Redis::CommandError, 'ERR syntax error' end assert_listy(key) return 0 unless data[key] pivot_position = (0..llen(key) - 1).find do |i| data[key][i] == pivot.to_s end return -1 unless pivot_position insertion_index = if position.to_s == 'before' pivot_position else pivot_position + 1 end data[key].insert(insertion_index, value.to_s) llen(key) end |
#llen(key) ⇒ Object
91 92 93 |
# File 'lib/mock_redis/list_methods.rb', line 91 def llen(key) with_list_at(key, &:length) end |
#lmove(source, destination, wherefrom, whereto) ⇒ Object
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/mock_redis/list_methods.rb', line 95 def lmove(source, destination, wherefrom, whereto) assert_listy(source) assert_listy(destination) wherefrom = wherefrom.to_s.downcase whereto = whereto.to_s.downcase unless %w[left right].include?(wherefrom) && %w[left right].include?(whereto) raise Redis::CommandError, 'ERR syntax error' end value = wherefrom == 'left' ? lpop(source) : rpop(source) (whereto == 'left' ? lpush(destination, value) : rpush(destination, value)) unless value.nil? value end |
#lpop(key, count = nil) ⇒ Object
111 112 113 114 115 116 117 118 |
# File 'lib/mock_redis/list_methods.rb', line 111 def lpop(key, count = nil) return with_list_at(key, &:shift) if count.nil? record_count = llen(key) return nil if record_count.zero? [record_count, count].min.times.map { with_list_at(key, &:shift) } end |
#lpush(key, values) ⇒ Object
120 121 122 123 124 125 |
# File 'lib/mock_redis/list_methods.rb', line 120 def lpush(key, values) values = [values] unless values.is_a?(Array) assert_has_args(values, 'lpush') with_list_at(key) { |l| values.each { |v| l.unshift(v.to_s) } } llen(key) end |
#lpushx(key, value) ⇒ Object
127 128 129 130 131 132 133 134 135 |
# File 'lib/mock_redis/list_methods.rb', line 127 def lpushx(key, value) value = [value] unless value.is_a?(Array) if value.empty? raise Redis::CommandError, "ERR wrong number of arguments for 'lpushx' command" end assert_listy(key) return 0 unless list_at?(key) lpush(key, value) end |
#lrange(key, start, stop) ⇒ Object
137 138 139 140 |
# File 'lib/mock_redis/list_methods.rb', line 137 def lrange(key, start, stop) start = start.to_i with_list_at(key) { |l| start < l.size ? l[[start, -l.length].max..stop.to_i] : [] } end |
#lrem(key, count, value) ⇒ Object
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/mock_redis/list_methods.rb', line 142 def lrem(key, count, value) unless looks_like_integer?(count.to_s) raise Redis::CommandError, 'ERR value is not an integer or out of range' end count = count.to_i value = value.to_s with_list_at(key) do |list| indices_with_value = (0..(llen(key) - 1)).find_all do |i| list[i] == value end indices_to_delete = if count == 0 indices_with_value.reverse elsif count > 0 indices_with_value.take(count).reverse else indices_with_value.reverse.take(-count) end indices_to_delete.each { |i| list.delete_at(i) }.length end end |
#lset(key, index, value) ⇒ Object
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/mock_redis/list_methods.rb', line 166 def lset(key, index, value) assert_listy(key) unless list_at?(key) raise Redis::CommandError, 'ERR no such key' end index = index.to_i unless (0...llen(key)).cover?(index) raise Redis::CommandError, 'ERR index out of range' end data[key][index] = value.to_s 'OK' end |
#ltrim(key, start, stop) ⇒ Object
182 183 184 185 186 187 |
# File 'lib/mock_redis/list_methods.rb', line 182 def ltrim(key, start, stop) with_list_at(key) do |list| list&.replace(list[[start.to_i, -list.length].max..stop.to_i] || []) 'OK' end end |
#rpop(key, count = nil) ⇒ Object
189 190 191 192 193 194 195 196 |
# File 'lib/mock_redis/list_methods.rb', line 189 def rpop(key, count = nil) return with_list_at(key) { |list| list&.pop } if count.nil? record_count = llen(key) return nil if record_count.zero? [record_count, count].min.times.map { with_list_at(key, &:pop) } end |
#rpoplpush(source, destination) ⇒ Object
198 199 200 201 202 |
# File 'lib/mock_redis/list_methods.rb', line 198 def rpoplpush(source, destination) value = rpop(source) lpush(destination, value) unless value.nil? value end |
#rpush(key, values) ⇒ Object
204 205 206 207 208 209 |
# File 'lib/mock_redis/list_methods.rb', line 204 def rpush(key, values) values = [values] unless values.is_a?(Array) assert_has_args(values, 'rpush') with_list_at(key) { |l| values.each { |v| l.push(v.to_s) } } llen(key) end |
#rpushx(key, value) ⇒ Object
211 212 213 214 215 216 217 218 219 |
# File 'lib/mock_redis/list_methods.rb', line 211 def rpushx(key, value) value = [value] unless value.is_a?(Array) if value.empty? raise Redis::CommandError, "ERR wrong number of arguments for 'rpushx' command" end assert_listy(key) return 0 unless list_at?(key) rpush(key, value) end |