mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable:4786)
|
|
#endif
|
|
|
|
#include "SimpleHandler.hpp"
|
|
#include <SAX/InputSource.hpp>
|
|
#include <SAX/helpers/FeatureNames.hpp>
|
|
#include <SAX/helpers/PropertyNames.hpp>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if(argc < 2)
|
|
{
|
|
std::cout << "Usage : " << argv[0] << " xmlfile ... " << std::endl;
|
|
return 0;
|
|
} // if(argc == 0)
|
|
|
|
SimpleHandler myHandler;
|
|
Arabica::SAX::FeatureNames<std::string> fNames;
|
|
Arabica::SAX::PropertyNames<std::string> pNames;
|
|
|
|
for(int i = 1; i < argc; ++i)
|
|
{
|
|
Arabica::SAX::XMLReader<std::string> parser;
|
|
|
|
try
|
|
{
|
|
parser.setFeature(fNames.external_general, true);
|
|
parser.setFeature(fNames.validation, true);
|
|
parser.setFeature(fNames.namespaces, true);
|
|
parser.setFeature(fNames.namespace_prefixes, true);
|
|
}
|
|
catch(Arabica::SAX::SAXException& e)
|
|
{
|
|
std::cerr << e.what() << std::endl;
|
|
}
|
|
|
|
parser.setContentHandler(myHandler);
|
|
parser.setDTDHandler(myHandler);
|
|
parser.setErrorHandler(myHandler);
|
|
parser.setEntityResolver(myHandler);
|
|
parser.setDeclHandler(myHandler);
|
|
parser.setLexicalHandler(myHandler);
|
|
|
|
std::string file(argv[i]);
|
|
|
|
if(file != "-")
|
|
{
|
|
Arabica::SAX::InputSource<std::string> is(file);
|
|
parser.parse(is);
|
|
}
|
|
else
|
|
{
|
|
Arabica::SAX::InputSource<std::string> is;
|
|
is.setSystemId("stdin");
|
|
is.setByteStream(std::cin);
|
|
|
|
parser.parse(is);
|
|
} //
|
|
}
|
|
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|