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 return createObject(REDIS_SET
,d
);
80 robj
*createHashObject(void) {
81 /* All the Hashes start as zipmaps. Will be automatically converted
82 * into hash tables if there are enough elements or big elements
84 unsigned char *zm
= zipmapNew();
85 robj
*o
= createObject(REDIS_HASH
,zm
);
86 o
->encoding
= REDIS_ENCODING_ZIPMAP
;
90 robj
*createZsetObject(void) {
91 zset
*zs
= zmalloc(sizeof(*zs
));
93 zs
->dict
= dictCreate(&zsetDictType
,NULL
);
94 zs
->zsl
= zslCreate();
95 return createObject(REDIS_ZSET
,zs
);
98 void freeStringObject(robj
*o
) {
99 if (o
->encoding
== REDIS_ENCODING_RAW
) {
104 void freeListObject(robj
*o
) {
105 switch (o
->encoding
) {
106 case REDIS_ENCODING_LINKEDLIST
:
107 listRelease((list
*) o
->ptr
);
109 case REDIS_ENCODING_ZIPLIST
:
113 redisPanic("Unknown list encoding type");
117 void freeSetObject(robj
*o
) {
118 dictRelease((dict
*) o
->ptr
);
121 void freeZsetObject(robj
*o
) {
124 dictRelease(zs
->dict
);
129 void freeHashObject(robj
*o
) {
130 switch (o
->encoding
) {
131 case REDIS_ENCODING_HT
:
132 dictRelease((dict
*) o
->ptr
);
134 case REDIS_ENCODING_ZIPMAP
:
138 redisPanic("Unknown hash encoding type");
143 void incrRefCount(robj
*o
) {
147 void decrRefCount(void *obj
) {
150 /* Object is a swapped out value, or in the process of being loaded. */
151 if (server
.vm_enabled
&&
152 (o
->storage
== REDIS_VM_SWAPPED
|| o
->storage
== REDIS_VM_LOADING
))
155 if (o
->storage
== REDIS_VM_LOADING
) vmCancelThreadedIOJob(o
);
156 vmMarkPagesFree(vp
->page
,vp
->usedpages
);
157 server
.vm_stats_swapped_objects
--;
162 if (o
->refcount
<= 0) redisPanic("decrRefCount against refcount <= 0");
163 /* Object is in memory, or in the process of being swapped out.
165 * If the object is being swapped out, abort the operation on
166 * decrRefCount even if the refcount does not drop to 0: the object
167 * is referenced at least two times, as value of the key AND as
168 * job->val in the iojob. So if we don't invalidate the iojob, when it is
169 * done but the relevant key was removed in the meantime, the
170 * complete jobs handler will not find the key about the job and the
171 * assert will fail. */
172 if (server
.vm_enabled
&& o
->storage
== REDIS_VM_SWAPPING
)
173 vmCancelThreadedIOJob(o
);
174 if (--(o
->refcount
) == 0) {
176 case REDIS_STRING
: freeStringObject(o
); break;
177 case REDIS_LIST
: freeListObject(o
); break;
178 case REDIS_SET
: freeSetObject(o
); break;
179 case REDIS_ZSET
: freeZsetObject(o
); break;
180 case REDIS_HASH
: freeHashObject(o
); break;
181 default: redisPanic("Unknown object type"); break;
183 o
->ptr
= NULL
; /* defensive programming. We'll see NULL in traces. */
184 if (server
.vm_enabled
) pthread_mutex_lock(&server
.obj_freelist_mutex
);
185 if (listLength(server
.objfreelist
) > REDIS_OBJFREELIST_MAX
||
186 !listAddNodeHead(server
.objfreelist
,o
))
188 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.obj_freelist_mutex
);
192 int checkType(redisClient
*c
, robj
*o
, int type
) {
193 if (o
->type
!= type
) {
194 addReply(c
,shared
.wrongtypeerr
);
200 /* Try to encode a string object in order to save space */
201 robj
*tryObjectEncoding(robj
*o
) {
205 if (o
->encoding
!= REDIS_ENCODING_RAW
)
206 return o
; /* Already encoded */
208 /* It's not safe to encode shared objects: shared objects can be shared
209 * everywhere in the "object space" of Redis. Encoded objects can only
210 * appear as "values" (and not, for instance, as keys) */
211 if (o
->refcount
> 1) return o
;
213 /* Currently we try to encode only strings */
214 redisAssert(o
->type
== REDIS_STRING
);
216 /* Check if we can represent this string as a long integer */
217 if (isStringRepresentableAsLong(s
,&value
) == REDIS_ERR
) return o
;
219 /* Ok, this object can be encoded...
221 * Can I use a shared object? Only if the object is inside a given
222 * range and if this is the main thread, since when VM is enabled we
223 * have the constraint that I/O thread should only handle non-shared
224 * objects, in order to avoid race conditions (we don't have per-object
226 if (value
>= 0 && value
< REDIS_SHARED_INTEGERS
&&
227 pthread_equal(pthread_self(),server
.mainthread
)) {
229 incrRefCount(shared
.integers
[value
]);
230 return shared
.integers
[value
];
232 o
->encoding
= REDIS_ENCODING_INT
;
234 o
->ptr
= (void*) value
;
239 /* Get a decoded version of an encoded object (returned as a new object).
240 * If the object is already raw-encoded just increment the ref count. */
241 robj
*getDecodedObject(robj
*o
) {
244 if (o
->encoding
== REDIS_ENCODING_RAW
) {
248 if (o
->type
== REDIS_STRING
&& o
->encoding
== REDIS_ENCODING_INT
) {
251 ll2string(buf
,32,(long)o
->ptr
);
252 dec
= createStringObject(buf
,strlen(buf
));
255 redisPanic("Unknown encoding type");
259 /* Compare two string objects via strcmp() or alike.
260 * Note that the objects may be integer-encoded. In such a case we
261 * use ll2string() to get a string representation of the numbers on the stack
262 * and compare the strings, it's much faster than calling getDecodedObject().
264 * Important note: if objects are not integer encoded, but binary-safe strings,
265 * sdscmp() from sds.c will apply memcmp() so this function ca be considered
267 int compareStringObjects(robj
*a
, robj
*b
) {
268 redisAssert(a
->type
== REDIS_STRING
&& b
->type
== REDIS_STRING
);
269 char bufa
[128], bufb
[128], *astr
, *bstr
;
272 if (a
== b
) return 0;
273 if (a
->encoding
!= REDIS_ENCODING_RAW
) {
274 ll2string(bufa
,sizeof(bufa
),(long) a
->ptr
);
280 if (b
->encoding
!= REDIS_ENCODING_RAW
) {
281 ll2string(bufb
,sizeof(bufb
),(long) b
->ptr
);
287 return bothsds
? sdscmp(astr
,bstr
) : strcmp(astr
,bstr
);
290 /* Equal string objects return 1 if the two objects are the same from the
291 * point of view of a string comparison, otherwise 0 is returned. Note that
292 * this function is faster then checking for (compareStringObject(a,b) == 0)
293 * because it can perform some more optimization. */
294 int equalStringObjects(robj
*a
, robj
*b
) {
295 if (a
->encoding
!= REDIS_ENCODING_RAW
&& b
->encoding
!= REDIS_ENCODING_RAW
){
296 return a
->ptr
== b
->ptr
;
298 return compareStringObjects(a
,b
) == 0;
302 size_t stringObjectLen(robj
*o
) {
303 redisAssert(o
->type
== REDIS_STRING
);
304 if (o
->encoding
== REDIS_ENCODING_RAW
) {
305 return sdslen(o
->ptr
);
309 return ll2string(buf
,32,(long)o
->ptr
);
313 int getDoubleFromObject(robj
*o
, double *target
) {
320 redisAssert(o
->type
== REDIS_STRING
);
321 if (o
->encoding
== REDIS_ENCODING_RAW
) {
322 value
= strtod(o
->ptr
, &eptr
);
323 if (eptr
[0] != '\0' || isnan(value
)) return REDIS_ERR
;
324 } else if (o
->encoding
== REDIS_ENCODING_INT
) {
325 value
= (long)o
->ptr
;
327 redisPanic("Unknown string encoding");
335 int getDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, double *target
, const char *msg
) {
337 if (getDoubleFromObject(o
, &value
) != REDIS_OK
) {
339 addReplySds(c
, sdscatprintf(sdsempty(), "-ERR %s\r\n", msg
));
341 addReplySds(c
, sdsnew("-ERR value is not a double\r\n"));
350 int getLongLongFromObject(robj
*o
, long long *target
) {
357 redisAssert(o
->type
== REDIS_STRING
);
358 if (o
->encoding
== REDIS_ENCODING_RAW
) {
359 value
= strtoll(o
->ptr
, &eptr
, 10);
360 if (eptr
[0] != '\0') return REDIS_ERR
;
361 } else if (o
->encoding
== REDIS_ENCODING_INT
) {
362 value
= (long)o
->ptr
;
364 redisPanic("Unknown string encoding");
372 int getLongLongFromObjectOrReply(redisClient
*c
, robj
*o
, long long *target
, const char *msg
) {
374 if (getLongLongFromObject(o
, &value
) != REDIS_OK
) {
376 addReplySds(c
, sdscatprintf(sdsempty(), "-ERR %s\r\n", msg
));
378 addReplySds(c
, sdsnew("-ERR value is not an integer\r\n"));
387 int getLongFromObjectOrReply(redisClient
*c
, robj
*o
, long *target
, const char *msg
) {
390 if (getLongLongFromObjectOrReply(c
, o
, &value
, msg
) != REDIS_OK
) return REDIS_ERR
;
391 if (value
< LONG_MIN
|| value
> LONG_MAX
) {
393 addReplySds(c
, sdscatprintf(sdsempty(), "-ERR %s\r\n", msg
));
395 addReplySds(c
, sdsnew("-ERR value is out of range\r\n"));
404 char *strEncoding(int encoding
) {
406 case REDIS_ENCODING_RAW
: return "raw";
407 case REDIS_ENCODING_INT
: return "int";
408 case REDIS_ENCODING_HT
: return "hashtable";
409 case REDIS_ENCODING_ZIPMAP
: return "zipmap";
410 case REDIS_ENCODING_LINKEDLIST
: return "linkedlist";
411 case REDIS_ENCODING_ZIPLIST
: return "ziplist";
412 default: return "unknown";