2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
13 Common include file for libmemached
16 #ifndef LIBMEMCACHED_COMMON_H
17 #define LIBMEMCACHED_COMMON_H
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
36 #include <netinet/tcp.h>
37 #ifdef TIME_WITH_SYS_TIME
38 # include <sys/time.h>
41 # ifdef HAVE_SYS_TIME_H
42 # include <sys/time.h>
48 /* Define this here, which will turn on the visibilty controls while we're
49 * building libmemcached.
51 #define BUILDING_LIBMEMCACHED 1
54 #include "libmemcached/memcached.h"
55 #include "libmemcached/watchpoint.h"
57 /* These are private not to be installed headers */
58 #include "libmemcached/io.h"
59 #include "libmemcached/internal.h"
60 #include "libmemcached/libmemcached_probes.h"
61 #include "libmemcached/memcached/protocol_binary.h"
62 #include "libmemcached/byteorder.h"
65 struct memcached_continuum_item_st
72 #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
74 #define likely(x) if((x))
75 #define unlikely(x) if((x))
79 #define likely(x) if(__builtin_expect((x) != 0, 1))
80 #define unlikely(x) if(__builtin_expect((x) != 0, 0))
84 #define MEMCACHED_BLOCK_SIZE 1024
85 #define MEMCACHED_DEFAULT_COMMAND_SIZE 350
86 #define SMALL_STRING_LEN 1024
87 #define HUGE_STRING_LEN 8196
92 void md5_signature(const unsigned char *key
, unsigned int length
, unsigned char *result
);
94 uint32_t hash_crc32(const char *data
,
96 #ifdef HAVE_HSIEH_HASH
98 uint32_t hsieh_hash(const char *key
, size_t key_length
);
101 uint32_t murmur_hash(const char *key
, size_t key_length
);
103 uint32_t jenkins_hash(const void *key
, size_t length
, uint32_t initval
);
106 memcached_return_t
memcached_connect(memcached_server_st
*ptr
);
108 memcached_return_t
memcached_response(memcached_server_st
*ptr
,
109 char *buffer
, size_t buffer_length
,
110 memcached_result_st
*result
);
112 void memcached_quit_server(memcached_server_st
*ptr
, uint8_t io_death
);
114 #define memcached_server_response_increment(A) (A)->cursor_active++
115 #define memcached_server_response_decrement(A) (A)->cursor_active--
116 #define memcached_server_response_reset(A) (A)->cursor_active=0
119 memcached_return_t
memcached_do(memcached_server_st
*ptr
, const void *commmand
,
120 size_t command_length
, uint8_t with_flush
);
122 memcached_return_t
value_fetch(memcached_server_st
*ptr
,
124 memcached_result_st
*result
);
126 void server_list_free(memcached_st
*ptr
, memcached_server_st
*servers
);
129 memcached_return_t
memcached_key_test(const char * const *keys
,
130 const size_t *key_length
,
131 size_t number_of_keys
);
135 uint32_t generate_hash(memcached_st
*ptr
, const char *key
, size_t key_length
);
138 memcached_return_t
memcached_purge(memcached_server_st
*ptr
);
140 static inline memcached_return_t
memcached_validate_key_length(size_t key_length
, bool binary
)
142 unlikely (key_length
== 0)
143 return MEMCACHED_BAD_KEY_PROVIDED
;
147 unlikely (key_length
> 0xffff)
148 return MEMCACHED_BAD_KEY_PROVIDED
;
152 unlikely (key_length
>= MEMCACHED_MAX_KEY
)
153 return MEMCACHED_BAD_KEY_PROVIDED
;
156 return MEMCACHED_SUCCESS
;
159 #endif /* LIBMEMCACHED_COMMON_H */