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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
use crate::bindings::*;
use libc::{c_char, c_int, size_t};
use std::os::raw::c_void;
use std::ptr;
use std::slice;
pub fn xmlNodeRecursivelyRemoveNs(node: xmlNodePtr) {
unsafe {
let mut property: xmlAttrPtr;
xmlSetNs(node, ptr::null_mut());
let mut child: xmlNodePtr = (*node).children;
while !child.is_null() {
xmlNodeRecursivelyRemoveNs(child);
child = (*child).next;
}
if (((*node).type_ == xmlElementType_XML_ELEMENT_NODE)
|| ((*node).type_ == xmlElementType_XML_XINCLUDE_START)
|| ((*node).type_ == xmlElementType_XML_XINCLUDE_END))
&& !(*node).nsDef.is_null()
{
xmlFreeNsList((*node).nsDef);
(*node).nsDef = ptr::null_mut();
}
if (*node).type_ == xmlElementType_XML_ELEMENT_NODE && !(*node).properties.is_null() {
property = (*node).properties;
while !property.is_null() {
if !(*property).ns.is_null() {
(*property).ns = ptr::null_mut();
}
property = (*property).next;
}
}
}
}
pub fn xmlGetDoc(cur: xmlNodePtr) -> xmlDocPtr {
unsafe { (*cur).doc }
}
pub fn xmlNextNsSibling(ns: xmlNsPtr) -> xmlNsPtr {
unsafe { (*ns).next }
}
pub fn xmlNsPrefix(ns: xmlNsPtr) -> *const c_char {
unsafe { (*ns).prefix as *const c_char }
}
pub fn xmlNsHref(ns: xmlNsPtr) -> *const c_char {
unsafe { (*ns).href as *const c_char }
}
pub fn xmlNodeNsDeclarations(cur: xmlNodePtr) -> xmlNsPtr {
unsafe { (*cur).nsDef }
}
pub fn xmlNodeNs(cur: xmlNodePtr) -> xmlNsPtr {
unsafe { (*cur).ns }
}
pub fn xmlNextPropertySibling(attr: xmlAttrPtr) -> xmlAttrPtr {
unsafe { (*attr).next }
}
pub fn xmlAttrName(attr: xmlAttrPtr) -> *const c_char {
unsafe { (*attr).name as *const c_char }
}
pub fn xmlGetFirstProperty(node: xmlNodePtr) -> xmlAttrPtr {
unsafe { (*node).properties }
}
pub fn xmlGetNodeType(cur: xmlNodePtr) -> u32 {
unsafe { (*cur).type_ }
}
pub fn xmlGetParent(cur: xmlNodePtr) -> xmlNodePtr {
unsafe { (*cur).parent }
}
pub fn xmlGetFirstChild(cur: xmlNodePtr) -> xmlNodePtr {
unsafe { (*cur).children }
}
pub fn xmlPrevSibling(cur: xmlNodePtr) -> xmlNodePtr {
unsafe { (*cur).prev }
}
pub fn xmlNextSibling(cur: xmlNodePtr) -> xmlNodePtr {
unsafe { (*cur).next }
}
pub fn xmlNodeGetName(cur: xmlNodePtr) -> *const c_char {
unsafe { (*cur).name as *const c_char }
}
fn _ignoreInvalidTagsErrorFunc(_user_data: *mut c_void, error: xmlErrorPtr) {
unsafe {
if !error.is_null() && (*error).code as u32 == xmlParserErrors_XML_HTML_UNKNOWN_TAG {
HACKY_WELL_FORMED = true;
}
}
}
pub fn setWellFormednessHandler(ctxt: *mut xmlParserCtxt) {
unsafe {
HACKY_WELL_FORMED = false;
xmlSetStructuredErrorFunc(ctxt as *mut c_void, Some(_ignoreInvalidTagsErrorFunc));
}
}
pub fn htmlWellFormed(ctxt: *mut xmlParserCtxt) -> bool {
unsafe { (!ctxt.is_null() && (*ctxt).wellFormed > 0) || HACKY_WELL_FORMED }
}
pub fn xmlXPathObjectNumberOfNodes(val: xmlXPathObjectPtr) -> c_int {
unsafe {
if val.is_null() {
-1
} else if (*val).nodesetval.is_null() {
-2
} else {
(*(*val).nodesetval).nodeNr
}
}
}
pub fn xmlXPathObjectGetNodes(val: xmlXPathObjectPtr, size: size_t) -> Vec<xmlNodePtr> {
unsafe { slice::from_raw_parts((*(*val).nodesetval).nodeTab, size).to_vec() }
}