summaryrefslogtreecommitdiff
path: root/modules/CIAO/tools/XML/XML_Error_Handler.cpp
blob: ba24b81764961b52076bc0af126ebe4f51adb86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// $Id$

#include "XML_Error_Handler.h"
#include "ace/Log_Msg.h"
#include "ace/Auto_Ptr.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 CIAO
{
  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)
    {
      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)
    {
      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)
    {
      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_;
    }
  }
}