Renaming ntmake.pl to ntmake.PL (r1742) had unforseen side effects. At least
[rrdtool.git] / src / rrd_flush.c
1 /**
2  * RRDTool - src/rrd_flush.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 "rrd_tool.h"
23 #include "rrd_client.h"
24
25 int rrd_cmd_flush (int argc, char **argv)
26 {
27     char *opt_daemon = NULL;
28     int status;
29     int i;
30
31     /* initialize getopt */
32     optind = 0;
33     opterr = 0;
34
35     while (42)
36     {
37         int opt;
38         static struct option long_options[] =
39         {
40             {"daemon", required_argument, 0, 'd'},
41             {0, 0, 0, 0}
42         };
43
44         opt = getopt_long(argc, argv, "d:", long_options, NULL);
45
46         if (opt == -1)
47             break;
48
49         switch (opt)
50         {
51             case 'd':
52                 if (opt_daemon != NULL)
53                     free (opt_daemon);
54                 opt_daemon = strdup (optarg);
55                 if (opt_daemon == NULL)
56                 {
57                     rrd_set_error ("strdup failed.");
58                     return (-1);
59                 }
60                 break;
61
62             default:
63                 rrd_set_error ("Usage: rrdtool %s [--daemon <addr>] <file>",
64                         argv[0]);
65                 return (-1);
66         }
67     } /* while (42) */
68
69     if ((argc - optind) < 1)
70     {
71         rrd_set_error ("Usage: rrdtool %s [--daemon <addr>] <file> [<file> ...]", argv[0]);
72         return (-1);
73     }
74
75     /* try to connect to rrdcached */
76     status = rrdc_connect(opt_daemon);
77     if (opt_daemon) free(opt_daemon);
78     if (status != 0) return status;
79
80     if (! rrdc_is_connected(opt_daemon))
81     {
82         rrd_set_error ("Daemon address unknown. Please use the \"--daemon\" "
83                 "option to set an address on the command line or set the "
84                 "\"%s\" environment variable.",
85                 ENV_RRDCACHED_ADDRESS);
86         return (-1);
87     }
88
89     status = 0;
90     for (int i = optind; i < argc; i++)
91     {
92         status = rrdc_flush(argv[i]);
93         if (status) break;
94     }
95
96     return ((status == 0) ? 0 : -1);
97 } /* int rrd_flush */
98
99 /*
100  * vim: set sw=4 sts=4 et fdm=marker :
101  */