a4be363abf0b0fbb4dcc0ddf99c7ed6f5c970820
[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
24
25 #include <signal.h>
26 #include <assert.h>
27
28 #include "pazpar2.h"
29 #include "database.h"
30 #include "settings.h"
31 #include <yaz/daemon.h>
32
33 void child_handler(void *data)
34 {
35     start_proxy();
36     init_settings();
37
38     if (*global_parameters.settings_path_override)
39         settings_read(global_parameters.settings_path_override);
40     else if (global_parameters.server->settings)
41         settings_read(global_parameters.server->settings);
42     else
43         yaz_log(YLOG_WARN, "No settings-directory specified");
44     global_parameters.odr_in = odr_createmem(ODR_DECODE);
45     global_parameters.odr_out = odr_createmem(ODR_ENCODE);
46
47
48     pazpar2_event_loop();
49
50 }
51
52 static void show_version(void)
53 {
54     char yaz_version_str[80];
55     printf("Pazpar2 " PACKAGE_VERSION "\n");
56
57     yaz_version(yaz_version_str, 0);
58
59     printf("Configuration:");
60 #if HAVE_ICU
61     printf(" icu:?");
62 #endif
63     printf(" yaz:%s", yaz_version_str);
64     printf("\n");
65     exit(0);
66 }            
67
68 int main(int argc, char **argv)
69 {
70     int daemon = 0;
71     int ret;
72     int log_file_in_use = 0;
73     char *arg;
74     const char *pidfile = 0;
75     const char *uid = 0;
76
77 #ifndef WIN32
78     if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
79         yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
80 #endif
81
82     yaz_log_init_prefix("pazpar2");
83 #if YAZ_VERSIONL >= 0x03001B
84     yaz_log_xml_errors(0, YLOG_WARN);
85 #endif
86
87     while ((ret = options("dDf:h:l:p:t:u:VX", argv, argc, &arg)) != -2)
88     {
89         switch (ret)
90         {
91         case 'd':
92             global_parameters.dump_records = 1;
93             break;
94         case 'D':
95             daemon = 1;
96             break;
97         case 'f':
98             if (!read_config(arg))
99                 exit(1);
100             break;
101         case 'h':
102             strcpy(global_parameters.listener_override, arg);
103             break;
104         case 'l':
105             yaz_log_init_file(arg);
106             log_file_in_use = 1;
107             break;
108         case 'p':
109             pidfile = arg;
110             break;
111         case 't':
112             strcpy(global_parameters.settings_path_override, arg);
113             break;
114         case 'u':
115             uid = arg;
116             break;
117         case 'V':
118             show_version();
119         case 'X':
120             global_parameters.debug_mode = 1;
121             break;
122         default:
123             fprintf(stderr, "Usage: pazpar2\n"
124                     "    -d                      (show internal records)\n"
125                     "    -D                      Daemon mode (background)\n"
126                     "    -f configfile\n"
127                     "    -h [host:]port          (REST protocol listener)\n"
128                     "    -l file                 log to file\n"
129                     "    -p pidfile              PID file\n"
130                     "    -t settings\n"
131                     "    -u uid\n"
132                     "    -V                      show version\n"
133                     "    -X                      debug mode\n"
134                 );
135             exit(1);
136         }
137     }
138
139     yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
140     if (daemon && !log_file_in_use)
141     {
142         yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
143                 "mode");
144         exit(1);
145     }
146     if (!config)
147     {
148         yaz_log(YLOG_FATAL, "Load config with -f");
149         exit(1);
150     }
151     global_parameters.server = config->servers;
152
153     start_http_listener();
154     yaz_daemon("pazpar2",
155                (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
156                (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
157                child_handler, 0 /* child_data */,
158                pidfile, uid);
159     return 0;
160 }
161
162
163 /*
164  * Local variables:
165  * c-basic-offset: 4
166  * indent-tabs-mode: nil
167  * End:
168  * vim: shiftwidth=4 tabstop=8 expandtab
169  */