arabica/examples/SAX/writer.cpp

58 lines
1.2 KiB
C++
Raw Normal View History

2002-11-23 20:54:58 +01:00
#ifdef _MSC_VER
# pragma warning(disable:4786)
#endif
2002-06-21 13:16:28 +02:00
#include <SAX/XMLReader.h>
2002-06-21 13:16:28 +02:00
#include <SAX/helpers/FeatureNames.h>
#include <SAX/InputSource.h>
#include <iostream>
#include <SAX/filter/Writer.h>
#include <SAX/helpers/CatchErrorHandler.h>
2002-06-21 13:16:28 +02:00
////////////////////////////////////////////////
int main(int argc, char* argv[])
{
if(argc < 2)
{
std::cout << "Usage : " << argv[0] << " xmlfile ... " << std::endl;
return 0;
} // if(argc < 2)
2003-08-27 16:28:41 +02:00
{ // narrow
SAX::FeatureNames<std::string> fNames;
SAX::XMLReader<std::string> parser;
2004-01-27 00:20:08 +01:00
SAX::Writer writer(std::cout, 4);
SAX::CatchErrorHandler<std::string> eh;
2003-08-27 16:28:41 +02:00
writer.setParent(parser);
writer.setErrorHandler(eh);
2003-08-27 16:28:41 +02:00
for(int i = 1; i < argc; ++i)
2002-06-21 13:16:28 +02:00
{
2003-08-27 16:28:41 +02:00
std::string file(argv[i]);
SAX::InputSource is;
is.setSystemId(file);
if(file != "-")
writer.parse(is);
else
{
is.setSystemId("stdin");
is.setByteStream(std::cin);
writer.parse(is);
} // if(file != "-")
if(eh.errorsReported())
{
std::cerr << eh.errors() << std::endl;
eh.reset();
} // if ...
2003-08-27 16:28:41 +02:00
} // for ...
}
2003-08-28 01:06:59 +02:00
2002-06-21 13:16:28 +02:00
return 0;
} // main
// end of file