emit messages to stderr when write fails
[awesomized/libmemcached] / lib / memcached_auto.c
1 #include <memcached.h>
2
3 static memcached_return memcached_auto(memcached_st *ptr,
4 char *verb,
5 char *key, size_t key_length,
6 unsigned int offset,
7 unsigned int *value)
8 {
9 size_t send_length, sent_length;
10 memcached_return rc;
11 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
12 unsigned int server_key;
13
14 rc= memcached_connect(ptr);
15
16 if (rc != MEMCACHED_SUCCESS)
17 return rc;
18
19 server_key= memcached_generate_hash(key, key_length) % ptr->number_of_hosts;
20
21 send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE,
22 "%s %.*s %u\r\n", verb,
23 (int)key_length, key,
24 offset);
25 if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE)
26 return MEMCACHED_WRITE_FAILURE;
27 sent_length= write(ptr->hosts[server_key].fd, buffer, send_length);
28 if (sent_length == -1)
29 {
30 fprintf(stderr, "error %s: write: %m\n", __FUNCTION__);
31 return MEMCACHED_WRITE_FAILURE;
32 }
33 if (sent_length != send_length)
34 {
35 fprintf(stderr, "error %s: short write %d %d: %m\n",
36 __FUNCTION__, sent_length, send_length);
37 return MEMCACHED_WRITE_FAILURE;
38 }
39
40 memset(buffer, 0, MEMCACHED_DEFAULT_COMMAND_SIZE);
41 send_length= read(ptr->hosts[server_key].fd, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE);
42
43 if (!memcmp(buffer, "ERROR\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE))
44 {
45 *value= 0;
46 rc= MEMCACHED_PROTOCOL_ERROR;
47 }
48 else if (!memcmp(buffer, "NOT_FOUND\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE))
49 {
50 *value= 0;
51 rc= MEMCACHED_NOTFOUND;
52 }
53 else
54 {
55 *value= strtol(buffer, (char **)NULL, 10);
56 rc= MEMCACHED_SUCCESS;
57 }
58
59 return rc;
60 }
61
62 memcached_return memcached_increment(memcached_st *ptr,
63 char *key, size_t key_length,
64 unsigned int offset,
65 unsigned int *value)
66 {
67 return memcached_auto(ptr, "incr", key, key_length, offset, value);
68 }
69
70 memcached_return memcached_decrement(memcached_st *ptr,
71 char *key, size_t key_length,
72 unsigned int offset,
73 unsigned int *value)
74 {
75 return memcached_auto(ptr, "decr", key, key_length, offset, value);
76 }