123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * Gearmand String
- *
- * Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *
- * * The names of its contributors may not be used to endorse or
- * promote products derived from this software without specific prior
- * written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include <libgearman/common.h>
- #include <cassert>
- #include <cstdlib>
- #include <cstring>
- #define GEARMAN_BLOCK_SIZE 1024*4
- inline static gearman_return_t _string_check(gearman_vector_st *string, const size_t need)
- {
- if (not string)
- return GEARMAN_INVALID_ARGUMENT;
- if (need && need > size_t(string->current_size - size_t(string->end - string->string)))
- {
- size_t current_offset= size_t(string->end - string->string);
- char *new_value;
- size_t adjust;
- size_t new_size;
- /* This is the block multiplier. To keep it larger and surive division errors we must round it up */
- adjust= (need - size_t(string->current_size - size_t(string->end - string->string))) / GEARMAN_BLOCK_SIZE;
- adjust++;
- new_size= sizeof(char) * size_t((adjust * GEARMAN_BLOCK_SIZE) + string->current_size);
- /* Test for overflow */
- if (new_size < need)
- {
- return GEARMAN_MEMORY_ALLOCATION_FAILURE;
- }
- new_value= static_cast<char *>(realloc(string->string, new_size));
- if (new_value == NULL)
- {
- return GEARMAN_MEMORY_ALLOCATION_FAILURE;
- }
- string->string= new_value;
- string->end= string->string + current_offset;
- string->current_size+= (GEARMAN_BLOCK_SIZE * adjust);
- }
- return GEARMAN_SUCCESS;
- }
- static inline void _init_string(gearman_vector_st *self)
- {
- self->current_size= 0;
- self->end= self->string= NULL;
- }
- gearman_vector_st *gearman_string_create(gearman_vector_st *self, const char *str, size_t initial_size)
- {
- if (not str)
- return NULL;
- self= gearman_string_create(self, initial_size);
- if (not self)
- return NULL;
- if (gearman_failed(gearman_string_append(self, str, initial_size)))
- {
- gearman_string_free(self);
- return NULL;
- }
- return self;
- }
- gearman_vector_st *gearman_string_create(gearman_vector_st *self, size_t initial_size)
- {
- /* Saving malloc calls :) */
- if (self)
- {
- gearman_set_allocated(self, false);
- }
- else
- {
- self= static_cast<gearman_vector_st *>(malloc(sizeof(gearman_vector_st)));
- if (not self)
- {
- return NULL;
- }
- gearman_set_allocated(self, true);
- }
- _init_string(self);
- if (gearman_failed(_string_check(self, initial_size)))
- {
- if (gearman_is_allocated(self))
- {
- free(self);
- }
- return NULL;
- }
- if (initial_size)
- self->string[0]= 0;
- return self;
- }
- gearman_vector_st *gearman_string_clone(const gearman_vector_st *self)
- {
- if (not self)
- return NULL;
- gearman_vector_st *clone= gearman_string_create(NULL, gearman_string_length(self));
- if (not clone)
- return NULL;
- if (gearman_string_length(self))
- {
- if (gearman_failed(gearman_string_append(clone, gearman_string_value(self), gearman_string_length(self))))
- {
- gearman_string_free(clone);
- return NULL;
- }
- }
- return clone;
- }
- gearman_return_t gearman_string_append_character(gearman_vector_st *string, char character)
- {
- gearman_return_t rc;
- if (gearman_failed(rc= _string_check(string, 1 +1))) // Null terminate
- {
- return rc;
- }
- *string->end= character;
- string->end++;
- *string->end= 0;
- return GEARMAN_SUCCESS;
- }
- gearman_return_t gearman_string_append(gearman_vector_st *string,
- const char *value, size_t length)
- {
- gearman_return_t rc;
- if (gearman_failed(rc= _string_check(string, length +1)))
- {
- return rc;
- }
- memcpy(string->end, value, length);
- string->end+= length;
- *string->end= 0; // Add a NULL
- return GEARMAN_SUCCESS;
- }
- char *gearman_string_c_copy(gearman_vector_st *string)
- {
- char *c_ptr;
- if (gearman_string_length(string) == 0)
- return NULL;
- c_ptr= static_cast<char *>(malloc((gearman_string_length(string) +1) * sizeof(char)));
- if (not c_ptr)
- return NULL;
- memcpy(c_ptr, gearman_string_value(string), gearman_string_length(string));
- c_ptr[gearman_string_length(string)]= 0;
- return c_ptr;
- }
- void gearman_string_reset(gearman_vector_st *string)
- {
- assert(string);
- string->end= string->string;
- }
- void gearman_string_free(gearman_vector_st *ptr)
- {
- if (not ptr)
- return;
- if (ptr->string)
- {
- free(ptr->string);
- }
- if (ptr->options.is_allocated)
- {
- free(ptr);
- }
- }
- gearman_return_t gearman_string_check(gearman_vector_st *string, size_t need)
- {
- return _string_check(string, need);
- }
- size_t gearman_string_length(const gearman_vector_st *self)
- {
- if (not self)
- return 0;
- return size_t(self->end - self->string);
- }
- const char *gearman_string_value(const gearman_vector_st *self)
- {
- if (not self)
- return NULL;
- return self->string;
- }
- gearman_string_t gearman_string(const gearman_vector_st *self)
- {
- assert(self);
- gearman_string_t passable= { gearman_string_value(self), gearman_string_length(self) };
- return passable;
- }
- gearman_string_t gearman_string_take_string(gearman_vector_st *self)
- {
- assert(self);
- gearman_string_t passable= gearman_string(self);
- _init_string(self);
- return passable;
- }
|