summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: c4ac30b2a3835f04b8ef6d3bb6826146e4053fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#![feature(str_split_once)]
#![feature(proc_macro_hygiene)]
#![feature(decl_macro)]
#![warn(clippy::pedantic, clippy::nursery)]

use std::path::PathBuf;

use directories::ProjectDirs;
use eyre::{eyre, Result};
use structopt::StructOpt;

#[macro_use]
extern crate log;

#[macro_use]
extern crate rocket;

use command::AtuinCmd;
use local::database::Sqlite;

mod command;
mod local;
mod remote;

#[derive(StructOpt)]
#[structopt(
    author = "Ellie Huxtable <e@elm.sh>",
    version = "0.3.1",
    about = "Magical shell history"
)]
struct Atuin {
    #[structopt(long, parse(from_os_str), help = "db file path")]
    db: Option<PathBuf>,

    #[structopt(subcommand)]
    atuin: AtuinCmd,
}

impl Atuin {
    fn run(self) -> Result<()> {
        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 {
            ProjectDirs::from("com", "elliehuxtable", "atuin")
                .ok_or_else(|| {
                    eyre!("could not determine db file location\nspecify one using the --db flag")
                })?
                .data_dir()
                .join("history.db")
        };

        let mut db = Sqlite::new(db_path)?;

        self.atuin.run(&mut db)
    }
}

fn main() -> Result<()> {
    pretty_env_logger::init();

    Atuin::from_args().run()
}