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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
use crate::bindings::*;
use crate::c_helpers::*;
use crate::tree::*;
use std::ffi::{CStr, CString};
use std::fmt;
use std::ptr;
use std::str;
enum XmlParserOption {
Recover = 1,
Noerror = 32,
Nowarning = 64,
}
enum HtmlParserOption {
Recover = 1,
Noerror = 32,
Nowarning = 64,
}
pub enum XmlParseError {
GotNullPointer,
}
impl fmt::Debug for XmlParseError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
XmlParseError::GotNullPointer => write!(f, "Got a Null pointer"),
}
}
}
#[derive(PartialEq)]
pub enum ParseFormat {
XML,
HTML,
}
pub struct Parser {
pub format: ParseFormat,
}
impl Default for Parser {
fn default() -> Self {
Parser {
format: ParseFormat::XML,
}
}
}
impl Parser {
pub fn default_html() -> Self {
Parser {
format: ParseFormat::HTML,
}
}
pub fn parse_file(&self, filename: &str) -> Result<Document, XmlParseError> {
let c_filename = CString::new(filename).unwrap();
let c_utf8 = CString::new("utf-8").unwrap();
unsafe {
xmlKeepBlanksDefault(1);
}
match self.format {
ParseFormat::XML => {
let options: i32 = XmlParserOption::Recover as i32
+ XmlParserOption::Noerror as i32
+ XmlParserOption::Nowarning as i32;
unsafe {
let doc_ptr = xmlReadFile(c_filename.as_ptr(), c_utf8.as_ptr(), options);
if doc_ptr.is_null() {
Err(XmlParseError::GotNullPointer)
} else {
Ok(Document::new_ptr(doc_ptr))
}
}
}
ParseFormat::HTML => {
let options: i32 = HtmlParserOption::Recover as i32
+ HtmlParserOption::Noerror as i32
+ HtmlParserOption::Nowarning as i32;
unsafe {
let doc_ptr = htmlReadFile(c_filename.as_ptr(), c_utf8.as_ptr(), options);
if doc_ptr.is_null() {
Err(XmlParseError::GotNullPointer)
} else {
Ok(Document::new_ptr(doc_ptr))
}
}
}
}
}
pub fn parse_string(&self, input_string: &str) -> Result<Document, XmlParseError> {
let c_string = CString::new(input_string).unwrap();
let c_utf8 = CString::new("utf-8").unwrap();
let c_url = CString::new("").unwrap();
match self.format {
ParseFormat::XML => unsafe {
let options: i32 = XmlParserOption::Recover as i32
+ XmlParserOption::Noerror as i32
+ XmlParserOption::Nowarning as i32;
let docptr = xmlReadDoc(
c_string.as_bytes().as_ptr(),
c_url.as_ptr(),
c_utf8.as_ptr(),
options,
);
if docptr.is_null() {
Err(XmlParseError::GotNullPointer)
} else {
Ok(Document::new_ptr(docptr))
}
},
ParseFormat::HTML => unsafe {
let options: i32 = HtmlParserOption::Recover as i32
+ HtmlParserOption::Noerror as i32
+ HtmlParserOption::Nowarning as i32;
let docptr = htmlReadDoc(
c_string.as_bytes().as_ptr(),
c_url.as_ptr(),
c_utf8.as_ptr(),
options,
);
if docptr.is_null() {
Err(XmlParseError::GotNullPointer)
} else {
Ok(Document::new_ptr(docptr))
}
},
}
}
pub fn is_well_formed_html(&self, input_string: &str) -> bool {
if input_string.is_empty() {
return false;
}
let c_string = CString::new(input_string).unwrap();
let c_utf8 = CString::new("utf-8").unwrap();
match self.format {
ParseFormat::XML => false,
ParseFormat::HTML => unsafe {
let ctxt = htmlNewParserCtxt();
setWellFormednessHandler(ctxt);
let docptr = htmlCtxtReadDoc(
ctxt,
c_string.as_bytes().as_ptr(),
ptr::null_mut(),
c_utf8.as_ptr(),
10_596,
);
let well_formed_final = if htmlWellFormed(ctxt) {
if !docptr.is_null() {
let node_ptr = xmlDocGetRootElement(docptr);
let name_ptr = xmlNodeGetName(node_ptr);
if name_ptr.is_null() {
false
}
else {
let c_root_name = CStr::from_ptr(name_ptr);
let root_name = str::from_utf8(c_root_name.to_bytes()).unwrap().to_owned();
root_name == "html"
}
} else {
false
}
} else {
false
};
if !ctxt.is_null() {
htmlFreeParserCtxt(ctxt);
}
if !docptr.is_null() {
xmlFreeDoc(docptr);
}
well_formed_final
},
}
}
}