123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * Gearmand String
- *
- * Copyright (C) 2011-2013 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 "gear_config.h"
- #include "libgearman/assert.hpp"
- #include "libgearman/is.hpp"
- #include "libgearman/vector.hpp"
- #include "libgearman/vector.h"
- #include <cstdlib>
- #include <cstdio>
- #include <cstring>
- #include <memory>
- #include "util/memory.h"
- using namespace org::tangent;
- #pragma GCC diagnostic push
- #ifndef __INTEL_COMPILER
- # pragma GCC diagnostic ignored "-Wformat-nonliteral"
- # pragma GCC diagnostic ignored "-Wformat-security"
- #endif
- inline static bool _string_check(gearman_vector_st *string, const size_t need)
- {
- assert_msg(string, "Programmer error, _string_check() was passed a null gearman_vector_st");
- if (string)
- {
- assert(string->end >= string->string);
- if (need and need > size_t(string->current_size - size_t(string->end - string->string)))
- {
- size_t current_offset= size_t(string->end - string->string);
- /* This is the block multiplier. To keep it larger and surive division errors we must round it up */
- size_t adjust= (need - size_t(string->current_size - size_t(string->end - string->string))) / GEARMAN_VECTOR_BLOCK_SIZE;
- adjust++;
- size_t new_size= sizeof(char) * size_t((adjust * GEARMAN_VECTOR_BLOCK_SIZE) + string->current_size);
- /* Test for overflow */
- if (new_size < need)
- {
- return false;
- }
- char* new_value= static_cast<char *>(realloc(string->string, new_size));
- if (new_value == NULL)
- {
- return false;
- }
- string->string= new_value;
- string->end= string->string + current_offset;
- string->current_size+= (GEARMAN_VECTOR_BLOCK_SIZE * adjust);
- }
- return true;
- }
- return false;
- }
- void gearman_vector_st::init()
- {
- current_size= 0;
- end= string= NULL;
- }
- gearman_vector_st *gearman_string_create(gearman_vector_st *self, const char *str, const size_t str_size)
- {
- if (str_size and str == NULL)
- {
- assert_msg(str, "Programmer error, gearman_string_clear() was passed a null string, but str_size > 0");
- return NULL;
- }
- if (str == NULL)
- {
- return NULL;
- }
- self= gearman_string_create(self, str_size);
- assert_vmsg(self, "Programmer error, gearman_string_create() returned a null gearman_vector_st() requesting a reserve of %u", uint32_t(str_size));
- if (self)
- {
- if ((self->store(str, str_size) == false))
- {
- assert_vmsg(self, "Programmer error, gearman_string_append() returned false while trying to append a string of %u length", uint32_t(str_size));
- gearman_string_free(self);
- return NULL;
- }
- }
- return self;
- }
- gearman_vector_st::gearman_vector_st(const size_t reserve_) :
- end(NULL),
- string(NULL),
- current_size(0)
- {
- if (reserve_)
- {
- _string_check(this, reserve_ +1);
- }
- }
- gearman_vector_st *gearman_string_create(gearman_vector_st *self, const size_t reserve_)
- {
- /* Saving malloc calls :) */
- if (self == NULL)
- {
- self= new (std::nothrow) gearman_vector_st(reserve_);
- assert_vmsg(self, "Programmer error, new gearman_vector_st() failed reserve: %u", uint32_t(reserve_));
- if (self == NULL)
- {
- return NULL;
- }
- gearman_set_allocated(self, true);
- }
- else
- {
- self->clear();
- self->resize(reserve_);
- }
- gearman_set_initialized(self, true);
- assert_vmsg(reserve_ <= self->capacity(), "Programmer error, capacity: %u reserve: %u", uint32_t(self->capacity()), uint32_t(reserve_));
- if (reserve_ > self->capacity())
- {
- gearman_string_free(self);
- return NULL;
- }
- return self;
- }
- gearman_vector_st *gearman_string_clone(const gearman_vector_st *self)
- {
- gearman_vector_st *clone= NULL;
- if (self)
- {
- clone= gearman_string_create(NULL, gearman_string_length(self));
- if (clone)
- {
- if (self->size())
- {
- if (clone->store(*self) == false)
- {
- gearman_string_free(clone);
- return NULL;
- }
- }
- }
- }
- return clone;
- }
- bool gearman_vector_st::append_character(const char character)
- {
- if (_string_check(this, 1 +1) == false) // Null terminate
- {
- return false;
- }
- *end= character;
- end++;
- *end= 0;
- return true;
- }
- bool gearman_string_append_character(gearman_vector_st *string_, const char character)
- {
- assert_msg(string_, "Programmer error, gearman_string_append_character() was passed a null gearman_vector_st");
- if (string_)
- {
- return string_->append_character(character);
- }
- return false;
- }
- bool gearman_string_append(gearman_vector_st *string,
- const char *value, size_t length)
- {
- assert_msg(string, "Programmer error, gearman_string_append() was passed a null gearman_vector_st");
- if (string)
- {
- string->append(value, length);
- }
- return false;
- }
- char *gearman_string_c_copy(gearman_vector_st *string)
- {
- char *c_ptr= NULL;
- if (gearman_string_length(string) == 0)
- {
- c_ptr= static_cast<char *>(malloc((gearman_string_length(string) +1) * sizeof(char)));
- if (c_ptr)
- {
- memcpy(c_ptr, gearman_string_value(string), gearman_string_length(string));
- c_ptr[gearman_string_length(string)]= 0;
- }
- }
- return c_ptr;
- }
- void gearman_string_clear(gearman_vector_st *string)
- {
- assert_msg(string, "Programmer error, gearman_string_clear() was passed a null gearman_vector_st");
- string->clear();
- }
- bool gearman_vector_st::store(const char* arg_, const size_t arg_length_)
- {
- clear();
- return append(arg_, arg_length_);
- }
- bool gearman_vector_st::store(const gearman_vector_st& vec)
- {
- clear();
- return append(vec.value(), vec.size());
- }
- bool gearman_vector_st::append(const char* arg_, const size_t arg_length_)
- {
- if (_string_check(this, arg_length_ +1) == false)
- {
- return false;
- }
- memcpy(end, arg_, arg_length_);
- end+= arg_length_;
- *end= 0; // Add a NULL
- return true;
- }
- int gearman_vector_st::vec_printf(const char *format__, ...)
- {
- clear();
- if (format__)
- {
- va_list args;
- va_start(args, format__);
- int required_size= vec_size_printf(format__, args);
- va_end(args);
- va_start(args, format__);
- int actual_size= vec_ptr_printf(required_size, format__, args);
- va_end(args);
- return actual_size;
- }
- return -1;
- }
- int gearman_vector_st::vec_append_printf(const char *format__, ...)
- {
- if (format__)
- {
- va_list args;
- va_start(args, format__);
- int required_size= vec_size_printf(format__, args);
- va_end(args);
- va_start(args, format__);
- int actual_size= vec_ptr_printf(required_size, format__, args);
- va_end(args);
- return actual_size;
- }
- return -1;
- }
- int gearman_vector_st::vec_size_printf(const char *format__, va_list args__)
- {
- int required_size= vsnprintf(NULL, 0, format__, args__);
- if (required_size)
- {
- required_size++;
- }
- return required_size;
- }
- int gearman_vector_st::vec_ptr_printf(const int required_size, const char *format__, va_list args__)
- {
- if (required_size > 0)
- {
- int actual_size= 0;
- if (required_size > 0 and reserve(required_size + size()))
- {
- actual_size= vsnprintf(end, capacity() - size(), format__, args__);
- assert(required_size == actual_size +1);
- end+= actual_size;
- }
- return actual_size;
- }
- return -1;
- }
- gearman_vector_st::~gearman_vector_st()
- {
- if (string)
- {
- void* tmp_ptr= string;
- util::free__(tmp_ptr);
- }
- }
- bool gearman_vector_st::resize(const size_t size_)
- {
- if (size_ == 0)
- {
- void* tmp_ptr= string;
- util::free__(tmp_ptr);
- init();
- }
- else if (size_ > capacity())
- {
- return reserve(size_);
- }
- else if (size_ < capacity())
- {
- size_t final_size= (size_ < size()) ? size_ : size();
- char* new_value= static_cast<char *>(realloc(string, size_ +1));
- if (new_value == NULL)
- {
- return false;
- }
- string= new_value;
- end= string +final_size;
- current_size= size_ +1;
- string[final_size]= 0;
- }
- return true;
- }
- void gearman_string_free(gearman_vector_st*& string)
- {
- if (string)
- {
- if (gearman_is_allocated(string))
- {
- delete string;
- string= NULL;
- return;
- }
- assert(gearman_is_allocated(string) == false);
- string->resize(0);
- gearman_set_initialized(string, false);
- }
- }
- bool gearman_string_reserve(gearman_vector_st *string, size_t need_)
- {
- if (string)
- {
- return string->reserve(need_);
- }
- return false;
- }
- size_t gearman_vector_st::size() const
- {
- assert(end >= string);
- return size_t(end -string);
- }
- gearman_string_t gearman_vector_st::take()
- {
- if (size())
- {
- gearman_string_t passable= { string, size() };
- init();
- return passable;
- }
- static gearman_string_t ret= {0, 0};
- return ret;
- }
- bool gearman_vector_st::reserve(const size_t need_)
- {
- if (need_)
- {
- return _string_check(this, need_ +1);
- }
- // Let _string_check handle the behavior of zero
- return _string_check(this, need_);
- }
- size_t gearman_string_length(const gearman_vector_st *self)
- {
- if (self)
- {
- return self->size();
- }
- return 0;
- }
- const char *gearman_string_value(const gearman_vector_st *self)
- {
- if (self)
- {
- return self->string;
- }
- return NULL;
- }
- 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);
- if (self)
- {
- return self->take();
- }
- static gearman_string_t ret= {0, 0};
- return ret;
- }
- #pragma GCC diagnostic pop
|