atuin/src/main.rs

77 lines
1.9 KiB
Rust
Raw Normal View History

2021-02-14 10:18:02 -07:00
#![feature(str_split_once)]
2021-02-14 06:28:01 -07:00
#![feature(proc_macro_hygiene)]
#![feature(decl_macro)]
2021-02-14 08:15:26 -07:00
#![warn(clippy::pedantic, clippy::nursery)]
2021-02-14 06:28:01 -07:00
use std::path::PathBuf;
use directories::ProjectDirs;
use eyre::{eyre, Result};
use structopt::StructOpt;
2021-02-13 13:21:49 -07:00
use uuid::Uuid;
#[macro_use]
extern crate log;
2021-02-14 06:28:01 -07:00
#[macro_use]
extern crate rocket;
2021-02-14 10:18:02 -07:00
use command::AtuinCmd;
2021-02-14 08:15:26 -07:00
use local::database::Sqlite;
2021-02-13 12:37:00 -07:00
mod command;
mod local;
2021-02-14 08:15:26 -07:00
mod remote;
2021-02-13 12:37:00 -07:00
#[derive(StructOpt)]
#[structopt(
author = "Ellie Huxtable <e@elm.sh>",
version = "0.1.0",
about = "Keep your shell history in sync"
)]
2021-02-13 05:58:40 -07:00
struct Atuin {
2020-10-05 10:34:28 -06:00
#[structopt(long, parse(from_os_str), help = "db file path")]
db: Option<PathBuf>,
#[structopt(subcommand)]
2021-02-13 05:58:40 -07:00
atuin: AtuinCmd,
}
2021-02-13 05:58:40 -07:00
impl Atuin {
fn run(self) -> Result<()> {
2021-02-14 08:15:26 -07:00
let db_path = if let Some(db_path) = self.db {
let path = db_path
.to_str()
.ok_or_else(|| eyre!("path {:?} was not valid UTF-8", db_path))?;
let path = shellexpand::full(path)?;
PathBuf::from(path.as_ref())
} else {
let project_dirs =
ProjectDirs::from("com", "elliehuxtable", "atuin").ok_or_else(|| {
eyre!("could not determine db file location\nspecify one using the --db flag")
})?;
let root = project_dirs.data_dir();
root.join("history.db")
};
2021-02-14 08:15:26 -07:00
let mut db = Sqlite::new(db_path)?;
2021-02-13 05:58:40 -07:00
match self.atuin {
2021-02-13 13:21:49 -07:00
AtuinCmd::History(history) => history.run(&mut db),
2021-02-13 12:37:00 -07:00
AtuinCmd::Import(import) => import.run(&mut db),
2021-02-14 06:28:01 -07:00
AtuinCmd::Server(server) => server.run(),
2021-02-13 13:21:49 -07:00
AtuinCmd::Uuid => {
println!("{}", Uuid::new_v4().to_simple().to_string());
Ok(())
}
}
}
}
fn main() -> Result<()> {
pretty_env_logger::init();
2021-02-13 05:58:40 -07:00
Atuin::from_args().run()
}