parent
94fa5ca1de
commit
25a0f7b502
@ -0,0 +1,41 @@
|
|||||||
|
//! The available formats to convert
|
||||||
|
use super::*;
|
||||||
|
use processor::Processor;
|
||||||
|
|
||||||
|
/// All formats and their associated processor
|
||||||
|
pub enum Format
|
||||||
|
{
|
||||||
|
Json(processor::Json),
|
||||||
|
SExpr(processor::Sexpr),
|
||||||
|
CBor(processor::Cbor),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Format
|
||||||
|
{
|
||||||
|
/// The processor for this format
|
||||||
|
pub fn processor(&self) -> &(dyn Processor + 'static)
|
||||||
|
{
|
||||||
|
match &self {
|
||||||
|
Self::Json(a) => a,
|
||||||
|
Self::SExpr(a) => a,
|
||||||
|
Self::CBor(a) => a,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The processor for this format
|
||||||
|
pub fn processor_mut(&mut self) -> &mut (dyn Processor + 'static)
|
||||||
|
{
|
||||||
|
match self {
|
||||||
|
Self::Json(a) => a,
|
||||||
|
Self::SExpr(a) => a,
|
||||||
|
Self::CBor(a) => a,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// All format objects and their name(s)
|
||||||
|
pub static FORMATS: &[(&'static [&'static str], Format)] = &[
|
||||||
|
(&["json"], Format::Json(processor::Json)),
|
||||||
|
(&["s-expression", "sexpr"], Format::SExpr(processor::Sexpr)),
|
||||||
|
(&["cbor"], Format::CBor(processor::Cbor)),
|
||||||
|
];
|
@ -0,0 +1,84 @@
|
|||||||
|
//! Processing
|
||||||
|
use super::*;
|
||||||
|
use std::io;
|
||||||
|
use std::{
|
||||||
|
fmt, error
|
||||||
|
};
|
||||||
|
|
||||||
|
macro_rules! processor {
|
||||||
|
($name:ident: {$($body:tt)*}) => {
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct $name;
|
||||||
|
|
||||||
|
impl Processor for $name{$($body)*}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait Processor
|
||||||
|
{
|
||||||
|
//TODO: How to design this trait??? eh...
|
||||||
|
fn process_stream(&self, input: &mut dyn serde::Serialize, output: &mut dyn io::Write) -> Result<usize, Error>;
|
||||||
|
}
|
||||||
|
|
||||||
|
processor!(Json: {
|
||||||
|
|
||||||
|
});
|
||||||
|
processor!(Sexpr: {
|
||||||
|
|
||||||
|
});
|
||||||
|
processor!(Cbor: {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
enum ErrorKind
|
||||||
|
{
|
||||||
|
IO(io::Error),
|
||||||
|
Unknown,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Processing error
|
||||||
|
pub struct Error(ErrorKind, Option<Box<dyn fmt::Display + 'static>>);
|
||||||
|
|
||||||
|
impl fmt::Debug for Error
|
||||||
|
{
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result
|
||||||
|
{
|
||||||
|
f.debug_struct("Error")
|
||||||
|
.field("kind", &self.0)
|
||||||
|
.field("message_obj", &format_args!("{:?}", self.1.as_ref().map(|x| x.as_ref() as *const _)))
|
||||||
|
.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
impl From<io::Error> for Error
|
||||||
|
{
|
||||||
|
#[inline] fn from(from: io::Error) -> Self
|
||||||
|
{
|
||||||
|
Self(ErrorKind::IO(from), None)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl error::Error for Error
|
||||||
|
{
|
||||||
|
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
||||||
|
Some(match &self.0 {
|
||||||
|
ErrorKind::IO(io) => io,
|
||||||
|
_ => return None,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Error
|
||||||
|
{
|
||||||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result
|
||||||
|
{
|
||||||
|
write!(f, "format processing error")?;
|
||||||
|
if let Some(msg) = self.1.as_ref() {
|
||||||
|
write!(f, ": {}", msg)
|
||||||
|
} else {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue