-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
154 lines (130 loc) · 3.76 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* vim: set noet nosta sw=4 ts=4 ft=c : */
/*
Copyright (c) 2011-2015, Mahlon E. Smith <mahlon@martini.nu>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Mahlon E. Smith nor the names of his
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "volta.h"
#include "db.h"
#include "lua.h"
struct v_globals v;
/*
* Parse command line options, perform actions, and enter accept loop.
*
*/
int
main( int argc, char *argv[] )
{
#ifdef DEBUG
/* debugmode set at compile time? default to crankin' up the level */
v.debugmode = 99;
#else
v.debugmode = 0;
#endif
/* defaults and global initalizations */
strcpy( v.dbname, "volta.db" );
char create_db[30] = "";
v.timer.db_lastcheck = 0;
v.timer.start = time( NULL );
v.timer.lines = 0;
v.lua = luaV_setup();
/* get_opt vars */
int opt = 0;
extern char *optarg;
extern int opterr, optind, optopt;
/* parse options */
opterr = 0;
while ( (opt = getopt( argc, argv, "c:d:f:hv" )) != -1 ) {
switch ( opt ) {
/* create a new cdb file from ascii input */
case 'c':
strncpy( create_db, optarg, sizeof(create_db) );
break;
/* debug */
case 'd':
if ( optarg[2] == '-' ) {
argc++; argv -= 1;
v.debugmode = 1;
}
sscanf( optarg, "%hu", &v.debugmode );
break;
/* database filename */
case 'f':
strncpy( v.dbname, optarg, sizeof(v.dbname) );
break;
/* help */
case 'h':
usage( argv[0] );
return( 0 );
/* version */
case 'v':
printf( "%s %s\n", PROG, VERSION );
return( 0 );
/* unknown option or option argument missing */
case '?':
switch( optopt ) {
case 'd': /* no debug argument, default to level 1 */
v.debugmode = 1;
break;
default:
usage( argv[0] );
return( 1 );
}
default:
break;
}
}
argc -= optind;
argv += optind;
/* create a new database if requested */
if ( (int)strlen(create_db) > 0 ) {
return( db_create_new( create_db ) );
}
/* enter stdin parsing loop */
(void)signal( SIGINT, shutdown_handler );
unsigned char exitval = accept_loop();
shutdown_actions();
return( exitval );
}
/*
* Perform actions in preparation for a graceful shutdown.
*
*/
void
shutdown_actions( void )
{
lua_close( v.lua );
cdb_free( &v.db );
close( v.db_fd );
report_speed();
}
/*
* Signal handler for shutting things down.
*
*/
void
shutdown_handler( int sig )
{
debug( 1, LOC, "Exiting via signal %d.\n", sig );
shutdown_actions();
exit( 0 );
}