mirror of
https://github.com/nushell/nushell.git
synced 2024-12-11 17:51:50 +01:00
56 lines
1.5 KiB
Rust
56 lines
1.5 KiB
Rust
use super::super::SQLiteDatabase;
|
|
use nu_engine::CallExt;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack},
|
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, Spanned, SyntaxShape,
|
|
Type,
|
|
};
|
|
use std::path::PathBuf;
|
|
|
|
#[derive(Clone)]
|
|
pub struct OpenDb;
|
|
|
|
impl Command for OpenDb {
|
|
fn name(&self) -> &str {
|
|
"open-db"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.required("query", SyntaxShape::Filepath, "SQLite file to be opened")
|
|
.input_type(Type::Any)
|
|
.output_type(Type::Custom("database".into()))
|
|
.category(Category::Custom("database".into()))
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Open a database"
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["database", "open"]
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Creates a connection to a sqlite database based on the file name",
|
|
example: r#"open-db file.sqlite"#,
|
|
result: None,
|
|
}]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let path: Spanned<PathBuf> = call.req(engine_state, stack, 0)?;
|
|
|
|
SQLiteDatabase::try_from_path(path.item.as_path(), path.span)
|
|
.map(|db| db.into_value(call.head).into_pipeline_data())
|
|
}
|
|
}
|