-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlibxml.h
60 lines (51 loc) · 1.84 KB
/
libxml.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef LIBXML_H
#define LIBXML_H
#include "napi.h"
#include <string>
#include <vector>
#include "libxml/parser.h"
#include "libxml/valid.h"
#include "libxml/xmlschemastypes.h"
#include "libxml/xmlschemas.h"
#include "libxml/tree.h"
#include "libxml/xpath.h"
#include "libxml/xpathInternals.h"
#include "libxml-syntax-error.h"
enum
{
ERROR_OCCURED = -1, // Une erreur est survenue pendant la validation
NOT_VALID = 0, // Le document n'est pas valide
VALID = 1 // Le document est valide
};
using namespace std;
class Libxml : public Napi::ObjectWrap<Libxml>
{
public:
static Napi::Object Init(Napi::Env env, Napi::Object exports);
Libxml(const Napi::CallbackInfo &info);
private:
// static void errorsHandler(void *, xmlErrorPtr);
// explicit Libxml();
xmlDocPtr docPtr = NULL;
string path;
vector<xmlDtdPtr> dtdsPaths;
vector<xmlSchemaPtr> schemasPaths;
static Napi::FunctionReference constructor;
Napi::Value loadXml(const Napi::CallbackInfo &info);
Napi::Value loadXmlFromString(const Napi::CallbackInfo& info);
Napi::Value loadDtds(const Napi::CallbackInfo& info);
// // static Napi::Value loadDtdsFromString(const Napi::CallbackInfo& info);
Napi::Value loadSchemas(const Napi::CallbackInfo& info);
Napi::Value validateAgainstDtds(const Napi::CallbackInfo& info);
Napi::Value validateAgainstSchemas(const Napi::CallbackInfo& info);
Napi::Value xpathSelect(const Napi::CallbackInfo& info);
Napi::Value getDtd(const Napi::CallbackInfo& info);
void freeXml(const Napi::CallbackInfo& info);
void freeDtds(const Napi::CallbackInfo& info);
void freeSchemas(const Napi::CallbackInfo& info);
void clearAll(const Napi::CallbackInfo& info);
// max error number util functions
Napi::Value getMaxErrorNumber(const Napi::CallbackInfo& info);
Napi::Value setMaxErrorNumber(const Napi::CallbackInfo& info);
};
#endif