1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2009 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
33 #include <yaz/daemon.h>
37 void child_handler(void *data)
42 if (*global_parameters.settings_path_override)
43 settings_read(global_parameters.settings_path_override);
44 else if (global_parameters.server->settings)
45 settings_read(global_parameters.server->settings);
47 yaz_log(YLOG_WARN, "No settings-directory specified");
48 global_parameters.odr_in = odr_createmem(ODR_DECODE);
49 global_parameters.odr_out = odr_createmem(ODR_ENCODE);
56 static void show_version(void)
58 char yaz_version_str[80];
59 printf("Pazpar2 " PACKAGE_VERSION
60 #ifdef PAZPAR2_VERSION_SHA1
66 yaz_version(yaz_version_str, 0);
68 printf("Configuration:");
72 printf(" yaz:%s", yaz_version_str);
78 static int tcpip_init (void)
83 requested = MAKEWORD(1, 1);
84 if (WSAStartup(requested, &wd))
93 int argc, char **argv)
97 int log_file_in_use = 0;
99 const char *pidfile = 0;
101 int session_timeout = 60; // session timeout
104 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
105 yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
110 yaz_log_init_prefix("pazpar2");
111 yaz_log_xml_errors(0, YLOG_WARN);
113 while ((ret = options("dDf:h:l:p:t:T:u:VX", argv, argc, &arg)) != -2)
118 global_parameters.dump_records = 1;
124 if (!read_config(arg))
128 strcpy(global_parameters.listener_override, arg);
131 yaz_log_init_file(arg);
138 strcpy(global_parameters.settings_path_override, arg);
141 session_timeout = atoi(arg);
142 if (session_timeout >= 10 && session_timeout <= 86400) {
143 global_parameters.session_timeout = session_timeout;
145 fprintf(stderr, "Session timeout out of range 10..86400: %d\n", session_timeout);
154 global_parameters.debug_mode = 1;
157 fprintf(stderr, "Usage: pazpar2\n"
158 " -d (show internal records)\n"
159 " -D Daemon mode (background)\n"
161 " -h [host:]port (REST protocol listener)\n"
162 " -l file log to file\n"
163 " -p pidfile PID file\n"
165 " -T session_timeout\n"
170 " -install install windows service\n"
171 " -remove remove windows service\n"
178 yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
179 if (daemon && !log_file_in_use)
181 yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
187 yaz_log(YLOG_FATAL, "Load config with -f");
190 global_parameters.server = config->servers;
192 ret = start_http_listener();
194 return ret; /* error starting http listener */
198 yaz_daemon("pazpar2",
199 (global_parameters.debug_mode ? YAZ_DAEMON_DEBUG : 0) +
200 (daemon ? YAZ_DAEMON_FORK : 0) + YAZ_DAEMON_KEEPALIVE,
201 child_handler, 0 /* child_data */,
207 static void sc_stop(yaz_sc_t s)
212 int main(int argc, char **argv)
215 yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
217 ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
226 * c-file-style: "Stroustrup"
227 * indent-tabs-mode: nil
229 * vim: shiftwidth=4 tabstop=8 expandtab