forked from extern/nushell
All tests pass
This commit is contained in:
parent
aadacc2d36
commit
83030094e0
@ -115,6 +115,7 @@ impl CommandArgs {
|
|||||||
callback: fn(T, RunnableContext) -> Result<OutputStream, ShellError>,
|
callback: fn(T, RunnableContext) -> Result<OutputStream, ShellError>,
|
||||||
) -> Result<RunnableArgs<T>, ShellError> {
|
) -> Result<RunnableArgs<T>, ShellError> {
|
||||||
let shell_manager = self.shell_manager.clone();
|
let shell_manager = self.shell_manager.clone();
|
||||||
|
let source_map = self.call_info.source_map.clone();
|
||||||
let host = self.host.clone();
|
let host = self.host.clone();
|
||||||
let args = self.evaluate_once(registry)?;
|
let args = self.evaluate_once(registry)?;
|
||||||
let (input, args) = args.split();
|
let (input, args) = args.split();
|
||||||
@ -128,6 +129,7 @@ impl CommandArgs {
|
|||||||
commands: registry.clone(),
|
commands: registry.clone(),
|
||||||
shell_manager,
|
shell_manager,
|
||||||
name: name_span,
|
name: name_span,
|
||||||
|
source_map,
|
||||||
host,
|
host,
|
||||||
},
|
},
|
||||||
callback,
|
callback,
|
||||||
@ -146,6 +148,7 @@ impl CommandArgs {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let shell_manager = self.shell_manager.clone();
|
let shell_manager = self.shell_manager.clone();
|
||||||
|
let source_map = self.call_info.source_map.clone();
|
||||||
let host = self.host.clone();
|
let host = self.host.clone();
|
||||||
let args = self.evaluate_once(registry)?;
|
let args = self.evaluate_once(registry)?;
|
||||||
let (input, args) = args.split();
|
let (input, args) = args.split();
|
||||||
@ -159,6 +162,7 @@ impl CommandArgs {
|
|||||||
commands: registry.clone(),
|
commands: registry.clone(),
|
||||||
shell_manager,
|
shell_manager,
|
||||||
name: name_span,
|
name: name_span,
|
||||||
|
source_map,
|
||||||
host,
|
host,
|
||||||
},
|
},
|
||||||
raw_args,
|
raw_args,
|
||||||
@ -172,6 +176,7 @@ pub struct RunnableContext {
|
|||||||
pub shell_manager: ShellManager,
|
pub shell_manager: ShellManager,
|
||||||
pub host: Arc<Mutex<dyn Host>>,
|
pub host: Arc<Mutex<dyn Host>>,
|
||||||
pub commands: CommandRegistry,
|
pub commands: CommandRegistry,
|
||||||
|
pub source_map: SourceMap,
|
||||||
pub name: Span,
|
pub name: Span,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,57 +1,56 @@
|
|||||||
use crate::errors::ShellError;
|
use crate::errors::ShellError;
|
||||||
use crate::object::dir_entry_dict;
|
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use std::path::{Path, PathBuf};
|
|
||||||
|
//pub fn ls(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
||||||
|
// let args = args.evaluate_once(registry)?;
|
||||||
|
// let path = PathBuf::from(args.shell_manager.path());
|
||||||
|
// let mut full_path = PathBuf::from(path);
|
||||||
|
// match &args.nth(0) {
|
||||||
|
// Some(Tagged {
|
||||||
|
// item: Value::Primitive(Primitive::String(s)),
|
||||||
|
// ..
|
||||||
|
// }) => full_path.push(Path::new(&s)),
|
||||||
|
// _ => {}
|
||||||
|
// }
|
||||||
|
|
||||||
|
// let entries = std::fs::read_dir(&full_path);
|
||||||
|
|
||||||
|
// let entries = match entries {
|
||||||
|
// Err(e) => {
|
||||||
|
// if let Some(s) = args.nth(0) {
|
||||||
|
// return Err(ShellError::labeled_error(
|
||||||
|
// e.to_string(),
|
||||||
|
// e.to_string(),
|
||||||
|
// s.span(),
|
||||||
|
// ));
|
||||||
|
// } else {
|
||||||
|
// return Err(ShellError::labeled_error(
|
||||||
|
// e.to_string(),
|
||||||
|
// e.to_string(),
|
||||||
|
// args.name_span(),
|
||||||
|
// ));
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// Ok(o) => o,
|
||||||
|
// };
|
||||||
|
|
||||||
|
// let mut shell_entries = VecDeque::new();
|
||||||
|
|
||||||
|
// for entry in entries {
|
||||||
|
// let entry = entry?;
|
||||||
|
// let filepath = entry.path();
|
||||||
|
// let filename = filepath.strip_prefix(&full_path).unwrap();
|
||||||
|
// let value = dir_entry_dict(
|
||||||
|
// filename,
|
||||||
|
// &entry.metadata()?,
|
||||||
|
// Tag::unknown_origin(args.call_info.name_span),
|
||||||
|
// )?;
|
||||||
|
// shell_entries.push_back(ReturnSuccess::value(value))
|
||||||
|
// }
|
||||||
|
// Ok(shell_entries.to_output_stream())
|
||||||
|
|
||||||
pub fn ls(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
pub fn ls(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
||||||
|
let shell_manager = args.shell_manager.clone();
|
||||||
let args = args.evaluate_once(registry)?;
|
let args = args.evaluate_once(registry)?;
|
||||||
let path = PathBuf::from(args.shell_manager.path());
|
shell_manager.ls(args)
|
||||||
let mut full_path = PathBuf::from(path);
|
|
||||||
match &args.nth(0) {
|
|
||||||
Some(Tagged {
|
|
||||||
item: Value::Primitive(Primitive::String(s)),
|
|
||||||
..
|
|
||||||
}) => full_path.push(Path::new(&s)),
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
let entries = std::fs::read_dir(&full_path);
|
|
||||||
|
|
||||||
let entries = match entries {
|
|
||||||
Err(e) => {
|
|
||||||
if let Some(s) = args.nth(0) {
|
|
||||||
return Err(ShellError::labeled_error(
|
|
||||||
e.to_string(),
|
|
||||||
e.to_string(),
|
|
||||||
s.span(),
|
|
||||||
));
|
|
||||||
} else {
|
|
||||||
return Err(ShellError::labeled_error(
|
|
||||||
e.to_string(),
|
|
||||||
e.to_string(),
|
|
||||||
args.name_span(),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(o) => o,
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut shell_entries = VecDeque::new();
|
|
||||||
|
|
||||||
for entry in entries {
|
|
||||||
let entry = entry?;
|
|
||||||
let filepath = entry.path();
|
|
||||||
let filename = filepath.strip_prefix(&full_path).unwrap();
|
|
||||||
let value = dir_entry_dict(
|
|
||||||
filename,
|
|
||||||
&entry.metadata()?,
|
|
||||||
Tag::unknown_origin(args.call_info.name_span),
|
|
||||||
)?;
|
|
||||||
shell_entries.push_back(ReturnSuccess::value(value))
|
|
||||||
}
|
|
||||||
Ok(shell_entries.to_output_stream())
|
|
||||||
|
|
||||||
// pub fn ls(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
||||||
// let args = args.evaluate_once(registry)?;
|
|
||||||
// args.shell_manager.ls(args, args.input)
|
|
||||||
}
|
}
|
||||||
|
@ -6,13 +6,13 @@ use crate::commands::StaticCommand;
|
|||||||
use crate::errors::ShellError;
|
use crate::errors::ShellError;
|
||||||
use crate::object::Value;
|
use crate::object::Value;
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use std::path::PathBuf;
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
pub struct Save;
|
pub struct Save;
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
pub struct SaveArgs {
|
pub struct SaveArgs {
|
||||||
path: Tagged<PathBuf>,
|
path: Option<Tagged<PathBuf>>,
|
||||||
raw: bool,
|
raw: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ impl StaticCommand for Save {
|
|||||||
|
|
||||||
fn signature(&self) -> Signature {
|
fn signature(&self) -> Signature {
|
||||||
Signature::build("save")
|
Signature::build("save")
|
||||||
.required("path", SyntaxType::Path)
|
.optional("path", SyntaxType::Path)
|
||||||
.switch("raw")
|
.switch("raw")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,71 +44,172 @@ pub fn save(
|
|||||||
context: RunnableContext,
|
context: RunnableContext,
|
||||||
) -> Result<OutputStream, ShellError> {
|
) -> Result<OutputStream, ShellError> {
|
||||||
let mut full_path = context.cwd();
|
let mut full_path = context.cwd();
|
||||||
full_path.push(path.item());
|
|
||||||
|
|
||||||
let stream = async_stream_block! {
|
if path.is_none() {
|
||||||
let input: Vec<Tagged<Value>> = context.input.values.collect().await;
|
let source_map = context.source_map.clone();
|
||||||
|
let stream = async_stream_block! {
|
||||||
let contents = match full_path.extension() {
|
let input: Vec<Tagged<Value>> = context.input.values.collect().await;
|
||||||
Some(x) if x == "csv" && !save_raw => {
|
// If there is no filename, check the metadata for the origin filename
|
||||||
if input.len() != 1 {
|
if input.len() > 0 {
|
||||||
yield Err(ShellError::string(
|
let origin = input[0].origin();
|
||||||
"saving to csv requires a single object (or use --raw)",
|
match origin.map(|x| source_map.get(&x)).flatten() {
|
||||||
));
|
Some(path) => match path {
|
||||||
}
|
SpanSource::File(file) => {
|
||||||
to_csv_to_string(&value_to_csv_value(&input[0])).unwrap()
|
full_path.push(Path::new(file));
|
||||||
}
|
|
||||||
Some(x) if x == "toml" && !save_raw => {
|
|
||||||
if input.len() != 1 {
|
|
||||||
yield Err(ShellError::string(
|
|
||||||
"saving to toml requires a single object (or use --raw)",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
toml::to_string(&value_to_toml_value(&input[0])).unwrap()
|
|
||||||
}
|
|
||||||
Some(x) if x == "json" && !save_raw => {
|
|
||||||
if input.len() != 1 {
|
|
||||||
yield Err(ShellError::string(
|
|
||||||
"saving to json requires a single object (or use --raw)",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
serde_json::to_string(&value_to_json_value(&input[0])).unwrap()
|
|
||||||
}
|
|
||||||
Some(x) if x == "yml" && !save_raw => {
|
|
||||||
if input.len() != 1 {
|
|
||||||
yield Err(ShellError::string(
|
|
||||||
"saving to yml requires a single object (or use --raw)",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
|
||||||
}
|
|
||||||
Some(x) if x == "yaml" && !save_raw => {
|
|
||||||
if input.len() != 1 {
|
|
||||||
yield Err(ShellError::string(
|
|
||||||
"saving to yaml requires a single object (or use --raw)",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
let mut save_data = String::new();
|
|
||||||
if input.len() > 0 {
|
|
||||||
let mut first = true;
|
|
||||||
for i in input.iter() {
|
|
||||||
if !first {
|
|
||||||
save_data.push_str("\n");
|
|
||||||
} else {
|
|
||||||
first = false;
|
|
||||||
}
|
}
|
||||||
save_data.push_str(&i.as_string().unwrap());
|
_ => {
|
||||||
|
// yield Err(ShellError::labeled_error(
|
||||||
|
// "Save requires a filepath",
|
||||||
|
// "needs path",
|
||||||
|
// context.name,
|
||||||
|
// ));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
None => {
|
||||||
|
// yield Err(ShellError::labeled_error(
|
||||||
|
// "Save requires a filepath",
|
||||||
|
// "needs path",
|
||||||
|
// context.name,
|
||||||
|
// ));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
save_data
|
} else {
|
||||||
|
// yield Err(ShellError::labeled_error(
|
||||||
|
// "Save requires a filepath",
|
||||||
|
// "needs path",
|
||||||
|
// context.name,
|
||||||
|
// ));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let contents = match full_path.extension() {
|
||||||
|
Some(x) if x == "csv" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to csv requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
to_csv_to_string(&value_to_csv_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "toml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to toml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
toml::to_string(&value_to_toml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "json" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to json requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_json::to_string(&value_to_json_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "yml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to yml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "yaml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to yaml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
let mut save_data = String::new();
|
||||||
|
if input.len() > 0 {
|
||||||
|
let mut first = true;
|
||||||
|
for i in input.iter() {
|
||||||
|
if !first {
|
||||||
|
save_data.push_str("\n");
|
||||||
|
} else {
|
||||||
|
first = false;
|
||||||
|
}
|
||||||
|
save_data.push_str(&i.as_string().unwrap());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
save_data
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let _ = std::fs::write(full_path, contents);
|
||||||
};
|
};
|
||||||
|
|
||||||
let _ = std::fs::write(full_path, contents);
|
Ok(OutputStream::new(stream))
|
||||||
};
|
} else {
|
||||||
|
full_path.push(path.unwrap().item());
|
||||||
|
|
||||||
Ok(OutputStream::new(stream))
|
let stream = async_stream_block! {
|
||||||
|
let input: Vec<Tagged<Value>> = context.input.values.collect().await;
|
||||||
|
|
||||||
|
let contents = match full_path.extension() {
|
||||||
|
Some(x) if x == "csv" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to csv requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
to_csv_to_string(&value_to_csv_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "toml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to toml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
toml::to_string(&value_to_toml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "json" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to json requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_json::to_string(&value_to_json_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "yml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to yml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
Some(x) if x == "yaml" && !save_raw => {
|
||||||
|
if input.len() != 1 {
|
||||||
|
yield Err(ShellError::string(
|
||||||
|
"saving to yaml requires a single object (or use --raw)",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
serde_yaml::to_string(&value_to_yaml_value(&input[0])).unwrap()
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
let mut save_data = String::new();
|
||||||
|
if input.len() > 0 {
|
||||||
|
let mut first = true;
|
||||||
|
for i in input.iter() {
|
||||||
|
if !first {
|
||||||
|
save_data.push_str("\n");
|
||||||
|
} else {
|
||||||
|
first = false;
|
||||||
|
}
|
||||||
|
save_data.push_str(&i.as_string().unwrap());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
save_data
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let _ = std::fs::write(full_path, contents);
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(OutputStream::new(stream))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,6 @@ pub fn table(_args: TableArgs, context: RunnableContext) -> Result<OutputStream,
|
|||||||
if input.len() > 0 {
|
if input.len() > 0 {
|
||||||
let mut host = context.host.lock().unwrap();
|
let mut host = context.host.lock().unwrap();
|
||||||
let view = TableView::from_list(&input);
|
let view = TableView::from_list(&input);
|
||||||
println!("{:#?}", view);
|
|
||||||
if let Some(view) = view {
|
if let Some(view) = view {
|
||||||
handle_unexpected(&mut *host, |host| crate::format::print_view(&view, host));
|
handle_unexpected(&mut *host, |host| crate::format::print_view(&view, host));
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
use derive_new::new;
|
use derive_new::new;
|
||||||
use rustyline::completion::Completer;
|
|
||||||
use rustyline::completion::{self, FilenameCompleter};
|
use rustyline::completion::{self, FilenameCompleter};
|
||||||
use rustyline::line_buffer::LineBuffer;
|
use rustyline::line_buffer::LineBuffer;
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
use crate::commands::command::CallInfo;
|
use crate::commands::command::{CallInfo, EvaluatedStaticCommandArgs};
|
||||||
use crate::object::dir_entry_dict;
|
use crate::object::dir_entry_dict;
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::shell::completer::{CompletionPair, NuCompleter};
|
use crate::shell::completer::NuCompleter;
|
||||||
use crate::shell::shell::Shell;
|
use crate::shell::shell::Shell;
|
||||||
use rustyline::completion::{Completer, FilenameCompleter};
|
use rustyline::completion::FilenameCompleter;
|
||||||
use rustyline::error::ReadlineError;
|
|
||||||
use rustyline::hint::{Hinter, HistoryHinter};
|
use rustyline::hint::{Hinter, HistoryHinter};
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
pub struct FilesystemShell {
|
pub struct FilesystemShell {
|
||||||
@ -54,10 +53,10 @@ impl Shell for FilesystemShell {
|
|||||||
"filesystem".to_string()
|
"filesystem".to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ls(&self, call_info: CallInfo, _input: InputStream) -> Result<OutputStream, ShellError> {
|
fn ls(&self, args: EvaluatedStaticCommandArgs) -> Result<OutputStream, ShellError> {
|
||||||
let cwd = self.path.clone();
|
let cwd = self.path.clone();
|
||||||
let mut full_path = PathBuf::from(&self.path);
|
let mut full_path = PathBuf::from(&self.path);
|
||||||
match &call_info.args.nth(0) {
|
match &args.nth(0) {
|
||||||
Some(Tagged { item: value, .. }) => full_path.push(Path::new(&value.as_string()?)),
|
Some(Tagged { item: value, .. }) => full_path.push(Path::new(&value.as_string()?)),
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
@ -78,18 +77,15 @@ impl Shell for FilesystemShell {
|
|||||||
|
|
||||||
let entries = match entries {
|
let entries = match entries {
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
if let Some(s) = call_info.args.nth(0) {
|
if let Some(s) = args.nth(0) {
|
||||||
return Err(ShellError::labeled_error(
|
return Err(ShellError::labeled_error(
|
||||||
e.to_string(),
|
e.to_string(),
|
||||||
e.to_string(),
|
e.to_string(),
|
||||||
s.span(),
|
s.span(),
|
||||||
));
|
));
|
||||||
} else {
|
} else {
|
||||||
return Err(ShellError::labeled_error(
|
//FIXME
|
||||||
e.to_string(),
|
return Err(ShellError::string(e.to_string()));
|
||||||
e.to_string(),
|
|
||||||
call_info.name_span,
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(o) => o,
|
Ok(o) => o,
|
||||||
@ -101,7 +97,7 @@ impl Shell for FilesystemShell {
|
|||||||
let value = dir_entry_dict(
|
let value = dir_entry_dict(
|
||||||
filename,
|
filename,
|
||||||
&entry.metadata()?,
|
&entry.metadata()?,
|
||||||
Tag::unknown_origin(call_info.name_span),
|
Tag::unknown_origin(args.call_info.name_span),
|
||||||
)?;
|
)?;
|
||||||
shell_entries.push_back(ReturnSuccess::value(value))
|
shell_entries.push_back(ReturnSuccess::value(value))
|
||||||
}
|
}
|
||||||
@ -118,7 +114,7 @@ impl Shell for FilesystemShell {
|
|||||||
let value = dir_entry_dict(
|
let value = dir_entry_dict(
|
||||||
filename,
|
filename,
|
||||||
&metadata,
|
&metadata,
|
||||||
Tag::unknown_origin(call_info.name_span),
|
Tag::unknown_origin(args.call_info.name_span),
|
||||||
)?;
|
)?;
|
||||||
shell_entries.push_back(ReturnSuccess::value(value))
|
shell_entries.push_back(ReturnSuccess::value(value))
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@ use crate::parser::nom_input;
|
|||||||
use crate::parser::parse::token_tree::TokenNode;
|
use crate::parser::parse::token_tree::TokenNode;
|
||||||
use crate::parser::parse::tokens::RawToken;
|
use crate::parser::parse::tokens::RawToken;
|
||||||
use crate::parser::{Pipeline, PipelineElement};
|
use crate::parser::{Pipeline, PipelineElement};
|
||||||
use crate::shell::completer::CompletionPair;
|
|
||||||
use crate::shell::shell_manager::ShellManager;
|
use crate::shell::shell_manager::ShellManager;
|
||||||
use crate::Tagged;
|
use crate::Tagged;
|
||||||
use ansi_term::Color;
|
use ansi_term::Color;
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
use crate::commands::command::CallInfo;
|
use crate::commands::command::{CallInfo, EvaluatedStaticCommandArgs};
|
||||||
use crate::errors::ShellError;
|
use crate::errors::ShellError;
|
||||||
use crate::shell::completer::CompletionPair;
|
|
||||||
use crate::stream::{InputStream, OutputStream};
|
use crate::stream::{InputStream, OutputStream};
|
||||||
use rustyline::error::ReadlineError;
|
|
||||||
|
|
||||||
pub trait Shell {
|
pub trait Shell {
|
||||||
fn name(&self) -> String;
|
fn name(&self) -> String;
|
||||||
fn ls(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError>;
|
fn ls(&self, args: EvaluatedStaticCommandArgs) -> Result<OutputStream, ShellError>;
|
||||||
fn cd(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError>;
|
fn cd(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError>;
|
||||||
fn path(&self) -> String;
|
fn path(&self) -> String;
|
||||||
fn set_path(&mut self, path: String);
|
fn set_path(&mut self, path: String);
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
use crate::commands::command::CallInfo;
|
use crate::commands::command::{CallInfo, EvaluatedStaticCommandArgs};
|
||||||
use crate::errors::ShellError;
|
use crate::errors::ShellError;
|
||||||
use crate::shell::completer::CompletionPair;
|
|
||||||
use crate::shell::filesystem_shell::FilesystemShell;
|
use crate::shell::filesystem_shell::FilesystemShell;
|
||||||
use crate::shell::shell::Shell;
|
use crate::shell::shell::Shell;
|
||||||
use crate::stream::{InputStream, OutputStream};
|
use crate::stream::{InputStream, OutputStream};
|
||||||
use rustyline::completion::Completer;
|
|
||||||
use rustyline::error::ReadlineError;
|
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
@ -88,10 +85,10 @@ impl ShellManager {
|
|||||||
self.set_path(self.path());
|
self.set_path(self.path());
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn ls(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError> {
|
pub fn ls(&self, args: EvaluatedStaticCommandArgs) -> Result<OutputStream, ShellError> {
|
||||||
let env = self.shells.lock().unwrap();
|
let env = self.shells.lock().unwrap();
|
||||||
|
|
||||||
env.last().unwrap().ls(call_info, input)
|
env.last().unwrap().ls(args)
|
||||||
}
|
}
|
||||||
pub fn cd(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError> {
|
pub fn cd(&self, call_info: CallInfo, input: InputStream) -> Result<OutputStream, ShellError> {
|
||||||
let env = self.shells.lock().unwrap();
|
let env = self.shells.lock().unwrap();
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
use crate::commands::command::CallInfo;
|
use crate::commands::command::{CallInfo, EvaluatedStaticCommandArgs};
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::shell::completer::CompletionPair;
|
|
||||||
use crate::shell::shell::Shell;
|
use crate::shell::shell::Shell;
|
||||||
use rustyline::error::ReadlineError;
|
|
||||||
use std::ffi::OsStr;
|
use std::ffi::OsStr;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
@ -59,7 +57,7 @@ impl Shell for ValueShell {
|
|||||||
"value".to_string()
|
"value".to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ls(&self, _call_info: CallInfo, _input: InputStream) -> Result<OutputStream, ShellError> {
|
fn ls(&self, _args: EvaluatedStaticCommandArgs) -> Result<OutputStream, ShellError> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.members()
|
.members()
|
||||||
.map(|x| ReturnSuccess::value(x))
|
.map(|x| ReturnSuccess::value(x))
|
||||||
|
@ -106,7 +106,7 @@ fn str_converts_to_int() {
|
|||||||
nu!(
|
nu!(
|
||||||
output,
|
output,
|
||||||
cwd("tests/fixtures/formats"),
|
cwd("tests/fixtures/formats"),
|
||||||
"open caco3_plastics.csv | get 0 | str tariff_item --to-int | where tariff_item == 2509000000 | get tariff_item | echo $it"
|
"open caco3_plastics.csv | first 1 | str tariff_item --to-int | where tariff_item == 2509000000 | get tariff_item | echo $it"
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_eq!(output, "2509000000");
|
assert_eq!(output, "2509000000");
|
||||||
|
Loading…
Reference in New Issue
Block a user