Removed more then a handfull of memset() calls.
[awesomized/libmemcached] / lib / memcached_response.c
1 /*
2 Memcached library
3
4 memcached_response() is used to determine the return result
5 from an issued command.
6 */
7
8 #include "common.h"
9 #include "memcached_io.h"
10
11 memcached_return memcached_response(memcached_st *ptr,
12 char *buffer, size_t buffer_length,
13 unsigned int server_key)
14 {
15 unsigned int x;
16 size_t send_length;
17 char *buffer_ptr;
18 unsigned int max_messages;
19
20
21 send_length= 0;
22
23 max_messages= memcached_server_response_count(ptr, server_key);
24 for (x= 0; x <= max_messages; x++)
25 {
26 size_t total_length= 0;
27 buffer_ptr= buffer;
28
29 while (1)
30 {
31 unsigned int read_length;
32
33 read_length= memcached_io_read(ptr, server_key,
34 buffer_ptr, 1);
35
36 if (read_length != 1)
37 return MEMCACHED_UNKNOWN_READ_FAILURE;
38
39 if (*buffer_ptr == '\n')
40 break;
41 else
42 buffer_ptr++;
43
44 total_length++;
45 WATCHPOINT_ASSERT(total_length < buffer_length);
46 }
47
48 if (memcached_server_response_count(ptr, server_key))
49 memcached_server_response_decrement(ptr, server_key);
50 }
51
52 switch(buffer[0])
53 {
54 case 'V': /* VALUE */
55 return MEMCACHED_SUCCESS;
56 case 'O': /* OK */
57 return MEMCACHED_SUCCESS;
58 case 'S': /* STORED STATS SERVER_ERROR */
59 {
60 if (buffer[2] == 'A') /* STORED STATS */
61 return MEMCACHED_STAT;
62 else if (buffer[1] == 'E')
63 return MEMCACHED_SERVER_ERROR;
64 else if (buffer[1] == 'T')
65 return MEMCACHED_STORED;
66 else
67 return MEMCACHED_UNKNOWN_READ_FAILURE;
68 }
69 case 'D': /* DELETED */
70 return MEMCACHED_DELETED;
71 case 'N': /* NOT_FOUND */
72 {
73 if (buffer[4] == 'F')
74 return MEMCACHED_NOTFOUND;
75 else if (buffer[4] == 'S')
76 return MEMCACHED_NOTSTORED;
77 else
78 return MEMCACHED_UNKNOWN_READ_FAILURE;
79 }
80 case 'E': /* PROTOCOL ERROR or END */
81 {
82 if (buffer[1] == 'N')
83 return MEMCACHED_END;
84 else if (buffer[1] == 'R')
85 return MEMCACHED_PROTOCOL_ERROR;
86 else
87 return MEMCACHED_UNKNOWN_READ_FAILURE;
88 }
89 case 'C': /* CLIENT ERROR */
90 return MEMCACHED_CLIENT_ERROR;
91 default:
92 return MEMCACHED_UNKNOWN_READ_FAILURE;
93
94 }
95
96 return MEMCACHED_SUCCESS;
97 }
98
99 char *memcached_result_value(memcached_result_st *ptr)
100 {
101 memcached_string_st *sptr= &ptr->value;
102 return memcached_string_value(sptr);
103 }
104
105 size_t memcached_result_length(memcached_result_st *ptr)
106 {
107 memcached_string_st *sptr= &ptr->value;
108 return memcached_string_length(sptr);
109 }