arabica/examples/SAX2DOM/DOMWriter.cpp

78 lines
1.5 KiB
C++
Raw Normal View History

// DOMWriter.cpp : Defines the entry point for the application.
//
#ifdef _MSC_VER
#pragma warning(disable: 4786 4250 4503)
#endif
#include <string>
#include <DOM/SAX2DOM/SAX2DOM.h>
2003-10-29 16:52:28 +01:00
#include <SAX/helpers/CatchErrorHandler.h>
2003-08-28 14:36:33 +02:00
#include <DOM/Utils/Stream.h>
////////////////////////////////////////////////
int main(int argc, char* argv[])
{
if(argc < 2)
{
std::cout << "Usage : " << argv[0] << " xmlfile ... " << std::endl;
return 0;
} // if(argc < 2)
{ // narrow
SAX2DOM::Parser<std::string> domParser;
2003-10-29 16:52:28 +01:00
SAX::CatchErrorHandler<std::string> eh;
domParser.setErrorHandler(eh);
for(int i = 1; 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 != "-")
2003-10-29 16:52:28 +01:00
if(!eh.errorsReported())
{
DOM::Document<std::string> doc = domParser.getDocument();
2005-09-28 22:02:00 +02:00
doc.normalize();
2003-10-29 16:52:28 +01:00
std::cout << doc;
2005-11-09 22:13:22 +01:00
}
2003-10-29 16:52:28 +01:00
else
{
std::cerr << eh.errors() << std::endl;
eh.reset();
} // if ...
} // for ...
2005-11-09 22:13:22 +01:00
2003-08-28 14:36:33 +02:00
}
2003-08-28 14:36:33 +02:00
/*
{ // wide
SAX2DOM::Parser<std::wstring> domParser;
SAX::wInputSource is;
is.setSystemId(L"stdin");
is.setByteStream(std::cin);
domParser.parse(is);
DOM::Document<std::wstring> doc = domParser.getDocument();
std::wcout << doc;
}
2003-08-28 14:36:33 +02:00
*/
return 0;
} // main
// end of file