/* * 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 WRAPLIBXML_H #define WRAPLIBXML_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class WrapLibxml { public: static void Init ( const wxString &catalogPath = _T ( "catalog" ) ) throw(); WrapLibxml ( bool netAccessParameter = false ); virtual ~WrapLibxml(); bool validate ( const std::string &utf8DocBuf, const wxString &docUrl ); bool validateRelaxNG ( const wxString &schemaFileName, const std::string &utf8DocBuf, const wxString &docUrl ); bool validateW3CSchema ( const wxString &schemaFileName, const std::string &utf8DocBuf, const wxString &docUrl ); bool parse ( const std::string &utf8DocBuf, const wxString &docUrl, bool indent = false, bool resolveEntities = false ); bool parse ( const wxString &fileName, bool indent = false, bool resolveEntities = false ); bool parse ( const char *utf8DocBuf, size_t utf8DocBufSize, const wxString &fileName, bool indent = false, bool resolveEntities = false ); bool bufferWellFormed ( const std::string& utf8Buffer ); bool xpath ( const wxString &xpath, const std::string &utf8DocBuf, const wxString &docUrl ); bool xslt ( const wxString &styleFileName, const std::string &utf8DocBuf, const wxString &docUrl ); bool xslt ( const wxString &styleFileName, const wxString &docUrl ); bool xslt ( const wxString &styleFileName, const char *utf8DocBuf, size_t utf8DocBufSize, const wxString &docUrl ); std::string getLastError(); std::pair getErrorPosition(); std::string getOutput(); int saveEncoding ( const std::string& buffer, const std::string& fileName, const std::string& encoding ); int saveEncodingFromFile ( const std::string& fileNameSource, const std::string& fileNameDestination, const std::string& encoding ); wxString catalogResolve ( const wxString &publicId, const wxString &systemId ); private: bool netAccess; std::string output, nonParserError; int errorLine; }; #endif