use typed_builder::TypedBuilder;
use super::History;
#[derive(Debug, Clone, TypedBuilder)]
pub struct HistoryImported {
timestamp: time::OffsetDateTime,
#[builder(setter(into))]
command: String,
#[builder(default = "unknown".into(), setter(into))]
cwd: String,
#[builder(default = -1)]
exit: i64,
#[builder(default = -1)]
duration: i64,
#[builder(default, setter(strip_option, into))]
session: Option<String>,
#[builder(default, setter(strip_option, into))]
hostname: Option<String>,
#[builder(default, setter(strip_option, into))]
author: Option<String>,
#[builder(default, setter(strip_option, into))]
intent: Option<String>,
}
impl From<HistoryImported> for History {
fn from(imported: HistoryImported) -> Self {
History::new(
imported.timestamp,
imported.command,
imported.cwd,
imported.exit,
imported.duration,
imported.session,
imported.hostname,
imported.author,
imported.intent,
None,
)
}
}
#[derive(Debug, Clone, TypedBuilder)]
pub struct HistoryCaptured {
timestamp: time::OffsetDateTime,
#[builder(setter(into))]
command: String,
#[builder(setter(into))]
cwd: String,
#[builder(default, setter(strip_option, into))]
author: Option<String>,
#[builder(default, setter(strip_option, into))]
intent: Option<String>,
}
impl From<HistoryCaptured> for History {
fn from(captured: HistoryCaptured) -> Self {
History::new(
captured.timestamp,
captured.command,
captured.cwd,
-1,
-1,
None,
None,
captured.author,
captured.intent,
None,
)
}
}
#[derive(Debug, Clone, TypedBuilder)]
pub struct HistoryFromDb {
id: String,
timestamp: time::OffsetDateTime,
command: String,
cwd: String,
exit: i64,
duration: i64,
session: String,
hostname: String,
author: String,
intent: Option<String>,
deleted_at: Option<time::OffsetDateTime>,
}
impl From<HistoryFromDb> for History {
fn from(from_db: HistoryFromDb) -> Self {
History {
id: from_db.id.into(),
timestamp: from_db.timestamp,
exit: from_db.exit,
command: from_db.command,
cwd: from_db.cwd,
duration: from_db.duration,
session: from_db.session,
hostname: from_db.hostname,
author: from_db.author,
intent: from_db.intent,
deleted_at: from_db.deleted_at,
}
}
}
#[derive(Debug, Clone, TypedBuilder)]
pub struct HistoryDaemonCapture {
timestamp: time::OffsetDateTime,
#[builder(setter(into))]
command: String,
#[builder(setter(into))]
cwd: String,
#[builder(setter(into))]
session: String,
#[builder(setter(into))]
hostname: String,
#[builder(default, setter(strip_option, into))]
author: Option<String>,
#[builder(default, setter(strip_option, into))]
intent: Option<String>,
}
impl From<HistoryDaemonCapture> for History {
fn from(captured: HistoryDaemonCapture) -> Self {
History::new(
captured.timestamp,
captured.command,
captured.cwd,
-1,
-1,
Some(captured.session),
Some(captured.hostname),
captured.author,
captured.intent,
None,
)
}
}