// DOMWriter.cpp : Defines the entry point for the application. // #ifdef _MSC_VER #pragma warning(disable: 4786 4250 4503) #endif #include #include #include #include #include //////////////////////////////////////////////// int main(int argc, char* argv[]) { if(argc < 3) { std::cout << "Usage : " << argv[0] << " xpath xmlfile ... " << std::endl; return 0; } // if(argc < 3) Arabica::XPath::XPath xpathParser; Arabica::XPath::XPathExpressionPtr xpath = xpathParser.compile(argv[1]); SAX2DOM::Parser domParser; SAX::CatchErrorHandler eh; domParser.setErrorHandler(eh); for(int i = 2; i < argc; ++i) { std::string file(argv[i]); SAX::InputSource is; is.setSystemId(file); if(file != "-") domParser.parse(is); else { is.setSystemId("stdin"); is.setByteStream(std::cin); domParser.parse(is); } // if(file != "-") if(!eh.errorsReported()) { DOM::Document doc = domParser.getDocument(); Arabica::XPath::XPathValuePtr result; result = xpath->evaluate(doc); if(result->asBool()) { std::cout << file << std::endl; if(result->type() == Arabica::XPath::NODE_SET) { const Arabica::XPath::NodeSet& ns = result->asNodeSet(); for(unsigned int i = 0; i < ns.size(); ++i) { DOM::Element n = static_cast >(ns[i]); std::cout << n << std::endl; } } // if .. } // if ... } else { std::cerr << eh.errors() << std::endl; eh.reset(); } // if ... } // for ... return 0; } // main // end of file