Refactor / reduce globals.
[pazpar2-moved-to-github.git] / src / pazpar2.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2009 Index Data
3
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #ifdef WIN32
24 #include <winsock.h>
25 #endif
26
27 #include <signal.h>
28 #include <assert.h>
29
30 #include "pazpar2.h"
31 #include "database.h"
32 #include "settings.h"
33 #include <yaz/daemon.h>
34
35 #include <yaz/sc.h>
36
37 static char *path_override = 0;
38
39 void child_handler(void *data)
40 {
41     struct conf_config *config = (struct conf_config *) data;
42     config_read_settings(config, path_override);
43
44     global_parameters.odr_in = odr_createmem(ODR_DECODE);
45     global_parameters.odr_out = odr_createmem(ODR_ENCODE);
46
47     pazpar2_event_loop();
48 }
49
50 static void show_version(void)
51 {
52     char yaz_version_str[80];
53     printf("Pazpar2 " PACKAGE_VERSION 
54 #ifdef PAZPAR2_VERSION_SHA1
55            " "
56            PAZPAR2_VERSION_SHA1
57 #endif
58 "\n");
59
60     yaz_version(yaz_version_str, 0);
61
62     printf("Configuration:");
63 #if YAZ_HAVE_ICU
64     printf(" icu:?");
65 #endif
66     printf(" yaz:%s", yaz_version_str);
67     printf("\n");
68     exit(0);
69 }            
70
71 #ifdef WIN32
72 static int tcpip_init (void)
73 {
74     WORD requested;
75     WSADATA wd;
76
77     requested = MAKEWORD(1, 1);
78     if (WSAStartup(requested, &wd))
79         return 0;
80     return 1;
81 }
82 #endif
83
84
85 static int sc_main(
86     yaz_sc_t s, 
87     int argc, char **argv)
88 {
89     int daemon = 0;
90     int ret;
91     int log_file_in_use = 0;
92     char *arg;
93     const char *pidfile = 0;
94     const char *uid = 0;
95     int session_timeout = 60;
96     const char *listener_override = 0;
97     const char *proxy_override = 0;
98     struct conf_config *config;
99
100 #ifndef WIN32
101     if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
102         yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
103 #else
104     tcpip_init();
105 #endif
106
107     yaz_log_init_prefix("pazpar2");
108     yaz_log_xml_errors(0, YLOG_WARN);
109
110     while ((ret = options("dDf:h:l:p:t:T:u:VX", argv, argc, &arg)) != -2)
111     {
112         switch (ret)
113         {
114         case 'd':
115             global_parameters.dump_records = 1;
116             break;
117         case 'D':
118             daemon = 1;
119             break;
120         case 'f':
121             config = read_config(arg);
122             if (!config)
123                 exit(1);
124             break;
125         case 'h':
126             listener_override = arg;
127             break;
128         case 'l':
129             yaz_log_init_file(arg);
130             log_file_in_use = 1;
131             break;
132         case 'p':
133             pidfile = arg;
134             break;
135         case 't':
136             path_override = arg;
137             break;
138         case 'T':
139             session_timeout = atoi(arg);
140             if (session_timeout < 9 || session_timeout > 86400)
141             {
142                 yaz_log(YLOG_FATAL, "Session timeout out of range 10..86400: %d",
143                         session_timeout);
144                 return 1;
145             }
146             global_parameters.session_timeout = session_timeout;
147             break;
148         case 'u':
149             uid = arg;
150             break;
151         case 'V':
152             show_version();
153         case 'X':
154             global_parameters.debug_mode = 1;
155             break;
156         default:
157             fprintf(stderr, "Usage: pazpar2\n"
158                     "    -d                      (show internal records)\n"
159                     "    -D                      Daemon mode (background)\n"
160                     "    -f configfile\n"
161                     "    -h [host:]port          (REST protocol listener)\n"
162                     "    -l file                 log to file\n"
163                     "    -p pidfile              PID file\n"
164                     "    -t settings\n"
165                     "    -T session_timeout\n"
166                     "    -u uid\n"
167                     "    -V                      show version\n"
168                     "    -X                      debug mode\n"
169 #ifdef WIN32
170                     "    -install                install windows service\n"
171                     "    -remove                 remove windows service\n"
172 #endif
173                 );
174             return 1;
175         }
176     }
177
178     yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
179     if (daemon && !log_file_in_use)
180     {
181         yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
182                 "mode");
183         return 1;
184     }
185     if (!config)
186     {
187         yaz_log(YLOG_FATAL, "Load config with -f");
188         return 1;
189     }
190     ret = start_http_listener(config, listener_override, proxy_override);
191     if (ret)
192         return ret; /* error starting http listener */
193
194     yaz_sc_running(s);
195
196     yaz_daemon("pazpar2",
197                (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
198                (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
199                child_handler, config /* child_data */,
200                pidfile, uid);
201     return 0;
202 }
203
204
205 static void sc_stop(yaz_sc_t s)
206 {
207     http_close_server();
208 }
209
210 int main(int argc, char **argv)
211 {
212     int ret;
213     yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
214
215     ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
216
217     yaz_sc_destroy(&s);
218     exit(ret);
219 }
220
221 /*
222  * Local variables:
223  * c-basic-offset: 4
224  * c-file-style: "Stroustrup"
225  * indent-tabs-mode: nil
226  * End:
227  * vim: shiftwidth=4 tabstop=8 expandtab
228  */
229