25674e79946b316284c23973cd90f84bd24fbee3
[pazpar2-moved-to-github.git] / src / pazpar2.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2008 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 #if YAZ_VERSIONL >= 0x03001D
36 /* Windows service is available in YAZ 3.0.29 or later */
37 #define USE_SC 1
38 #include <yaz/sc.h>
39 #else
40 #define USE_SC 0
41 #endif
42
43 void child_handler(void *data)
44 {
45     start_proxy();
46     init_settings();
47
48     if (*global_parameters.settings_path_override)
49         settings_read(global_parameters.settings_path_override);
50     else if (global_parameters.server->settings)
51         settings_read(global_parameters.server->settings);
52     else
53         yaz_log(YLOG_WARN, "No settings-directory specified");
54     global_parameters.odr_in = odr_createmem(ODR_DECODE);
55     global_parameters.odr_out = odr_createmem(ODR_ENCODE);
56
57
58     pazpar2_event_loop();
59
60 }
61
62 static void show_version(void)
63 {
64     char yaz_version_str[80];
65     printf("Pazpar2 " PACKAGE_VERSION "\n");
66
67     yaz_version(yaz_version_str, 0);
68
69     printf("Configuration:");
70 #if HAVE_ICU
71     printf(" icu:?");
72 #endif
73     printf(" yaz:%s", yaz_version_str);
74     printf("\n");
75     exit(0);
76 }            
77
78 #ifdef WIN32
79 static int tcpip_init (void)
80 {
81     WORD requested;
82     WSADATA wd;
83
84     requested = MAKEWORD(1, 1);
85     if (WSAStartup(requested, &wd))
86         return 0;
87     return 1;
88 }
89 #endif
90
91
92 static int sc_main(
93 #if USE_SC
94     yaz_sc_t s, 
95 #endif
96     int argc, char **argv)
97 {
98     int daemon = 0;
99     int ret;
100     int log_file_in_use = 0;
101     char *arg;
102     const char *pidfile = 0;
103     const char *uid = 0;
104     int i;
105
106     for (i = 0; i < argc; i++)
107         yaz_log(YLOG_LOG, "arg%d: %s", i, argv[i]);
108 #ifndef WIN32
109     if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
110         yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
111 #else
112     tcpip_init();
113 #endif
114
115     yaz_log_init_prefix("pazpar2");
116 #if YAZ_VERSIONL >= 0x03001B
117     yaz_log_xml_errors(0, YLOG_WARN);
118 #endif
119
120
121     while ((ret = options("dDf:h:l:p:t:u:VX", argv, argc, &arg)) != -2)
122     {
123         switch (ret)
124         {
125         case 'd':
126             global_parameters.dump_records = 1;
127             break;
128         case 'D':
129             daemon = 1;
130             break;
131         case 'f':
132             if (!read_config(arg))
133                 exit(1);
134             break;
135         case 'h':
136             strcpy(global_parameters.listener_override, arg);
137             break;
138         case 'l':
139             yaz_log_init_file(arg);
140             log_file_in_use = 1;
141             break;
142         case 'p':
143             pidfile = arg;
144             break;
145         case 't':
146             strcpy(global_parameters.settings_path_override, arg);
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                     "    -u uid\n"
166                     "    -V                      show version\n"
167                     "    -X                      debug mode\n"
168                 );
169             return 1;
170         }
171     }
172
173     yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
174     if (daemon && !log_file_in_use)
175     {
176         yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
177                 "mode");
178         return 1;
179     }
180     if (!config)
181     {
182         yaz_log(YLOG_FATAL, "Load config with -f");
183         return 1;
184     }
185     global_parameters.server = config->servers;
186
187     ret = start_http_listener();
188     if (ret)
189         return ret; /* error starting http listener */
190
191 #if USE_SC
192     yaz_sc_running(s);
193 #endif
194
195     yaz_daemon("pazpar2",
196                (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
197                (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
198                child_handler, 0 /* child_data */,
199                pidfile, uid);
200     return 0;
201 }
202
203
204 #if USE_SC
205 static void sc_stop(yaz_sc_t s)
206 {
207     http_close_server();
208 }
209 #endif
210
211 int main(int argc, char **argv)
212 {
213     int ret;
214 #if USE_SC
215     yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
216
217     ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
218
219     yaz_sc_destroy(&s);
220 #else
221     ret = sc_main(argc, argv);
222 #endif
223     exit(ret);
224 }
225
226 /*
227  * Local variables:
228  * c-basic-offset: 4
229  * indent-tabs-mode: nil
230  * End:
231  * vim: shiftwidth=4 tabstop=8 expandtab
232  */