chiark / gitweb /
Add missing notification when scratch queued, lost a couple of commits back
[disorder] / server / stats.c
CommitLineData
d6dde5a3
RK
1/*
2 * This file is part of DisOrder
5aff007d 3 * Copyright (C) 2007, 2008 Richard Kettlewell
d6dde5a3 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
d6dde5a3 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
d6dde5a3
RK
8 * (at your option) any later version.
9 *
e7eb3a27
RK
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
d6dde5a3 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d6dde5a3 17 */
132a5a4a
RK
18/** @file server/stats.c
19 * @brief Generate server statistics
20 *
21 * This is done in a subprogram because it can be quite slow and we don't want
22 * to wedge the rest of the server for the duration.
23 */
d6dde5a3 24
05b75f8d 25#include "disorder-server.h"
d6dde5a3
RK
26
27static const struct option options[] = {
28 { "help", no_argument, 0, 'h' },
29 { "version", no_argument, 0, 'V' },
30 { "config", required_argument, 0, 'c' },
31 { "debug", no_argument, 0, 'd' },
32 { "no-debug", no_argument, 0, 'D' },
0ca6d097
RK
33 { "syslog", no_argument, 0, 's' },
34 { "no-syslog", no_argument, 0, 'S' },
d6dde5a3
RK
35 { 0, 0, 0, 0 }
36};
37
38/* display usage message and terminate */
39static void help(void) {
40 xprintf("Usage:\n"
41 " disorder-stats [OPTIONS]\n"
42 "Options:\n"
43 " --help, -h Display usage message\n"
44 " --version, -V Display version number\n"
45 " --config PATH, -c PATH Set configuration file\n"
46 " --[no-]debug, -d Turn on (off) debugging\n"
0ca6d097 47 " --[no-]syslog Force logging\n"
d6dde5a3
RK
48 "\n"
49 "Generate DisOrder database statistics.\n");
50 xfclose(stdout);
51 exit(0);
52}
53
d6dde5a3 54int main(int argc, char **argv) {
0ca6d097 55 int n, logsyslog = !isatty(2);
d6dde5a3
RK
56 char **stats;
57
58 set_progname(argv);
59 mem_init();
2e9ba080 60 if(!setlocale(LC_CTYPE, "")) disorder_fatal(errno, "error calling setlocale");
0ca6d097 61 while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) {
d6dde5a3
RK
62 switch(n) {
63 case 'h': help();
811263fd 64 case 'V': version("disorder-stats");
d6dde5a3
RK
65 case 'c': configfile = optarg; break;
66 case 'd': debugging = 1; break;
67 case 'D': debugging = 0; break;
0ca6d097
RK
68 case 'S': logsyslog = 0; break;
69 case 's': logsyslog = 1; break;
2e9ba080 70 default: disorder_fatal(0, "invalid option");
d6dde5a3
RK
71 }
72 }
0ca6d097
RK
73 if(logsyslog) {
74 openlog(progname, LOG_PID, LOG_DAEMON);
75 log_default = &log_syslog;
76 }
02ba7921 77 if(config_read(0, NULL))
2e9ba080 78 disorder_fatal(0, "cannot read configuration");
d25c4615
RK
79 trackdb_init(TRACKDB_NO_RECOVER);
80 trackdb_open(TRACKDB_NO_UPGRADE);
d6dde5a3
RK
81 stats = trackdb_stats(0);
82 while(*stats)
83 xprintf("%s\n", *stats++);
84 xfclose(stdout);
85 return 0;
86}
87
88
89/*
90Local Variables:
91c-basic-offset:2
92comment-column:40
93fill-column:79
94indent-tabs-mode:nil
95End:
96*/