dae53bf7ec8875675e6e33bdf21c5ac6287f32a3
[awesomized/libmemcached] / libmemcached / result.c
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary: Functions to manipulate the result structure.
9 *
10 */
11
12 /*
13 memcached_result_st are used to internally represent the return values from
14 memcached. We use a structure so that long term as identifiers are added
15 to memcached we will be able to absorb new attributes without having
16 to addjust the entire API.
17 */
18 #include "common.h"
19
20 static inline void _result_init(memcached_result_st *self,
21 const memcached_st *memc)
22 {
23 self->item_flags= 0;
24 self->item_expiration= 0;
25 self->key_length= 0;
26 self->item_cas= 0;
27 self->root= memc;
28 self->item_key[0]= 0;
29 }
30
31 memcached_result_st *memcached_result_create(const memcached_st *memc,
32 memcached_result_st *ptr)
33 {
34 WATCHPOINT_ASSERT(memc);
35
36 /* Saving malloc calls :) */
37 if (ptr)
38 {
39 ptr->options.is_allocated= false;
40 }
41 else
42 {
43 ptr= libmemcached_malloc(memc, sizeof(memcached_result_st));
44
45 if (ptr == NULL)
46 return NULL;
47
48 ptr->options.is_allocated= true;
49 }
50
51 ptr->options.is_initialized= true;
52
53 _result_init(ptr, memc);
54
55 ptr->root= memc;
56 WATCHPOINT_SET(ptr->value.options.is_initialized= false);
57 memcached_string_create(memc, &ptr->value, 0);
58 WATCHPOINT_ASSERT_INITIALIZED(&ptr->value);
59 WATCHPOINT_ASSERT(ptr->value.string == NULL);
60
61 return ptr;
62 }
63
64 void memcached_result_reset(memcached_result_st *ptr)
65 {
66 ptr->key_length= 0;
67 memcached_string_reset(&ptr->value);
68 ptr->item_flags= 0;
69 ptr->item_cas= 0;
70 ptr->item_expiration= 0;
71 }
72
73 void memcached_result_free(memcached_result_st *ptr)
74 {
75 if (ptr == NULL)
76 return;
77
78 memcached_string_free(&ptr->value);
79
80 if (memcached_is_allocated(ptr))
81 {
82 WATCHPOINT_ASSERT(ptr->root); // Without a root, that means that result was not properly initialized.
83 libmemcached_free(ptr->root, ptr);
84 }
85 else
86 {
87 ptr->options.is_initialized= false;
88 }
89 }
90
91 memcached_return_t memcached_result_set_value(memcached_result_st *ptr,
92 const char *value,
93 size_t length)
94 {
95 return memcached_string_append(&ptr->value, value, length);
96 }
97
98 const char *memcached_result_key_value(const memcached_result_st *self)
99 {
100 return self->key_length ? self->item_key : NULL;
101 }
102
103 size_t memcached_result_key_length(const memcached_result_st *self)
104 {
105 return self->key_length;
106 }
107
108 const char *memcached_result_value(const memcached_result_st *self)
109 {
110 const memcached_string_st *sptr= &self->value;
111 return memcached_string_value(sptr);
112 }
113
114 size_t memcached_result_length(const memcached_result_st *self)
115 {
116 const memcached_string_st *sptr= &self->value;
117 return memcached_string_length(sptr);
118 }
119
120 uint32_t memcached_result_flags(const memcached_result_st *self)
121 {
122 return self->item_flags;
123 }
124
125 uint64_t memcached_result_cas(const memcached_result_st *self)
126 {
127 return self->item_cas;
128 }
129
130 void memcached_result_set_flags(memcached_result_st *self, uint32_t flags)
131 {
132 self->item_flags= flags;
133 }
134
135 void memcached_result_set_expiration(memcached_result_st *self, time_t expiration)
136 {
137 self->item_expiration= expiration;
138 }