49714176374a2979a24e5c161ac6b303d184708f
[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 if (strcasecmp (fields[1], "DERIVE") == 0)
72     dsrc->type = DS_TYPE_DERIVE;
73   else if (strcasecmp (fields[1], "ABSOLUTE") == 0)
74     dsrc->type = DS_TYPE_ABSOLUTE;
75   else
76   {
77     ERROR ("(fields[1] = %s) != (GAUGE || COUNTER || DERIVE || ABSOLUTE)", fields[1]);
78     return (-1);
79   }
80
81   if (strcasecmp (fields[2], "U") == 0)
82     dsrc->min = NAN;
83   else
84     dsrc->min = atof (fields[2]);
85
86   if (strcasecmp (fields[3], "U") == 0)
87     dsrc->max = NAN;
88   else
89     dsrc->max = atof (fields[3]);
90
91   return (0);
92 } /* int parse_ds */
93
94 static void parse_line (char *buf)
95 {
96   char  *fields[64];
97   size_t fields_num;
98   data_set_t *ds;
99   int i;
100
101   fields_num = strsplit (buf, fields, 64);
102   if (fields_num < 2)
103     return;
104
105   ds = (data_set_t *) malloc (sizeof (data_set_t));
106   if (ds == NULL)
107     return;
108
109   memset (ds, '\0', sizeof (data_set_t));
110
111   sstrncpy (ds->type, fields[0], sizeof (ds->type));
112
113   ds->ds_num = fields_num - 1;
114   ds->ds = (data_source_t *) calloc (ds->ds_num, sizeof (data_source_t));
115   if (ds->ds == NULL)
116     return;
117
118   for (i = 0; i < ds->ds_num; i++)
119     if (parse_ds (ds->ds + i, fields[i + 1], strlen (fields[i + 1])) != 0)
120     {
121       sfree (ds->ds);
122       ERROR ("types_list: parse_line: Cannot parse data source #%i "
123           "of data set %s", i, ds->type);
124       return;
125     }
126
127   plugin_register_data_set (ds);
128
129   sfree (ds->ds);
130   sfree (ds);
131 } /* void parse_line */
132
133 static void parse_file (FILE *fh)
134 {
135   char buf[4096];
136   size_t buf_len;
137
138   while (fgets (buf, sizeof (buf), fh) != NULL)
139   {
140     buf_len = strlen (buf);
141
142     if (buf_len >= 4095)
143     {
144       NOTICE ("Skipping line with more than 4095 characters.");
145       do
146       {
147         if (fgets (buf, sizeof (buf), fh) == NULL)
148           break;
149         buf_len = strlen (buf);
150       } while (buf_len >= 4095);
151       continue;
152     } /* if (buf_len >= 4095) */
153
154     if ((buf_len == 0) || (buf[0] == '#'))
155       continue;
156
157     while ((buf_len > 0) && ((buf[buf_len - 1] == '\n')
158           || (buf[buf_len - 1] == '\n')))
159       buf[--buf_len] = '\0';
160
161     if (buf_len == 0)
162       continue;
163
164     parse_line (buf);
165   } /* while (fgets) */
166 } /* void parse_file */
167
168 int read_types_list (const char *file)
169 {
170   FILE *fh;
171
172   if (file == NULL)
173     return (-1);
174
175   fh = fopen (file, "r");
176   if (fh == NULL)
177   {
178     char errbuf[1024];
179     fprintf (stderr, "Failed to open types database `%s': %s.\n",
180         file, sstrerror (errno, errbuf, sizeof (errbuf)));
181     ERROR ("Failed to open types database `%s': %s",
182         file, sstrerror (errno, errbuf, sizeof (errbuf)));
183     return (-1);
184   }
185
186   parse_file (fh);
187
188   fclose (fh);
189   fh = NULL;
190
191   DEBUG ("Done parsing `%s'", file);
192
193   return (0);
194 } /* int read_types_list */
195
196 /*
197  * vim: shiftwidth=2:softtabstop=2:tabstop=8
198  */