Merge branch 'ff/avl-tree'
[collectd.git] / src / serial.c
1 /**
2  * collectd - src/serial.c
3  * Copyright (C) 2005,2006  David Bacher
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; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   David Bacher <drbacher at gmail.com>
21  *   Florian octo Forster <octo at verplant.org>
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "plugin.h"
27
28 #if defined(KERNEL_LINUX)
29 # define SERIAL_HAVE_READ 1
30 #else
31 # define SERIAL_HAVE_READ 0
32 #endif
33
34 static data_source_t octets_dsrc[2] =
35 {
36         {"rx", DS_TYPE_COUNTER, 0, 4294967295.0},
37         {"tx", DS_TYPE_COUNTER, 0, 4294967295.0}
38 };
39
40 static data_set_t octets_ds =
41 {
42         "serial_octets", 2, octets_dsrc
43 };
44
45 #if SERIAL_HAVE_READ
46 static void serial_submit (const char *type_instance,
47                 counter_t rx, counter_t tx)
48 {
49         value_t values[2];
50         value_list_t vl = VALUE_LIST_INIT;
51
52         values[0].counter = rx;
53         values[1].counter = tx;
54
55         vl.values = values;
56         vl.values_len = 2;
57         vl.time = time (NULL);
58         strcpy (vl.host, hostname);
59         strcpy (vl.plugin, "serial");
60         strncpy (vl.type_instance, type_instance,
61                         sizeof (vl.type_instance));
62
63         plugin_dispatch_values ("serial_octets", &vl);
64 }
65
66 static int serial_read (void)
67 {
68 #ifdef KERNEL_LINUX
69         FILE *fh;
70         char buffer[1024];
71
72         counter_t rx = 0;
73         counter_t tx = 0;
74         
75         char *fields[16];
76         int i, numfields;
77         int len;
78
79         /* there are a variety of names for the serial device */
80         if ((fh = fopen ("/proc/tty/driver/serial", "r")) == NULL &&
81                 (fh = fopen ("/proc/tty/driver/ttyS", "r")) == NULL)
82         {
83                 syslog (LOG_WARNING, "serial: fopen: %s", strerror (errno));
84                 return (-1);
85         }
86
87         while (fgets (buffer, sizeof (buffer), fh) != NULL)
88         {
89                 int have_rx = 0, have_tx = 0;
90
91                 numfields = strsplit (buffer, fields, 16);
92
93                 if (numfields < 6)
94                         continue;
95
96                 /*
97                  * 0: uart:16550A port:000003F8 irq:4 tx:0 rx:0
98                  * 1: uart:16550A port:000002F8 irq:3 tx:0 rx:0
99                  */
100                 len = strlen (fields[0]) - 1;
101                 if (len < 1)
102                         continue;
103                 if (fields[0][len] != ':')
104                         continue;
105                 fields[0][len] = '\0';
106
107                 for (i = 1; i < numfields; i++)
108                 {
109                         len = strlen (fields[i]);
110                         if (len < 4)
111                                 continue;
112
113                         if (strncmp (fields[i], "tx:", 3) == 0)
114                         {
115                                 tx = atoll (fields[i] + 3);
116                                 have_tx++;
117                         }
118                         else if (strncmp (fields[i], "rx:", 3) == 0)
119                         {
120                                 rx = atoll (fields[i] + 3);
121                                 have_rx++;
122                         }
123                 }
124
125                 if ((have_rx == 0) || (have_tx == 0))
126                         continue;
127
128                 serial_submit (fields[0], rx, tx);
129         }
130
131         fclose (fh);
132         return (0);
133 #endif /* KERNEL_LINUX */
134 } /* int serial_read */
135 #endif /* SERIAL_HAVE_READ */
136
137 void module_register (void)
138 {
139         plugin_register_data_set (&octets_ds);
140
141 #if SERIAL_HAVE_READ
142         plugin_register_read ("serial", serial_read);
143 #endif /* SERIAL_HAVE_READ */
144 }