Implemented facility to change current working directory (-w).
[metaproxy-moved-to-github.git] / src / metaproxy_prog.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2008 Index Data
3
4 Metaproxy 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 Metaproxy 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 #include "config.hpp"
20
21 #include <yaz/log.h>
22 #include <yaz/options.h>
23 #include <yaz/daemon.h>
24
25 #include <iostream>
26 #include <stdexcept>
27 #include <libxml/xinclude.h>
28
29 #include "filter.hpp"
30 #include "package.hpp"
31 #include "router_flexml.hpp"
32 #include "factory_static.hpp"
33
34 #if HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37
38 namespace mp = metaproxy_1;
39
40 static void handler(void *data)
41 {
42     mp::RouterFleXML *routerp = (mp::RouterFleXML*) data;
43
44     mp::Package pack;
45     pack.router(*routerp).move();
46 }
47     
48 int main(int argc, char **argv)
49 {
50     try 
51     {
52         const char *fname = 0;
53         int ret;
54         char *arg;
55         unsigned mode = 0;
56         const char *pidfile = 0;
57         const char *uid = 0;
58
59         while ((ret = options("c{config}:Dh{help}l:p:u:V{version}w:X", 
60                               argv, argc, &arg)) != -2)
61         {
62             switch (ret)
63             {
64             case 'c':
65                 fname = arg;
66                 break;
67             case 'D':
68                 mode = YAZ_DAEMON_FORK|YAZ_DAEMON_KEEPALIVE;
69                 break;
70             case 'h':
71                 std::cerr << "metaproxy\n"
72                     " -h|--help     help\n"
73                     " -V|--version  version\n"
74                     " -c|--config f config filename\n"
75                     " -D            daemon and keepalive operation\n"
76                     " -l f          log file f\n"
77                     " -p f          pid file f\n"
78                     " -u id         change uid to id\n"
79                     " -w dir        changes working directory to dir\n"
80                     " -X            debug mode (no fork/daemon mode)\n"
81                           << std::endl;
82                 break;
83             case 'l':
84                 yaz_log_init_file(arg);
85                 break;
86             case 'p':
87                 pidfile = arg;
88                 break;
89             case 'u':
90                 uid = arg;
91                 break;
92             case 'V':
93                 std::cout << VERSION "\n";
94                 std::exit(0);
95                 break;
96             case 'w':
97                 if (chdir(arg)) 
98                 {
99                     std::cerr << "chdir " << arg << " failed" << std::endl;
100                     std::exit(1);
101                 }
102             case 'X':
103                 mode = YAZ_DAEMON_DEBUG;
104                 break;
105             case -1:
106                 std::cerr << "bad option: " << arg << std::endl;
107                 std::exit(1);
108             }
109         }
110         if (!fname)
111         {
112             std::cerr << "No configuration given; use -h for help\n";
113             std::exit(1);
114         }
115
116         yaz_log(YLOG_LOG, "Metaproxy " VERSION " started");
117         xmlDocPtr doc = xmlReadFile(fname,
118                                     NULL, 
119                                     XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS
120                                     + XML_PARSE_NSCLEAN + XML_PARSE_NONET );
121         
122         if (!doc)
123         {
124             std::cerr << "XML parsing failed\n";
125             std::exit(1);
126         }
127         // and perform Xinclude then
128         if (xmlXIncludeProcess(doc) > 0) {
129             std::cerr << "processing XInclude directive\n";
130         }
131         mp::FactoryStatic factory;
132         mp::RouterFleXML router(doc, factory, false);
133
134         yaz_daemon("metaproxy", mode, handler, &router, pidfile, uid);
135     }
136     catch (std::logic_error &e) {
137         std::cerr << "std::logic error: " << e.what() << "\n";
138         std::exit(1);
139     }
140     catch (std::runtime_error &e) {
141         std::cerr << "std::runtime error: " << e.what() << "\n";
142         std::exit(1);
143     }
144     catch ( ... ) {
145         std::cerr << "Unknown Exception" << std::endl;
146         std::exit(1);
147     }
148     std::exit(0);
149 }
150
151
152 /*
153  * Local variables:
154  * c-basic-offset: 4
155  * indent-tabs-mode: nil
156  * c-file-style: "stroustrup"
157  * End:
158  * vim: shiftwidth=4 tabstop=8 expandtab
159  */