6 memcached_st
*memcached_create(memcached_st
*ptr
)
8 memcached_result_st
*result_ptr
;
12 ptr
= (memcached_st
*)malloc(sizeof(memcached_st
));
15 return NULL
; /* MEMCACHED_MEMORY_ALLOCATION_FAILURE */
17 memset(ptr
, 0, sizeof(memcached_st
));
18 ptr
->is_allocated
= MEMCACHED_ALLOCATED
;
22 memset(ptr
, 0, sizeof(memcached_st
));
24 result_ptr
= memcached_result_create(ptr
, &ptr
->result
);
25 WATCHPOINT_ASSERT(result_ptr
);
26 ptr
->poll_timeout
= MEMCACHED_DEFAULT_TIMEOUT
;
27 ptr
->distribution
= MEMCACHED_DISTRIBUTION_MODULA
;
32 void memcached_free(memcached_st
*ptr
)
34 /* If we have anything open, lets close it now */
36 server_list_free(ptr
, ptr
->hosts
);
37 memcached_result_free(&ptr
->result
);
42 if (ptr
->is_allocated
== MEMCACHED_ALLOCATED
)
45 ptr
->call_free(ptr
, ptr
);
50 ptr
->is_allocated
= MEMCACHED_USED
;
54 clone is the destination, while ptr is the structure to clone.
55 If ptr is NULL the call is the same as if a memcached_create() was
58 memcached_st
*memcached_clone(memcached_st
*clone
, memcached_st
*ptr
)
60 memcached_return rc
= MEMCACHED_SUCCESS
;
61 memcached_st
*new_clone
;
64 return memcached_create(clone
);
66 if (ptr
->is_allocated
== MEMCACHED_USED
)
72 new_clone
= memcached_create(clone
);
74 if (new_clone
== NULL
)
78 rc
= memcached_server_push(new_clone
, ptr
->hosts
);
80 if (rc
!= MEMCACHED_SUCCESS
)
82 memcached_free(new_clone
);
88 new_clone
->flags
= ptr
->flags
;
89 new_clone
->send_size
= ptr
->send_size
;
90 new_clone
->recv_size
= ptr
->recv_size
;
91 new_clone
->poll_timeout
= ptr
->poll_timeout
;
92 new_clone
->distribution
= ptr
->distribution
;
93 new_clone
->hash
= ptr
->hash
;
94 new_clone
->user_data
= ptr
->user_data
;
96 new_clone
->on_clone
= ptr
->on_clone
;
97 new_clone
->on_cleanup
= ptr
->on_cleanup
;
98 new_clone
->call_free
= ptr
->call_free
;
99 new_clone
->call_malloc
= ptr
->call_malloc
;
100 new_clone
->call_realloc
= ptr
->call_realloc
;
103 ptr
->on_clone(ptr
, new_clone
);