Purge the input buffer if I discover a lot of commands being sent and none read ...
[awesomized/libmemcached] / libmemcached / memcached.c
1 /*
2 Memcached library
3 */
4 #include "common.h"
5
6 memcached_st *memcached_create(memcached_st *ptr)
7 {
8 memcached_result_st *result_ptr;
9
10 if (ptr == NULL)
11 {
12 ptr= (memcached_st *)malloc(sizeof(memcached_st));
13
14 if (!ptr)
15 return NULL; /* MEMCACHED_MEMORY_ALLOCATION_FAILURE */
16
17 memset(ptr, 0, sizeof(memcached_st));
18 ptr->is_allocated= MEMCACHED_ALLOCATED;
19 }
20 else
21 {
22 memset(ptr, 0, sizeof(memcached_st));
23 }
24 result_ptr= memcached_result_create(ptr, &ptr->result);
25 WATCHPOINT_ASSERT(result_ptr);
26 ptr->poll_timeout= MEMCACHED_DEFAULT_TIMEOUT;
27 ptr->connect_timeout= MEMCACHED_DEFAULT_TIMEOUT;
28 ptr->retry_timeout= 0;
29 ptr->distribution= MEMCACHED_DISTRIBUTION_MODULA;
30
31 ptr->io_msg_watermark = 500;
32 ptr->io_bytes_watermark = 65 * 1024;
33
34 return ptr;
35 }
36
37 void memcached_free(memcached_st *ptr)
38 {
39 /* If we have anything open, lets close it now */
40 memcached_quit(ptr);
41 server_list_free(ptr, ptr->hosts);
42 memcached_result_free(&ptr->result);
43
44 if (ptr->on_cleanup)
45 ptr->on_cleanup(ptr);
46
47 if (ptr->continuum)
48 {
49 if (ptr->call_free)
50 ptr->call_free(ptr, ptr->continuum);
51 else
52 free(ptr->continuum);
53 }
54
55 if (ptr->is_allocated == MEMCACHED_ALLOCATED)
56 {
57 if (ptr->call_free)
58 ptr->call_free(ptr, ptr);
59 else
60 free(ptr);
61 }
62 else
63 ptr->is_allocated= MEMCACHED_USED;
64 }
65
66 /*
67 clone is the destination, while source is the structure to clone.
68 If source is NULL the call is the same as if a memcached_create() was
69 called.
70 */
71 memcached_st *memcached_clone(memcached_st *clone, memcached_st *source)
72 {
73 memcached_return rc= MEMCACHED_SUCCESS;
74 memcached_st *new_clone;
75
76 if (source == NULL)
77 return memcached_create(clone);
78
79 if (clone && clone->is_allocated == MEMCACHED_USED)
80 {
81 return NULL;
82 }
83
84 new_clone= memcached_create(clone);
85
86 if (new_clone == NULL)
87 return NULL;
88
89 if (source->hosts)
90 rc= memcached_server_push(new_clone, source->hosts);
91
92 if (rc != MEMCACHED_SUCCESS)
93 {
94 memcached_free(new_clone);
95
96 return NULL;
97 }
98
99
100 new_clone->flags= source->flags;
101 new_clone->send_size= source->send_size;
102 new_clone->recv_size= source->recv_size;
103 new_clone->poll_timeout= source->poll_timeout;
104 new_clone->connect_timeout= source->connect_timeout;
105 new_clone->retry_timeout= source->retry_timeout;
106 new_clone->distribution= source->distribution;
107 new_clone->hash= source->hash;
108 new_clone->hash_continuum= source->hash_continuum;
109 new_clone->user_data= source->user_data;
110
111 new_clone->snd_timeout= source->snd_timeout;
112 new_clone->rcv_timeout= source->rcv_timeout;
113
114 new_clone->on_clone= source->on_clone;
115 new_clone->on_cleanup= source->on_cleanup;
116 new_clone->call_free= source->call_free;
117 new_clone->call_malloc= source->call_malloc;
118 new_clone->call_realloc= source->call_realloc;
119 new_clone->get_key_failure= source->get_key_failure;
120 new_clone->delete_trigger= source->delete_trigger;
121
122 if (source->prefix_key[0] != 0)
123 {
124 strcpy(new_clone->prefix_key, source->prefix_key);
125 new_clone->prefix_key_length= source->prefix_key_length;
126 }
127
128 rc= run_distribution(new_clone);
129 if (rc != MEMCACHED_SUCCESS)
130 {
131 memcached_free(new_clone);
132
133 return NULL;
134 }
135
136 if (source->on_clone)
137 source->on_clone(source, new_clone);
138
139 return new_clone;
140 }