xml-copy-editor-code/src/wrapxerces.h

80 lines
2.1 KiB
C
Raw Normal View History

2009-11-06 18:06:12 +01:00
/*
* 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 <wx/wx.h>
#include <wx/strconv.h>
2013-10-25 13:23:34 +02:00
#include <wx/buffer.h>
2009-11-06 18:06:12 +01:00
#include <string>
#include <utility>
2012-10-07 02:27:14 +02:00
#if !wxCHECK_GCC_VERSION(4,7)
#define XERCES_TMPLSINC
#endif
2009-11-06 18:06:12 +01:00
#include <xercesc/sax2/SAX2XMLReader.hpp>
#include <xercesc/sax2/DefaultHandler.hpp>
#include "xercescatalogresolver.h"
using namespace xercesc;
class WrapXerces
{
public:
static void Init() throw ();
WrapXerces();
virtual ~WrapXerces();
2013-10-25 13:23:34 +02:00
bool validate ( const wxString &fileName );
2012-08-27 14:25:08 +02:00
bool validateMemory ( const char *buffer, size_t len,
const wxString &system, wxThread *thread = NULL );
const wxString &getLastError();
2009-11-06 18:06:12 +01:00
std::pair<int, int> getErrorPosition();
static wxString toString ( const XMLCh *str );
2013-10-25 13:23:34 +02:00
// Convert Unicode string to const XMLCh *
//#if wxCHECK_VERSION(2,9,0)
// static wxCharTypeBuffer<XMLCh> toString ( const wxString &str );
//#else
static wxMemoryBuffer toString ( const wxString &str );
//#endif
2009-11-06 18:06:12 +01:00
private:
2013-10-25 13:23:34 +02:00
static const wxMBConv &getMBConv();
2009-11-06 18:06:12 +01:00
XercesCatalogResolver *catalogResolver;
wxString lastError;
2009-11-06 18:06:12 +01:00
std::pair<int, int> errorPosition;
};
class MySAX2Handler : public DefaultHandler
{
public:
void error ( const SAXParseException& e )
{
throw e;
}
void warning ( const SAXParseException& e )
{
throw e;
}
};
#endif