2 * RRDTool - src/rrd_client.c
3 * Copyright (C) 2008-2010 Florian octo Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 * Florian octo Forster <octo at verplant.org>
25 * Sebastian tokkee Harl <sh at tokkee.org>
30 #include "rrd_client.h"
39 #include <sys/types.h>
40 #include <sys/socket.h>
46 #define ENODATA ENOENT
49 struct rrdc_response_s
56 typedef struct rrdc_response_s rrdc_response_t;
58 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
60 static FILE *sh = NULL;
61 static char *sd_path = NULL; /* cache the path for sd */
63 /* get_path: Return a path name appropriate to be sent to the daemon.
65 * When talking to a local daemon (thru a UNIX socket), relative path names
66 * are resolved to absolute path names to allow for transparent integration
67 * into existing solutions (as requested by Tobi). Else, absolute path names
68 * are not allowed, since path name translation is done by the server.
70 * One must hold `lock' when calling this function. */
71 static const char *get_path (const char *path, char *resolved_path) /* {{{ */
73 const char *ret = path;
76 if ((path == NULL) || (resolved_path == NULL) || (sd_path == NULL))
80 || (strncmp ("unix:", sd_path, strlen ("unix:")) == 0))
85 ret = realpath(path, resolved_path);
87 rrd_set_error("realpath(%s): %s", path, rrd_strerror(errno));
92 if (*path == '/') /* not absolute path */
94 rrd_set_error ("absolute path names not allowed when talking "
95 "to a remote daemon");
101 } /* }}} char *get_path */
103 static size_t strsplit (char *string, char **fields, size_t size) /* {{{ */
112 while ((fields[i] = strtok_r (ptr, " \t\r\n", &saveptr)) != NULL)
122 } /* }}} size_t strsplit */
124 static int parse_header (char *line, /* {{{ */
125 char **ret_key, char **ret_value)
131 tmp = strchr (line, ':');
140 while ((tmp[0] == ' ') || (tmp[0] == '\t'));
147 } /* }}} int parse_header */
149 static int parse_ulong_header (char *line, /* {{{ */
150 char **ret_key, unsigned long *ret_value)
157 status = parse_header (line, ret_key, &str_value);
163 *ret_value = (unsigned long) strtol (str_value, &endptr, /* base = */ 0);
164 if ((endptr == str_value) || (errno != 0))
168 } /* }}} int parse_ulong_header */
170 static int parse_char_array_header (char *line, /* {{{ */
171 char **ret_key, char **array, size_t array_len, int alloc)
173 char *tmp_array[array_len];
179 status = parse_header (line, ret_key, &value);
183 num = strsplit (value, tmp_array, array_len);
184 if (num != array_len)
189 memcpy (array, tmp_array, sizeof (tmp_array));
195 for (i = 0; i < array_len; i++)
196 array[i] = strdup (tmp_array[i]);
200 } /* }}} int parse_char_array_header */
202 static int parse_value_array_header (char *line, /* {{{ */
203 time_t *ret_time, rrd_value_t *array, size_t array_len)
206 char *str_array[array_len];
212 status = parse_char_array_header (line, &str_key,
213 str_array, array_len, /* alloc = */ 0);
219 *ret_time = (time_t) strtol (str_key, &endptr, /* base = */ 10);
220 if ((endptr == str_key) || (errno != 0))
223 for (i = 0; i < array_len; i++)
226 array[i] = (rrd_value_t) strtod (str_array[i], &endptr);
227 if ((endptr == str_array[i]) || (errno != 0))
232 } /* }}} int parse_value_array_header */
234 /* One must hold `lock' when calling `close_connection'. */
235 static void close_connection (void) /* {{{ */
252 } /* }}} void close_connection */
254 static int buffer_add_string (const char *str, /* {{{ */
255 char **buffer_ret, size_t *buffer_size_ret)
263 buffer = *buffer_ret;
264 buffer_size = *buffer_size_ret;
269 while (buffer_pos < buffer_size)
273 buffer[buffer_pos] = ' ';
278 else if ((str[i] == ' ') || (str[i] == '\\'))
280 if (buffer_pos >= (buffer_size - 1))
282 buffer[buffer_pos] = '\\';
284 buffer[buffer_pos] = str[i];
289 buffer[buffer_pos] = str[i];
293 } /* while (buffer_pos < buffer_size) */
298 *buffer_ret = buffer + buffer_pos;
299 *buffer_size_ret = buffer_size - buffer_pos;
302 } /* }}} int buffer_add_string */
304 static int buffer_add_value (const char *value, /* {{{ */
305 char **buffer_ret, size_t *buffer_size_ret)
309 if (strncmp (value, "N:", 2) == 0)
310 snprintf (temp, sizeof (temp), "%lu:%s",
311 (unsigned long) time (NULL), value + 2);
313 strncpy (temp, value, sizeof (temp));
314 temp[sizeof (temp) - 1] = 0;
316 return (buffer_add_string (temp, buffer_ret, buffer_size_ret));
317 } /* }}} int buffer_add_value */
319 static int buffer_add_ulong (const unsigned long value, /* {{{ */
320 char **buffer_ret, size_t *buffer_size_ret)
324 snprintf (temp, sizeof (temp), "%lu", value);
325 temp[sizeof (temp) - 1] = 0;
326 return (buffer_add_string (temp, buffer_ret, buffer_size_ret));
327 } /* }}} int buffer_add_ulong */
329 /* Remove trailing newline (NL) and carriage return (CR) characters. Similar to
330 * the Perl function `chomp'. Returns the number of characters that have been
332 static int chomp (char *str) /* {{{ */
342 while ((len > 0) && ((str[len - 1] == '\n') || (str[len - 1] == '\r')))
350 } /* }}} int chomp */
352 static void response_free (rrdc_response_t *res) /* {{{ */
357 if (res->lines != NULL)
361 for (i = 0; i < res->lines_num; i++)
362 if (res->lines[i] != NULL)
363 free (res->lines[i]);
368 } /* }}} void response_free */
370 static int response_read (rrdc_response_t **ret_response) /* {{{ */
372 rrdc_response_t *ret = NULL;
380 #define DIE(code) do { status = code; goto err_out; } while(0)
385 ret = (rrdc_response_t *) malloc (sizeof (rrdc_response_t));
388 memset (ret, 0, sizeof (*ret));
392 buffer_ptr = fgets (buffer, sizeof (buffer), sh);
393 if (buffer_ptr == NULL)
398 ret->status = strtol (buffer, &ret->message, 0);
399 if (buffer == ret->message)
402 /* Skip leading whitespace of the status message */
403 ret->message += strspn (ret->message, " \t");
405 if (ret->status <= 0)
408 rrd_set_error("rrdcached: %s", ret->message);
412 ret->lines = (char **) malloc (sizeof (char *) * ret->status);
413 if (ret->lines == NULL)
416 memset (ret->lines, 0, sizeof (char *) * ret->status);
417 ret->lines_num = (size_t) ret->status;
419 for (i = 0; i < ret->lines_num; i++)
421 buffer_ptr = fgets (buffer, sizeof (buffer), sh);
422 if (buffer_ptr == NULL)
427 ret->lines[i] = strdup (buffer);
428 if (ret->lines[i] == NULL)
444 } /* }}} rrdc_response_t *response_read */
446 static int request (const char *buffer, size_t buffer_size, /* {{{ */
447 rrdc_response_t **ret_response)
450 rrdc_response_t *res;
455 status = (int) fwrite (buffer, buffer_size, /* nmemb = */ 1, sh);
459 rrd_set_error("request: socket error (%d) while talking to rrdcached",
466 status = response_read (&res);
471 rrd_set_error("request: internal error while talking to rrdcached");
477 } /* }}} int request */
479 /* determine whether we are connected to the specified daemon_addr if
480 * NULL, return whether we are connected at all
482 int rrdc_is_connected(const char *daemon_addr) /* {{{ */
486 else if (daemon_addr == NULL)
488 /* here we have to handle the case i.e.
489 * UPDATE --daemon ...; UPDATEV (no --daemon) ...
490 * In other words: we have a cached connection,
491 * but it is not specified in the current command.
492 * Daemon is only implied in this case if set in ENV
494 if (getenv(ENV_RRDCACHED_ADDRESS) != NULL)
499 else if (strcmp(daemon_addr, sd_path) == 0)
504 } /* }}} int rrdc_is_connected */
506 static int rrdc_connect_unix (const char *path) /* {{{ */
508 struct sockaddr_un sa;
511 assert (path != NULL);
514 sd = socket (PF_UNIX, SOCK_STREAM, /* protocol = */ 0);
521 memset (&sa, 0, sizeof (sa));
522 sa.sun_family = AF_UNIX;
523 strncpy (sa.sun_path, path, sizeof (sa.sun_path) - 1);
525 status = connect (sd, (struct sockaddr *) &sa, sizeof (sa));
533 sh = fdopen (sd, "r+");
542 } /* }}} int rrdc_connect_unix */
544 static int rrdc_connect_network (const char *addr_orig) /* {{{ */
546 struct addrinfo ai_hints;
547 struct addrinfo *ai_res;
548 struct addrinfo *ai_ptr;
549 char addr_copy[NI_MAXHOST];
553 assert (addr_orig != NULL);
556 strncpy(addr_copy, addr_orig, sizeof(addr_copy));
557 addr_copy[sizeof(addr_copy) - 1] = '\0';
561 memset (&ai_hints, 0, sizeof (ai_hints));
562 ai_hints.ai_flags = 0;
564 ai_hints.ai_flags |= AI_ADDRCONFIG;
566 ai_hints.ai_family = AF_UNSPEC;
567 ai_hints.ai_socktype = SOCK_STREAM;
570 if (*addr == '[') /* IPv6+port format */
572 /* `addr' is something like "[2001:780:104:2:211:24ff:feab:26f8]:12345" */
575 port = strchr (addr, ']');
578 rrd_set_error("malformed address: %s", addr_orig);
590 rrd_set_error("garbage after address: %s", port);
593 } /* if (*addr == '[') */
596 port = rindex(addr, ':');
605 status = getaddrinfo (addr,
606 port == NULL ? RRDCACHED_DEFAULT_PORT : port,
610 rrd_set_error ("failed to resolve address `%s' (port %s): %s",
611 addr, port == NULL ? RRDCACHED_DEFAULT_PORT : port,
612 gai_strerror (status));
616 for (ai_ptr = ai_res; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
618 sd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
626 status = connect (sd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
634 sh = fdopen (sd, "r+");
642 assert (status == 0);
647 } /* }}} int rrdc_connect_network */
649 int rrdc_connect (const char *addr) /* {{{ */
654 addr = getenv (ENV_RRDCACHED_ADDRESS);
659 pthread_mutex_lock(&lock);
661 if (sd >= 0 && sd_path != NULL && strcmp(addr, sd_path) == 0)
663 /* connection to the same daemon; use cached connection */
664 pthread_mutex_unlock (&lock);
673 if (strncmp ("unix:", addr, strlen ("unix:")) == 0)
674 status = rrdc_connect_unix (addr + strlen ("unix:"));
675 else if (addr[0] == '/')
676 status = rrdc_connect_unix (addr);
678 status = rrdc_connect_network(addr);
680 if (status == 0 && sd >= 0)
681 sd_path = strdup(addr);
684 char *err = rrd_test_error () ? rrd_get_error () : "Internal error";
685 /* err points the string that gets written to by rrd_set_error(), thus we
686 * cannot pass it to that function */
688 rrd_set_error("Unable to connect to rrdcached: %s",
690 ? (err ? err : "Internal error")
691 : rrd_strerror (status));
696 pthread_mutex_unlock (&lock);
698 } /* }}} int rrdc_connect */
700 int rrdc_disconnect (void) /* {{{ */
702 pthread_mutex_lock (&lock);
706 pthread_mutex_unlock (&lock);
709 } /* }}} int rrdc_disconnect */
711 int rrdc_update (const char *filename, int values_num, /* {{{ */
712 const char * const *values)
718 rrdc_response_t *res;
721 char file_path[PATH_MAX];
723 memset (buffer, 0, sizeof (buffer));
724 buffer_ptr = &buffer[0];
725 buffer_free = sizeof (buffer);
727 status = buffer_add_string ("update", &buffer_ptr, &buffer_free);
731 pthread_mutex_lock (&lock);
732 filename = get_path (filename, file_path);
733 if (filename == NULL)
735 pthread_mutex_unlock (&lock);
739 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
742 pthread_mutex_unlock (&lock);
746 for (i = 0; i < values_num; i++)
748 status = buffer_add_value (values[i], &buffer_ptr, &buffer_free);
751 pthread_mutex_unlock (&lock);
756 assert (buffer_free < sizeof (buffer));
757 buffer_size = sizeof (buffer) - buffer_free;
758 assert (buffer[buffer_size - 1] == ' ');
759 buffer[buffer_size - 1] = '\n';
762 status = request (buffer, buffer_size, &res);
763 pthread_mutex_unlock (&lock);
768 status = res->status;
772 } /* }}} int rrdc_update */
774 int rrdc_flush (const char *filename) /* {{{ */
780 rrdc_response_t *res;
782 char file_path[PATH_MAX];
784 if (filename == NULL)
787 memset (buffer, 0, sizeof (buffer));
788 buffer_ptr = &buffer[0];
789 buffer_free = sizeof (buffer);
791 status = buffer_add_string ("flush", &buffer_ptr, &buffer_free);
795 pthread_mutex_lock (&lock);
796 filename = get_path (filename, file_path);
797 if (filename == NULL)
799 pthread_mutex_unlock (&lock);
803 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
806 pthread_mutex_unlock (&lock);
810 assert (buffer_free < sizeof (buffer));
811 buffer_size = sizeof (buffer) - buffer_free;
812 assert (buffer[buffer_size - 1] == ' ');
813 buffer[buffer_size - 1] = '\n';
816 status = request (buffer, buffer_size, &res);
817 pthread_mutex_unlock (&lock);
822 status = res->status;
826 } /* }}} int rrdc_flush */
828 rrd_info_t * rrdc_info (const char *filename) /* {{{ */
834 rrdc_response_t *res;
836 char file_path[PATH_MAX];
837 rrd_info_t *data = NULL, *cd;
840 rrd_info_type_t itype;
843 if (filename == NULL) {
844 rrd_set_error ("rrdc_info: no filename");
848 memset (buffer, 0, sizeof (buffer));
849 buffer_ptr = &buffer[0];
850 buffer_free = sizeof (buffer);
852 status = buffer_add_string ("info", &buffer_ptr, &buffer_free);
854 rrd_set_error ("rrdc_info: out of memory");
858 pthread_mutex_lock (&lock);
859 filename = get_path (filename, file_path);
860 if (filename == NULL)
862 pthread_mutex_unlock (&lock);
866 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
869 pthread_mutex_unlock (&lock);
870 rrd_set_error ("rrdc_info: out of memory");
874 assert (buffer_free < sizeof (buffer));
875 buffer_size = sizeof (buffer) - buffer_free;
876 assert (buffer[buffer_size - 1] == ' ');
877 buffer[buffer_size - 1] = '\n';
880 status = request (buffer, buffer_size, &res);
881 pthread_mutex_unlock (&lock);
884 rrd_set_error ("rrdcached: %s", res->message);
888 for( l=0 ; l < res->lines_num ; l++ ) {
889 /* first extract the keyword */
890 for(k = s = res->lines[l];s && *s;s++) {
891 if(*s == ' ') { *s = 0; s++; break; }
894 itype = atoi(s); /* extract type code */
895 for(;*s;s++) { if(*s == ' ') { *s = 0; s++; break; } }
897 /* finally, we're pointing to the value */
900 if(*s == 'N') { info.u_val = DNAN; } else { info.u_val = atof(s); }
903 info.u_cnt = atol(s);
906 info.u_int = atoi(s);
910 info.u_str = (char*)malloc(sizeof(char) * (strlen(s) + 1));
911 strcpy(info.u_str,s);
914 rrd_set_error ("rrdc_info: BLOB objects are not supported");
917 rrd_set_error ("rrdc_info: Unsupported info type %d",itype);
921 cd = rrd_info_push(cd, sprintf_alloc("%s",k), itype, info);
927 } /* }}} int rrdc_info */
929 time_t rrdc_last (const char *filename) /* {{{ */
935 rrdc_response_t *res;
937 char file_path[PATH_MAX];
940 if (filename == NULL) {
941 rrd_set_error ("rrdc_last: no filename");
945 memset (buffer, 0, sizeof (buffer));
946 buffer_ptr = &buffer[0];
947 buffer_free = sizeof (buffer);
949 status = buffer_add_string ("last", &buffer_ptr, &buffer_free);
951 rrd_set_error ("rrdc_last: out of memory");
955 pthread_mutex_lock (&lock);
956 filename = get_path (filename, file_path);
957 if (filename == NULL)
959 pthread_mutex_unlock (&lock);
963 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
966 pthread_mutex_unlock (&lock);
967 rrd_set_error ("rrdc_last: out of memory");
971 assert (buffer_free < sizeof (buffer));
972 buffer_size = sizeof (buffer) - buffer_free;
973 assert (buffer[buffer_size - 1] == ' ');
974 buffer[buffer_size - 1] = '\n';
977 status = request (buffer, buffer_size, &res);
978 pthread_mutex_unlock (&lock);
981 rrd_set_error ("rrdcached: %s", res->message);
984 lastup = atol(res->message);
988 } /* }}} int rrdc_last */
990 time_t rrdc_first (const char *filename, int rraindex) /* {{{ */
996 rrdc_response_t *res;
998 char file_path[PATH_MAX];
1001 if (filename == NULL) {
1002 rrd_set_error ("rrdc_first: no filename specified");
1006 memset (buffer, 0, sizeof (buffer));
1007 buffer_ptr = &buffer[0];
1008 buffer_free = sizeof (buffer);
1010 status = buffer_add_string ("first", &buffer_ptr, &buffer_free);
1012 rrd_set_error ("rrdc_first: out of memory");
1016 pthread_mutex_lock (&lock);
1017 filename = get_path (filename, file_path);
1018 if (filename == NULL)
1020 pthread_mutex_unlock (&lock);
1024 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
1027 pthread_mutex_unlock (&lock);
1028 rrd_set_error ("rrdc_first: out of memory");
1031 status = buffer_add_ulong (rraindex, &buffer_ptr, &buffer_free);
1034 pthread_mutex_unlock (&lock);
1035 rrd_set_error ("rrdc_first: out of memory");
1039 assert (buffer_free < sizeof (buffer));
1040 buffer_size = sizeof (buffer) - buffer_free;
1041 assert (buffer[buffer_size - 1] == ' ');
1042 buffer[buffer_size - 1] = '\n';
1045 status = request (buffer, buffer_size, &res);
1046 pthread_mutex_unlock (&lock);
1049 rrd_set_error ("rrdcached: %s", res->message);
1052 firstup = atol(res->message);
1053 response_free (res);
1056 } /* }}} int rrdc_first */
1058 int rrdc_create (const char *filename, /* {{{ */
1059 unsigned long pdp_step,
1069 rrdc_response_t *res;
1071 char file_path[PATH_MAX];
1074 if (filename == NULL) {
1075 rrd_set_error ("rrdc_create: no filename specified");
1079 memset (buffer, 0, sizeof (buffer));
1080 buffer_ptr = &buffer[0];
1081 buffer_free = sizeof (buffer);
1083 status = buffer_add_string ("create", &buffer_ptr, &buffer_free);
1085 rrd_set_error ("rrdc_create: out of memory");
1089 pthread_mutex_lock (&lock);
1090 filename = get_path (filename, file_path);
1091 if (filename == NULL)
1093 pthread_mutex_unlock (&lock);
1097 status = buffer_add_string (filename, &buffer_ptr, &buffer_free);
1098 status = buffer_add_string ("-b", &buffer_ptr, &buffer_free);
1099 status = buffer_add_ulong (last_up, &buffer_ptr, &buffer_free);
1100 status = buffer_add_string ("-s", &buffer_ptr, &buffer_free);
1101 status = buffer_add_ulong (pdp_step, &buffer_ptr, &buffer_free);
1103 status = buffer_add_string ("-O", &buffer_ptr, &buffer_free);
1107 pthread_mutex_unlock (&lock);
1108 rrd_set_error ("rrdc_create: out of memory");
1112 for( i=0; i<argc; i++ ) {
1114 status = buffer_add_string (argv[i], &buffer_ptr, &buffer_free);
1117 pthread_mutex_unlock (&lock);
1118 rrd_set_error ("rrdc_create: out of memory");
1124 /* buffer ready to send? */
1125 assert (buffer_free < sizeof (buffer));
1126 buffer_size = sizeof (buffer) - buffer_free;
1127 assert (buffer[buffer_size - 1] == ' ');
1128 buffer[buffer_size - 1] = '\n';
1131 status = request (buffer, buffer_size, &res);
1132 pthread_mutex_unlock (&lock);
1135 rrd_set_error ("rrdcached: %s", res->message);
1138 response_free (res);
1140 } /* }}} int rrdc_create */
1142 int rrdc_fetch (const char *filename, /* {{{ */
1144 time_t *ret_start, time_t *ret_end,
1145 unsigned long *ret_step,
1146 unsigned long *ret_ds_num,
1147 char ***ret_ds_names,
1148 rrd_value_t **ret_data)
1154 rrdc_response_t *res;
1155 char path_buffer[PATH_MAX];
1156 const char *path_ptr;
1159 unsigned long flush_version;
1164 unsigned long ds_num;
1172 size_t current_line;
1175 if ((filename == NULL) || (cf == NULL))
1178 /* Send request {{{ */
1179 memset (buffer, 0, sizeof (buffer));
1180 buffer_ptr = &buffer[0];
1181 buffer_free = sizeof (buffer);
1183 status = buffer_add_string ("FETCH", &buffer_ptr, &buffer_free);
1187 /* change to path for rrdcached */
1188 path_ptr = get_path (filename, path_buffer);
1189 if (path_ptr == NULL)
1192 status = buffer_add_string (path_ptr, &buffer_ptr, &buffer_free);
1196 status = buffer_add_string (cf, &buffer_ptr, &buffer_free);
1200 if ((ret_start != NULL) && (*ret_start > 0))
1203 snprintf (tmp, sizeof (tmp), "%lu", (unsigned long) *ret_start);
1204 tmp[sizeof (tmp) - 1] = 0;
1205 status = buffer_add_string (tmp, &buffer_ptr, &buffer_free);
1209 if ((ret_end != NULL) && (*ret_end > 0))
1211 snprintf (tmp, sizeof (tmp), "%lu", (unsigned long) *ret_end);
1212 tmp[sizeof (tmp) - 1] = 0;
1213 status = buffer_add_string (tmp, &buffer_ptr, &buffer_free);
1219 assert (buffer_free < sizeof (buffer));
1220 buffer_size = sizeof (buffer) - buffer_free;
1221 assert (buffer[buffer_size - 1] == ' ');
1222 buffer[buffer_size - 1] = '\n';
1225 status = request (buffer, buffer_size, &res);
1229 status = res->status;
1232 rrd_set_error ("rrdcached: %s", res->message);
1233 response_free (res);
1236 /* }}} Send request */
1243 /* Macros to make error handling a little easier (i. e. less to type and
1244 * read. `BAIL_OUT' sets the error message, frees all dynamically allocated
1245 * variables and returns the provided status code. */
1246 #define BAIL_OUT(status, ...) do { \
1247 rrd_set_error ("rrdc_fetch: " __VA_ARGS__); \
1249 if (ds_names != 0) { size_t k; for (k = 0; k < ds_num; k++) free (ds_names[k]); } \
1251 response_free (res); \
1255 #define READ_NUMERIC_FIELD(name,type,var) do { \
1257 unsigned long value; \
1258 assert (current_line < res->lines_num); \
1259 status = parse_ulong_header (res->lines[current_line], &key, &value); \
1261 BAIL_OUT (-1, "Unable to parse header `%s'", name); \
1262 if (strcasecmp (key, name) != 0) \
1263 BAIL_OUT (-1, "Unexpected header line: Expected `%s', got `%s'", name, key); \
1264 var = (type) value; \
1268 if (res->lines_num < 1)
1269 BAIL_OUT (-1, "Premature end of response packet");
1271 /* We're making some very strong assumptions about the fields below. We
1272 * therefore check the version of the `flush' command first, so that later
1273 * versions can change the order of fields and it's easier to implement
1274 * backwards compatibility. */
1275 READ_NUMERIC_FIELD ("FlushVersion", unsigned long, flush_version);
1276 if (flush_version != 1)
1277 BAIL_OUT (-1, "Don't know how to handle flush format version %lu.",
1280 if (res->lines_num < 5)
1281 BAIL_OUT (-1, "Premature end of response packet");
1283 READ_NUMERIC_FIELD ("Start", time_t, start);
1284 READ_NUMERIC_FIELD ("End", time_t, end);
1286 BAIL_OUT (-1, "Malformed start and end times: start = %lu; end = %lu;",
1287 (unsigned long) start,
1288 (unsigned long) end);
1290 READ_NUMERIC_FIELD ("Step", unsigned long, step);
1292 BAIL_OUT (-1, "Invalid number for Step: %lu", step);
1294 READ_NUMERIC_FIELD ("DSCount", unsigned long, ds_num);
1296 BAIL_OUT (-1, "Invalid number for DSCount: %lu", ds_num);
1298 /* It's time to allocate some memory */
1299 ds_names = calloc ((size_t) ds_num, sizeof (*ds_names));
1300 if (ds_names == NULL)
1301 BAIL_OUT (-1, "Out of memory");
1303 status = parse_char_array_header (res->lines[current_line],
1304 &str_tmp, ds_names, (size_t) ds_num, /* alloc = */ 1);
1306 BAIL_OUT (-1, "Unable to parse header `DSName'");
1307 if (strcasecmp ("DSName", str_tmp) != 0)
1308 BAIL_OUT (-1, "Unexpected header line: Expected `DSName', got `%s'", str_tmp);
1311 data_size = ds_num * (end - start) / step;
1313 BAIL_OUT (-1, "No data returned or headers invalid.");
1315 if (res->lines_num != (6 + (data_size / ds_num)))
1316 BAIL_OUT (-1, "Got %zu lines, expected %zu",
1317 res->lines_num, (6 + (data_size / ds_num)));
1319 data = calloc (data_size, sizeof (*data));
1321 BAIL_OUT (-1, "Out of memory");
1325 for (t = start + step; t <= end; t += step, current_line++)
1329 assert (current_line < res->lines_num);
1331 status = parse_value_array_header (res->lines[current_line],
1332 &tmp, data + data_fill, (size_t) ds_num);
1334 BAIL_OUT (-1, "Cannot parse value line");
1336 data_fill += (size_t) ds_num;
1342 *ret_ds_num = ds_num;
1343 *ret_ds_names = ds_names;
1346 response_free (res);
1348 #undef READ_NUMERIC_FIELD
1350 } /* }}} int rrdc_flush */
1352 /* convenience function; if there is a daemon specified, or if we can
1353 * detect one from the environment, then flush the file. Otherwise, no-op
1355 int rrdc_flush_if_daemon (const char *opt_daemon, const char *filename) /* {{{ */
1359 rrdc_connect(opt_daemon);
1361 if (rrdc_is_connected(opt_daemon))
1364 status = rrdc_flush (filename);
1366 if (status != 0 && !rrd_test_error())
1370 rrd_set_error("rrdc_flush (%s) failed: %s",
1371 filename, rrd_strerror(status));
1373 else if (status < 0)
1375 rrd_set_error("rrdc_flush (%s) failed with status %i.",
1379 } /* if (rrdc_is_connected(..)) */
1382 } /* }}} int rrdc_flush_if_daemon */
1385 int rrdc_stats_get (rrdc_stats_t **ret_stats) /* {{{ */
1390 rrdc_response_t *res;
1395 /* Protocol example: {{{
1397 * <- 5 Statistics follow
1399 * <- UpdatesWritten: 0
1400 * <- DataSetsWritten: 0
1401 * <- TreeNodesNumber: 0
1406 pthread_mutex_lock (&lock);
1407 status = request ("STATS\n", strlen ("STATS\n"), &res);
1408 pthread_mutex_unlock (&lock);
1413 if (res->status <= 0)
1415 response_free (res);
1421 for (i = 0; i < res->lines_num; i++)
1428 key = res->lines[i];
1429 value = strchr (key, ':');
1435 while ((value[0] == ' ') || (value[0] == '\t'))
1438 s = (rrdc_stats_t *) malloc (sizeof (rrdc_stats_t));
1441 memset (s, 0, sizeof (*s));
1443 s->name = strdup (key);
1446 if ((strcmp ("QueueLength", key) == 0)
1447 || (strcmp ("TreeDepth", key) == 0)
1448 || (strcmp ("TreeNodesNumber", key) == 0))
1450 s->type = RRDC_STATS_TYPE_GAUGE;
1451 s->value.gauge = strtod (value, &endptr);
1453 else if ((strcmp ("DataSetsWritten", key) == 0)
1454 || (strcmp ("FlushesReceived", key) == 0)
1455 || (strcmp ("JournalBytes", key) == 0)
1456 || (strcmp ("JournalRotate", key) == 0)
1457 || (strcmp ("UpdatesReceived", key) == 0)
1458 || (strcmp ("UpdatesWritten", key) == 0))
1460 s->type = RRDC_STATS_TYPE_COUNTER;
1461 s->value.counter = (uint64_t) strtoll (value, &endptr, /* base = */ 0);
1469 /* Conversion failed */
1470 if (endptr == value)
1487 } /* for (i = 0; i < res->lines_num; i++) */
1489 response_free (res);
1496 } /* }}} int rrdc_stats_get */
1498 void rrdc_stats_free (rrdc_stats_t *ret_stats) /* {{{ */
1503 while (this != NULL)
1509 if (this->name != NULL)
1511 free ((char *)this->name);
1517 } /* while (this != NULL) */
1518 } /* }}} void rrdc_stats_free */
1521 * vim: set sw=2 sts=2 ts=8 et fdm=marker :