d239d264c06a67d2eb57da17c6f0aef9ebacd581
[m6w6/libmemcached] / libmemcached / common.h
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * LibMemcached
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * * Redistributions in binary form must reproduce the above
17 * copyright notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
19 * distribution.
20 *
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 */
38
39 /*
40 Common include file for libmemached
41 */
42
43 #pragma once
44
45 #include <config.h>
46
47 #ifdef __cplusplus
48 #include <cstdio>
49 #include <cstdlib>
50 #include <cstring>
51 #include <ctime>
52 #include <ctype.h>
53 #else
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <time.h>
58 #endif
59
60 #include <errno.h>
61 #include <fcntl.h>
62 #include <limits.h>
63 #include <sys/types.h>
64 #include <unistd.h>
65
66 #ifdef HAVE_STRINGS_H
67 #include <strings.h>
68 #endif
69
70 #include <libmemcached-1.0/memcached.h>
71 #include <libmemcached/watchpoint.h>
72 #include <libmemcached/is.h>
73
74 #include <libmemcached/server_instance.h>
75
76 #ifdef HAVE_POLL_H
77 #include <poll.h>
78 #else
79 #include "poll/poll.h"
80 #endif
81
82
83 #ifdef __cplusplus
84 extern "C" {
85 #endif
86
87 typedef memcached_return_t (*memcached_server_execute_fn)(memcached_st *ptr, memcached_server_write_instance_st server, void *context);
88
89 LIBMEMCACHED_LOCAL
90 memcached_server_write_instance_st memcached_server_instance_fetch(memcached_st *ptr, uint32_t server_key);
91
92 LIBMEMCACHED_LOCAL
93 memcached_return_t memcached_server_execute(memcached_st *ptr,
94 memcached_server_execute_fn callback,
95 void *context);
96 #ifdef __cplusplus
97 } // extern "C"
98 #endif
99
100
101 /* These are private not to be installed headers */
102 #include <libmemcached/error.hpp>
103 #include <libmemcached/memory.h>
104 #include <libmemcached/io.h>
105 #ifdef __cplusplus
106 #include <libmemcached/string.hpp>
107 #include <libmemcached/io.hpp>
108 #include <libmemcached/udp.hpp>
109 #include <libmemcached/do.hpp>
110 #include <libmemcached/socket.hpp>
111 #include <libmemcached/connect.hpp>
112 #include <libmemcached/allocators.hpp>
113 #include <libmemcached/hash.hpp>
114 #include <libmemcached/quit.hpp>
115 #include <libmemcached/server.hpp>
116 #include <libmemcached/behavior.hpp>
117 #include <libmemcached/sasl.hpp>
118 #include <libmemcached/server_list.hpp>
119 #endif
120 #include <libmemcached/internal.h>
121 #include <libmemcached/array.h>
122 #include <libmemcached/libmemcached_probes.h>
123 #include <libmemcached/memcached/protocol_binary.h>
124 #include <libmemcached/byteorder.h>
125 #include <libmemcached/initialize_query.h>
126 #ifdef __cplusplus
127 #include <libmemcached/response.h>
128 #endif
129 #include <libmemcached/namespace.h>
130 #include <libmemcached/virtual_bucket.h>
131
132 #ifdef __cplusplus
133 #include <libmemcached/backtrace.hpp>
134 #include <libmemcached/assert.hpp>
135 #include <libmemcached/server.hpp>
136 #include <libmemcached/key.hpp>
137 #endif
138
139 #include <libmemcached/continuum.hpp>
140
141 #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
142
143 #define likely(x) if((x))
144 #define unlikely(x) if((x))
145
146 #else
147
148 #define likely(x) if(__builtin_expect((x) != 0, 1))
149 #define unlikely(x) if(__builtin_expect((x) != 0, 0))
150 #endif
151
152 #define MEMCACHED_BLOCK_SIZE 1024
153 #define MEMCACHED_DEFAULT_COMMAND_SIZE 350
154 #define SMALL_STRING_LEN 1024
155 #define HUGE_STRING_LEN 8196
156
157 #ifdef __cplusplus
158 extern "C" {
159 #endif
160
161 LIBMEMCACHED_LOCAL
162 memcached_return_t run_distribution(memcached_st *ptr);
163
164 #define memcached_server_response_increment(A) (A)->cursor_active++
165 #define memcached_server_response_decrement(A) (A)->cursor_active--
166 #define memcached_server_response_reset(A) (A)->cursor_active=0
167
168 LIBMEMCACHED_LOCAL
169 memcached_return_t memcached_purge(memcached_server_write_instance_st ptr);
170
171 #ifdef __cplusplus
172 }
173 #endif