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
use std::ffi::CString;
use std::path::Path;
use crate::bindings::*;
use crate::stylesheet::Stylesheet;
pub fn parse_file(path_str: &str) -> Result<Stylesheet, String> {
let path = Path::new(path_str);
if !path.is_file() {
Err(format!(
"Path {:?} does not point to a valid file on the file system.",
path_str
))
} else {
unsafe {
let c_path_str = CString::new(path_str).unwrap();
let ptr = xsltParseStylesheetFile(c_path_str.as_bytes().as_ptr());
if ptr.is_null() {
Err(format!("Failed to parse stylesheet file {:?}", path_str))
} else {
Ok(Stylesheet { ptr })
}
}
}
}