75 lines
1.8 KiB
C++
75 lines
1.8 KiB
C++
#include "XML_Error_Handler.h"
|
|
#include "ace/Log_Category.h"
|
|
#include "ace/Auto_Ptr.h"
|
|
#include "ace/ACE.h"
|
|
#include <xercesc/util/XMLString.hpp>
|
|
#include <xercesc/dom/DOMLocator.hpp>
|
|
#include <xercesc/sax/SAXParseException.hpp>
|
|
#include "XercesString.h"
|
|
#include <iostream>
|
|
|
|
using xercesc::SAXParseException;
|
|
|
|
namespace XML
|
|
{
|
|
XML_Error_Handler::XML_Error_Handler (void)
|
|
: errors_ (false)
|
|
{
|
|
}
|
|
|
|
XML_Error_Handler::~XML_Error_Handler()
|
|
{
|
|
}
|
|
|
|
void XML_Error_Handler::warning(const SAXParseException& toCatch)
|
|
{
|
|
if (ACE::debug ())
|
|
{
|
|
XStr file (toCatch.getSystemId ());
|
|
XStr msg (toCatch.getMessage ());
|
|
|
|
std::cerr << "Warning: " << file << ':' << toCatch.getLineNumber ()
|
|
<< ':' << toCatch.getColumnNumber () << " - "
|
|
<< msg << std::endl;
|
|
}
|
|
}
|
|
|
|
void XML_Error_Handler::error(const SAXParseException& toCatch)
|
|
{
|
|
if (ACE::debug ())
|
|
{
|
|
XStr file (toCatch.getSystemId ());
|
|
XStr msg (toCatch.getMessage ());
|
|
|
|
std::cerr << "Error: " << file << ':' << toCatch.getLineNumber ()
|
|
<< ':' << toCatch.getColumnNumber () << " - "
|
|
<< msg << std::endl;
|
|
}
|
|
this->errors_ = true;
|
|
}
|
|
|
|
void XML_Error_Handler::fatalError(const SAXParseException& toCatch)
|
|
{
|
|
if (ACE::debug ())
|
|
{
|
|
XStr file (toCatch.getSystemId ());
|
|
XStr msg (toCatch.getMessage ());
|
|
|
|
std::cerr << "Fatal Error: " << file << ':' << toCatch.getLineNumber ()
|
|
<< ':' << toCatch.getColumnNumber () << " - "
|
|
<< msg << std::endl;
|
|
}
|
|
this->errors_ = true;
|
|
}
|
|
|
|
void XML_Error_Handler::resetErrors()
|
|
{
|
|
this->errors_ = false;
|
|
}
|
|
|
|
bool
|
|
XML_Error_Handler::getErrors (void) const
|
|
{
|
|
return this->errors_;
|
|
}
|
|
}
|