// DOMWriter.cpp : Defines the entry point for the application. // #ifdef _MSC_VER #pragma warning(disable: 4786 4250 4503) #endif #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 < 2) 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 = xpath->evaluate(doc); if(result->asBool()) std::cout << file << std::endl; } else { std::cerr << eh.errors() << std::endl; eh.reset(); } // if ... } // for ... return 0; } // main // end of file