0c0376d94fa91c135303c8ca34161548254df400
[sort-networks.git] / src / sn-normalize.c
1 /**
2  * collectd - src/sn-normalize.c
3  * Copyright (C) 2008  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 <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25
26 #include "sn_network.h"
27
28 void exit_usage (const char *name)
29 {
30   printf ("%s [file]\n", name);
31   exit (1);
32 }
33
34 int main (int argc, char **argv)
35 {
36   sn_network_t *n;
37
38   if (argc > 2)
39   {
40     exit_usage (argv[0]);
41   }
42   else if (argc == 2)
43   {
44     if ((strcmp ("-h", argv[1]) == 0)
45         || (strcmp ("--help", argv[1]) == 0)
46         || (strcmp ("-help", argv[1]) == 0))
47       exit_usage (argv[0]);
48
49     n = sn_network_read_file (argv[1]);
50   }
51   else
52   {
53     n = sn_network_read (stdin);
54   }
55
56   if (n == NULL)
57   {
58     printf ("n == NULL!\n");
59     return (1);
60   }
61
62   sn_network_normalize (n);
63   sn_network_compress (n);
64
65   sn_network_write (n, stdout);
66
67   return (0);
68 } /* int main */
69
70 /* vim: set shiftwidth=2 softtabstop=2 : */