]>
git.saurik.com Git - redis.git/blob - tests/support/redis.tcl
1 # Tcl clinet library - used by test-redis.tcl script for now
2 # Copyright (C) 2009 Salvatore Sanfilippo
3 # Released under the BSD license like Redis itself
7 # set r [redis 127.0.0.1 6379]
10 # $r lrange mylist 0 -1
13 # Non blocking usage example:
15 # proc handlePong {r type reply} {
16 # puts "PONG $type '$reply'"
17 # if {$reply ne "PONG"} {
18 # $r ping [list handlePong]
24 # $r get fo [list handlePong]
28 package require
Tcl 8.5
29 package provide redis
0.1
31 namespace eval redis
{}
33 array set ::redis::fd {}
34 array set ::redis::blocking {}
35 array set ::redis::deferred {}
36 array set ::redis::callback {}
37 array set ::redis::state {} ;# State in non-blocking reply reading
38 array set ::redis::statestack {} ;# Stack of states, for nested mbulks
40 proc redis
{{server
127.0.0.1} {port
6379} {defer
0}} {
41 set fd
[socket $server $port]
42 fconfigure $fd -translation binary
43 set id
[incr ::redis::id]
44 set ::redis::fd($id) $fd
45 set ::redis::blocking($id) 1
46 set ::redis::deferred($id) $defer
47 ::redis::redis_reset_state $id
48 interp alias
{} ::redis::redisHandle$id {} ::redis::__dispatch__ $id
51 proc ::redis::__dispatch__ {id method args
} {
52 set fd
$::redis::fd($id)
53 set blocking
$::redis::blocking($id)
54 set deferred
$::redis::deferred($id)
56 if {[llength $args] == 0} {
57 error "Please provide a callback in non-blocking mode"
59 set callback
[lindex $args end
]
60 set args
[lrange $args 0 end-1
]
62 if {[info command
::redis::__method__$method] eq
{}} {
63 set cmd
"*[expr {[llength $args]+1}]\r\n"
64 append cmd
"$[string length $method]\r\n$method\r\n"
66 append cmd
"$[string length $a]\r\n$a\r\n"
68 ::redis::redis_write $fd $cmd
73 ::redis::redis_read_reply $fd
75 # Every well formed reply read will pop an element from this
76 # list and use it as a callback. So pipelining is supported
77 # in non blocking mode.
78 lappend ::redis::callback($id) $callback
79 fileevent $fd readable
[list ::redis::redis_readable $fd $id]
83 uplevel 1 [list ::redis::__method__$method $id $fd] $args
87 proc ::redis::__method__blocking {id fd val
} {
88 set ::redis::blocking($id) $val
89 fconfigure $fd -blocking $val
92 proc ::redis::__method__read {id fd
} {
93 ::redis::redis_read_reply $fd
96 proc ::redis::__method__write {id fd buf
} {
97 ::redis::redis_write $fd $buf
100 proc ::redis::__method__flush {id fd
} {
104 proc ::redis::__method__close {id fd
} {
106 catch {unset ::redis::fd($id)}
107 catch {unset ::redis::blocking($id)}
108 catch {unset ::redis::state($id)}
109 catch {unset ::redis::statestack($id)}
110 catch {unset ::redis::callback($id)}
111 catch {interp alias
{} ::redis::redisHandle$id {}}
114 proc ::redis::__method__channel {id fd
} {
118 proc ::redis::redis_write {fd buf
} {
119 puts -nonewline $fd $buf
122 proc ::redis::redis_writenl {fd buf
} {
124 redis_write
$fd "\r\n"
128 proc ::redis::redis_readnl {fd len
} {
129 set buf
[read $fd $len]
130 read $fd 2 ; # discard CR LF
134 proc ::redis::redis_bulk_read {fd
} {
135 set count
[redis_read_line
$fd]
136 if {$count == -1} return {}
137 set buf
[redis_readnl
$fd $count]
141 proc ::redis::redis_multi_bulk_read fd
{
142 set count
[redis_read_line
$fd]
143 if {$count == -1} return {}
146 for {set i
0} {$i < $count} {incr i
} {
148 lappend l
[redis_read_reply
$fd]
149 } e
] && $err eq
{}} {
153 if {$err ne
{}} {return -code error $err}
157 proc ::redis::redis_read_line fd
{
158 string trim
[gets $fd]
161 proc ::redis::redis_read_reply fd
{
162 set type
[read $fd 1]
163 switch -exact -- $type {
165 + {redis_read_line
$fd}
166 - {return -code error [redis_read_line
$fd]}
167 $ {redis_bulk_read
$fd}
168 * {redis_multi_bulk_read
$fd}
169 default {return -code error "Bad protocol, '$type' as reply type byte"}
173 proc ::redis::redis_reset_state id
{
174 set ::redis::state($id) [dict create buf
{} mbulk
-1 bulk
-1 reply
{}]
175 set ::redis::statestack($id) {}
178 proc ::redis::redis_call_callback {id type reply
} {
179 set cb
[lindex $::redis::callback($id) 0]
180 set ::redis::callback($id) [lrange $::redis::callback($id) 1 end
]
181 uplevel #0 $cb [list ::redis::redisHandle$id $type $reply]
182 ::redis::redis_reset_state $id
185 # Read a reply in non-blocking mode.
186 proc ::redis::redis_readable {fd id
} {
188 redis_call_callback
$id eof {}
189 ::redis::__method__close $id $fd
192 if {[dict get
$::redis::state($id) bulk
] == -1} {
194 if {$line eq
{}} return ;# No complete line available, return
195 switch -exact -- [string index
$line 0] {
197 + {redis_call_callback
$id reply
[string range
$line 1 end-1
]}
198 - {redis_call_callback
$id err
[string range
$line 1 end-1
]}
200 dict
set ::redis::state($id) bulk
\
201 [expr [string range
$line 1 end-1
]+2]
202 if {[dict get
$::redis::state($id) bulk
] == 1} {
203 # We got a $-1, hack the state to play well with this.
204 dict
set ::redis::state($id) bulk
2
205 dict
set ::redis::state($id) buf
"\r\n"
206 ::redis::redis_readable $fd $id
210 dict
set ::redis::state($id) mbulk
[string range
$line 1 end-1
]
212 if {[dict get
$::redis::state($id) mbulk
] == -1} {
213 redis_call_callback
$id reply
{}
217 redis_call_callback
$id err
\
218 "Bad protocol, $type as reply type byte"
222 set totlen
[dict get
$::redis::state($id) bulk
]
223 set buflen
[string length
[dict get
$::redis::state($id) buf
]]
224 set toread
[expr {$totlen-$buflen}]
225 set data
[read $fd $toread]
226 set nread
[string length
$data]
227 dict
append ::redis::state($id) buf
$data
228 # Check if we read a complete bulk reply
229 if {[string length
[dict get
$::redis::state($id) buf
]] ==
230 [dict get
$::redis::state($id) bulk
]} {
231 if {[dict get
$::redis::state($id) mbulk
] == -1} {
232 redis_call_callback
$id reply
\
233 [string range
[dict get
$::redis::state($id) buf
] 0 end-2
]
235 dict with
::redis::state($id) {
236 lappend reply
[string range
$buf 0 end-2
]
240 if {[dict get
$::redis::state($id) mbulk
] == 0} {
241 redis_call_callback
$id reply
\
242 [dict get
$::redis::state($id) reply
]