X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Frouter_flexml.cpp;h=759ef06e4380c47e8d089c0137264cce226a01c3;hb=e691d19741323aae3c4c5906859fa2bb5f9755b9;hp=c294a9c1e44e65a011a201b7ffe11fec54a46303;hpb=4da5ac5bb4cd6bab1a920fba7d7dd00f1d09c6ea;p=metaproxy-moved-to-github.git diff --git a/src/router_flexml.cpp b/src/router_flexml.cpp index c294a9c..759ef06 100644 --- a/src/router_flexml.cpp +++ b/src/router_flexml.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2008 Index Data + Copyright (C) 2005-2010 Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,7 +17,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "config.hpp" -#include "xmlutil.hpp" +#include #include "router_flexml.hpp" #include "factory_filter.hpp" #include "factory_static.hpp" @@ -26,6 +26,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include +#include #include @@ -47,7 +48,8 @@ namespace metaproxy_1 { friend class RouterFleXML::Pos; Rep(); - void base(xmlDocPtr doc, mp::FactoryFilter &factory, bool test_only); + void base(xmlDocPtr doc, mp::FactoryFilter &factory, bool test_only, + const char *file_include_path); typedef std::map > @@ -61,7 +63,8 @@ namespace metaproxy_1 { std::string m_dl_path; - void parse_xml_config_dom(xmlDocPtr doc, bool test_only); + void parse_xml_config_dom(xmlDocPtr doc, bool test_only, + const char *file_include_path); void parse_xml_filters(xmlDocPtr doc, const xmlNode *node, bool test_only); @@ -235,12 +238,20 @@ void mp::RouterFleXML::Rep::parse_xml_routes(xmlDocPtr doc, } void mp::RouterFleXML::Rep::parse_xml_config_dom(xmlDocPtr doc, - bool test_only) + bool test_only, + const char *file_include_path) { if (!doc) throw mp::XMLError("Empty XML Document"); const xmlNode* root = xmlDocGetRootElement(doc); + + if (file_include_path) + { + int r = yaz_xml_include_simple((xmlNode *) root, file_include_path); + if (r) + throw mp::XMLError("YAZ XML Include failed"); + } mp::xml::check_element_mp(root, "metaproxy"); @@ -300,18 +311,18 @@ mp::RouterFleXML::Rep::Rep() : m_xinclude(false) } void mp::RouterFleXML::Rep::base(xmlDocPtr doc, mp::FactoryFilter &factory, - bool test_only) + bool test_only, const char *file_include_path) { m_factory = &factory; - parse_xml_config_dom(doc, test_only); + parse_xml_config_dom(doc, test_only, file_include_path); m_start_route = "start"; } mp::RouterFleXML::RouterFleXML(xmlDocPtr doc, mp::FactoryFilter &factory, - bool test_only) + bool test_only, const char *file_include_path) : m_p(new Rep) { - m_p->base(doc, factory, test_only); + m_p->base(doc, factory, test_only, file_include_path); } mp::RouterFleXML::RouterFleXML(std::string xmlconf, mp::FactoryFilter &factory, @@ -326,7 +337,7 @@ mp::RouterFleXML::RouterFleXML(std::string xmlconf, mp::FactoryFilter &factory, throw mp::XMLError("xmlParseMemory failed"); else { - m_p->base(doc, factory, test_only); + m_p->base(doc, factory, test_only, 0); xmlFreeDoc(doc); } } @@ -387,8 +398,9 @@ mp::RouterFleXML::Pos::~Pos() /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil - * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +