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
#![deny(clippy::str_to_string)]
mod cli;
mod command;
mod helper;
mod print;
use {
crate::cli::Cli,
clap::Parser,
gluesql_core::store::{GStore, GStoreMut},
gluesql_memory_storage::MemoryStorage,
gluesql_sled_storage::SledStorage,
std::{fmt::Debug, path::PathBuf},
};
#[derive(Parser, Debug)]
#[clap(name = "gluesql", about, version)]
struct Args {
#[clap(short, long, value_parser)]
path: Option<PathBuf>,
#[clap(short, long, value_parser)]
execute: Option<PathBuf>,
}
pub fn run() {
let args = Args::parse();
if let Some(path) = args.path {
let path = path.as_path().to_str().expect("wrong path");
println!("[sled-storage] connected to {}", path);
run(
SledStorage::new(path).expect("failed to load sled-storage"),
args.execute,
);
} else {
println!("[memory-storage] initialized");
run(MemoryStorage::default(), args.execute);
}
fn run<T: GStore + GStoreMut>(storage: T, input: Option<PathBuf>) {
let output = std::io::stdout();
let mut cli = Cli::new(storage, output);
if let Some(path) = input {
if let Err(e) = cli.load(path.as_path()) {
println!("[error] {}\n", e);
};
}
if let Err(e) = cli.run() {
eprintln!("{}", e);
}
}
}