e3ab4d7ed0708c4f572468d4e131c37e8b255d7f
[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 #include <yaz/sc.h>
35
36 void child_handler(void *data)
37 {
38     start_proxy();
39     init_settings();
40
41     if (*global_parameters.settings_path_override)
42         settings_read(global_parameters.settings_path_override);
43     else if (global_parameters.server->settings)
44         settings_read(global_parameters.server->settings);
45     else
46         yaz_log(YLOG_WARN, "No settings-directory specified");
47     global_parameters.odr_in = odr_createmem(ODR_DECODE);
48     global_parameters.odr_out = odr_createmem(ODR_ENCODE);
49
50
51     pazpar2_event_loop();
52
53 }
54
55 static void show_version(void)
56 {
57     char yaz_version_str[80];
58     printf("Pazpar2 " PACKAGE_VERSION "\n");
59
60     yaz_version(yaz_version_str, 0);
61
62     printf("Configuration:");
63 #if 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(yaz_sc_t s, int argc, char **argv)
86 {
87     int daemon = 0;
88     int ret;
89     int log_file_in_use = 0;
90     char *arg;
91     const char *pidfile = 0;
92     const char *uid = 0;
93     int i;
94
95     for (i = 0; i < argc; i++)
96         yaz_log(YLOG_LOG, "arg%d: %s", i, argv[i]);
97 #ifndef WIN32
98     if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
99         yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
100 #else
101     tcpip_init();
102 #endif
103
104     yaz_log_init_prefix("pazpar2");
105 #if YAZ_VERSIONL >= 0x03001B
106     yaz_log_xml_errors(0, YLOG_WARN);
107 #endif
108
109
110     while ((ret = options("dDf:h:l:p: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             if (!read_config(arg))
122                 exit(1);
123             break;
124         case 'h':
125             strcpy(global_parameters.listener_override, arg);
126             break;
127         case 'l':
128             yaz_log_init_file(arg);
129             log_file_in_use = 1;
130             break;
131         case 'p':
132             pidfile = arg;
133             break;
134         case 't':
135             strcpy(global_parameters.settings_path_override, arg);
136             break;
137         case 'u':
138             uid = arg;
139             break;
140         case 'V':
141             show_version();
142         case 'X':
143             global_parameters.debug_mode = 1;
144             break;
145         default:
146             fprintf(stderr, "Usage: pazpar2\n"
147                     "    -d                      (show internal records)\n"
148                     "    -D                      Daemon mode (background)\n"
149                     "    -f configfile\n"
150                     "    -h [host:]port          (REST protocol listener)\n"
151                     "    -l file                 log to file\n"
152                     "    -p pidfile              PID file\n"
153                     "    -t settings\n"
154                     "    -u uid\n"
155                     "    -V                      show version\n"
156                     "    -X                      debug mode\n"
157                 );
158             return 1;
159         }
160     }
161
162     yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
163     if (daemon && !log_file_in_use)
164     {
165         yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
166                 "mode");
167         return 1;
168     }
169     if (!config)
170     {
171         yaz_log(YLOG_FATAL, "Load config with -f");
172         return 1;
173     }
174     global_parameters.server = config->servers;
175
176     ret = start_http_listener();
177     if (ret)
178         return ret; /* error starting http listener */
179
180     yaz_sc_running(s);
181
182     yaz_daemon("pazpar2",
183                (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
184                (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
185                child_handler, 0 /* child_data */,
186                pidfile, uid);
187     return 0;
188 }
189
190
191 static void sc_stop(yaz_sc_t s)
192 {
193     http_close_server();
194 }
195
196 int main(int argc, char **argv)
197 {
198     int ret;
199     yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
200
201     ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
202
203     yaz_sc_destroy(&s);
204     exit(ret);
205 }
206
207 /*
208  * Local variables:
209  * c-basic-offset: 4
210  * indent-tabs-mode: nil
211  * End:
212  * vim: shiftwidth=4 tabstop=8 expandtab
213  */