2 * collectd - src/serial.c
3 * Copyright (C) 2005,2006 David Bacher
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.
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.
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
20 * David Bacher <drbacher at gmail.com>
21 * Florian octo Forster <octo at verplant.org>
29 # error "No applicable input method."
32 static void serial_submit (const char *type_instance,
33 counter_t rx, counter_t tx)
36 value_list_t vl = VALUE_LIST_INIT;
38 values[0].counter = rx;
39 values[1].counter = tx;
43 vl.time = time (NULL);
44 strcpy (vl.host, hostname_g);
45 strcpy (vl.plugin, "serial");
46 strncpy (vl.type_instance, type_instance,
47 sizeof (vl.type_instance));
49 plugin_dispatch_values ("serial_octets", &vl);
52 static int serial_read (void)
64 /* there are a variety of names for the serial device */
65 if ((fh = fopen ("/proc/tty/driver/serial", "r")) == NULL &&
66 (fh = fopen ("/proc/tty/driver/ttyS", "r")) == NULL)
69 WARNING ("serial: fopen: %s",
70 sstrerror (errno, errbuf, sizeof (errbuf)));
74 while (fgets (buffer, sizeof (buffer), fh) != NULL)
76 int have_rx = 0, have_tx = 0;
78 numfields = strsplit (buffer, fields, 16);
84 * 0: uart:16550A port:000003F8 irq:4 tx:0 rx:0
85 * 1: uart:16550A port:000002F8 irq:3 tx:0 rx:0
87 len = strlen (fields[0]) - 1;
90 if (fields[0][len] != ':')
92 fields[0][len] = '\0';
94 for (i = 1; i < numfields; i++)
96 len = strlen (fields[i]);
100 if (strncmp (fields[i], "tx:", 3) == 0)
102 tx = atoll (fields[i] + 3);
105 else if (strncmp (fields[i], "rx:", 3) == 0)
107 rx = atoll (fields[i] + 3);
112 if ((have_rx == 0) || (have_tx == 0))
115 serial_submit (fields[0], rx, tx);
120 } /* int serial_read */
122 void module_register (void)
124 plugin_register_read ("serial", serial_read);
125 } /* void module_register */