Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
use crate::data::value;
|
2019-09-07 23:43:53 +00:00
|
|
|
use crate::prelude::*;
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::{CallInfo, ReturnSuccess, Signature, SyntaxShape, UntaggedValue, Value};
|
2019-09-07 23:43:53 +00:00
|
|
|
|
|
|
|
pub struct Echo;
|
|
|
|
|
|
|
|
impl PerItemCommand for Echo {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"echo"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> Signature {
|
2019-10-28 05:15:35 +00:00
|
|
|
Signature::build("echo").rest(SyntaxShape::Any, "the values to echo")
|
2019-09-07 23:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
2019-09-24 22:15:53 +00:00
|
|
|
"Echo the arguments back to the user."
|
2019-09-07 23:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
call_info: &CallInfo,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
raw_args: &RawCommandArgs,
|
2019-11-21 14:33:14 +00:00
|
|
|
_input: Value,
|
2019-09-07 23:43:53 +00:00
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
run(call_info, registry, raw_args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
call_info: &CallInfo,
|
|
|
|
_registry: &CommandRegistry,
|
|
|
|
_raw_args: &RawCommandArgs,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-11-01 19:15:53 +00:00
|
|
|
let mut output = vec![];
|
2019-09-07 23:43:53 +00:00
|
|
|
|
|
|
|
if let Some(ref positional) = call_info.args.positional {
|
|
|
|
for i in positional {
|
|
|
|
match i.as_string() {
|
|
|
|
Ok(s) => {
|
2019-11-01 19:15:53 +00:00
|
|
|
output.push(Ok(ReturnSuccess::Value(
|
Extract core stuff into own crates
This commit extracts five new crates:
- nu-source, which contains the core source-code handling logic in Nu,
including Text, Span, and also the pretty.rs-based debug logic
- nu-parser, which is the parser and expander logic
- nu-protocol, which is the bulk of the types and basic conveniences
used by plugins
- nu-errors, which contains ShellError, ParseError and error handling
conveniences
- nu-textview, which is the textview plugin extracted into a crate
One of the major consequences of this refactor is that it's no longer
possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so
a lot of types became more concrete (Value became a concrete type
instead of Spanned<Value>, for example).
This also turned a number of inherent methods in the main nu crate into
plain functions (impl Value {} became a bunch of functions in the
`value` namespace in `crate::data::value`).
2019-11-26 02:30:48 +00:00
|
|
|
value::string(s).into_value(i.tag.clone()),
|
2019-11-01 19:15:53 +00:00
|
|
|
)));
|
2019-09-07 23:43:53 +00:00
|
|
|
}
|
2019-11-01 19:15:53 +00:00
|
|
|
_ => match i {
|
2019-11-21 14:33:14 +00:00
|
|
|
Value {
|
|
|
|
value: UntaggedValue::Table(table),
|
2019-11-01 19:15:53 +00:00
|
|
|
..
|
|
|
|
} => {
|
2019-11-21 14:33:14 +00:00
|
|
|
for value in table {
|
|
|
|
output.push(Ok(ReturnSuccess::Value(value.clone())));
|
2019-11-01 19:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
output.push(Ok(ReturnSuccess::Value(i.clone())));
|
|
|
|
}
|
|
|
|
},
|
2019-09-07 23:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-01 19:15:53 +00:00
|
|
|
let stream = VecDeque::from(output);
|
2019-09-07 23:43:53 +00:00
|
|
|
|
|
|
|
Ok(stream.to_output_stream())
|
|
|
|
}
|