use super::common;
use super::Schema;
use super::SchemaParserContext;
use crate::bindings;
use crate::tree::document::Document;
use crate::tree::node::Node;
use crate::error::StructuredError;
use std::ffi::CString;
use std::os::raw::c_char;
pub struct SchemaValidationContext {
ctxt: *mut bindings::_xmlSchemaValidCtxt,
errlog: *mut Vec<StructuredError>,
_schema: Schema,
}
impl SchemaValidationContext {
pub fn from_parser(parser: &mut SchemaParserContext) -> Result<Self, Vec<StructuredError>> {
let schema = Schema::from_parser(parser);
match schema {
Ok(s) => {
let ctx = unsafe { bindings::xmlSchemaNewValidCtxt(s.as_ptr()) };
if ctx.is_null() {
panic!("Failed to create validation context from XML schema") }
Ok(Self::from_raw(ctx, s))
}
Err(e) => Err(e),
}
}
pub fn validate_document(&mut self, doc: &Document) -> Result<(), Vec<StructuredError>> {
let rc = unsafe { bindings::xmlSchemaValidateDoc(self.ctxt, doc.doc_ptr()) };
match rc {
-1 => panic!("Failed to validate document due to internal error"), 0 => Ok(()),
_ => Err(self.drain_errors()),
}
}
pub fn validate_file(&mut self, path: &str) -> Result<(), Vec<StructuredError>> {
let path = CString::new(path).unwrap(); let path_ptr = path.as_bytes_with_nul().as_ptr() as *const c_char;
let rc = unsafe { bindings::xmlSchemaValidateFile(self.ctxt, path_ptr, 0) };
match rc {
-1 => panic!("Failed to validate file due to internal error"), 0 => Ok(()),
_ => Err(self.drain_errors()),
}
}
pub fn validate_node(&mut self, node: &Node) -> Result<(), Vec<StructuredError>> {
let rc = unsafe { bindings::xmlSchemaValidateOneElement(self.ctxt, node.node_ptr()) };
match rc {
-1 => panic!("Failed to validate element due to internal error"), 0 => Ok(()),
_ => Err(self.drain_errors()),
}
}
pub fn drain_errors(&mut self) -> Vec<StructuredError> {
assert!(!self.errlog.is_null());
let errors = unsafe { &mut *self.errlog };
std::mem::take(errors)
}
pub fn as_ptr(&self) -> *mut bindings::_xmlSchemaValidCtxt {
self.ctxt
}
}
impl SchemaValidationContext {
fn from_raw(ctx: *mut bindings::_xmlSchemaValidCtxt, schema: Schema) -> Self {
let errors: Box<Vec<StructuredError>> = Box::default();
unsafe {
let reference: *mut Vec<StructuredError> = std::mem::transmute(errors);
bindings::xmlSchemaSetValidStructuredErrors(
ctx,
Some(common::structured_error_handler),
reference as *mut _,
);
Self {
ctxt: ctx,
errlog: reference,
_schema: schema,
}
}
}
}
impl Drop for SchemaValidationContext {
fn drop(&mut self) {
unsafe {
bindings::xmlSchemaFreeValidCtxt(self.ctxt);
if !self.errlog.is_null() {
let errors: Box<Vec<StructuredError>> = std::mem::transmute(self.errlog);
drop(errors)
}
}
}
}