1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <libmemcached/common.h>
41 inline static memcached_return_t
_string_check(memcached_string_st
*string
, size_t need
)
43 if (need
&& need
> (size_t)(string
->current_size
- (size_t)(string
->end
- string
->string
)))
45 size_t current_offset
= (size_t) (string
->end
- string
->string
);
47 /* This is the block multiplier. To keep it larger and surive division errors we must round it up */
48 size_t adjust
= (need
- (size_t)(string
->current_size
- (size_t)(string
->end
- string
->string
))) / MEMCACHED_BLOCK_SIZE
;
51 size_t new_size
= sizeof(char) * (size_t)((adjust
* MEMCACHED_BLOCK_SIZE
) + string
->current_size
);
52 /* Test for overflow */
55 char error_message
[1024];
56 int error_message_length
= snprintf(error_message
, sizeof(error_message
),"Needed %ld, got %ld", (long)need
, (long)new_size
);
57 return memcached_set_error(*string
->root
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
, error_message
, error_message_length
);
60 char *new_value
= libmemcached_xrealloc(string
->root
, string
->string
, new_size
, char);
62 if (new_value
== NULL
)
64 return memcached_set_error(*string
->root
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
);
67 string
->string
= new_value
;
68 string
->end
= string
->string
+ current_offset
;
70 string
->current_size
+= (MEMCACHED_BLOCK_SIZE
* adjust
);
73 return MEMCACHED_SUCCESS
;
76 static inline void _init_string(memcached_string_st
*self
)
78 self
->current_size
= 0;
79 self
->end
= self
->string
= NULL
;
82 memcached_string_st
*memcached_string_create(memcached_st
*memc
, memcached_string_st
*self
, size_t initial_size
)
84 WATCHPOINT_ASSERT(memc
);
86 /* Saving malloc calls :) */
89 WATCHPOINT_ASSERT(self
->options
.is_initialized
== false);
91 memcached_set_allocated(self
, false);
95 self
= libmemcached_xmalloc(memc
, memcached_string_st
);
102 memcached_set_allocated(self
, true);
108 if (memcached_failed(_string_check(self
, initial_size
)))
110 if (memcached_is_allocated(self
))
112 libmemcached_free(memc
, self
);
118 self
->options
.is_initialized
= true;
120 WATCHPOINT_ASSERT(self
->string
== self
->end
);
125 static memcached_return_t
memcached_string_append_null(memcached_string_st
*string
)
127 if (memcached_failed(_string_check(string
, 1)))
129 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
134 return MEMCACHED_SUCCESS
;
137 memcached_return_t
memcached_string_append_character(memcached_string_st
*string
,
140 if (memcached_failed(_string_check(string
, 1)))
142 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
145 *string
->end
= character
;
148 return MEMCACHED_SUCCESS
;
151 memcached_return_t
memcached_string_append(memcached_string_st
*string
,
152 const char *value
, size_t length
)
154 if (memcached_failed(_string_check(string
, length
)))
156 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
159 WATCHPOINT_ASSERT(length
<= string
->current_size
);
160 WATCHPOINT_ASSERT(string
->string
);
161 WATCHPOINT_ASSERT(string
->end
>= string
->string
);
163 memcpy(string
->end
, value
, length
);
164 string
->end
+= length
;
166 return MEMCACHED_SUCCESS
;
169 char *memcached_string_c_copy(memcached_string_st
*string
)
171 if (not memcached_string_length(string
))
174 char *c_ptr
= static_cast<char *>(libmemcached_malloc(string
->root
, (memcached_string_length(string
)+1) * sizeof(char)));
179 memcpy(c_ptr
, memcached_string_value(string
), memcached_string_length(string
));
180 c_ptr
[memcached_string_length(string
)]= 0;
185 memcached_return_t
memcached_string_reset(memcached_string_st
*string
)
187 string
->end
= string
->string
;
189 return MEMCACHED_SUCCESS
;
192 void memcached_string_free(memcached_string_st
*ptr
)
201 libmemcached_free(ptr
->root
, ptr
->string
);
204 if (memcached_is_allocated(ptr
))
206 libmemcached_free(ptr
->root
, ptr
);
210 ptr
->options
.is_initialized
= false;
214 memcached_return_t
memcached_string_check(memcached_string_st
*string
, size_t need
)
216 return _string_check(string
, need
);
219 size_t memcached_string_length(const memcached_string_st
*self
)
221 return size_t(self
->end
-self
->string
);
224 size_t memcached_string_size(const memcached_string_st
*self
)
226 return self
->current_size
;
229 const char *memcached_string_value(const memcached_string_st
*self
)
234 char *memcached_string_take_value(memcached_string_st
*self
)
236 assert_msg(self
, "Invalid memcached_string_st");
237 // If we fail at adding the null, we copy and move on
238 if (memcached_success(memcached_string_append_null(self
)))
240 return memcached_string_c_copy(self
);
243 char *value
= self
->string
;
250 char *memcached_string_value_mutable(const memcached_string_st
*self
)
255 void memcached_string_set_length(memcached_string_st
*self
, size_t length
)
257 self
->end
= self
->string
+ length
;