2 Common include file for libmemached
5 #ifndef LIBMEMCACHED_COMMON_H
6 #define LIBMEMCACHED_COMMON_H
15 #include <sys/types.h>
16 #include <sys/socket.h>
17 #include <netinet/in.h>
18 #include <arpa/inet.h>
25 #include <netinet/tcp.h>
26 #ifdef TIME_WITH_SYS_TIME
27 # include <sys/time.h>
30 # ifdef HAVE_SYS_TIME_H
31 # include <sys/time.h>
37 /* Define this here, which will turn on the visibilty controls while we're
38 * building libmemcached.
40 #define BUILDING_LIBMEMCACHED 1
43 #include "libmemcached/memcached.h"
44 #include "libmemcached/memcached_watchpoint.h"
46 /* These are private not to be installed headers */
47 #include "libmemcached/memcached_io.h"
48 #include "libmemcached/memcached_internal.h"
49 #include "libmemcached/libmemcached_probes.h"
50 #include "libmemcached/memcached/protocol_binary.h"
53 struct memcached_continuum_item_st
{
59 #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
61 #define likely(x) if((x))
62 #define unlikely(x) if((x))
66 #define likely(x) if(__builtin_expect(!!(x), 1))
67 #define unlikely(x) if(__builtin_expect((x), 0))
71 #define MEMCACHED_BLOCK_SIZE 1024
72 #define MEMCACHED_DEFAULT_COMMAND_SIZE 350
73 #define SMALL_STRING_LEN 1024
74 #define HUGE_STRING_LEN 8196
78 MEM_NO_BLOCK
= (1 << 0),
79 MEM_TCP_NODELAY
= (1 << 1),
80 MEM_REUSE_MEMORY
= (1 << 2),
81 MEM_USE_MD5
= (1 << 3),
82 /* 4 was once Ketama */
83 MEM_USE_CRC
= (1 << 5),
84 MEM_USE_CACHE_LOOKUPS
= (1 << 6),
85 MEM_SUPPORT_CAS
= (1 << 7),
86 MEM_BUFFER_REQUESTS
= (1 << 8),
87 MEM_USE_SORT_HOSTS
= (1 << 9),
88 MEM_VERIFY_KEY
= (1 << 10),
89 /* 11 used for weighted ketama */
90 MEM_KETAMA_WEIGHTED
= (1 << 11),
91 MEM_BINARY_PROTOCOL
= (1 << 12),
92 MEM_HASH_WITH_PREFIX_KEY
= (1 << 13),
93 MEM_NOREPLY
= (1 << 14),
94 MEM_USE_UDP
= (1 << 15),
95 MEM_AUTO_EJECT_HOSTS
= (1 << 16)
101 void md5_signature(const unsigned char *key
, unsigned int length
, unsigned char *result
);
103 uint32_t hash_crc32(const char *data
,
105 #ifdef HAVE_HSIEH_HASH
107 uint32_t hsieh_hash(const char *key
, size_t key_length
);
110 uint32_t murmur_hash(const char *key
, size_t key_length
);
112 uint32_t jenkins_hash(const void *key
, size_t length
, uint32_t initval
);
115 memcached_return
memcached_connect(memcached_server_st
*ptr
);
117 memcached_return
memcached_response(memcached_server_st
*ptr
,
118 char *buffer
, size_t buffer_length
,
119 memcached_result_st
*result
);
121 void memcached_quit_server(memcached_server_st
*ptr
, uint8_t io_death
);
123 #define memcached_server_response_increment(A) (A)->cursor_active++
124 #define memcached_server_response_decrement(A) (A)->cursor_active--
125 #define memcached_server_response_reset(A) (A)->cursor_active=0
128 memcached_return
memcached_do(memcached_server_st
*ptr
, const void *commmand
,
129 size_t command_length
, uint8_t with_flush
);
131 memcached_return
value_fetch(memcached_server_st
*ptr
,
133 memcached_result_st
*result
);
135 void server_list_free(memcached_st
*ptr
, memcached_server_st
*servers
);
138 memcached_return
memcached_key_test(const char **keys
, size_t *key_length
,
139 size_t number_of_keys
);
143 uint32_t generate_hash(memcached_st
*ptr
, const char *key
, size_t key_length
);
147 extern uint64_t ntohll(uint64_t);
149 extern uint64_t htonll(uint64_t);
153 memcached_return
memcached_purge(memcached_server_st
*ptr
);
155 static inline memcached_return
memcached_validate_key_length(size_t key_length
,
157 unlikely (key_length
== 0)
158 return MEMCACHED_BAD_KEY_PROVIDED
;
162 unlikely (key_length
> 0xffff)
163 return MEMCACHED_BAD_KEY_PROVIDED
;
167 unlikely (key_length
>= MEMCACHED_MAX_KEY
)
168 return MEMCACHED_BAD_KEY_PROVIDED
;
171 return MEMCACHED_SUCCESS
;
174 #endif /* LIBMEMCACHED_COMMON_H */