chiark / gitweb /
Complete README changes for scripts/setup. README.{mac,freebsd} are
[disorder] / server / stats.c
CommitLineData
d6dde5a3
RK
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2007 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
21#include <config.h>
22#include "types.h"
23
24#include <locale.h>
25#include <stdio.h>
26#include <errno.h>
27#include <pcre.h>
28#include <getopt.h>
0ca6d097 29#include <syslog.h>
95daf696 30#include <unistd.h>
d6dde5a3
RK
31
32#include "defs.h"
33#include "mem.h"
34#include "log.h"
35#include "syscalls.h"
36#include "configuration.h"
5df73aeb 37#include "rights.h"
d6dde5a3
RK
38#include "trackdb.h"
39
40static const struct option options[] = {
41 { "help", no_argument, 0, 'h' },
42 { "version", no_argument, 0, 'V' },
43 { "config", required_argument, 0, 'c' },
44 { "debug", no_argument, 0, 'd' },
45 { "no-debug", no_argument, 0, 'D' },
0ca6d097
RK
46 { "syslog", no_argument, 0, 's' },
47 { "no-syslog", no_argument, 0, 'S' },
d6dde5a3
RK
48 { 0, 0, 0, 0 }
49};
50
51/* display usage message and terminate */
52static void help(void) {
53 xprintf("Usage:\n"
54 " disorder-stats [OPTIONS]\n"
55 "Options:\n"
56 " --help, -h Display usage message\n"
57 " --version, -V Display version number\n"
58 " --config PATH, -c PATH Set configuration file\n"
59 " --[no-]debug, -d Turn on (off) debugging\n"
0ca6d097 60 " --[no-]syslog Force logging\n"
d6dde5a3
RK
61 "\n"
62 "Generate DisOrder database statistics.\n");
63 xfclose(stdout);
64 exit(0);
65}
66
67/* display version number and terminate */
68static void version(void) {
a05e4467 69 xprintf("%s", disorder_version_string);
d6dde5a3
RK
70 xfclose(stdout);
71 exit(0);
72}
73
74int main(int argc, char **argv) {
0ca6d097 75 int n, logsyslog = !isatty(2);
d6dde5a3
RK
76 char **stats;
77
78 set_progname(argv);
79 mem_init();
80 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
0ca6d097 81 while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) {
d6dde5a3
RK
82 switch(n) {
83 case 'h': help();
84 case 'V': version();
85 case 'c': configfile = optarg; break;
86 case 'd': debugging = 1; break;
87 case 'D': debugging = 0; break;
0ca6d097
RK
88 case 'S': logsyslog = 0; break;
89 case 's': logsyslog = 1; break;
d6dde5a3
RK
90 default: fatal(0, "invalid option");
91 }
92 }
0ca6d097
RK
93 if(logsyslog) {
94 openlog(progname, LOG_PID, LOG_DAEMON);
95 log_default = &log_syslog;
96 }
d6dde5a3
RK
97 if(config_read(0))
98 fatal(0, "cannot read configuration");
d25c4615
RK
99 trackdb_init(TRACKDB_NO_RECOVER);
100 trackdb_open(TRACKDB_NO_UPGRADE);
d6dde5a3
RK
101 stats = trackdb_stats(0);
102 while(*stats)
103 xprintf("%s\n", *stats++);
104 xfclose(stdout);
105 return 0;
106}
107
108
109/*
110Local Variables:
111c-basic-offset:2
112comment-column:40
113fill-column:79
114indent-tabs-mode:nil
115End:
116*/