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
|
/*
* bitz-server, An ICAP server implementation in C++
* Copyright (C) 2012 Uditha Atukorala
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef BITZ_SERVER_H
#define BITZ_SERVER_H
#include "bitz/manager.h"
#include <csignal>
namespace bitz {
namespace server {
/**
* Structure to hold server globals initialised
* by the init() method.
*/
struct server_t {
int pid_handle;
volatile sig_atomic_t terminating;
bool daemon;
bitz::Manager * manager;
};
/**
* Structure to hold command line options.
*/
struct options_t {
int debug_flag;
std::string config_file;
};
void init();
void init_signal_handlers();
void init_sigchld_handler();
void init_sigterm_handler();
void init_sigquit_handler();
void init_sigint_handler();
void sigchld_handler( int sig, siginfo_t * sig_info, void * context );
void sigterm_handler( int sig, siginfo_t * sig_info, void * context );
void sigquit_handler( int sig, siginfo_t * sig_info, void * context );
void sigint_handler( int sig, siginfo_t * sig_info, void * context );
void daemonize( const char * run_dir, const char * pid_file );
void shutdown();
void termination_handler( int sig, siginfo_t * sig_info, void * context );
/**
* Read command line options and return a options_t structure.
* This method will terminate the program with an exit status
* of EXIT_FAILURE if any errors are found while reading options.
* If --version or --help options are found this will print the
* appropriate message to the standard output and terminate with
* EXIT_SUCCESS.
*
* @param argc same as main() argc
* @param argv same as main() argv
* @return read options
*/
options_t read_options( int argc, char **argv );
/**
* Print version information to the standard output
*/
void print_version();
/**
* Print usage message to the standard output
*/
void print_usage();
/**
* Start the server by creating a bitz::Manager instance and spawn
* workers.
*
* @param port port number to listen to
* @param children number of children to spawn
* @param max_request maximum number of requests that a child will serve
*/
void start( int port, unsigned int children, int max_requests );
/**
* Run the server managing workers until a termination signal is received.
* This process will never return, instead the termination signal will
* end the process.
*/
void run();
} /* end of namespace server */
} /* end of namespace bitz */
#endif /* !BITZ_SERVER_H */
|