00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef APR_MEMCACHE_H
00018 #define APR_MEMCACHE_H
00019
00028 #include "apr.h"
00029 #include "apr_pools.h"
00030 #include "apr_time.h"
00031 #include "apr_strings.h"
00032 #include "apr_network_io.h"
00033 #include "apr_ring.h"
00034 #include "apr_buckets.h"
00035 #include "apr_reslist.h"
00036 #include "apr_hash.h"
00037
00038 #ifdef __cplusplus
00039 extern "C" {
00040 #endif
00041
00049 typedef enum
00050 {
00051 APR_MC_SERVER_LIVE,
00052 APR_MC_SERVER_DEAD
00053 } apr_memcache_server_status_t;
00054
00056 typedef struct apr_memcache_conn_t apr_memcache_conn_t;
00057
00059 typedef struct apr_memcache_server_t apr_memcache_server_t;
00060 struct apr_memcache_server_t
00061 {
00062 const char *host;
00063 apr_port_t port;
00064 apr_memcache_server_status_t status;
00065 #if APR_HAS_THREADS || defined(DOXYGEN)
00066 apr_reslist_t *conns;
00067 #else
00068 apr_memcache_conn_t *conn;
00069 #endif
00070 apr_pool_t *p;
00071 #if APR_HAS_THREADS
00072 apr_thread_mutex_t *lock;
00073 #endif
00074 apr_time_t btime;
00075 };
00076
00077
00078
00079
00080
00081
00082 typedef apr_uint32_t (*apr_memcache_hash_func)(void *baton,
00083 const char *data,
00084 const apr_size_t data_len);
00085
00086 typedef struct apr_memcache_t apr_memcache_t;
00087
00088
00089
00090
00091
00092
00093 typedef apr_memcache_server_t* (*apr_memcache_server_func)(void *baton,
00094 apr_memcache_t *mc,
00095 const apr_uint32_t hash);
00096
00098 struct apr_memcache_t
00099 {
00100 apr_uint32_t flags;
00101 apr_uint16_t nalloc;
00102 apr_uint16_t ntotal;
00103 apr_memcache_server_t **live_servers;
00104 apr_pool_t *p;
00105 void *hash_baton;
00106 apr_memcache_hash_func hash_func;
00107 void *server_baton;
00108 apr_memcache_server_func server_func;
00109 };
00110
00112 typedef struct
00113 {
00114 apr_status_t status;
00115 const char* key;
00116 apr_size_t len;
00117 char *data;
00118 apr_uint16_t flags;
00119 } apr_memcache_value_t;
00120
00128 APU_DECLARE(apr_uint32_t) apr_memcache_hash(apr_memcache_t *mc,
00129 const char *data,
00130 const apr_size_t data_len);
00131
00135 APU_DECLARE(apr_uint32_t) apr_memcache_hash_crc32(void *baton,
00136 const char *data,
00137 const apr_size_t data_len);
00138
00142 APU_DECLARE(apr_uint32_t) apr_memcache_hash_default(void *baton,
00143 const char *data,
00144 const apr_size_t data_len);
00145
00153 APU_DECLARE(apr_memcache_server_t *) apr_memcache_find_server_hash(apr_memcache_t *mc,
00154 const apr_uint32_t hash);
00155
00159 APU_DECLARE(apr_memcache_server_t *)
00160 apr_memcache_find_server_hash_default(void *baton,
00161 apr_memcache_t *mc,
00162 const apr_uint32_t hash);
00163
00172 APU_DECLARE(apr_status_t) apr_memcache_add_server(apr_memcache_t *mc,
00173 apr_memcache_server_t *server);
00174
00175
00183 APU_DECLARE(apr_memcache_server_t *) apr_memcache_find_server(apr_memcache_t *mc,
00184 const char *host,
00185 apr_port_t port);
00186
00192 APU_DECLARE(apr_status_t) apr_memcache_enable_server(apr_memcache_t *mc,
00193 apr_memcache_server_t *ms);
00194
00195
00201 APU_DECLARE(apr_status_t) apr_memcache_disable_server(apr_memcache_t *mc,
00202 apr_memcache_server_t *ms);
00203
00217 APU_DECLARE(apr_status_t) apr_memcache_server_create(apr_pool_t *p,
00218 const char *host,
00219 apr_port_t port,
00220 apr_uint32_t min,
00221 apr_uint32_t smax,
00222 apr_uint32_t max,
00223 apr_uint32_t ttl,
00224 apr_memcache_server_t **ns);
00232 APU_DECLARE(apr_status_t) apr_memcache_create(apr_pool_t *p,
00233 apr_uint16_t max_servers,
00234 apr_uint32_t flags,
00235 apr_memcache_t **mc);
00236
00247 APU_DECLARE(apr_status_t) apr_memcache_getp(apr_memcache_t *mc,
00248 apr_pool_t *p,
00249 const char* key,
00250 char **baton,
00251 apr_size_t *len,
00252 apr_uint16_t *flags);
00253
00254
00263 APU_DECLARE(void)
00264 apr_memcache_add_multget_key(apr_pool_t *data_pool,
00265 const char* key,
00266 apr_hash_t **values);
00267
00278 APU_DECLARE(apr_status_t)
00279 apr_memcache_multgetp(apr_memcache_t *mc,
00280 apr_pool_t *temp_pool,
00281 apr_pool_t *data_pool,
00282 apr_hash_t *values);
00283
00293 APU_DECLARE(apr_status_t) apr_memcache_set(apr_memcache_t *mc,
00294 const char *key,
00295 char *baton,
00296 const apr_size_t data_size,
00297 apr_uint32_t timeout,
00298 apr_uint16_t flags);
00299
00311 APU_DECLARE(apr_status_t) apr_memcache_add(apr_memcache_t *mc,
00312 const char *key,
00313 char *baton,
00314 const apr_size_t data_size,
00315 apr_uint32_t timeout,
00316 apr_uint16_t flags);
00317
00329 APU_DECLARE(apr_status_t) apr_memcache_replace(apr_memcache_t *mc,
00330 const char *key,
00331 char *data,
00332 const apr_size_t data_size,
00333 apr_uint32_t timeout,
00334 apr_uint16_t flags);
00341 APU_DECLARE(apr_status_t) apr_memcache_delete(apr_memcache_t *mc,
00342 const char *key,
00343 apr_uint32_t timeout);
00344
00352 APU_DECLARE(apr_status_t) apr_memcache_incr(apr_memcache_t *mc,
00353 const char *key,
00354 apr_int32_t n,
00355 apr_uint32_t *nv);
00356
00364 APU_DECLARE(apr_status_t) apr_memcache_decr(apr_memcache_t *mc,
00365 const char *key,
00366 apr_int32_t n,
00367 apr_uint32_t *new_value);
00368
00376 APU_DECLARE(apr_status_t) apr_memcache_version(apr_memcache_server_t *ms,
00377 apr_pool_t *p,
00378 char **baton);
00379
00380 typedef struct
00381 {
00383 const char *version;
00385 apr_uint32_t pid;
00387 apr_uint32_t uptime;
00389 apr_time_t time;
00391 apr_uint32_t pointer_size;
00393 apr_time_t rusage_user;
00395 apr_time_t rusage_system;
00397 apr_uint32_t curr_items;
00399 apr_uint32_t total_items;
00401 apr_uint64_t bytes;
00403 apr_uint32_t curr_connections;
00405 apr_uint32_t total_connections;
00407 apr_uint32_t connection_structures;
00409 apr_uint32_t cmd_get;
00411 apr_uint32_t cmd_set;
00413 apr_uint32_t get_hits;
00415 apr_uint32_t get_misses;
00418 apr_uint64_t evictions;
00420 apr_uint64_t bytes_read;
00422 apr_uint64_t bytes_written;
00424 apr_uint32_t limit_maxbytes;
00426 apr_uint32_t threads;
00427 } apr_memcache_stats_t;
00428
00435 APU_DECLARE(apr_status_t) apr_memcache_stats(apr_memcache_server_t *ms,
00436 apr_pool_t *p,
00437 apr_memcache_stats_t **stats);
00438
00439
00442 #ifdef __cplusplus
00443 }
00444 #endif
00445
00446 #endif