X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached.hh;h=689a3bce068f21ff8421a33f264836d2f75f7b6f;hb=bc9b4e408fbd3be5448136155870dcdbb8b65d58;hp=e482f4bf517bbbd500b6d48fdf48b2a582974371;hpb=34a8c3858f30b02568c87f56a827f618aba6d6be;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached.hh b/libmemcached/memcached.hh index e482f4bf..689a3bce 100644 --- a/libmemcached/memcached.hh +++ b/libmemcached/memcached.hh @@ -1,102 +1,354 @@ -#ifdef USE_PRAGMA_INTERFACE -#pragma interface /* gcc class implementation */ -#endif +#include -#include -#include -#include +#include +#include class Memcached { - memcached_st memc; - public: - Memcached() + Memcached() + : + memc(), + result() { memcached_create(&memc); } - Memcached(memcached_st *clone) + Memcached(memcached_st *clone) + : + memc(), + result() { - WATCHPOINT; memcached_clone(&memc, clone); - WATCHPOINT; } - char *get(char *key, size_t *value_length) + ~Memcached() + { + memcached_free(&memc); + } + + bool fetch(std::string &key, + std::string &ret_val, + size_t *key_length, + size_t *value_length, + uint32_t *flags, + memcached_return *rc) + { + char ret_key[MEMCACHED_MAX_KEY]; + char *value= memcached_fetch(&memc, ret_key, key_length, + value_length, flags, rc); + if (value) + { + ret_val.assign(value); + key.assign(ret_key); + return true; + } + return false; + } + + std::string get(const std::string &key, size_t *value_length) { uint32_t flags; memcached_return rc; + std::string ret_val; - return memcached_get(&memc, key, strlen(key), - value_length, &flags, &rc); + char *value= memcached_get(&memc, key.c_str(), key.length(), + value_length, &flags, &rc); + if (value) + { + ret_val.assign(value); + } + return ret_val; } - char *get_by_key(char *master_key, char *key, size_t *value_length) + std::string get_by_key(const std::string &master_key, + const std::string &key, + size_t *value_length) { uint32_t flags; memcached_return rc; + std::string ret_val; + + char *value= memcached_get_by_key(&memc, master_key.c_str(), master_key.length(), + key.c_str(), key.length(), + value_length, &flags, &rc); + if (value) + { + ret_val.assign(value); + } + return ret_val; + } + + bool mget(std::vector &keys) + { + /* + * Construct an array which will contain the length + * of each of the strings in the input vector. Also, to + * interface with the memcached C API, we need to convert + * the vector of std::string's to a vector of char *. + */ + size_t *key_len= static_cast(malloc(keys.size() * sizeof(size_t))); + if (key_len == NULL) + { + return false; + } + std::vector real_keys; + std::vector::iterator it= keys.begin(); + int i= 0; + while (it != keys.end()) + { + real_keys.push_back(const_cast((*it).c_str())); + key_len[i++]= (*it).length(); + ++it; + } + + /* + * If the std::vector of keys is empty then we cannot + * call memcached_mget as we will get undefined behavior. + */ + if (!real_keys.empty()) + { + memcached_return rc= memcached_mget(&memc, &real_keys[0], key_len, + static_cast(real_keys.size())); + return (rc == MEMCACHED_SUCCESS); + } + + return false; + } + + bool set(const std::string &key, + const std::string &value, + time_t expiration, + uint32_t flags) + { + memcached_return rc= memcached_set(&memc, + key.c_str(), key.length(), + value.c_str(), value.length(), + expiration, flags); + return (rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED); + } + + bool set_all(std::vector &keys, + std::vector &values, + time_t expiration, + uint32_t flags) + { + if (keys.size() != values.size()) + { + return false; + } + bool retval= true; + std::vector::iterator key_it= keys.begin(); + std::vector::iterator val_it= values.begin(); + while (key_it != keys.end()) + { + retval= set((*key_it), (*val_it), expiration, flags); + if (retval == false) + { + return retval; + } + ++key_it; + ++val_it; + } + return retval; + } + + bool set_by_key(const std::string &master_key, + const std::string &key, + const std::string &value, + time_t expiration, + uint32_t flags) + { + memcached_return rc= memcached_set_by_key(&memc, master_key.c_str(), + master_key.length(), + key.c_str(), key.length(), + value.c_str(), value.length(), + expiration, + flags); + return (rc == MEMCACHED_SUCCESS); + } + + bool increment(const std::string &key, unsigned int offset, uint64_t *value) + { + memcached_return rc= memcached_increment(&memc, key.c_str(), key.length(), + offset, value); + return (rc == MEMCACHED_SUCCESS); + } + + bool decrement(const std::string &key, unsigned int offset, uint64_t *value) + { + memcached_return rc= memcached_decrement(&memc, key.c_str(), + key.length(), + offset, value); + return (rc == MEMCACHED_SUCCESS); + } + + + bool add(const std::string &key, const std::string &value) + { + memcached_return rc= memcached_add(&memc, key.c_str(), key.length(), + value.c_str(), value.length(), 0, 0); + return (rc == MEMCACHED_SUCCESS); + } + + bool add_by_key(const std::string &master_key, + const std::string &key, + const std::string &value) + { + memcached_return rc= memcached_add_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, 0); + return (rc == MEMCACHED_SUCCESS); + } + + bool replace(const std::string &key, const std::string &value) + { + memcached_return rc= memcached_replace(&memc, key.c_str(), key.length(), + value.c_str(), value.length(), + 0, 0); + return (rc == MEMCACHED_SUCCESS); + } - return memcached_get_by_key(&memc, master_key, strlen(master_key), key, strlen(key), - value_length, &flags, &rc); + bool replace_by_key(const std::string &master_key, + const std::string &key, + const std::string &value) + { + memcached_return rc= memcached_replace_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, 0); + return (rc == MEMCACHED_SUCCESS); } - memcached_return mget(char **keys, size_t *key_length, unsigned int number_of_keys) + bool prepend(const std::string &key, const std::string &value) { + memcached_return rc= memcached_prepend(&memc, key.c_str(), key.length(), + value.c_str(), value.length(), 0, 0); + return (rc == MEMCACHED_SUCCESS); + } - return memcached_mget(&memc, keys, key_length, number_of_keys); + bool prepend_by_key(const std::string &master_key, + const std::string &key, + const std::string &value) + { + memcached_return rc= memcached_prepend_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, + 0); + return (rc == MEMCACHED_SUCCESS); } - memcached_return set(char *key, char *value, size_t value_length) + bool append(const std::string &key, const std::string &value) { - return memcached_set(&memc, key, strlen(key), - value, value_length, - (time_t)0, (uint32_t)0); + memcached_return rc= memcached_append(&memc, + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, 0); + return (rc == MEMCACHED_SUCCESS); } - memcached_return set_by_key(char *master_key, char *key, char *value, size_t value_length) + bool append_by_key(const std::string &master_key, + const std::string &key, + const std::string &value) { - return memcached_set_by_key(&memc, master_key, strlen(master_key), - key, strlen(key), - value, value_length, - (time_t)0, - (uint32_t)0 ); + memcached_return rc= memcached_append_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, 0); + return (rc == MEMCACHED_SUCCESS); } + bool cas(const std::string &key, + const std::string &value, + uint64_t cas_arg) + { + memcached_return rc= memcached_cas(&memc, key.c_str(), key.length(), + value.c_str(), value.length(), + 0, 0, cas_arg); + return (rc == MEMCACHED_SUCCESS); + } - memcached_return add(char *key, char *value, size_t value_length) + bool cas_by_key(const std::string &master_key, + const std::string &key, + const std::string &value, + uint64_t cas_arg) { - return memcached_add(&memc, key, strlen(key), - value, value_length, - (time_t)0, (uint32_t)0); + memcached_return rc= memcached_cas_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + value.c_str(), + value.length(), + 0, 0, cas_arg); + return (rc == MEMCACHED_SUCCESS); } - memcached_return replace(char *key, char *value, size_t value_length) + // using 'remove' vs. 'delete' since 'delete' is a keyword + bool remove(const std::string &key) { - return memcached_replace(&memc, key, strlen(key), - value, value_length, - (time_t)0, (uint32_t)0); + memcached_return rc= memcached_delete(&memc, key.c_str(), key.length(), 0); + return (rc == MEMCACHED_SUCCESS); } - memcached_return prepend(char *key, char *value, size_t value_length) + bool delete_by_key(const std::string &master_key, + const std::string &key) { - return memcached_prepend(&memc, key, strlen(key), - value, value_length, - (time_t)0, - (uint32_t)0); + memcached_return rc= memcached_delete_by_key(&memc, + master_key.c_str(), + master_key.length(), + key.c_str(), + key.length(), + 0); + return (rc == MEMCACHED_SUCCESS); } + bool flush(time_t expiration) + { + memcached_return rc= memcached_flush(&memc, expiration); + return (rc == MEMCACHED_SUCCESS); + } + + bool fetch_execute(memcached_execute_function *callback, + void *context, + unsigned int num_of_callbacks) + { + memcached_return rc= memcached_fetch_execute(&memc, + callback, + context, + num_of_callbacks); + return (rc == MEMCACHED_SUCCESS); + } - memcached_return append(char *key, char *value, size_t value_length) + const std::string lib_version() const { - return memcached_append(&memc, key, strlen(key), - value, value_length, - (time_t)0, - (uint32_t)0); + const char *ver= memcached_lib_version(); + const std::string version(ver); + return version; } - ~Memcached() - { - memcached_free(&memc); - } + +private: + memcached_st memc; + memcached_result_st result; };