Merge branch 'collectd-4.4' into collectd-4.5
[collectd.git] / src / types_list.c
1 /**
2  * collectd - src/types_list.c
3  * Copyright (C) 2007  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24
25 #include "plugin.h"
26 #include "configfile.h"
27
28 static int parse_ds (data_source_t *dsrc, char *buf, size_t buf_len)
29 {
30   char *dummy;
31   char *saveptr;
32   char *fields[8];
33   int   fields_num;
34
35   if (buf_len < 11)
36   {
37     ERROR ("parse_ds: (buf_len = %zu) < 11", buf_len);
38     return (-1);
39   }
40
41   if (buf[buf_len - 1] == ',')
42   {
43     buf_len--;
44     buf[buf_len] = '\0';
45   }
46
47   dummy = buf;
48   saveptr = NULL;
49
50   fields_num = 0;
51   while (fields_num < 8)
52   {
53     if ((fields[fields_num] = strtok_r (dummy, ":", &saveptr)) == NULL)
54       break;
55     dummy = NULL;
56     fields_num++;
57   }
58
59   if (fields_num != 4)
60   {
61     ERROR ("parse_ds: (fields_num = %i) != 4", fields_num);
62     return (-1);
63   }
64
65   sstrncpy (dsrc->name, fields[0], sizeof (dsrc->name));
66
67   if (strcasecmp (fields[1], "GAUGE") == 0)
68     dsrc->type = DS_TYPE_GAUGE;
69   else if (strcasecmp (fields[1], "COUNTER") == 0)
70     dsrc->type = DS_TYPE_COUNTER;
71   else
72   {
73     ERROR ("(fields[1] = %s) != (GAUGE || COUNTER)", fields[1]);
74     return (-1);
75   }
76
77   if (strcasecmp (fields[2], "U") == 0)
78     dsrc->min = NAN;
79   else
80     dsrc->min = atof (fields[2]);
81
82   if (strcasecmp (fields[3], "U") == 0)
83     dsrc->max = NAN;
84   else
85     dsrc->max = atof (fields[3]);
86
87   return (0);
88 } /* int parse_ds */
89
90 static void parse_line (char *buf)
91 {
92   char  *fields[64];
93   size_t fields_num;
94   data_set_t *ds;
95   int i;
96
97   fields_num = strsplit (buf, fields, 64);
98   if (fields_num < 2)
99     return;
100
101   ds = (data_set_t *) malloc (sizeof (data_set_t));
102   if (ds == NULL)
103     return;
104
105   memset (ds, '\0', sizeof (data_set_t));
106
107   sstrncpy (ds->type, fields[0], sizeof (ds->type));
108
109   ds->ds_num = fields_num - 1;
110   ds->ds = (data_source_t *) calloc (ds->ds_num, sizeof (data_source_t));
111   if (ds->ds == NULL)
112     return;
113
114   for (i = 0; i < ds->ds_num; i++)
115     if (parse_ds (ds->ds + i, fields[i + 1], strlen (fields[i + 1])) != 0)
116     {
117       sfree (ds->ds);
118       ERROR ("types_list: parse_line: Cannot parse data source #%i "
119           "of data set %s", i, ds->type);
120       return;
121     }
122
123   plugin_register_data_set (ds);
124
125   sfree (ds->ds);
126   sfree (ds);
127 } /* void parse_line */
128
129 static void parse_file (FILE *fh)
130 {
131   char buf[4096];
132   size_t buf_len;
133
134   while (fgets (buf, sizeof (buf), fh) != NULL)
135   {
136     buf_len = strlen (buf);
137
138     if (buf_len >= 4095)
139     {
140       NOTICE ("Skipping line with more than 4095 characters.");
141       do
142       {
143         if (fgets (buf, sizeof (buf), fh) == NULL)
144           break;
145         buf_len = strlen (buf);
146       } while (buf_len >= 4095);
147       continue;
148     } /* if (buf_len >= 4095) */
149
150     if ((buf_len == 0) || (buf[0] == '#'))
151       continue;
152
153     while ((buf_len > 0) && ((buf[buf_len - 1] == '\n')
154           || (buf[buf_len - 1] == '\n')))
155       buf[--buf_len] = '\0';
156
157     if (buf_len == 0)
158       continue;
159
160     parse_line (buf);
161   } /* while (fgets) */
162 } /* void parse_file */
163
164 int read_types_list (const char *file)
165 {
166   FILE *fh;
167
168   if (file == NULL)
169     return (-1);
170
171   fh = fopen (file, "r");
172   if (fh == NULL)
173   {
174     char errbuf[1024];
175     ERROR ("open (%s) failed: %s", 
176         file, sstrerror (errno, errbuf, sizeof (errbuf)));
177     return (-1);
178   }
179
180   parse_file (fh);
181
182   fclose (fh);
183   fh = NULL;
184
185   DEBUG ("Done parsing `%s'", file);
186
187   return (0);
188 } /* int read_types_list */
189
190 /*
191  * vim: shiftwidth=2:softtabstop=2:tabstop=8
192  */