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 static char *path_override = 0;
38 static struct conf_config *sc_stop_config = 0;
40 void child_handler(void *data)
42 struct conf_config *config = (struct conf_config *) data;
43 config_read_settings(config, path_override);
48 static void show_version(void)
50 char yaz_version_str[80];
51 printf("Pazpar2 " PACKAGE_VERSION
52 #ifdef PAZPAR2_VERSION_SHA1
58 yaz_version(yaz_version_str, 0);
60 printf("Configuration:");
64 printf(" yaz:%s", yaz_version_str);
70 static int tcpip_init (void)
75 requested = MAKEWORD(1, 1);
76 if (WSAStartup(requested, &wd))
85 int argc, char **argv)
89 int log_file_in_use = 0;
91 const char *pidfile = 0;
93 int session_timeout = 60;
94 const char *listener_override = 0;
95 const char *proxy_override = 0;
96 struct conf_config *config;
99 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
100 yaz_log(YLOG_WARN|YLOG_ERRNO, "signal");
105 yaz_log_init_prefix("pazpar2");
106 yaz_log_xml_errors(0, YLOG_WARN);
108 while ((ret = options("dDf:h:l:p:t:T:u:VX", argv, argc, &arg)) != -2)
113 global_parameters.dump_records = 1;
119 config = read_config(arg);
122 sc_stop_config = config;
125 listener_override = arg;
128 yaz_log_init_file(arg);
138 session_timeout = atoi(arg);
139 if (session_timeout < 9 || session_timeout > 86400)
141 yaz_log(YLOG_FATAL, "Session timeout out of range 10..86400: %d",
145 global_parameters.session_timeout = session_timeout;
153 global_parameters.debug_mode = 1;
156 fprintf(stderr, "Usage: pazpar2\n"
157 " -d (show internal records)\n"
158 " -D Daemon mode (background)\n"
160 " -h [host:]port (REST protocol listener)\n"
161 " -l file log to file\n"
162 " -p pidfile PID file\n"
164 " -T session_timeout\n"
169 " -install install windows service\n"
170 " -remove remove windows service\n"
177 yaz_log(YLOG_LOG, "Pazpar2 %s started", VERSION);
178 if (daemon && !log_file_in_use)
180 yaz_log(YLOG_FATAL, "Logfile must be given (option -l) for daemon "
186 yaz_log(YLOG_FATAL, "Load config with -f");
189 ret = config_start_listeners(config, listener_override, proxy_override);
191 return ret; /* error starting http listener */
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, config /* child_data */,
204 static void sc_stop(yaz_sc_t s)
206 config_stop_listeners(sc_stop_config);
209 int main(int argc, char **argv)
212 yaz_sc_t s = yaz_sc_create("pazpar2", "Pazpar2");
214 ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
223 * c-file-style: "Stroustrup"
224 * indent-tabs-mode: nil
226 * vim: shiftwidth=4 tabstop=8 expandtab