]>
git.saurik.com Git - redis.git/blob - src/multi.c
3 /* ================================ MULTI/EXEC ============================== */
5 /* Client state initialization for MULTI/EXEC */
6 void initClientMultiState(redisClient
*c
) {
7 c
->mstate
.commands
= NULL
;
11 /* Release all the resources associated with MULTI/EXEC state */
12 void freeClientMultiState(redisClient
*c
) {
15 for (j
= 0; j
< c
->mstate
.count
; j
++) {
17 multiCmd
*mc
= c
->mstate
.commands
+j
;
19 for (i
= 0; i
< mc
->argc
; i
++)
20 decrRefCount(mc
->argv
[i
]);
23 zfree(c
->mstate
.commands
);
26 /* Add a new command into the MULTI commands queue */
27 void queueMultiCommand(redisClient
*c
, struct redisCommand
*cmd
) {
31 c
->mstate
.commands
= zrealloc(c
->mstate
.commands
,
32 sizeof(multiCmd
)*(c
->mstate
.count
+1));
33 mc
= c
->mstate
.commands
+c
->mstate
.count
;
36 mc
->argv
= zmalloc(sizeof(robj
*)*c
->argc
);
37 memcpy(mc
->argv
,c
->argv
,sizeof(robj
*)*c
->argc
);
38 for (j
= 0; j
< c
->argc
; j
++)
39 incrRefCount(mc
->argv
[j
]);
43 void multiCommand(redisClient
*c
) {
44 if (c
->flags
& REDIS_MULTI
) {
45 addReplyError(c
,"MULTI calls can not be nested");
48 c
->flags
|= REDIS_MULTI
;
49 addReply(c
,shared
.ok
);
52 void discardCommand(redisClient
*c
) {
53 if (!(c
->flags
& REDIS_MULTI
)) {
54 addReplyError(c
,"DISCARD without MULTI");
58 freeClientMultiState(c
);
59 initClientMultiState(c
);
60 c
->flags
&= (~REDIS_MULTI
);
62 addReply(c
,shared
.ok
);
65 /* Send a MULTI command to all the slaves and AOF file. Check the execCommand
66 * implememntation for more information. */
67 void execCommandReplicateMulti(redisClient
*c
) {
68 struct redisCommand
*cmd
;
69 robj
*multistring
= createStringObject("MULTI",5);
71 cmd
= lookupCommand("multi");
72 if (server
.appendonly
)
73 feedAppendOnlyFile(cmd
,c
->db
->id
,&multistring
,1);
74 if (listLength(server
.slaves
))
75 replicationFeedSlaves(server
.slaves
,c
->db
->id
,&multistring
,1);
76 decrRefCount(multistring
);
79 void execCommand(redisClient
*c
) {
84 if (!(c
->flags
& REDIS_MULTI
)) {
85 addReplyError(c
,"EXEC without MULTI");
89 /* Check if we need to abort the EXEC if some WATCHed key was touched.
90 * A failed EXEC will return a multi bulk nil object. */
91 if (c
->flags
& REDIS_DIRTY_CAS
) {
92 freeClientMultiState(c
);
93 initClientMultiState(c
);
94 c
->flags
&= ~(REDIS_MULTI
|REDIS_DIRTY_CAS
);
96 addReply(c
,shared
.nullmultibulk
);
100 /* Replicate a MULTI request now that we are sure the block is executed.
101 * This way we'll deliver the MULTI/..../EXEC block as a whole and
102 * both the AOF and the replication link will have the same consistency
103 * and atomicity guarantees. */
104 execCommandReplicateMulti(c
);
106 /* Exec all the queued commands */
107 unwatchAllKeys(c
); /* Unwatch ASAP otherwise we'll waste CPU cycles */
110 addReplyMultiBulkLen(c
,c
->mstate
.count
);
111 for (j
= 0; j
< c
->mstate
.count
; j
++) {
112 c
->argc
= c
->mstate
.commands
[j
].argc
;
113 c
->argv
= c
->mstate
.commands
[j
].argv
;
114 call(c
,c
->mstate
.commands
[j
].cmd
);
118 freeClientMultiState(c
);
119 initClientMultiState(c
);
120 c
->flags
&= ~(REDIS_MULTI
|REDIS_DIRTY_CAS
);
121 /* Make sure the EXEC command is always replicated / AOF, since we
122 * always send the MULTI command (we can't know beforehand if the
123 * next operations will contain at least a modification to the DB). */
127 /* ===================== WATCH (CAS alike for MULTI/EXEC) ===================
129 * The implementation uses a per-DB hash table mapping keys to list of clients
130 * WATCHing those keys, so that given a key that is going to be modified
131 * we can mark all the associated clients as dirty.
133 * Also every client contains a list of WATCHed keys so that's possible to
134 * un-watch such keys when the client is freed or when UNWATCH is called. */
136 /* In the client->watched_keys list we need to use watchedKey structures
137 * as in order to identify a key in Redis we need both the key name and the
139 typedef struct watchedKey
{
144 /* Watch for the specified key */
145 void watchForKey(redisClient
*c
, robj
*key
) {
146 list
*clients
= NULL
;
151 /* Check if we are already watching for this key */
152 listRewind(c
->watched_keys
,&li
);
153 while((ln
= listNext(&li
))) {
154 wk
= listNodeValue(ln
);
155 if (wk
->db
== c
->db
&& equalStringObjects(key
,wk
->key
))
156 return; /* Key already watched */
158 /* This key is not already watched in this DB. Let's add it */
159 clients
= dictFetchValue(c
->db
->watched_keys
,key
);
161 clients
= listCreate();
162 dictAdd(c
->db
->watched_keys
,key
,clients
);
165 listAddNodeTail(clients
,c
);
166 /* Add the new key to the lits of keys watched by this client */
167 wk
= zmalloc(sizeof(*wk
));
171 listAddNodeTail(c
->watched_keys
,wk
);
174 /* Unwatch all the keys watched by this client. To clean the EXEC dirty
175 * flag is up to the caller. */
176 void unwatchAllKeys(redisClient
*c
) {
180 if (listLength(c
->watched_keys
) == 0) return;
181 listRewind(c
->watched_keys
,&li
);
182 while((ln
= listNext(&li
))) {
186 /* Lookup the watched key -> clients list and remove the client
188 wk
= listNodeValue(ln
);
189 clients
= dictFetchValue(wk
->db
->watched_keys
, wk
->key
);
190 redisAssert(clients
!= NULL
);
191 listDelNode(clients
,listSearchKey(clients
,c
));
192 /* Kill the entry at all if this was the only client */
193 if (listLength(clients
) == 0)
194 dictDelete(wk
->db
->watched_keys
, wk
->key
);
195 /* Remove this watched key from the client->watched list */
196 listDelNode(c
->watched_keys
,ln
);
197 decrRefCount(wk
->key
);
202 /* "Touch" a key, so that if this key is being WATCHed by some client the
203 * next EXEC will fail. */
204 void touchWatchedKey(redisDb
*db
, robj
*key
) {
209 if (dictSize(db
->watched_keys
) == 0) return;
210 clients
= dictFetchValue(db
->watched_keys
, key
);
211 if (!clients
) return;
213 /* Mark all the clients watching this key as REDIS_DIRTY_CAS */
214 /* Check if we are already watching for this key */
215 listRewind(clients
,&li
);
216 while((ln
= listNext(&li
))) {
217 redisClient
*c
= listNodeValue(ln
);
219 c
->flags
|= REDIS_DIRTY_CAS
;
223 /* On FLUSHDB or FLUSHALL all the watched keys that are present before the
224 * flush but will be deleted as effect of the flushing operation should
225 * be touched. "dbid" is the DB that's getting the flush. -1 if it is
226 * a FLUSHALL operation (all the DBs flushed). */
227 void touchWatchedKeysOnFlush(int dbid
) {
231 /* For every client, check all the waited keys */
232 listRewind(server
.clients
,&li1
);
233 while((ln
= listNext(&li1
))) {
234 redisClient
*c
= listNodeValue(ln
);
235 listRewind(c
->watched_keys
,&li2
);
236 while((ln
= listNext(&li2
))) {
237 watchedKey
*wk
= listNodeValue(ln
);
239 /* For every watched key matching the specified DB, if the
240 * key exists, mark the client as dirty, as the key will be
242 if (dbid
== -1 || wk
->db
->id
== dbid
) {
243 if (dictFind(wk
->db
->dict
, wk
->key
->ptr
) != NULL
)
244 c
->flags
|= REDIS_DIRTY_CAS
;
250 void watchCommand(redisClient
*c
) {
253 if (c
->flags
& REDIS_MULTI
) {
254 addReplyError(c
,"WATCH inside MULTI is not allowed");
257 for (j
= 1; j
< c
->argc
; j
++)
258 watchForKey(c
,c
->argv
[j
]);
259 addReply(c
,shared
.ok
);
262 void unwatchCommand(redisClient
*c
) {
264 c
->flags
&= (~REDIS_DIRTY_CAS
);
265 addReply(c
,shared
.ok
);