Global: collectd → libsortnetwork
[sort-networks.git] / src / sn-cut.c
1 /**
2  * libsortnetwork - src/sn-cut.c
3  * Copyright (C) 2008-2010  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 <ff at octo.it>
20  **/
21
22 #include "config.h"
23
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <strings.h>
27
28 #include "sn_network.h"
29
30 void exit_usage (const char *name)
31 {
32   printf ("%s <position> <min|max>\n", name);
33   exit (EXIT_FAILURE);
34 }
35
36 int main (int argc, char **argv)
37 {
38   sn_network_t *n;
39
40   int pos = 0;
41   enum sn_network_cut_dir_e dir = DIR_MIN;
42
43   if (argc != 3)
44     exit_usage (argv[0]);
45
46   pos = atoi (argv[1]);
47   if (strcasecmp ("max", argv[2]) == 0)
48     dir = DIR_MAX;
49
50   n = sn_network_read (stdin);
51   if (n == NULL)
52   {
53     printf ("n == NULL!\n");
54     return (1);
55   }
56
57   sn_network_cut_at (n, pos, dir);
58   sn_network_compress (n);
59
60   sn_network_write (n, stdout);
61
62   exit (EXIT_SUCCESS);
63 } /* int main */
64
65 /* vim: set shiftwidth=2 softtabstop=2 : */