--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/apicompatanamdw/compatanalysercmd/libraryanalyser/inc/xmlsaxerrorhandler.hpp Tue Jan 12 14:52:39 2010 +0530
@@ -0,0 +1,75 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+#include <xercesc/sax/HandlerBase.hpp>
+#include <xercesc/sax/AttributeList.hpp>
+#include <xercesc/util/PlatformUtils.hpp>
+#include <xercesc/sax/SAXParseException.hpp>
+#include <xercesc/sax/SAXException.hpp>
+#include <iostream>
+using namespace std;
+
+#if !defined XMLSAXERRORHANDLER
+ #define XMLSAXERRORHANDLER
+
+class XMLSAXErrorHandler : public HandlerBase
+{
+ public:
+ XMLSAXErrorHandler();
+ virtual ~XMLSAXErrorHandler();
+
+ // Handlers for the SAX ErrorHandler interface
+ virtual void warning(const SAXParseException& exception);
+ virtual void error(const SAXParseException& exception);
+ virtual void fatalError(const SAXParseException& exception);
+};
+
+// Empty default constructor
+XMLSAXErrorHandler::XMLSAXErrorHandler()
+{
+}
+
+// Empty default destructor
+XMLSAXErrorHandler::~XMLSAXErrorHandler()
+{
+}
+
+// Overrides of the SAX ErrorHandler interface
+void XMLSAXErrorHandler::error(const SAXParseException& e)
+{
+ std::cerr << endl << "Error at file " << XMLString::transcode(e.getSystemId())
+ << ", line " << e.getLineNumber()
+ << ", char " << e.getColumnNumber() << endl
+ << " Message: " << XMLString::transcode(e.getMessage()) << endl;
+}
+
+void XMLSAXErrorHandler::fatalError(const SAXParseException& e)
+{
+ std::cerr << "\nFatal Error at file " << XMLString::transcode(e.getSystemId())
+ << ", line " << e.getLineNumber()
+ << ", char " << e.getColumnNumber()
+ << "\n Message: " << XMLString::transcode(e.getMessage()) << endl;
+}
+
+void XMLSAXErrorHandler::warning(const SAXParseException& e)
+{
+ std::cerr << "\nWarning at file " << XMLString::transcode(e.getSystemId())
+ << ", line " << e.getLineNumber()
+ << ", char " << e.getColumnNumber()
+ << "\n Message: " << XMLString::transcode(e.getMessage()) << endl;
+}
+#endif // XMLSAXERRORHANDLER
+