5 robj
*createObject(int type
, void *ptr
) {
8 if (server
.vm_enabled
) pthread_mutex_lock(&server
.obj_freelist_mutex
);
9 if (listLength(server
.objfreelist
)) {
10 listNode
*head
= listFirst(server
.objfreelist
);
11 o
= listNodeValue(head
);
12 listDelNode(server
.objfreelist
,head
);
13 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
15 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
16 o
= zmalloc(sizeof(*o
));
19 o
->encoding
= REDIS_ENCODING_RAW
;
22 if (server
.vm_enabled
) {
23 /* Note that this code may run in the context of an I/O thread
24 * and accessing server.lruclock in theory is an error
25 * (no locks). But in practice this is safe, and even if we read
26 * garbage Redis will not fail. */
27 o
->lru
= server
.lruclock
;
28 o
->storage
= REDIS_VM_MEMORY
;
33 robj
*createStringObject(char *ptr
, size_t len
) {
34 return createObject(REDIS_STRING
,sdsnewlen(ptr
,len
));
37 robj
*createStringObjectFromLongLong(long long value
) {
39 if (value
>= 0 && value
< REDIS_SHARED_INTEGERS
&&
40 pthread_equal(pthread_self(),server
.mainthread
)) {
41 incrRefCount(shared
.integers
[value
]);
42 o
= shared
.integers
[value
];
44 if (value
>= LONG_MIN
&& value
<= LONG_MAX
) {
45 o
= createObject(REDIS_STRING
, NULL
);
46 o
->encoding
= REDIS_ENCODING_INT
;
47 o
->ptr
= (void*)((long)value
);
49 o
= createObject(REDIS_STRING
,sdsfromlonglong(value
));
55 robj
*dupStringObject(robj
*o
) {
56 redisAssert(o
->encoding
== REDIS_ENCODING_RAW
);
57 return createStringObject(o
->ptr
,sdslen(o
->ptr
));
60 robj
*createListObject(void) {
61 list
*l
= listCreate();
62 robj
*o
= createObject(REDIS_LIST
,l
);
63 listSetFreeMethod(l
,decrRefCount
);
64 o
->encoding
= REDIS_ENCODING_LINKEDLIST
;
68 robj
*createZiplistObject(void) {
69 unsigned char *zl
= ziplistNew();
70 robj
*o
= createObject(REDIS_LIST
,zl
);
71 o
->encoding
= REDIS_ENCODING_ZIPLIST
;
75 robj
*createSetObject(void) {
76 dict
*d
= dictCreate(&setDictType
,NULL
);
77 robj
*o
= createObject(REDIS_SET
,d
);
78 o
->encoding
= REDIS_ENCODING_HT
;
82 robj
*createIntsetObject(void) {
83 intset
*is
= intsetNew();
84 robj
*o
= createObject(REDIS_SET
,is
);
85 o
->encoding
= REDIS_ENCODING_INTSET
;
89 robj
*createHashObject(void) {
90 /* All the Hashes start as zipmaps. Will be automatically converted
91 * into hash tables if there are enough elements or big elements
93 unsigned char *zm
= zipmapNew();
94 robj
*o
= createObject(REDIS_HASH
,zm
);
95 o
->encoding
= REDIS_ENCODING_ZIPMAP
;
99 robj
*createZsetObject(void) {
100 zset
*zs
= zmalloc(sizeof(*zs
));
102 zs
->dict
= dictCreate(&zsetDictType
,NULL
);
103 zs
->zsl
= zslCreate();
104 return createObject(REDIS_ZSET
,zs
);
107 void freeStringObject(robj
*o
) {
108 if (o
->encoding
== REDIS_ENCODING_RAW
) {
113 void freeListObject(robj
*o
) {
114 switch (o
->encoding
) {
115 case REDIS_ENCODING_LINKEDLIST
:
116 listRelease((list
*) o
->ptr
);
118 case REDIS_ENCODING_ZIPLIST
:
122 redisPanic("Unknown list encoding type");
126 void freeSetObject(robj
*o
) {
127 switch (o
->encoding
) {
128 case REDIS_ENCODING_HT
:
129 dictRelease((dict
*) o
->ptr
);
131 case REDIS_ENCODING_INTSET
:
135 redisPanic("Unknown set encoding type");
139 void freeZsetObject(robj
*o
) {
142 dictRelease(zs
->dict
);
147 void freeHashObject(robj
*o
) {
148 switch (o
->encoding
) {
149 case REDIS_ENCODING_HT
:
150 dictRelease((dict
*) o
->ptr
);
152 case REDIS_ENCODING_ZIPMAP
:
156 redisPanic("Unknown hash encoding type");
161 void incrRefCount(robj
*o
) {
165 void decrRefCount(void *obj
) {
168 /* Object is a swapped out value, or in the process of being loaded. */
169 if (server
.vm_enabled
&&
170 (o
->storage
== REDIS_VM_SWAPPED
|| o
->storage
== REDIS_VM_LOADING
))
173 if (o
->storage
== REDIS_VM_LOADING
) vmCancelThreadedIOJob(o
);
174 vmMarkPagesFree(vp
->page
,vp
->usedpages
);
175 server
.vm_stats_swapped_objects
--;
180 if (o
->refcount
<= 0) redisPanic("decrRefCount against refcount <= 0");
181 /* Object is in memory, or in the process of being swapped out.
183 * If the object is being swapped out, abort the operation on
184 * decrRefCount even if the refcount does not drop to 0: the object
185 * is referenced at least two times, as value of the key AND as
186 * job->val in the iojob. So if we don't invalidate the iojob, when it is
187 * done but the relevant key was removed in the meantime, the
188 * complete jobs handler will not find the key about the job and the
189 * assert will fail. */
190 if (server
.vm_enabled
&& o
->storage
== REDIS_VM_SWAPPING
)
191 vmCancelThreadedIOJob(o
);
192 if (--(o
->refcount
) == 0) {
194 case REDIS_STRING
: freeStringObject(o
); break;
195 case REDIS_LIST
: freeListObject(o
); break;
196 case REDIS_SET
: freeSetObject(o
); break;
197 case REDIS_ZSET
: freeZsetObject(o
); break;
198 case REDIS_HASH
: freeHashObject(o
); break;
199 default: redisPanic("Unknown object type"); break;
201 o
->ptr
= NULL
; /* defensive programming. We'll see NULL in traces. */
202 if (server
.vm_enabled
) pthread_mutex_lock(&server
.obj_freelist_mutex
);
203 if (listLength(server
.objfreelist
) > REDIS_OBJFREELIST_MAX
||
204 !listAddNodeHead(server
.objfreelist
,o
))
206 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
210 int checkType(redisClient
*c
, robj
*o
, int type
) {
211 if (o
->type
!= type
) {
212 addReply(c
,shared
.wrongtypeerr
);
218 /* Try to encode a string object in order to save space */
219 robj
*tryObjectEncoding(robj
*o
) {
223 if (o
->encoding
!= REDIS_ENCODING_RAW
)
224 return o
; /* Already encoded */
226 /* It's not safe to encode shared objects: shared objects can be shared
227 * everywhere in the "object space" of Redis. Encoded objects can only
228 * appear as "values" (and not, for instance, as keys) */
229 if (o
->refcount
> 1) return o
;
231 /* Currently we try to encode only strings */
232 redisAssert(o
->type
== REDIS_STRING
);
234 /* Check if we can represent this string as a long integer */
235 if (isStringRepresentableAsLong(s
,&value
) == REDIS_ERR
) return o
;
237 /* Ok, this object can be encoded...
239 * Can I use a shared object? Only if the object is inside a given
240 * range and if this is the main thread, since when VM is enabled we
241 * have the constraint that I/O thread should only handle non-shared
242 * objects, in order to avoid race conditions (we don't have per-object
244 if (value
>= 0 && value
< REDIS_SHARED_INTEGERS
&&
245 pthread_equal(pthread_self(),server
.mainthread
)) {
247 incrRefCount(shared
.integers
[value
]);
248 return shared
.integers
[value
];
250 o
->encoding
= REDIS_ENCODING_INT
;
252 o
->ptr
= (void*) value
;
257 /* Get a decoded version of an encoded object (returned as a new object).
258 * If the object is already raw-encoded just increment the ref count. */
259 robj
*getDecodedObject(robj
*o
) {
262 if (o
->encoding
== REDIS_ENCODING_RAW
) {
266 if (o
->type
== REDIS_STRING
&& o
->encoding
== REDIS_ENCODING_INT
) {
269 ll2string(buf
,32,(long)o
->ptr
);
270 dec
= createStringObject(buf
,strlen(buf
));
273 redisPanic("Unknown encoding type");
277 /* Compare two string objects via strcmp() or alike.
278 * Note that the objects may be integer-encoded. In such a case we
279 * use ll2string() to get a string representation of the numbers on the stack
280 * and compare the strings, it's much faster than calling getDecodedObject().
282 * Important note: if objects are not integer encoded, but binary-safe strings,
283 * sdscmp() from sds.c will apply memcmp() so this function ca be considered
285 int compareStringObjects(robj
*a
, robj
*b
) {
286 redisAssert(a
->type
== REDIS_STRING
&& b
->type
== REDIS_STRING
);
287 char bufa
[128], bufb
[128], *astr
, *bstr
;
290 if (a
== b
) return 0;
291 if (a
->encoding
!= REDIS_ENCODING_RAW
) {
292 ll2string(bufa
,sizeof(bufa
),(long) a
->ptr
);
298 if (b
->encoding
!= REDIS_ENCODING_RAW
) {
299 ll2string(bufb
,sizeof(bufb
),(long) b
->ptr
);
305 return bothsds
? sdscmp(astr
,bstr
) : strcmp(astr
,bstr
);
308 /* Equal string objects return 1 if the two objects are the same from the
309 * point of view of a string comparison, otherwise 0 is returned. Note that
310 * this function is faster then checking for (compareStringObject(a,b) == 0)
311 * because it can perform some more optimization. */
312 int equalStringObjects(robj
*a
, robj
*b
) {
313 if (a
->encoding
!= REDIS_ENCODING_RAW
&& b
->encoding
!= REDIS_ENCODING_RAW
){
314 return a
->ptr
== b
->ptr
;
316 return compareStringObjects(a
,b
) == 0;
320 size_t stringObjectLen(robj
*o
) {
321 redisAssert(o
->type
== REDIS_STRING
);
322 if (o
->encoding
== REDIS_ENCODING_RAW
) {
323 return sdslen(o
->ptr
);
327 return ll2string(buf
,32,(long)o
->ptr
);
331 int getDoubleFromObject(robj
*o
, double *target
) {
338 redisAssert(o
->type
== REDIS_STRING
);
339 if (o
->encoding
== REDIS_ENCODING_RAW
) {
340 value
= strtod(o
->ptr
, &eptr
);
341 if (eptr
[0] != '\0' || isnan(value
)) return REDIS_ERR
;
342 } else if (o
->encoding
== REDIS_ENCODING_INT
) {
343 value
= (long)o
->ptr
;
345 redisPanic("Unknown string encoding");
353 int getDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, double *target
, const char *msg
) {
355 if (getDoubleFromObject(o
, &value
) != REDIS_OK
) {
357 addReplyError(c
,(char*)msg
);
359 addReplyError(c
,"value is not a double");
368 int getLongLongFromObject(robj
*o
, long long *target
) {
375 redisAssert(o
->type
== REDIS_STRING
);
376 if (o
->encoding
== REDIS_ENCODING_RAW
) {
377 value
= strtoll(o
->ptr
, &eptr
, 10);
378 if (eptr
[0] != '\0') return REDIS_ERR
;
379 if (errno
== ERANGE
&& (value
== LLONG_MIN
|| value
== LLONG_MAX
))
381 } else if (o
->encoding
== REDIS_ENCODING_INT
) {
382 value
= (long)o
->ptr
;
384 redisPanic("Unknown string encoding");
388 if (target
) *target
= value
;
392 int getLongLongFromObjectOrReply(redisClient
*c
, robj
*o
, long long *target
, const char *msg
) {
394 if (getLongLongFromObject(o
, &value
) != REDIS_OK
) {
396 addReplyError(c
,(char*)msg
);
398 addReplyError(c
,"value is not an integer or out of range");
407 int getLongFromObjectOrReply(redisClient
*c
, robj
*o
, long *target
, const char *msg
) {
410 if (getLongLongFromObjectOrReply(c
, o
, &value
, msg
) != REDIS_OK
) return REDIS_ERR
;
411 if (value
< LONG_MIN
|| value
> LONG_MAX
) {
413 addReplyError(c
,(char*)msg
);
415 addReplyError(c
,"value is out of range");
424 char *strEncoding(int encoding
) {
426 case REDIS_ENCODING_RAW
: return "raw";
427 case REDIS_ENCODING_INT
: return "int";
428 case REDIS_ENCODING_HT
: return "hashtable";
429 case REDIS_ENCODING_ZIPMAP
: return "zipmap";
430 case REDIS_ENCODING_LINKEDLIST
: return "linkedlist";
431 case REDIS_ENCODING_ZIPLIST
: return "ziplist";
432 case REDIS_ENCODING_INTSET
: return "intset";
433 default: return "unknown";