X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fcommon.h;h=d8371d18dfa69d89adbbd5561ea198472bdfd0ba;hb=09b4ff9a9b7c62b4511ab10c9305eba757fea34b;hp=de55dbbebfc85bc5ea2375c25503962ad39a5fbf;hpb=8f4f53d570ffa167f08912242c1a41d6f314ac0b;p=m6w6%2Flibmemcached diff --git a/libmemcached/common.h b/libmemcached/common.h index de55dbbe..f7559376 100644 --- a/libmemcached/common.h +++ b/libmemcached/common.h @@ -1,44 +1,146 @@ +/* vim:expandtab:shiftwidth=2:tabstop=2:smarttab: + * + * LibMemcached + * + * Copyright (C) 2011 Data Differential, http://datadifferential.com/ + * Copyright (C) 2006-2009 Brian Aker + * All rights reserved. + * + * 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. + * + */ + /* Common include file for libmemached */ -#ifndef __COMMON_H__ -#define __COMMON_H__ +#pragma once + +#include +#ifdef __cplusplus +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include #include +#include +#endif + #include -#include -#include +#include +#include + +#ifdef HAVE_STRINGS_H +#include +#endif -#if TIME_WITH_SYS_TIME -# include -# include +#include +#include +#include + +#include + +#ifdef HAVE_POLL_H +#include #else -# if HAVE_SYS_TIME_H -# include -# else -# include -# endif +#include "poll/poll.h" #endif +#ifdef __cplusplus +extern "C" { +#endif -#include -#include "memcached_io.h" +typedef memcached_return_t (*memcached_server_execute_fn)(memcached_st *ptr, memcached_server_write_instance_st server, void *context); -#include +LIBMEMCACHED_LOCAL +memcached_server_write_instance_st memcached_server_instance_fetch(memcached_st *ptr, uint32_t server_key); + +LIBMEMCACHED_LOCAL +memcached_return_t memcached_server_execute(memcached_st *ptr, + memcached_server_execute_fn callback, + void *context); +#ifdef __cplusplus +} // extern "C" +#endif + + +/* These are private not to be installed headers */ +#include +#include +#include +#ifdef __cplusplus +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#endif +#include +#include +#include +#include +#include +#include +#ifdef __cplusplus +#include +#endif +#include +#include + +#ifdef __cplusplus +#include +#include +#include +#include +#include +#include +#endif + +#include #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96) @@ -47,68 +149,29 @@ #else -#define likely(x) if(__builtin_expect(!!(x), 1)) -#define unlikely(x) if(__builtin_expect((x), 0)) -#endif - - -#ifdef HAVE_DTRACE -#define _DTRACE_VERSION 1 -#else -#undef _DTRACE_VERSION +#define likely(x) if(__builtin_expect((x) != 0, 1)) +#define unlikely(x) if(__builtin_expect((x) != 0, 0)) #endif -#include "libmemcached_probes.h" - #define MEMCACHED_BLOCK_SIZE 1024 #define MEMCACHED_DEFAULT_COMMAND_SIZE 350 #define SMALL_STRING_LEN 1024 #define HUGE_STRING_LEN 8196 +#ifdef __cplusplus +extern "C" { +#endif -typedef enum { - MEM_NO_BLOCK= (1 << 0), - MEM_TCP_NODELAY= (1 << 1), - MEM_REUSE_MEMORY= (1 << 2), - MEM_USE_MD5= (1 << 3), - MEM_USE_KETAMA= (1 << 4), - MEM_USE_CRC= (1 << 5), - MEM_USE_CACHE_LOOKUPS= (1 << 6), - MEM_SUPPORT_CAS= (1 << 7), - MEM_BUFFER_REQUESTS= (1 << 8), - MEM_USE_SORT_HOSTS= (1 << 9), - MEM_VERIFY_KEY= (1 << 10), -} memcached_flags; - -/* Hashing algo */ -void md5_signature(unsigned char *key, unsigned int length, unsigned char *result); -uint32_t hash_crc32(const char *data, - size_t data_len); -uint32_t hsieh_hash(char *key, size_t key_length); -uint32_t murmur_hash(char *key, size_t key_length); - -memcached_return memcached_connect(memcached_server_st *ptr); -memcached_return memcached_response(memcached_server_st *ptr, - char *buffer, size_t buffer_length, - memcached_result_st *result); -unsigned int memcached_generate_hash(memcached_st *ptr, char *key, size_t key_length); -void memcached_quit_server(memcached_server_st *ptr, uint8_t io_death); +LIBMEMCACHED_LOCAL +memcached_return_t run_distribution(memcached_st *ptr); #define memcached_server_response_increment(A) (A)->cursor_active++ #define memcached_server_response_decrement(A) (A)->cursor_active-- #define memcached_server_response_reset(A) (A)->cursor_active=0 -memcached_return memcached_do(memcached_server_st *ptr, char *commmand, - size_t command_length, uint8_t with_flush); -memcached_return memcached_version(memcached_st *ptr); -memcached_return value_fetch(memcached_server_st *ptr, - char *buffer, - memcached_result_st *result); -void server_list_free(memcached_st *ptr, memcached_server_st *servers); - -memcached_return memcachd_key_test(char **keys, size_t *key_length, - unsigned int number_of_keys); +LIBMEMCACHED_LOCAL +memcached_return_t memcached_purge(memcached_server_write_instance_st ptr); -void sort_hosts(memcached_st *ptr); - -#endif /* __COMMON_H__ */ +#ifdef __cplusplus +} +#endif