10 #include <memcached.h>
12 static memcached_return
memcached_send(memcached_st
*ptr
,
13 char *key
, size_t key_length
,
14 char *value
, size_t value_length
,
22 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
23 unsigned int server_key
;
25 rc
= memcached_connect(ptr
);
29 if (rc
!= MEMCACHED_SUCCESS
)
32 server_key
= memcached_generate_hash(key
, key_length
) % ptr
->number_of_hosts
;
34 write_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
35 "%s %.*s %x %llu %zu\r\n", verb
,
36 (int)key_length
, key
, flags
,
37 (unsigned long long)expiration
, value_length
);
38 if (write_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
39 return MEMCACHED_WRITE_FAILURE
;
40 if ((sent_length
= write(ptr
->hosts
[server_key
].fd
, buffer
, write_length
)) == -1)
41 return MEMCACHED_WRITE_FAILURE
;
42 assert(write_length
== sent_length
);
44 if ((sent_length
= write(ptr
->hosts
[server_key
].fd
, value
, value_length
)) == -1)
45 return MEMCACHED_WRITE_FAILURE
;
46 assert(value_length
== sent_length
);
48 if ((sent_length
= write(ptr
->hosts
[server_key
].fd
, "\r\n", 2)) == -1)
49 return MEMCACHED_WRITE_FAILURE
;
50 assert(2 == sent_length
);
52 sent_length
= read(ptr
->hosts
[server_key
].fd
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
);
54 if (sent_length
&& buffer
[0] == 'S') /* STORED */
55 return MEMCACHED_SUCCESS
;
56 else if (write_length
&& buffer
[0] == 'N') /* NOT_STORED */
57 return MEMCACHED_NOTSTORED
;
59 return MEMCACHED_READ_FAILURE
;
62 memcached_return
memcached_set(memcached_st
*ptr
, char *key
, size_t key_length
,
63 char *value
, size_t value_length
,
67 return memcached_send(ptr
, key
, key_length
, value
, value_length
,
68 expiration
, flags
, "set");
71 memcached_return
memcached_add(memcached_st
*ptr
, char *key
, size_t key_length
,
72 char *value
, size_t value_length
,
76 return memcached_send(ptr
, key
, key_length
, value
, value_length
,
77 expiration
, flags
, "add");
80 memcached_return
memcached_replace(memcached_st
*ptr
, char *key
, size_t key_length
,
81 char *value
, size_t value_length
,
85 return memcached_send(ptr
, key
, key_length
, value
, value_length
,
86 expiration
, flags
, "replace");