6 static const char *memcached_stat_keys
[] = {
19 "connection_structures",
33 static memcached_return_t
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
= (uint32_t) strtol(value
, (char **)NULL
, 10);
45 else if (!strcmp("uptime", key
))
47 memc_stat
->uptime
= (uint32_t) strtol(value
, (char **)NULL
, 10);
49 else if (!strcmp("time", key
))
51 memc_stat
->time
= (uint32_t) 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
= (uint32_t) 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
= (uint32_t) strtol(value
, (char **)NULL
, 10);
69 memc_stat
->rusage_user_microseconds
= (uint32_t) 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
= (uint32_t) strtol(value
, (char **)NULL
, 10);
78 memc_stat
->rusage_system_microseconds
= (uint32_t) strtol(walk_ptr
, (char **)NULL
, 10);
80 else if (!strcmp("curr_items", key
))
82 memc_stat
->curr_items
= (uint32_t) strtol(value
, (char **)NULL
, 10);
84 else if (!strcmp("total_items", key
))
86 memc_stat
->total_items
= (uint32_t) strtol(value
, (char **)NULL
, 10);
88 else if (!strcmp("bytes_read", key
))
90 memc_stat
->bytes_read
= (uint32_t) strtoll(value
, (char **)NULL
, 10);
92 else if (!strcmp("bytes_written", key
))
94 memc_stat
->bytes_written
= (uint32_t) strtoll(value
, (char **)NULL
, 10);
96 else if (!strcmp("bytes", key
))
98 memc_stat
->bytes
= (uint32_t) strtoll(value
, (char **)NULL
, 10);
100 else if (!strcmp("curr_connections", key
))
102 memc_stat
->curr_connections
= (uint32_t) strtoll(value
, (char **)NULL
, 10);
104 else if (!strcmp("total_connections", key
))
106 memc_stat
->total_connections
= (uint32_t) strtoll(value
, (char **)NULL
, 10);
108 else if (!strcmp("connection_structures", key
))
110 memc_stat
->connection_structures
= (uint32_t) strtol(value
, (char **)NULL
, 10);
112 else if (!strcmp("cmd_get", key
))
114 memc_stat
->cmd_get
= (uint64_t) strtoll(value
, (char **)NULL
, 10);
116 else if (!strcmp("cmd_set", key
))
118 memc_stat
->cmd_set
= (uint64_t) strtoll(value
, (char **)NULL
, 10);
120 else if (!strcmp("get_hits", key
))
122 memc_stat
->get_hits
= (uint64_t) 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
= (uint64_t) strtoll(value
, (char **)NULL
, 10);
136 else if (!strcmp("threads", key
))
138 memc_stat
->threads
= (uint32_t) 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 ||
152 strcmp("conn_yields", key
) == 0 ||
153 strcmp("auth_cmds", key
) == 0 ||
154 strcmp("auth_errors", key
) == 0))
156 WATCHPOINT_STRING(key
);
157 return MEMCACHED_UNKNOWN_STAT_KEY
;
160 return MEMCACHED_SUCCESS
;
163 char *memcached_stat_get_value(memcached_st
*ptr
, memcached_stat_st
*memc_stat
,
164 const char *key
, memcached_return_t
*error
)
166 char buffer
[SMALL_STRING_LEN
];
170 *error
= MEMCACHED_SUCCESS
;
172 if (!memcmp("pid", key
, strlen("pid")))
173 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->pid
);
174 else if (!memcmp("uptime", key
, strlen("uptime")))
175 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->uptime
);
176 else if (!memcmp("time", key
, strlen("time")))
177 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->time
);
178 else if (!memcmp("version", key
, strlen("version")))
179 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%s", memc_stat
->version
);
180 else if (!memcmp("pointer_size", key
, strlen("pointer_size")))
181 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->pointer_size
);
182 else if (!memcmp("rusage_user", key
, strlen("rusage_user")))
183 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u.%u", memc_stat
->rusage_user_seconds
, memc_stat
->rusage_user_microseconds
);
184 else if (!memcmp("rusage_system", key
, strlen("rusage_system")))
185 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u.%u", memc_stat
->rusage_system_seconds
, memc_stat
->rusage_system_microseconds
);
186 else if (!memcmp("curr_items", key
, strlen("curr_items")))
187 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->curr_items
);
188 else if (!memcmp("total_items", key
, strlen("total_items")))
189 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->total_items
);
190 else if (!memcmp("curr_connections", key
, strlen("curr_connections")))
191 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->curr_connections
);
192 else if (!memcmp("total_connections", key
, strlen("total_connections")))
193 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->total_connections
);
194 else if (!memcmp("connection_structures", key
, strlen("connection_structures")))
195 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->connection_structures
);
196 else if (!memcmp("cmd_get", key
, strlen("cmd_get")))
197 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->cmd_get
);
198 else if (!memcmp("cmd_set", key
, strlen("cmd_set")))
199 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->cmd_set
);
200 else if (!memcmp("get_hits", key
, strlen("get_hits")))
201 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->get_hits
);
202 else if (!memcmp("get_misses", key
, strlen("get_misses")))
203 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->get_misses
);
204 else if (!memcmp("evictions", key
, strlen("evictions")))
205 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->evictions
);
206 else if (!memcmp("bytes_read", key
, strlen("bytes_read")))
207 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes_read
);
208 else if (!memcmp("bytes_written", key
, strlen("bytes_written")))
209 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes_written
);
210 else if (!memcmp("bytes", key
, strlen("bytes")))
211 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->bytes
);
212 else if (!memcmp("limit_maxbytes", key
, strlen("limit_maxbytes")))
213 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%llu", (unsigned long long)memc_stat
->limit_maxbytes
);
214 else if (!memcmp("threads", key
, strlen("threads")))
215 length
= snprintf(buffer
, SMALL_STRING_LEN
,"%u", memc_stat
->threads
);
218 *error
= MEMCACHED_NOTFOUND
;
222 ret
= ptr
->call_malloc(ptr
, (size_t) (length
+ 1));
223 memcpy(ret
, buffer
, (size_t) length
);
229 static memcached_return_t
binary_stats_fetch(memcached_stat_st
*memc_stat
,
231 memcached_server_instance_st
*instance
)
233 memcached_return_t rc
;
235 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
236 protocol_binary_request_stats request
= {.bytes
= {0}};
237 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
238 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_STAT
;
239 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
243 size_t len
= strlen(args
);
245 rc
= memcached_validate_key_length(len
, true);
246 unlikely (rc
!= MEMCACHED_SUCCESS
)
249 request
.message
.header
.request
.keylen
= htons((uint16_t)len
);
250 request
.message
.header
.request
.bodylen
= htonl((uint32_t) len
);
252 if ((memcached_do(instance
, request
.bytes
,
253 sizeof(request
.bytes
), 0) != MEMCACHED_SUCCESS
) ||
254 (memcached_io_write(instance
, args
, len
, 1) == -1))
256 memcached_io_reset(instance
);
257 return MEMCACHED_WRITE_FAILURE
;
262 if (memcached_do(instance
, request
.bytes
,
263 sizeof(request
.bytes
), 1) != MEMCACHED_SUCCESS
)
265 memcached_io_reset(instance
);
266 return MEMCACHED_WRITE_FAILURE
;
270 memcached_server_response_decrement(instance
);
273 rc
= memcached_response(instance
, buffer
,
274 sizeof(buffer
), NULL
);
275 if (rc
== MEMCACHED_END
)
278 unlikely (rc
!= MEMCACHED_SUCCESS
)
280 memcached_io_reset(instance
);
284 unlikely((set_data(memc_stat
, buffer
, buffer
+ strlen(buffer
) + 1)) == MEMCACHED_UNKNOWN_STAT_KEY
)
286 WATCHPOINT_ERROR(MEMCACHED_UNKNOWN_STAT_KEY
);
287 WATCHPOINT_ASSERT(0);
291 /* shit... memcached_response will decrement the counter, so I need to
292 ** reset it.. todo: look at this and try to find a better solution.
294 instance
->cursor_active
= 0;
296 return MEMCACHED_SUCCESS
;
299 static memcached_return_t
ascii_stats_fetch(memcached_stat_st
*memc_stat
,
301 memcached_server_instance_st
*instance
)
303 memcached_return_t rc
;
304 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
308 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
309 "stats %s\r\n", args
);
311 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
314 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
315 return MEMCACHED_WRITE_FAILURE
;
317 rc
= memcached_do(instance
, buffer
, send_length
, 1);
318 if (rc
!= MEMCACHED_SUCCESS
)
323 rc
= memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
325 if (rc
== MEMCACHED_STAT
)
327 char *string_ptr
, *end_ptr
;
331 string_ptr
+= 5; /* Move past STAT */
332 for (end_ptr
= string_ptr
; isgraph(*end_ptr
); end_ptr
++);
334 key
[(size_t)(end_ptr
-string_ptr
)]= 0;
336 string_ptr
= end_ptr
+ 1;
337 for (end_ptr
= string_ptr
; !(isspace(*end_ptr
)); end_ptr
++);
339 value
[(size_t)(end_ptr
-string_ptr
)]= 0;
340 string_ptr
= end_ptr
+ 2;
341 unlikely((set_data(memc_stat
, key
, value
)) == MEMCACHED_UNKNOWN_STAT_KEY
)
343 WATCHPOINT_ERROR(MEMCACHED_UNKNOWN_STAT_KEY
);
344 WATCHPOINT_ASSERT(0);
352 if (rc
== MEMCACHED_END
)
353 return MEMCACHED_SUCCESS
;
358 memcached_stat_st
*memcached_stat(memcached_st
*ptr
, char *args
, memcached_return_t
*error
)
361 memcached_return_t rc
;
362 memcached_stat_st
*stats
;
364 unlikely (ptr
->flags
.use_udp
)
366 *error
= MEMCACHED_NOT_SUPPORTED
;
370 stats
= ptr
->call_calloc(ptr
, memcached_server_count(ptr
), sizeof(memcached_stat_st
));
376 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
380 rc
= MEMCACHED_SUCCESS
;
381 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
383 memcached_return_t temp_return
;
384 memcached_server_instance_st
*instance
;
386 instance
= memcached_server_instance_fetch(ptr
, x
);
388 if (ptr
->flags
.binary_protocol
)
390 temp_return
= binary_stats_fetch(stats
+ x
, args
, instance
);
394 temp_return
= ascii_stats_fetch(stats
+ x
, args
, instance
);
397 if (temp_return
!= MEMCACHED_SUCCESS
)
398 rc
= MEMCACHED_SOME_ERRORS
;
405 memcached_return_t
memcached_stat_servername(memcached_stat_st
*memc_stat
, char *args
,
406 const char *hostname
, in_port_t port
)
408 memcached_return_t rc
;
410 memcached_st
*memc_ptr
;
411 memcached_server_instance_st
*instance
;
413 memc_ptr
= memcached_create(&memc
);
414 WATCHPOINT_ASSERT(memc_ptr
);
416 memcached_server_add(&memc
, hostname
, port
);
418 instance
= memcached_server_instance_fetch(memc_ptr
, 0);
420 if (memc
.flags
.binary_protocol
)
422 rc
= binary_stats_fetch(memc_stat
, args
, instance
);
426 rc
= ascii_stats_fetch(memc_stat
, args
, instance
);
429 memcached_free(&memc
);
435 We make a copy of the keys since at some point in the not so distant future
436 we will add support for "found" keys.
438 char ** memcached_stat_get_keys(memcached_st
*ptr
, memcached_stat_st
*memc_stat
,
439 memcached_return_t
*error
)
443 size_t length
= sizeof(memcached_stat_keys
);
445 list
= ptr
->call_malloc(ptr
, length
);
449 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
453 memcpy(list
, memcached_stat_keys
, sizeof(memcached_stat_keys
));
455 *error
= MEMCACHED_SUCCESS
;
460 void memcached_stat_free(memcached_st
*ptr
, memcached_stat_st
*memc_stat
)
462 if (memc_stat
== NULL
)
464 WATCHPOINT_ASSERT(0); /* Be polite, but when debugging catch this as an error */
470 memc_stat
->root
->call_free(ptr
, memc_stat
);
474 ptr
->call_free(ptr
, memc_stat
);