/* * Copyright 2005-2007 Gerald Schmidt. * * This file is part of Xml Copy Editor. * * Xml Copy Editor is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * Xml Copy Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Xml Copy Editor; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef WRAP_XERCES #define WRAP_XERCES #include #include #include #include #include #include #if !wxCHECK_GCC_VERSION(4,7) #define XERCES_TMPLSINC #endif #include #include #include "xercescatalogresolver.h" using namespace xercesc; class WrapXerces : private boost::noncopyable { public: static void Init() throw (); WrapXerces(); virtual ~WrapXerces(); bool validate ( const wxString &fileName ); bool validateMemory ( const char *buffer, size_t len, const wxString &system, wxThread *thread = NULL ); const wxString &getLastError(); std::pair getErrorPosition(); static wxString toString ( const XMLCh *str ); // Convert Unicode string to const XMLCh * //#if wxCHECK_VERSION(2,9,0) // static wxCharTypeBuffer toString ( const wxString &str ); //#else static wxMemoryBuffer toString ( const wxString &str ); //#endif private: static const wxMBConv &getMBConv(); XercesCatalogResolver *catalogResolver; wxString lastError; std::pair errorPosition; }; class MySAX2Handler : public DefaultHandler { public: void error ( const SAXParseException& e ) { throw e; } void warning ( const SAXParseException& e ) { throw e; } }; #endif