Update to rxml 0.12.0

This commit is contained in:
Jonas Schäfer 2024-08-09 14:48:40 +02:00
commit f77c21f0fc
9 changed files with 51 additions and 43 deletions

View file

@ -11,7 +11,7 @@ This module contains the error types used throughout the `xso` crate.
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use core::fmt;
use rxml::error::XmlError;
use rxml::Error as XmlError;
/// Opaque string error.
///
@ -100,8 +100,8 @@ impl std::error::Error for Error {
}
}
impl From<rxml::error::XmlError> for Error {
fn from(other: rxml::error::XmlError) -> Error {
impl From<rxml::Error> for Error {
fn from(other: rxml::Error) -> Error {
Error::XmlError(other)
}
}

View file

@ -21,6 +21,9 @@ use of this library in parsing XML streams like specified in RFC 6120.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use std::io;
pub mod asxml;
pub mod error;
pub mod fromxml;
@ -310,9 +313,7 @@ pub fn transform<T: FromXml, F: AsXml>(from: F) -> Result<T, self::error::Error>
return Ok(v);
}
}
Err(self::error::Error::XmlError(
rxml::error::XmlError::InvalidEof("during transform"),
))
Err(self::error::Error::XmlError(rxml::Error::InvalidEof(None)))
}
/// Attempt to convert a [`minidom::Element`] into a type implementing
@ -366,16 +367,13 @@ pub fn try_from_element<T: FromXml>(
unreachable!("minidom::Element did not produce enough events to complete element")
}
fn map_nonio_error<T>(r: Result<T, rxml::Error>) -> Result<T, self::error::Error> {
fn map_nonio_error<T>(r: Result<T, io::Error>) -> Result<T, self::error::Error> {
match r {
Ok(v) => Ok(v),
Err(rxml::Error::IO(_)) => unreachable!(),
Err(rxml::Error::Xml(e)) => Err(e.into()),
Err(rxml::Error::InvalidUtf8Byte(_)) => Err(self::error::Error::Other("invalid utf-8")),
Err(rxml::Error::InvalidChar(_)) => {
Err(self::error::Error::Other("non-character encountered"))
}
Err(rxml::Error::RestrictedXml(_)) => Err(self::error::Error::Other("restricted xml")),
Err(e) => match e.downcast::<rxml::Error>() {
Ok(e) => Err(e.into()),
Err(_) => unreachable!("I/O error cannot be caused by &[]"),
},
}
}
@ -393,9 +391,9 @@ fn read_start_event<I: std::io::BufRead>(
}
}
}
Err(self::error::Error::XmlError(
rxml::error::XmlError::InvalidEof("before start of element"),
))
Err(self::error::Error::XmlError(rxml::Error::InvalidEof(Some(
rxml::error::ErrorContext::DocumentBegin,
))))
}
/// Attempt to parse a type implementing [`FromXml`] from a byte buffer
@ -415,9 +413,7 @@ pub fn from_bytes<T: FromXml>(mut buf: &[u8]) -> Result<T, self::error::Error> {
return Ok(v);
}
}
Err(self::error::Error::XmlError(
rxml::error::XmlError::InvalidEof("while parsing FromXml impl"),
))
Err(self::error::Error::XmlError(rxml::Error::InvalidEof(None)))
}
/// Return true if the string contains exclusively XML whitespace.