1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2012 Index Data
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
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
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
34 #include "parameters.h"
37 #include <yaz/daemon.h>
39 #include <yaz/options.h>
47 static struct conf_config *sc_stop_config = 0;
49 void child_handler(void *data)
51 struct conf_config *config = (struct conf_config *) data;
53 config_process_events(config);
55 config_destroy(config);
58 static void show_version(void)
60 char yaz_version_str[80];
61 printf("Pazpar2 " PACKAGE_VERSION
62 #ifdef PAZPAR2_VERSION_SHA1
68 yaz_version(yaz_version_str, 0);
70 printf("Configuration:");
72 printf(" icu:enabled");
74 printf(" icu:disabled");
76 printf(" yaz:%s", yaz_version_str);
82 static int tcpip_init (void)
87 requested = MAKEWORD(1, 1);
88 if (WSAStartup(requested, &wd))
97 int argc, char **argv)
101 int log_file_in_use = 0;
103 const char *pidfile = 0;
105 const char *listener_override = 0;
106 const char *config_fname = 0;
107 const char *record_fname = 0;
108 struct conf_config *config = 0;
112 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
113 yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
118 yaz_log_init_prefix("pazpar2");
119 yaz_log_xml_errors(0, YLOG_WARN);
121 while ((ret = options("dDf:h:l:p:R:tu:v:VX", argv, argc, &arg)) != -2)
126 global_parameters.dump_records++;
135 listener_override = arg;
138 yaz_log_init_file(arg);
146 global_parameters.predictable_sessions = 1;
155 yaz_log_init_level(yaz_log_mask_str(arg));
169 yaz_log(YLOG_FATAL|YLOG_ERRNO, "chdir %s", arg);
174 global_parameters.debug_mode++;
175 global_parameters.predictable_sessions = 1;
178 fprintf(stderr, "Usage: pazpar2\n"
179 " -d Show internal records\n"
180 " -D Daemon mode (background)\n"
181 " -f configfile Configuration\n"
182 " -h [host:]port Listener port\n"
183 " -l file Log to file\n"
184 " -p pidfile PID file\n"
185 " -R recfile HTTP recording file\n"
186 " -t Test configuration\n"
187 " -u uid Change user to uid\n"
189 " -v level Set log level\n"
190 " -w dir Working directory\n"
193 " -install Install windows service\n"
194 " -remove Remove windows service\n"
202 yaz_log(YLOG_FATAL, "Configuration must be given with option -f");
205 pazpar2_mutex_init();
207 config = config_create(config_fname, global_parameters.dump_records);
210 sc_stop_config = config;
213 yaz_log(YLOG_LOG, "Configuration OK");
214 config_destroy(config);
218 yaz_log(YLOG_LOG, "Pazpar2 " VERSION " "
219 #ifdef PAZPAR2_VERSION_SHA1
225 if (daemon && !log_file_in_use)
227 yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
231 ret = config_start_listeners(config, listener_override, record_fname);
233 return ret; /* error starting http listener */
237 yaz_daemon("pazpar2",
238 (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
239 (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
240 child_handler, config /* child_data */,
247 static void sc_stop(yaz_sc_t s)
249 config_stop_listeners(sc_stop_config);
252 int main(int argc, char **argv)
255 yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
261 ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
276 * c-file-style: "Stroustrup"
277 * indent-tabs-mode: nil
279 * vim: shiftwidth=4 tabstop=8 expandtab