6 static char *memcached_stat_keys
[] = {
19 "connection_structures",
33 static memcached_return
set_data(memcached_stat_st
*memc_stat
, char *key
, char *value
)
38 WATCHPOINT_STRING(key
);
39 return MEMCACHED_UNKNOWN_STAT_KEY
;
41 else if (!strcmp("pid", key
))
43 memc_stat
->pid
= strtol(value
, (char **)NULL
, 10);
45 else if (!strcmp("uptime", key
))
47 memc_stat
->uptime
= strtol(value
, (char **)NULL
, 10);
49 else if (!strcmp("time", key
))
51 memc_stat
->time
= strtol(value
, (char **)NULL
, 10);
53 else if (!strcmp("version", key
))
55 memcpy(memc_stat
->version
, value
, strlen(value
));
56 memc_stat
->version
[strlen(value
)]= 0;
58 else if (!strcmp("pointer_size", key
))
60 memc_stat
->pointer_size
= strtol(value
, (char **)NULL
, 10);
62 else if (!strcmp("rusage_user", key
))
65 for (walk_ptr
= value
; (!ispunct(*walk_ptr
)); walk_ptr
++);
68 memc_stat
->rusage_user_seconds
= strtol(value
, (char **)NULL
, 10);
69 memc_stat
->rusage_user_microseconds
= strtol(walk_ptr
, (char **)NULL
, 10);
71 else if (!strcmp("rusage_system", key
))
74 for (walk_ptr
= value
; (!ispunct(*walk_ptr
)); walk_ptr
++);
77 memc_stat
->rusage_system_seconds
= strtol(value
, (char **)NULL
, 10);
78 memc_stat
->rusage_system_microseconds
= strtol(walk_ptr
, (char **)NULL
, 10);
80 else if (!strcmp("curr_items", key
))
82 memc_stat
->curr_items
= strtol(value
, (char **)NULL
, 10);
84 else if (!strcmp("total_items", key
))
86 memc_stat
->total_items
= strtol(value
, (char **)NULL
, 10);
88 else if (!strcmp("bytes_read", key
))
90 memc_stat
->bytes_read
= strtoll(value
, (char **)NULL
, 10);
92 else if (!strcmp("bytes_written", key
))
94 memc_stat
->bytes_written
= strtoll(value
, (char **)NULL
, 10);
96 else if (!strcmp("bytes", key
))
98 memc_stat
->bytes
= strtoll(value
, (char **)NULL
, 10);
100 else if (!strcmp("curr_connections", key
))
102 memc_stat
->curr_connections
= strtoll(value
, (char **)NULL
, 10);
104 else if (!strcmp("total_connections", key
))
106 memc_stat
->total_connections
= strtoll(value
, (char **)NULL
, 10);
108 else if (!strcmp("connection_structures", key
))
110 memc_stat
->connection_structures
= strtol(value
, (char **)NULL
, 10);
112 else if (!strcmp("cmd_get", key
))
114 memc_stat
->cmd_get
= strtoll(value
, (char **)NULL
, 10);
116 else if (!strcmp("cmd_set", key
))
118 memc_stat
->cmd_set
= strtoll(value
, (char **)NULL
, 10);
120 else if (!strcmp("get_hits", key
))
122 memc_stat
->get_hits
= strtoll(value
, (char **)NULL
, 10);
124 else if (!strcmp("get_misses", key
))
126 memc_stat
->get_misses
= (uint64_t)strtoll(value
, (char **)NULL
, 10);
128 else if (!strcmp("evictions", key
))
130 memc_stat
->evictions
= (uint64_t)strtoll(value
, (char **)NULL
, 10);
132 else if (!strcmp("limit_maxbytes", key
))
134 memc_stat
->limit_maxbytes
= strtoll(value
, (char **)NULL
, 10);
136 else if (!strcmp("threads", key
))
138 memc_stat
->threads
= strtol(value
, (char **)NULL
, 10);
140 else if (!(strcmp("delete_misses", key
) == 0 ||/* New stats in the 1.3 beta */
141 strcmp("delete_hits", key
) == 0 ||/* Just swallow them for now.. */
142 strcmp("incr_misses", key
) == 0 ||
143 strcmp("incr_hits", key
) == 0 ||
144 strcmp("decr_misses", key
) == 0 ||
145 strcmp("decr_hits", key
) == 0 ||
146 strcmp("cas_misses", key
) == 0 ||
147 strcmp("cas_hits", key
) == 0 ||
148 strcmp("cas_badval", key
) == 0 ||
149 strcmp("cmd_flush", key
) == 0 ||
150 strcmp("accepting_conns", key
) == 0 ||
151 strcmp("listen_disabled_num", key
) == 0))
153 WATCHPOINT_STRING(key
);
154 return MEMCACHED_UNKNOWN_STAT_KEY
;
157 return MEMCACHED_SUCCESS
;
160 char *memcached_stat_get_value(memcached_st
*ptr
, memcached_stat_st
*memc_stat
,
161 const char *key
, memcached_return
*error
)
163 char buffer
[SMALL_STRING_LEN
];
167 *error
= MEMCACHED_SUCCESS
;
169 if (!memcmp("pid", key
, strlen("pid")))
170 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->pid
);
171 else if (!memcmp("uptime", key
, strlen("uptime")))
172 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->uptime
);
173 else if (!memcmp("time", key
, strlen("time")))
174 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->time
);
175 else if (!memcmp("version", key
, strlen("version")))
176 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%s", memc_stat
->version
);
177 else if (!memcmp("pointer_size", key
, strlen("pointer_size")))
178 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->pointer_size
);
179 else if (!memcmp("rusage_user", key
, strlen("rusage_user")))
180 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u.%u", memc_stat
->rusage_user_seconds
, memc_stat
->rusage_user_microseconds
);
181 else if (!memcmp("rusage_system", key
, strlen("rusage_system")))
182 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u.%u", memc_stat
->rusage_system_seconds
, memc_stat
->rusage_system_microseconds
);
183 else if (!memcmp("curr_items", key
, strlen("curr_items")))
184 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->curr_items
);
185 else if (!memcmp("total_items", key
, strlen("total_items")))
186 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->total_items
);
187 else if (!memcmp("bytes", key
, strlen("bytes")))
188 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes
);
189 else if (!memcmp("curr_connections", key
, strlen("curr_connections")))
190 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->curr_connections
);
191 else if (!memcmp("total_connections", key
, strlen("total_connections")))
192 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->total_connections
);
193 else if (!memcmp("connection_structures", key
, strlen("connection_structures")))
194 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->connection_structures
);
195 else if (!memcmp("cmd_get", key
, strlen("cmd_get")))
196 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->cmd_get
);
197 else if (!memcmp("cmd_set", key
, strlen("cmd_set")))
198 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->cmd_set
);
199 else if (!memcmp("get_hits", key
, strlen("get_hits")))
200 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->get_hits
);
201 else if (!memcmp("get_misses", key
, strlen("get_misses")))
202 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->get_misses
);
203 else if (!memcmp("evictions", key
, strlen("evictions")))
204 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->evictions
);
205 else if (!memcmp("bytes_read", key
, strlen("bytes_read")))
206 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes_read
);
207 else if (!memcmp("bytes_written", key
, strlen("bytes_written")))
208 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes_written
);
209 else if (!memcmp("limit_maxbytes", key
, strlen("limit_maxbytes")))
210 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->limit_maxbytes
);
211 else if (!memcmp("threads", key
, strlen("threads")))
212 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->threads
);
215 *error
= MEMCACHED_NOTFOUND
;
219 ret
= ptr
->call_malloc(ptr
, length
+ 1);
220 memcpy(ret
, buffer
, length
);
226 static memcached_return
binary_stats_fetch(memcached_st
*ptr
,
227 memcached_stat_st
*memc_stat
,
229 unsigned int server_key
)
233 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
234 protocol_binary_request_stats request
= {.bytes
= {0}};
235 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
236 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_STAT
;
237 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
241 int len
= strlen(args
);
243 rc
= memcached_validate_key_length(len
, true);
244 unlikely (rc
!= MEMCACHED_SUCCESS
)
247 request
.message
.header
.request
.keylen
= htons((uint16_t)len
);
248 request
.message
.header
.request
.bodylen
= htonl(len
);
250 if ((memcached_do(&ptr
->hosts
[server_key
], request
.bytes
,
251 sizeof(request
.bytes
), 0) != MEMCACHED_SUCCESS
) ||
252 (memcached_io_write(&ptr
->hosts
[server_key
], args
, len
, 1) == -1))
254 memcached_io_reset(&ptr
->hosts
[server_key
]);
255 return MEMCACHED_WRITE_FAILURE
;
260 if (memcached_do(&ptr
->hosts
[server_key
], request
.bytes
,
261 sizeof(request
.bytes
), 1) != MEMCACHED_SUCCESS
)
263 memcached_io_reset(&ptr
->hosts
[server_key
]);
264 return MEMCACHED_WRITE_FAILURE
;
268 memcached_server_response_decrement(&ptr
->hosts
[server_key
]);
271 rc
= memcached_response(&ptr
->hosts
[server_key
], buffer
,
272 sizeof(buffer
), NULL
);
273 if (rc
== MEMCACHED_END
)
276 unlikely (rc
!= MEMCACHED_SUCCESS
)
278 memcached_io_reset(&ptr
->hosts
[server_key
]);
282 unlikely((set_data(memc_stat
, buffer
, buffer
+ strlen(buffer
) + 1)) == MEMCACHED_UNKNOWN_STAT_KEY
)
284 WATCHPOINT_ERROR(MEMCACHED_UNKNOWN_STAT_KEY
);
285 WATCHPOINT_ASSERT(0);
289 /* shit... memcached_response will decrement the counter, so I need to
290 ** reset it.. todo: look at this and try to find a better solution.
292 ptr
->hosts
[server_key
].cursor_active
= 0;
294 return MEMCACHED_SUCCESS
;
297 static memcached_return
ascii_stats_fetch(memcached_st
*ptr
,
298 memcached_stat_st
*memc_stat
,
300 unsigned int server_key
)
303 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
307 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
308 "stats %s\r\n", args
);
310 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
313 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
314 return MEMCACHED_WRITE_FAILURE
;
316 rc
= memcached_do(&ptr
->hosts
[server_key
], buffer
, send_length
, 1);
317 if (rc
!= MEMCACHED_SUCCESS
)
322 rc
= memcached_response(&ptr
->hosts
[server_key
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
324 if (rc
== MEMCACHED_STAT
)
326 char *string_ptr
, *end_ptr
;
330 string_ptr
+= 5; /* Move past STAT */
331 for (end_ptr
= string_ptr
; isgraph(*end_ptr
); end_ptr
++);
333 key
[(size_t)(end_ptr
-string_ptr
)]= 0;
335 string_ptr
= end_ptr
+ 1;
336 for (end_ptr
= string_ptr
; !(isspace(*end_ptr
)); end_ptr
++);
338 value
[(size_t)(end_ptr
-string_ptr
)]= 0;
339 string_ptr
= end_ptr
+ 2;
340 unlikely((set_data(memc_stat
, key
, value
)) == MEMCACHED_UNKNOWN_STAT_KEY
)
342 WATCHPOINT_ERROR(MEMCACHED_UNKNOWN_STAT_KEY
);
343 WATCHPOINT_ASSERT(0);
351 if (rc
== MEMCACHED_END
)
352 return MEMCACHED_SUCCESS
;
357 memcached_stat_st
*memcached_stat(memcached_st
*ptr
, char *args
, memcached_return
*error
)
361 memcached_stat_st
*stats
;
363 unlikely (ptr
->flags
& MEM_USE_UDP
)
365 *error
= MEMCACHED_NOT_SUPPORTED
;
369 stats
= ptr
->call_calloc(ptr
, ptr
->number_of_hosts
, sizeof(memcached_stat_st
));
373 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
377 rc
= MEMCACHED_SUCCESS
;
378 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
380 memcached_return temp_return
;
382 if (ptr
->flags
& MEM_BINARY_PROTOCOL
)
383 temp_return
= binary_stats_fetch(ptr
, stats
+ x
, args
, x
);
385 temp_return
= ascii_stats_fetch(ptr
, stats
+ x
, args
, x
);
387 if (temp_return
!= MEMCACHED_SUCCESS
)
388 rc
= MEMCACHED_SOME_ERRORS
;
395 memcached_return
memcached_stat_servername(memcached_stat_st
*memc_stat
, char *args
,
396 char *hostname
, unsigned int port
)
401 memcached_create(&memc
);
403 memcached_server_add(&memc
, hostname
, port
);
405 if (memc
.flags
& MEM_BINARY_PROTOCOL
)
406 rc
= binary_stats_fetch(&memc
, memc_stat
, args
, 0);
408 rc
= ascii_stats_fetch(&memc
, memc_stat
, args
, 0);
410 memcached_free(&memc
);
416 We make a copy of the keys since at some point in the not so distant future
417 we will add support for "found" keys.
419 char ** memcached_stat_get_keys(memcached_st
*ptr
, memcached_stat_st
*memc_stat
,
420 memcached_return
*error
)
424 size_t length
= sizeof(memcached_stat_keys
);
426 list
= ptr
->call_malloc(ptr
, length
);
430 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
434 memcpy(list
, memcached_stat_keys
, sizeof(memcached_stat_keys
));
436 *error
= MEMCACHED_SUCCESS
;
441 void memcached_stat_free(memcached_st
*ptr
, memcached_stat_st
*memc_stat
)
443 if (memc_stat
== NULL
)
445 WATCHPOINT_ASSERT(0); /* Be polite, but when debugging catch this as an error */
450 ptr
->call_free(ptr
, memc_stat
);