use std::rc::Rc;
use crate::cli::{Cli, Experiment};
use crate::parser::Localization;
#[derive(Debug, Clone, Default, PartialEq)]
pub struct Session {
    pub locale: Localization,
    pub warranty: bool,
    pub experiments: Vec<Experiment>,
    pub history: Option<String>,
    pub output: SessionOutput,
}
pub enum SessionOutput {
    Stdout(std::io::Stdout),
    Callback(Rc<dyn Fn(String)>),
}
#[derive(Debug, Clone, Default, PartialEq)]
pub struct SessionParserConfig {
    pub locale: Localization,
    pub experiments: Vec<Experiment>,
}
impl From<Session> for SessionParserConfig {
    fn from(val: Session) -> Self {
        SessionParserConfig { locale: val.locale, experiments: val.experiments }
    }
}
impl std::fmt::Debug for SessionOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            SessionOutput::Stdout(s) => s.fmt(f),
            SessionOutput::Callback(_) => write!(f, "SessionOutput::Callback"),
        }
    }
}
impl Default for SessionOutput {
    fn default() -> Self {
        SessionOutput::Stdout(std::io::stdout())
    }
}
impl Clone for SessionOutput {
    fn clone(&self) -> Self {
        match self {
            Self::Stdout(_) => Self::Stdout(std::io::stdout()),
            Self::Callback(f) => Self::Callback(f.clone()),
        }
    }
}
impl PartialEq for SessionOutput {
    fn eq(&self, other: &Self) -> bool {
        matches!((self, other), (Self::Stdout(_), Self::Stdout(_)))
    }
}
impl std::io::Write for SessionOutput {
    fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
        match self {
            Self::Stdout(s) => s.write(buf),
            Self::Callback(f) => {
                let len = buf.len();
                f(std::str::from_utf8(buf).unwrap_or_default().to_string());
                Ok(len)
            }
        }
    }
    fn flush(&mut self) -> std::io::Result<()> {
        match self {
            Self::Stdout(s) => s.flush(),
            Self::Callback(_) => Ok(()),
        }
    }
}
impl Session {
    pub fn with_history_file(mut self, file: String) -> Session {
        self.history = Some(file);
        self
    }
    pub fn with_output(mut self, output: SessionOutput) -> Session {
        self.output = output;
        self
    }
    pub fn with_experiments(mut self, experiments: Vec<Experiment>) -> Session {
        self.experiments = experiments;
        self
    }
}
impl From<Cli> for Session {
    fn from(value: Cli) -> Self {
        Session {
            locale: value.locale,
            warranty: value.warranty,
            experiments: value.experiments,
            history: None,
            output: SessionOutput::default(),
        }
    }
}