X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Frouter_flexml.cpp;h=0a019eb9f2d9f2b49d501e9a1c1397838e71890a;hb=c1d953eee6c00432493bc364da6284704ccd9cc2;hp=8b30bef78f510a7b58d18e57d7de22c3e4f55674;hpb=e6d572ef110d14fa55115021505b808620457bd3;p=metaproxy-moved-to-github.git diff --git a/src/router_flexml.cpp b/src/router_flexml.cpp index 8b30bef..0a019eb 100644 --- a/src/router_flexml.cpp +++ b/src/router_flexml.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2010 Index Data + Copyright (C) 2005-2011 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 @@ -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); } } @@ -384,6 +395,23 @@ mp::RouterFleXML::Pos::~Pos() } +void mp::RouterFleXML::start() +{ + std::map::iterator route_it; + + route_it = m_p->m_routes.begin(); + while (route_it != m_p->m_routes.end()) + { + RouterFleXML::Route route = route_it->second; + + std::list >::iterator it; + + for (it = route.m_list.begin(); it != route.m_list.end(); it++) + (*it)->start(); + route_it++; + } +} + /* * Local variables: * c-basic-offset: 4