2007-09-07 23:17:30 +02:00
|
|
|
#ifndef WRAPLIBXML_H
|
|
|
|
#define WRAPLIBXML_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xmlschemas.h>
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
#include <libxml/xpathInternals.h>
|
|
|
|
#include <libxml/catalog.h>
|
|
|
|
#include <libxml/xmlreader.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
|
|
#include <libxslt/xslt.h>
|
|
|
|
#include <libxslt/xsltInternals.h>
|
|
|
|
#include <libxslt/transform.h>
|
|
|
|
#include <libxslt/xsltutils.h>
|
|
|
|
|
|
|
|
class WrapLibxml
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WrapLibxml(
|
|
|
|
bool netAccessParameter = false,
|
|
|
|
const std::string& catalogPathParameter = "catalog");
|
|
|
|
virtual ~WrapLibxml();
|
|
|
|
bool validate(const std::string& fileName);
|
|
|
|
bool validateRelaxNG(
|
|
|
|
const std::string& schemaFileName,
|
|
|
|
const std::string& fileName);
|
|
|
|
bool validateW3CSchema(
|
|
|
|
const std::string& schemaFileName,
|
|
|
|
const std::string& fileName);
|
|
|
|
bool parse(
|
|
|
|
const std::string& fileName,
|
|
|
|
bool indent = false,
|
|
|
|
bool resolveEntities = false);
|
|
|
|
bool bufferWellFormed(const std::string& buffer);
|
|
|
|
bool xpath(const std::string& path, const std::string& fileName);
|
|
|
|
bool xslt(const std::string& styleFileName, const std::string& fileName);
|
|
|
|
std::string getLastError();
|
|
|
|
std::pair<int, int> 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);
|
|
|
|
std::string lookupPublicId(const std::string& id);
|
|
|
|
private:
|
|
|
|
bool netAccess;
|
|
|
|
std::string catalogPath, output;
|
|
|
|
int errorLine;
|
|
|
|
void loadCatalog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|