2022-01-05 00:26:01 +00:00
|
|
|
use nu_path::canonicalize_with;
|
2021-09-26 18:39:19 +00:00
|
|
|
use nu_protocol::{
|
2021-11-15 23:16:06 +00:00
|
|
|
ast::{
|
2022-04-09 02:55:02 +00:00
|
|
|
Argument, Block, Call, Expr, Expression, ImportPattern, ImportPatternHead,
|
|
|
|
ImportPatternMember, Pipeline,
|
2021-11-15 23:16:06 +00:00
|
|
|
},
|
2022-05-07 19:39:22 +00:00
|
|
|
engine::{StateWorkingSet, DEFAULT_OVERLAY_NAME},
|
|
|
|
span, Exportable, Module, PositionalArg, Span, SyntaxShape, Type,
|
2021-09-26 18:39:19 +00:00
|
|
|
};
|
2022-01-14 21:06:32 +00:00
|
|
|
use std::collections::HashSet;
|
2022-03-12 20:12:15 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
static LIB_DIRS_ENV: &str = "NU_LIB_DIRS";
|
|
|
|
#[cfg(feature = "plugin")]
|
|
|
|
static PLUGIN_DIRS_ENV: &str = "NU_PLUGIN_DIRS";
|
2021-09-26 18:39:19 +00:00
|
|
|
|
|
|
|
use crate::{
|
2022-02-11 18:38:10 +00:00
|
|
|
known_external::KnownExternal,
|
2021-09-26 18:39:19 +00:00
|
|
|
lex, lite_parse,
|
2022-01-22 18:24:47 +00:00
|
|
|
lite_parse::LiteCommand,
|
2021-09-26 18:39:19 +00:00
|
|
|
parser::{
|
2022-02-15 19:31:14 +00:00
|
|
|
check_call, check_name, garbage, garbage_pipeline, parse, parse_block_expression,
|
2022-02-10 23:15:15 +00:00
|
|
|
parse_internal_call, parse_multispan_value, parse_signature, parse_string,
|
2022-06-12 19:18:00 +00:00
|
|
|
parse_var_with_opt_type, trim_quotes, ParsedInternalCall,
|
2021-09-26 18:39:19 +00:00
|
|
|
},
|
2022-05-01 18:37:20 +00:00
|
|
|
unescape_unquote_string, ParseError,
|
2021-09-26 18:39:19 +00:00
|
|
|
};
|
|
|
|
|
2022-03-18 19:03:57 +00:00
|
|
|
pub fn parse_def_predecl(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
|
|
|
expand_aliases_denylist: &[usize],
|
|
|
|
) -> Option<ParseError> {
|
2021-09-26 18:39:19 +00:00
|
|
|
let name = working_set.get_span_contents(spans[0]);
|
|
|
|
|
2021-09-28 17:29:38 +00:00
|
|
|
// handle "export def" same as "def"
|
|
|
|
let (name, spans) = if name == b"export" && spans.len() >= 2 {
|
|
|
|
(working_set.get_span_contents(spans[1]), &spans[1..])
|
|
|
|
} else {
|
|
|
|
(name, spans)
|
|
|
|
};
|
|
|
|
|
2022-01-29 20:45:46 +00:00
|
|
|
if (name == b"def" || name == b"def-env") && spans.len() >= 4 {
|
2022-04-25 23:44:44 +00:00
|
|
|
let (name_expr, ..) = parse_string(working_set, spans[1], expand_aliases_denylist);
|
2021-09-26 18:39:19 +00:00
|
|
|
let name = name_expr.as_string();
|
|
|
|
|
|
|
|
working_set.enter_scope();
|
|
|
|
// FIXME: because parse_signature will update the scope with the variables it sees
|
|
|
|
// we end up parsing the signature twice per def. The first time is during the predecl
|
|
|
|
// so that we can see the types that are part of the signature, which we need for parsing.
|
|
|
|
// The second time is when we actually parse the body itworking_set.
|
|
|
|
// We can't reuse the first time because the variables that are created during parse_signature
|
|
|
|
// are lost when we exit the scope below.
|
2022-03-18 19:03:57 +00:00
|
|
|
let (sig, ..) = parse_signature(working_set, spans[2], expand_aliases_denylist);
|
2021-09-26 18:39:19 +00:00
|
|
|
let signature = sig.as_signature();
|
|
|
|
working_set.exit_scope();
|
|
|
|
if let (Some(name), Some(mut signature)) = (name, signature) {
|
|
|
|
signature.name = name;
|
|
|
|
let decl = signature.predeclare();
|
|
|
|
|
2021-10-01 20:16:27 +00:00
|
|
|
if working_set.add_predecl(decl).is_some() {
|
|
|
|
return Some(ParseError::DuplicateCommandDef(spans[1]));
|
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
2022-02-11 18:38:10 +00:00
|
|
|
} else if name == b"extern" && spans.len() == 3 {
|
2022-04-25 23:44:44 +00:00
|
|
|
let (name_expr, ..) = parse_string(working_set, spans[1], expand_aliases_denylist);
|
2022-02-11 18:38:10 +00:00
|
|
|
let name = name_expr.as_string();
|
|
|
|
|
|
|
|
working_set.enter_scope();
|
|
|
|
// FIXME: because parse_signature will update the scope with the variables it sees
|
|
|
|
// we end up parsing the signature twice per def. The first time is during the predecl
|
|
|
|
// so that we can see the types that are part of the signature, which we need for parsing.
|
|
|
|
// The second time is when we actually parse the body itworking_set.
|
|
|
|
// We can't reuse the first time because the variables that are created during parse_signature
|
|
|
|
// are lost when we exit the scope below.
|
2022-03-18 19:03:57 +00:00
|
|
|
let (sig, ..) = parse_signature(working_set, spans[2], expand_aliases_denylist);
|
2022-02-11 18:38:10 +00:00
|
|
|
let signature = sig.as_signature();
|
|
|
|
working_set.exit_scope();
|
|
|
|
|
|
|
|
if let (Some(name), Some(mut signature)) = (name, signature) {
|
|
|
|
signature.name = name.clone();
|
|
|
|
//let decl = signature.predeclare();
|
|
|
|
let decl = KnownExternal {
|
|
|
|
name,
|
|
|
|
usage: "run external command".into(),
|
|
|
|
signature,
|
|
|
|
};
|
|
|
|
|
|
|
|
if working_set.add_predecl(Box::new(decl)).is_some() {
|
|
|
|
return Some(ParseError::DuplicateCommandDef(spans[1]));
|
|
|
|
}
|
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
2021-10-01 20:16:27 +00:00
|
|
|
|
|
|
|
None
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
2022-01-12 04:06:56 +00:00
|
|
|
pub fn parse_for(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-01-15 15:26:52 +00:00
|
|
|
) -> (Expression, Option<ParseError>) {
|
2022-01-12 04:06:56 +00:00
|
|
|
// Checking that the function is used with the correct name
|
|
|
|
// Maybe this is not necessary but it is a sanity check
|
|
|
|
if working_set.get_span_contents(spans[0]) != b"for" {
|
|
|
|
return (
|
2022-01-15 15:26:52 +00:00
|
|
|
garbage(spans[0]),
|
2022-01-12 04:06:56 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'for' function".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing the spans and checking that they match the register signature
|
|
|
|
// Using a parsed call makes more sense than checking for how many spans are in the call
|
|
|
|
// Also, by creating a call, it can be checked if it matches the declaration signature
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(b"for", &Type::Any) {
|
2022-01-12 04:06:56 +00:00
|
|
|
None => {
|
|
|
|
return (
|
2022-01-15 15:26:52 +00:00
|
|
|
garbage(spans[0]),
|
2022-01-12 04:06:56 +00:00
|
|
|
Some(ParseError::UnknownState(
|
2022-02-11 18:38:10 +00:00
|
|
|
"internal error: for declaration not found".into(),
|
2022-01-12 04:06:56 +00:00
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Some(decl_id) => {
|
|
|
|
working_set.enter_scope();
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-06-12 19:18:00 +00:00
|
|
|
|
2022-01-12 04:06:56 +00:00
|
|
|
working_set.exit_scope();
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
let sig = decl.signature();
|
|
|
|
|
|
|
|
// Let's get our block and make sure it has the right signature
|
2022-04-09 02:55:02 +00:00
|
|
|
if let Some(arg) = call.positional_nth(2) {
|
2022-01-12 04:06:56 +00:00
|
|
|
match arg {
|
|
|
|
Expression {
|
|
|
|
expr: Expr::Block(block_id),
|
|
|
|
..
|
|
|
|
}
|
|
|
|
| Expression {
|
|
|
|
expr: Expr::RowCondition(block_id),
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
let block = working_set.get_block_mut(*block_id);
|
|
|
|
|
|
|
|
block.signature = Box::new(sig.clone());
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = check_call(call_span, &sig, &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
2022-01-15 15:26:52 +00:00
|
|
|
Expression {
|
2022-01-12 04:06:56 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-01-12 04:06:56 +00:00
|
|
|
custom_completion: None,
|
2022-01-15 15:26:52 +00:00
|
|
|
},
|
2022-01-12 04:06:56 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// All positional arguments must be in the call positional vector by this point
|
2022-04-09 02:55:02 +00:00
|
|
|
let var_decl = call.positional_nth(0).expect("for call already checked");
|
|
|
|
let block = call.positional_nth(2).expect("for call already checked");
|
2022-01-12 04:06:56 +00:00
|
|
|
|
|
|
|
let error = None;
|
|
|
|
if let (Some(var_id), Some(block_id)) = (&var_decl.as_var(), block.as_block()) {
|
|
|
|
let block = working_set.get_block_mut(block_id);
|
|
|
|
|
|
|
|
block.signature.required_positional.insert(
|
|
|
|
0,
|
|
|
|
PositionalArg {
|
|
|
|
name: String::new(),
|
|
|
|
desc: String::new(),
|
|
|
|
shape: SyntaxShape::Any,
|
|
|
|
var_id: Some(*var_id),
|
2022-03-07 20:08:56 +00:00
|
|
|
default_value: None,
|
2022-01-12 04:06:56 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(
|
2022-01-15 15:26:52 +00:00
|
|
|
Expression {
|
2022-01-12 04:06:56 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2022-01-12 04:06:56 +00:00
|
|
|
custom_completion: None,
|
2022-01-15 15:26:52 +00:00
|
|
|
},
|
2022-01-12 04:06:56 +00:00
|
|
|
error,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-22 18:24:47 +00:00
|
|
|
fn build_usage(working_set: &StateWorkingSet, spans: &[Span]) -> String {
|
|
|
|
let mut usage = String::new();
|
|
|
|
|
|
|
|
let mut num_spaces = 0;
|
|
|
|
let mut first = true;
|
|
|
|
|
|
|
|
// Use the comments to build the usage
|
|
|
|
for comment_part in spans {
|
|
|
|
let contents = working_set.get_span_contents(*comment_part);
|
|
|
|
|
|
|
|
let comment_line = if first {
|
|
|
|
// Count the number of spaces still at the front, skipping the '#'
|
|
|
|
let mut pos = 1;
|
|
|
|
while pos < contents.len() {
|
|
|
|
if let Some(b' ') = contents.get(pos) {
|
|
|
|
// continue
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_spaces = pos;
|
|
|
|
|
|
|
|
first = false;
|
|
|
|
|
|
|
|
String::from_utf8_lossy(&contents[pos..]).to_string()
|
|
|
|
} else {
|
|
|
|
let mut pos = 1;
|
|
|
|
|
|
|
|
while pos < contents.len() && pos < num_spaces {
|
|
|
|
if let Some(b' ') = contents.get(pos) {
|
|
|
|
// continue
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
String::from_utf8_lossy(&contents[pos..]).to_string()
|
|
|
|
};
|
|
|
|
|
|
|
|
if !usage.is_empty() {
|
|
|
|
usage.push('\n');
|
|
|
|
}
|
|
|
|
usage.push_str(&comment_line);
|
|
|
|
}
|
|
|
|
|
|
|
|
usage
|
|
|
|
}
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
pub fn parse_def(
|
|
|
|
working_set: &mut StateWorkingSet,
|
2022-01-22 18:24:47 +00:00
|
|
|
lite_command: &LiteCommand,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2022-01-22 18:24:47 +00:00
|
|
|
let spans = &lite_command.parts[..];
|
|
|
|
|
|
|
|
let usage = build_usage(working_set, &lite_command.comments);
|
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
// Checking that the function is used with the correct name
|
|
|
|
// Maybe this is not necessary but it is a sanity check
|
2022-01-29 20:45:46 +00:00
|
|
|
|
|
|
|
let def_call = working_set.get_span_contents(spans[0]).to_vec();
|
|
|
|
if def_call != b"def" && def_call != b"def-env" {
|
2021-12-27 19:13:52 +00:00
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-12-27 19:13:52 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for def function".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
// Parsing the spans and checking that they match the register signature
|
|
|
|
// Using a parsed call makes more sense than checking for how many spans are in the call
|
|
|
|
// Also, by creating a call, it can be checked if it matches the declaration signature
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(&def_call, &Type::Any) {
|
2021-12-27 19:13:52 +00:00
|
|
|
None => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-12-27 19:13:52 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: def declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Some(decl_id) => {
|
|
|
|
working_set.enter_scope();
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-06-12 19:18:00 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
working_set.exit_scope();
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
let call_span = span(spans);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
2022-01-12 04:06:56 +00:00
|
|
|
let sig = decl.signature();
|
|
|
|
|
|
|
|
// Let's get our block and make sure it has the right signature
|
2022-04-09 02:55:02 +00:00
|
|
|
if let Some(arg) = call.positional_nth(2) {
|
2022-01-12 04:06:56 +00:00
|
|
|
match arg {
|
|
|
|
Expression {
|
|
|
|
expr: Expr::Block(block_id),
|
|
|
|
..
|
|
|
|
}
|
|
|
|
| Expression {
|
|
|
|
expr: Expr::RowCondition(block_id),
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
let block = working_set.get_block_mut(*block_id);
|
|
|
|
|
|
|
|
block.signature = Box::new(sig.clone());
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2022-01-12 04:06:56 +00:00
|
|
|
err = check_call(call_span, &sig, &call).or(err);
|
2021-12-27 19:13:52 +00:00
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-27 19:13:52 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2021-12-27 19:13:52 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-27 19:13:52 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
};
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
// All positional arguments must be in the call positional vector by this point
|
2022-04-09 02:55:02 +00:00
|
|
|
let name_expr = call.positional_nth(0).expect("def call already checked");
|
|
|
|
let sig = call.positional_nth(1).expect("def call already checked");
|
|
|
|
let block = call.positional_nth(2).expect("def call already checked");
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
let mut error = None;
|
2022-02-21 21:42:31 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
if let (Some(name), Some(mut signature), Some(block_id)) =
|
|
|
|
(&name_expr.as_string(), sig.as_signature(), block.as_block())
|
|
|
|
{
|
2022-02-21 21:05:20 +00:00
|
|
|
if let Some(decl_id) = working_set.find_predecl(name.as_bytes()) {
|
2021-12-27 19:13:52 +00:00
|
|
|
let declaration = working_set.get_decl_mut(decl_id);
|
|
|
|
|
|
|
|
signature.name = name.clone();
|
2022-05-29 13:14:15 +00:00
|
|
|
*signature = signature.add_help();
|
2022-01-22 18:24:47 +00:00
|
|
|
signature.usage = usage;
|
2022-01-12 04:06:56 +00:00
|
|
|
|
|
|
|
*declaration = signature.clone().into_block_command(block_id);
|
|
|
|
|
|
|
|
let mut block = working_set.get_block_mut(block_id);
|
|
|
|
block.signature = signature;
|
2022-01-29 20:45:46 +00:00
|
|
|
block.redirect_env = def_call == b"def-env";
|
2021-09-27 01:03:50 +00:00
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
2021-12-27 19:13:52 +00:00
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"Predeclaration failed to add declaration".into(),
|
|
|
|
spans[1],
|
2021-09-27 01:03:50 +00:00
|
|
|
))
|
|
|
|
});
|
2021-12-27 19:13:52 +00:00
|
|
|
};
|
|
|
|
}
|
2021-09-27 01:03:50 +00:00
|
|
|
|
2021-12-27 19:13:52 +00:00
|
|
|
if let Some(name) = name_expr.as_string() {
|
|
|
|
// It's OK if it returns None: The decl was already merged in previous parse pass.
|
|
|
|
working_set.merge_predecl(name.as_bytes());
|
2021-09-26 18:39:19 +00:00
|
|
|
} else {
|
2021-12-27 19:13:52 +00:00
|
|
|
error = error.or_else(|| {
|
2021-09-26 18:39:19 +00:00
|
|
|
Some(ParseError::UnknownState(
|
2021-12-27 19:13:52 +00:00
|
|
|
"Could not get string from string expression".into(),
|
|
|
|
name_expr.span,
|
|
|
|
))
|
|
|
|
});
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
2021-12-27 19:13:52 +00:00
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-27 19:13:52 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-12-27 19:13:52 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-27 19:13:52 +00:00
|
|
|
error,
|
|
|
|
)
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
2022-02-11 18:38:10 +00:00
|
|
|
pub fn parse_extern(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
lite_command: &LiteCommand,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2022-02-11 18:38:10 +00:00
|
|
|
let spans = &lite_command.parts[..];
|
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
let usage = build_usage(working_set, &lite_command.comments);
|
|
|
|
|
|
|
|
// Checking that the function is used with the correct name
|
|
|
|
// Maybe this is not necessary but it is a sanity check
|
|
|
|
|
|
|
|
let extern_call = working_set.get_span_contents(spans[0]).to_vec();
|
|
|
|
if extern_call != b"extern" {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-02-11 18:38:10 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for extern function".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing the spans and checking that they match the register signature
|
|
|
|
// Using a parsed call makes more sense than checking for how many spans are in the call
|
|
|
|
// Also, by creating a call, it can be checked if it matches the declaration signature
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(&extern_call, &Type::Any) {
|
2022-02-11 18:38:10 +00:00
|
|
|
None => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-02-11 18:38:10 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: def declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Some(decl_id) => {
|
|
|
|
working_set.enter_scope();
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call, error: err, ..
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-02-11 18:38:10 +00:00
|
|
|
working_set.exit_scope();
|
|
|
|
|
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
//let decl = working_set.get_decl(decl_id);
|
|
|
|
//let sig = decl.signature();
|
|
|
|
|
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
};
|
2022-04-09 02:55:02 +00:00
|
|
|
let name_expr = call.positional_nth(0);
|
|
|
|
let sig = call.positional_nth(1);
|
2022-02-11 18:38:10 +00:00
|
|
|
|
|
|
|
if let (Some(name_expr), Some(sig)) = (name_expr, sig) {
|
|
|
|
if let (Some(name), Some(mut signature)) = (&name_expr.as_string(), sig.as_signature()) {
|
2022-02-21 21:05:20 +00:00
|
|
|
if let Some(decl_id) = working_set.find_predecl(name.as_bytes()) {
|
2022-02-11 18:38:10 +00:00
|
|
|
let declaration = working_set.get_decl_mut(decl_id);
|
|
|
|
|
|
|
|
signature.name = name.clone();
|
|
|
|
signature.usage = usage.clone();
|
|
|
|
|
|
|
|
let decl = KnownExternal {
|
|
|
|
name: name.to_string(),
|
|
|
|
usage,
|
|
|
|
signature,
|
|
|
|
};
|
|
|
|
|
|
|
|
*declaration = Box::new(decl);
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"Predeclaration failed to add declaration".into(),
|
|
|
|
spans[1],
|
|
|
|
))
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if let Some(name) = name_expr.as_string() {
|
|
|
|
// It's OK if it returns None: The decl was already merged in previous parse pass.
|
|
|
|
working_set.merge_predecl(name.as_bytes());
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"Could not get string from string expression".into(),
|
|
|
|
name_expr.span,
|
|
|
|
))
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-02-11 18:38:10 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2022-02-11 18:38:10 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-02-11 18:38:10 +00:00
|
|
|
error,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
pub fn parse_alias(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2021-09-26 18:39:19 +00:00
|
|
|
let name = working_set.get_span_contents(spans[0]);
|
|
|
|
|
|
|
|
if name == b"alias" {
|
|
|
|
if let Some((span, err)) = check_name(working_set, spans) {
|
2022-02-15 19:31:14 +00:00
|
|
|
return (Pipeline::from_vec(vec![garbage(*span)]), Some(err));
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(b"alias", &Type::Any) {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall { call, output, .. } = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-04-26 16:51:49 +00:00
|
|
|
if call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-04-26 16:51:49 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
if spans.len() >= 4 {
|
|
|
|
let alias_name = working_set.get_span_contents(spans[1]);
|
|
|
|
|
|
|
|
let alias_name = if alias_name.starts_with(b"\"")
|
|
|
|
&& alias_name.ends_with(b"\"")
|
|
|
|
&& alias_name.len() > 1
|
|
|
|
{
|
|
|
|
alias_name[1..(alias_name.len() - 1)].to_vec()
|
|
|
|
} else {
|
|
|
|
alias_name.to_vec()
|
|
|
|
};
|
|
|
|
let _equals = working_set.get_span_contents(spans[2]);
|
|
|
|
|
|
|
|
let replacement = spans[3..].to_vec();
|
|
|
|
|
|
|
|
working_set.add_alias(alias_name, replacement);
|
|
|
|
}
|
|
|
|
|
2022-03-19 18:58:01 +00:00
|
|
|
let err = if spans.len() < 4 {
|
|
|
|
Some(ParseError::IncorrectValue(
|
|
|
|
"Incomplete alias".into(),
|
|
|
|
spans[0],
|
|
|
|
"incomplete alias".into(),
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-09-26 18:39:19 +00:00
|
|
|
expr: Expr::Call(call),
|
2021-12-18 20:10:40 +00:00
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-09-26 18:39:19 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-03-19 18:58:01 +00:00
|
|
|
err,
|
2021-09-26 18:39:19 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-11-15 23:16:06 +00:00
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"Alias statement unparseable".into(),
|
2021-09-26 18:39:19 +00:00
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-09-28 17:29:38 +00:00
|
|
|
pub fn parse_export(
|
|
|
|
working_set: &mut StateWorkingSet,
|
2022-01-22 18:24:47 +00:00
|
|
|
lite_command: &LiteCommand,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<Exportable>, Option<ParseError>) {
|
2022-01-22 18:24:47 +00:00
|
|
|
let spans = &lite_command.parts[..];
|
2021-11-15 23:16:06 +00:00
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
let export_span = if let Some(sp) = spans.get(0) {
|
|
|
|
if working_set.get_span_contents(*sp) != b"export" {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-11-15 23:16:06 +00:00
|
|
|
None,
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"expected export statement".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
*sp
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-11-15 23:16:06 +00:00
|
|
|
None,
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"got empty input for parsing export statement".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let export_decl_id = if let Some(id) = working_set.find_decl(b"export", &Type::Any) {
|
2021-11-15 23:16:06 +00:00
|
|
|
id
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-11-15 23:16:06 +00:00
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing export command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2021-09-28 17:29:38 +00:00
|
|
|
|
2021-11-15 23:16:06 +00:00
|
|
|
let mut call = Box::new(Call {
|
|
|
|
head: spans[0],
|
|
|
|
decl_id: export_decl_id,
|
2022-04-09 02:55:02 +00:00
|
|
|
arguments: vec![],
|
2022-02-21 22:22:21 +00:00
|
|
|
redirect_stdout: true,
|
|
|
|
redirect_stderr: false,
|
2021-11-15 23:16:06 +00:00
|
|
|
});
|
2021-09-28 17:29:38 +00:00
|
|
|
|
2021-11-15 23:16:06 +00:00
|
|
|
let exportable = if let Some(kw_span) = spans.get(1) {
|
|
|
|
let kw_name = working_set.get_span_contents(*kw_span);
|
|
|
|
match kw_name {
|
2021-09-28 18:03:53 +00:00
|
|
|
b"def" => {
|
2022-01-22 18:24:47 +00:00
|
|
|
let lite_command = LiteCommand {
|
|
|
|
comments: lite_command.comments.clone(),
|
|
|
|
parts: spans[1..].to_vec(),
|
|
|
|
};
|
2022-03-18 19:03:57 +00:00
|
|
|
let (pipeline, err) =
|
|
|
|
parse_def(working_set, &lite_command, expand_aliases_denylist);
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or(err);
|
2021-09-28 18:03:53 +00:00
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let export_def_decl_id =
|
|
|
|
if let Some(id) = working_set.find_decl(b"export def", &Type::Any) {
|
|
|
|
id
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing 'export def' command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2021-09-28 18:03:53 +00:00
|
|
|
|
|
|
|
// Trying to warp the 'def' call into the 'export def' in a very clumsy way
|
2022-02-15 19:31:14 +00:00
|
|
|
if let Some(Expression {
|
|
|
|
expr: Expr::Call(ref def_call),
|
|
|
|
..
|
|
|
|
}) = pipeline.expressions.get(0)
|
|
|
|
{
|
|
|
|
call = def_call.clone();
|
2021-11-15 23:16:06 +00:00
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
call.head = span(&spans[0..=1]);
|
|
|
|
call.decl_id = export_def_decl_id;
|
2021-09-28 18:03:53 +00:00
|
|
|
} else {
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"unexpected output from parsing a definition".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
2021-09-28 18:03:53 +00:00
|
|
|
};
|
|
|
|
|
2021-11-15 23:16:06 +00:00
|
|
|
if error.is_none() {
|
|
|
|
let decl_name = working_set.get_span_contents(spans[2]);
|
|
|
|
let decl_name = trim_quotes(decl_name);
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(decl_name, &Type::Any) {
|
2021-11-15 23:16:06 +00:00
|
|
|
Some(Exportable::Decl(decl_id))
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"failed to find added declaration".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2022-01-29 20:45:46 +00:00
|
|
|
b"def-env" => {
|
|
|
|
let lite_command = LiteCommand {
|
|
|
|
comments: lite_command.comments.clone(),
|
|
|
|
parts: spans[1..].to_vec(),
|
|
|
|
};
|
2022-03-18 19:03:57 +00:00
|
|
|
let (pipeline, err) =
|
|
|
|
parse_def(working_set, &lite_command, expand_aliases_denylist);
|
2022-01-29 20:45:46 +00:00
|
|
|
error = error.or(err);
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let export_def_decl_id =
|
|
|
|
if let Some(id) = working_set.find_decl(b"export def-env", &Type::Any) {
|
|
|
|
id
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing 'export def-env' command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2022-01-29 20:45:46 +00:00
|
|
|
|
|
|
|
// Trying to warp the 'def' call into the 'export def' in a very clumsy way
|
2022-02-15 19:31:14 +00:00
|
|
|
if let Some(Expression {
|
|
|
|
expr: Expr::Call(ref def_call),
|
|
|
|
..
|
|
|
|
}) = pipeline.expressions.get(0)
|
|
|
|
{
|
|
|
|
call = def_call.clone();
|
2022-01-29 20:45:46 +00:00
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
call.head = span(&spans[0..=1]);
|
|
|
|
call.decl_id = export_def_decl_id;
|
2022-01-29 20:45:46 +00:00
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"unexpected output from parsing a definition".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
if error.is_none() {
|
|
|
|
let decl_name = working_set.get_span_contents(spans[2]);
|
|
|
|
let decl_name = trim_quotes(decl_name);
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(decl_name, &Type::Any) {
|
2022-01-29 20:45:46 +00:00
|
|
|
Some(Exportable::Decl(decl_id))
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"failed to find added declaration".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2022-03-19 18:58:01 +00:00
|
|
|
b"extern" => {
|
|
|
|
let lite_command = LiteCommand {
|
|
|
|
comments: lite_command.comments.clone(),
|
|
|
|
parts: spans[1..].to_vec(),
|
|
|
|
};
|
|
|
|
let (pipeline, err) =
|
|
|
|
parse_extern(working_set, &lite_command, expand_aliases_denylist);
|
|
|
|
error = error.or(err);
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let export_def_decl_id =
|
|
|
|
if let Some(id) = working_set.find_decl(b"export extern", &Type::Any) {
|
|
|
|
id
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing 'export extern' command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2022-03-19 18:58:01 +00:00
|
|
|
|
|
|
|
// Trying to warp the 'def' call into the 'export def' in a very clumsy way
|
|
|
|
if let Some(Expression {
|
|
|
|
expr: Expr::Call(ref def_call),
|
|
|
|
..
|
|
|
|
}) = pipeline.expressions.get(0)
|
|
|
|
{
|
|
|
|
call = def_call.clone();
|
|
|
|
|
|
|
|
call.head = span(&spans[0..=1]);
|
|
|
|
call.decl_id = export_def_decl_id;
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"unexpected output from parsing a definition".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
if error.is_none() {
|
|
|
|
let decl_name = working_set.get_span_contents(spans[2]);
|
|
|
|
let decl_name = trim_quotes(decl_name);
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(decl_name, &Type::Any) {
|
2022-03-19 18:58:01 +00:00
|
|
|
Some(Exportable::Decl(decl_id))
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"failed to find added declaration".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b"alias" => {
|
|
|
|
let lite_command = LiteCommand {
|
|
|
|
comments: lite_command.comments.clone(),
|
|
|
|
parts: spans[1..].to_vec(),
|
|
|
|
};
|
|
|
|
let (pipeline, err) =
|
|
|
|
parse_alias(working_set, &lite_command.parts, expand_aliases_denylist);
|
|
|
|
error = error.or(err);
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let export_alias_decl_id =
|
|
|
|
if let Some(id) = working_set.find_decl(b"export alias", &Type::Any) {
|
|
|
|
id
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing 'export alias' command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2022-03-19 18:58:01 +00:00
|
|
|
|
|
|
|
// Trying to warp the 'alias' call into the 'export alias' in a very clumsy way
|
|
|
|
if let Some(Expression {
|
|
|
|
expr: Expr::Call(ref alias_call),
|
|
|
|
..
|
|
|
|
}) = pipeline.expressions.get(0)
|
|
|
|
{
|
|
|
|
call = alias_call.clone();
|
|
|
|
|
|
|
|
call.head = span(&spans[0..=1]);
|
|
|
|
call.decl_id = export_alias_decl_id;
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"unexpected output from parsing a definition".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
if error.is_none() {
|
|
|
|
let alias_name = working_set.get_span_contents(spans[2]);
|
|
|
|
let alias_name = trim_quotes(alias_name);
|
|
|
|
if let Some(alias_id) = working_set.find_alias(alias_name) {
|
|
|
|
Some(Exportable::Alias(alias_id))
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"failed to find added alias".into(),
|
|
|
|
span(&spans[1..]),
|
|
|
|
))
|
|
|
|
});
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2021-11-15 23:16:06 +00:00
|
|
|
b"env" => {
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(id) = working_set.find_decl(b"export env", &Type::Any) {
|
2021-11-15 23:16:06 +00:00
|
|
|
call.decl_id = id;
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-11-15 23:16:06 +00:00
|
|
|
None,
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"missing 'export env' command".into(),
|
|
|
|
export_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-01-03 23:14:33 +00:00
|
|
|
let sig = working_set.get_decl(call.decl_id);
|
|
|
|
let call_signature = sig.signature().call_signature();
|
|
|
|
|
2021-11-15 23:16:06 +00:00
|
|
|
call.head = span(&spans[0..=1]);
|
|
|
|
|
|
|
|
if let Some(name_span) = spans.get(2) {
|
2022-04-25 23:44:44 +00:00
|
|
|
let (name_expr, err) =
|
|
|
|
parse_string(working_set, *name_span, expand_aliases_denylist);
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or(err);
|
2022-04-09 02:55:02 +00:00
|
|
|
call.add_positional(name_expr);
|
2021-11-15 23:16:06 +00:00
|
|
|
|
|
|
|
if let Some(block_span) = spans.get(3) {
|
|
|
|
let (block_expr, err) = parse_block_expression(
|
|
|
|
working_set,
|
|
|
|
&SyntaxShape::Block(None),
|
|
|
|
*block_span,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist,
|
2021-11-15 23:16:06 +00:00
|
|
|
);
|
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let exportable = if let Expression {
|
|
|
|
expr: Expr::Block(block_id),
|
|
|
|
..
|
|
|
|
} = block_expr
|
|
|
|
{
|
|
|
|
Some(Exportable::EnvVar(block_id))
|
|
|
|
} else {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::InternalError(
|
|
|
|
"block was not parsed as a block".into(),
|
|
|
|
*block_span,
|
|
|
|
))
|
|
|
|
});
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-04-09 02:55:02 +00:00
|
|
|
call.add_positional(block_expr);
|
2021-11-15 23:16:06 +00:00
|
|
|
|
|
|
|
exportable
|
|
|
|
} else {
|
|
|
|
let err_span = Span {
|
|
|
|
start: name_span.end,
|
|
|
|
end: name_span.end,
|
|
|
|
};
|
|
|
|
|
|
|
|
error = error.or_else(|| {
|
2022-01-03 23:14:33 +00:00
|
|
|
Some(ParseError::MissingPositional(
|
|
|
|
"block".into(),
|
|
|
|
err_span,
|
|
|
|
call_signature,
|
|
|
|
))
|
2021-11-15 23:16:06 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let err_span = Span {
|
|
|
|
start: kw_span.end,
|
|
|
|
end: kw_span.end,
|
|
|
|
};
|
|
|
|
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::MissingPositional(
|
|
|
|
"environment variable name".into(),
|
|
|
|
err_span,
|
2022-01-03 23:14:33 +00:00
|
|
|
call_signature,
|
2021-11-15 23:16:06 +00:00
|
|
|
))
|
|
|
|
});
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::Expected(
|
|
|
|
// TODO: Fill in more keywords as they come
|
2022-03-19 18:58:01 +00:00
|
|
|
"def, def-env, alias, or env keyword".into(),
|
2021-11-15 23:16:06 +00:00
|
|
|
spans[1],
|
|
|
|
))
|
|
|
|
});
|
|
|
|
|
|
|
|
None
|
2021-09-28 18:03:53 +00:00
|
|
|
}
|
2021-09-28 17:29:38 +00:00
|
|
|
}
|
|
|
|
} else {
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or_else(|| {
|
|
|
|
Some(ParseError::MissingPositional(
|
2022-03-19 18:58:01 +00:00
|
|
|
"def, def-env, alias, or env keyword".into(), // TODO: keep filling more keywords as they come
|
2021-11-15 23:16:06 +00:00
|
|
|
Span {
|
|
|
|
start: export_span.end,
|
|
|
|
end: export_span.end,
|
|
|
|
},
|
2022-03-19 18:58:01 +00:00
|
|
|
"'def', `def-env`, `alias`, or 'env' keyword.".to_string(),
|
2021-11-15 23:16:06 +00:00
|
|
|
))
|
|
|
|
});
|
|
|
|
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-11-15 23:16:06 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-11-15 23:16:06 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-11-15 23:16:06 +00:00
|
|
|
exportable,
|
|
|
|
error,
|
|
|
|
)
|
2021-09-28 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
2021-10-18 20:19:25 +00:00
|
|
|
pub fn parse_module_block(
|
|
|
|
working_set: &mut StateWorkingSet,
|
2021-10-31 15:22:10 +00:00
|
|
|
span: Span,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-05-07 19:39:22 +00:00
|
|
|
) -> (Block, Module, Option<ParseError>) {
|
2021-10-18 20:19:25 +00:00
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
working_set.enter_scope();
|
|
|
|
|
2021-10-31 15:22:10 +00:00
|
|
|
let source = working_set.get_span_contents(span);
|
2021-10-18 20:19:25 +00:00
|
|
|
|
2022-01-22 18:24:47 +00:00
|
|
|
let (output, err) = lex(source, span.start, &[], &[], false);
|
2021-10-18 20:19:25 +00:00
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let (output, err) = lite_parse(&output);
|
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
for pipeline in &output.block {
|
2021-11-15 23:16:06 +00:00
|
|
|
// TODO: Should we add export env predecls as well?
|
2021-10-18 20:19:25 +00:00
|
|
|
if pipeline.commands.len() == 1 {
|
2022-03-18 19:03:57 +00:00
|
|
|
parse_def_predecl(
|
|
|
|
working_set,
|
|
|
|
&pipeline.commands[0].parts,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
let mut module = Module::from_span(span);
|
2021-10-18 20:19:25 +00:00
|
|
|
|
|
|
|
let block: Block = output
|
|
|
|
.block
|
|
|
|
.iter()
|
|
|
|
.map(|pipeline| {
|
|
|
|
if pipeline.commands.len() == 1 {
|
|
|
|
let name = working_set.get_span_contents(pipeline.commands[0].parts[0]);
|
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
let (pipeline, err) = match name {
|
2022-01-29 20:45:46 +00:00
|
|
|
b"def" | b"def-env" => {
|
2022-03-18 19:03:57 +00:00
|
|
|
let (pipeline, err) =
|
|
|
|
parse_def(working_set, &pipeline.commands[0], expand_aliases_denylist);
|
2021-10-18 20:19:25 +00:00
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
(pipeline, err)
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
2022-02-11 18:38:10 +00:00
|
|
|
b"extern" => {
|
2022-03-18 19:03:57 +00:00
|
|
|
let (pipeline, err) = parse_extern(
|
|
|
|
working_set,
|
|
|
|
&pipeline.commands[0],
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-02-11 18:38:10 +00:00
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
(pipeline, err)
|
2022-02-11 18:38:10 +00:00
|
|
|
}
|
2022-03-19 18:58:01 +00:00
|
|
|
b"alias" => {
|
|
|
|
let (pipeline, err) = parse_alias(
|
|
|
|
working_set,
|
|
|
|
&pipeline.commands[0].parts,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
|
|
|
|
(pipeline, err)
|
|
|
|
}
|
2021-11-15 23:16:06 +00:00
|
|
|
// TODO: Currently, it is not possible to define a private env var.
|
|
|
|
// TODO: Exported env vars are usable iside the module only if correctly
|
|
|
|
// exported by the user. For example:
|
|
|
|
//
|
2022-01-04 21:34:42 +00:00
|
|
|
// > module foo { export env a { "2" }; export def b [] { $env.a } }
|
2021-11-15 23:16:06 +00:00
|
|
|
//
|
|
|
|
// will work only if you call `use foo *; b` but not with `use foo; foo b`
|
2022-01-04 21:34:42 +00:00
|
|
|
// since in the second case, the name of the env var would be $env."foo a".
|
2021-10-18 20:19:25 +00:00
|
|
|
b"export" => {
|
2022-03-18 19:03:57 +00:00
|
|
|
let (pipe, exportable, err) = parse_export(
|
|
|
|
working_set,
|
|
|
|
&pipeline.commands[0],
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-10-18 20:19:25 +00:00
|
|
|
|
|
|
|
if err.is_none() {
|
2021-11-15 23:16:06 +00:00
|
|
|
let name_span = pipeline.commands[0].parts[2];
|
|
|
|
let name = working_set.get_span_contents(name_span);
|
|
|
|
let name = trim_quotes(name);
|
|
|
|
|
|
|
|
match exportable {
|
|
|
|
Some(Exportable::Decl(decl_id)) => {
|
2022-05-07 19:39:22 +00:00
|
|
|
module.add_decl(name, decl_id);
|
2021-11-15 23:16:06 +00:00
|
|
|
}
|
|
|
|
Some(Exportable::EnvVar(block_id)) => {
|
2022-05-07 19:39:22 +00:00
|
|
|
module.add_env_var(name, block_id);
|
2021-11-15 23:16:06 +00:00
|
|
|
}
|
2022-03-19 18:58:01 +00:00
|
|
|
Some(Exportable::Alias(alias_id)) => {
|
2022-05-07 19:39:22 +00:00
|
|
|
module.add_alias(name, alias_id);
|
2022-03-19 18:58:01 +00:00
|
|
|
}
|
2021-11-15 23:16:06 +00:00
|
|
|
None => {} // None should always come with error from parse_export()
|
|
|
|
}
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
(pipe, err)
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
|
|
|
_ => (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(&pipeline.commands[0].parts),
|
2022-05-04 19:41:32 +00:00
|
|
|
Some(ParseError::ExpectedKeyword(
|
|
|
|
"def or export keyword".into(),
|
2021-10-18 20:19:25 +00:00
|
|
|
pipeline.commands[0].parts[0],
|
|
|
|
)),
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
if error.is_none() {
|
|
|
|
error = err;
|
|
|
|
}
|
|
|
|
|
2022-02-15 19:31:14 +00:00
|
|
|
pipeline
|
2021-10-18 20:19:25 +00:00
|
|
|
} else {
|
2021-10-31 15:22:10 +00:00
|
|
|
error = Some(ParseError::Expected("not a pipeline".into(), span));
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(&[span])
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.into();
|
|
|
|
|
|
|
|
working_set.exit_scope();
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
(block, module, error)
|
2021-10-18 20:19:25 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
pub fn parse_module(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2021-09-26 18:39:19 +00:00
|
|
|
// TODO: Currently, module is closing over its parent scope (i.e., defs in the parent scope are
|
2021-10-10 11:31:13 +00:00
|
|
|
// visible and usable in this module's scope). We want to disable that for files.
|
2021-09-26 18:39:19 +00:00
|
|
|
|
|
|
|
let mut error = None;
|
|
|
|
let bytes = working_set.get_span_contents(spans[0]);
|
|
|
|
|
|
|
|
if bytes == b"module" && spans.len() >= 3 {
|
2022-04-25 23:44:44 +00:00
|
|
|
let (module_name_expr, err) = parse_string(working_set, spans[1], expand_aliases_denylist);
|
2021-09-26 18:39:19 +00:00
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let module_name = module_name_expr
|
|
|
|
.as_string()
|
|
|
|
.expect("internal error: module name is not a string");
|
|
|
|
|
|
|
|
let block_span = spans[2];
|
|
|
|
let block_bytes = working_set.get_span_contents(block_span);
|
|
|
|
let mut start = block_span.start;
|
|
|
|
let mut end = block_span.end;
|
|
|
|
|
|
|
|
if block_bytes.starts_with(b"{") {
|
|
|
|
start += 1;
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-09-26 18:39:19 +00:00
|
|
|
Some(ParseError::Expected("block".into(), block_span)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if block_bytes.ends_with(b"}") {
|
|
|
|
end -= 1;
|
|
|
|
} else {
|
2021-11-07 23:18:00 +00:00
|
|
|
error =
|
|
|
|
error.or_else(|| Some(ParseError::Unclosed("}".into(), Span { start: end, end })));
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let block_span = Span { start, end };
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
let (block, module, err) =
|
2022-03-18 19:03:57 +00:00
|
|
|
parse_module_block(working_set, block_span, expand_aliases_denylist);
|
2021-09-26 18:39:19 +00:00
|
|
|
error = error.or(err);
|
|
|
|
|
2021-11-17 04:23:55 +00:00
|
|
|
let block_id = working_set.add_block(block);
|
2022-05-07 19:39:22 +00:00
|
|
|
let _ = working_set.add_module(&module_name, module);
|
2021-09-26 18:39:19 +00:00
|
|
|
|
|
|
|
let block_expr = Expression {
|
|
|
|
expr: Expr::Block(block_id),
|
|
|
|
span: block_span,
|
|
|
|
ty: Type::Block,
|
|
|
|
custom_completion: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let module_decl_id = working_set
|
2022-06-10 15:59:35 +00:00
|
|
|
.find_decl(b"module", &Type::Any)
|
2021-09-26 18:39:19 +00:00
|
|
|
.expect("internal error: missing module command");
|
|
|
|
|
|
|
|
let call = Box::new(Call {
|
|
|
|
head: spans[0],
|
|
|
|
decl_id: module_decl_id,
|
2022-04-09 02:55:02 +00:00
|
|
|
arguments: vec![
|
|
|
|
Argument::Positional(module_name_expr),
|
|
|
|
Argument::Positional(block_expr),
|
|
|
|
],
|
2022-02-21 22:22:21 +00:00
|
|
|
redirect_stdout: true,
|
|
|
|
redirect_stderr: false,
|
2021-09-26 18:39:19 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-09-26 18:39:19 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-09-26 18:39:19 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-09-26 18:39:19 +00:00
|
|
|
error,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-09-26 18:39:19 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"Expected structure: module <name> {}".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_use(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2022-01-10 01:39:25 +00:00
|
|
|
if working_set.get_span_contents(spans[0]) != b"use" {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'use' command".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span, use_decl_id) = match working_set.find_decl(b"use", &Type::Any) {
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-01-10 01:39:25 +00:00
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-01-10 01:39:25 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-01-10 01:39:25 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-01-10 01:39:25 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(call, call_span, decl_id)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'use' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
2021-10-26 21:30:39 +00:00
|
|
|
}
|
2022-01-10 01:39:25 +00:00
|
|
|
};
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-04-09 02:55:02 +00:00
|
|
|
let import_pattern = if let Some(expr) = call.positional_nth(0) {
|
2022-01-10 01:39:25 +00:00
|
|
|
if let Some(pattern) = expr.as_import_pattern() {
|
|
|
|
pattern
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Import pattern positional is not import pattern".into(),
|
2022-05-07 19:39:22 +00:00
|
|
|
expr.span,
|
2022-01-10 01:39:25 +00:00
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Missing required positional after call parsing".into(),
|
|
|
|
call_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
let cwd = working_set.get_cwd();
|
|
|
|
|
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
// TODO: Add checking for importing too long import patterns, e.g.:
|
|
|
|
// > use spam foo non existent names here do not throw error
|
2022-05-07 19:39:22 +00:00
|
|
|
let (import_pattern, module) =
|
|
|
|
if let Some(module_id) = working_set.find_module(&import_pattern.head.name) {
|
|
|
|
(import_pattern, working_set.get_module(module_id).clone())
|
2022-01-10 01:39:25 +00:00
|
|
|
} else {
|
2022-05-07 19:39:22 +00:00
|
|
|
// TODO: Do not close over when loading module from file?
|
2022-01-10 01:39:25 +00:00
|
|
|
// It could be a file
|
2022-05-01 18:37:20 +00:00
|
|
|
|
|
|
|
let (module_filename, err) =
|
|
|
|
unescape_unquote_string(&import_pattern.head.name, import_pattern.head.span);
|
|
|
|
if err.is_none() {
|
2022-03-12 20:12:15 +00:00
|
|
|
if let Some(module_path) =
|
|
|
|
find_in_dirs(&module_filename, working_set, &cwd, LIB_DIRS_ENV)
|
|
|
|
{
|
2022-01-10 01:39:25 +00:00
|
|
|
let module_name = if let Some(stem) = module_path.file_stem() {
|
|
|
|
stem.to_string_lossy().to_string()
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-01-10 01:39:25 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2022-01-10 01:39:25 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::ModuleNotFound(spans[1])),
|
|
|
|
);
|
|
|
|
};
|
2021-10-19 21:23:59 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
if let Ok(contents) = std::fs::read(module_path) {
|
|
|
|
let span_start = working_set.next_span_start();
|
|
|
|
working_set.add_file(module_filename, &contents);
|
|
|
|
let span_end = working_set.next_span_start();
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
let (block, module, err) = parse_module_block(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
Span::new(span_start, span_end),
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-01-10 01:39:25 +00:00
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let _ = working_set.add_block(block);
|
2022-05-07 19:39:22 +00:00
|
|
|
let module_id = working_set.add_module(&module_name, module.clone());
|
2022-01-10 01:39:25 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
ImportPattern {
|
|
|
|
head: ImportPatternHead {
|
|
|
|
name: module_name.into(),
|
2022-05-07 19:39:22 +00:00
|
|
|
id: Some(module_id),
|
2022-01-10 01:39:25 +00:00
|
|
|
span: spans[1],
|
2021-11-15 23:16:06 +00:00
|
|
|
},
|
2022-01-10 01:39:25 +00:00
|
|
|
members: import_pattern.members,
|
|
|
|
hidden: HashSet::new(),
|
|
|
|
},
|
2022-05-07 19:39:22 +00:00
|
|
|
module,
|
2022-01-10 01:39:25 +00:00
|
|
|
)
|
2021-10-31 15:53:53 +00:00
|
|
|
} else {
|
2022-01-10 01:39:25 +00:00
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-01-10 01:39:25 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2022-01-10 01:39:25 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::ModuleNotFound(spans[1])),
|
|
|
|
);
|
2021-10-31 15:53:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-02-18 01:58:24 +00:00
|
|
|
error = error.or(Some(ParseError::ModuleNotFound(import_pattern.head.span)));
|
2022-04-18 12:59:13 +00:00
|
|
|
|
|
|
|
let mut import_pattern = ImportPattern::new();
|
|
|
|
import_pattern.head.span = spans[1];
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
(import_pattern, Module::new())
|
2021-10-31 15:53:53 +00:00
|
|
|
}
|
2022-01-10 01:39:25 +00:00
|
|
|
} else {
|
2022-02-15 19:31:14 +00:00
|
|
|
return (garbage_pipeline(spans), Some(ParseError::NonUtf8(spans[1])));
|
2022-01-10 01:39:25 +00:00
|
|
|
}
|
|
|
|
};
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-03-19 18:58:01 +00:00
|
|
|
let (decls_to_use, aliases_to_use) = if import_pattern.members.is_empty() {
|
|
|
|
(
|
2022-05-07 19:39:22 +00:00
|
|
|
module.decls_with_head(&import_pattern.head.name),
|
|
|
|
module.aliases_with_head(&import_pattern.head.name),
|
2022-03-19 18:58:01 +00:00
|
|
|
)
|
2022-01-10 01:39:25 +00:00
|
|
|
} else {
|
|
|
|
match &import_pattern.members[0] {
|
2022-05-07 19:39:22 +00:00
|
|
|
ImportPatternMember::Glob { .. } => (module.decls(), module.aliases()),
|
2022-01-10 01:39:25 +00:00
|
|
|
ImportPatternMember::Name { name, span } => {
|
2022-03-19 18:58:01 +00:00
|
|
|
let mut decl_output = vec![];
|
|
|
|
let mut alias_output = vec![];
|
2022-01-10 01:39:25 +00:00
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
if let Some(id) = module.get_decl_id(name) {
|
2022-03-19 18:58:01 +00:00
|
|
|
decl_output.push((name.clone(), id));
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if let Some(id) = module.get_alias_id(name) {
|
2022-03-19 18:58:01 +00:00
|
|
|
alias_output.push((name.clone(), id));
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if !module.has_env_var(name) {
|
2022-01-10 01:39:25 +00:00
|
|
|
error = error.or(Some(ParseError::ExportNotFound(*span)))
|
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-03-19 18:58:01 +00:00
|
|
|
(decl_output, alias_output)
|
2022-01-10 01:39:25 +00:00
|
|
|
}
|
|
|
|
ImportPatternMember::List { names } => {
|
2022-03-19 18:58:01 +00:00
|
|
|
let mut decl_output = vec![];
|
|
|
|
let mut alias_output = vec![];
|
2022-01-10 01:39:25 +00:00
|
|
|
|
|
|
|
for (name, span) in names {
|
2022-05-07 19:39:22 +00:00
|
|
|
if let Some(id) = module.get_decl_id(name) {
|
2022-03-19 18:58:01 +00:00
|
|
|
decl_output.push((name.clone(), id));
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if let Some(id) = module.get_alias_id(name) {
|
2022-03-19 18:58:01 +00:00
|
|
|
alias_output.push((name.clone(), id));
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if !module.has_env_var(name) {
|
2022-01-10 01:39:25 +00:00
|
|
|
error = error.or(Some(ParseError::ExportNotFound(*span)));
|
|
|
|
break;
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-27 00:23:22 +00:00
|
|
|
|
2022-03-19 18:58:01 +00:00
|
|
|
(decl_output, alias_output)
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
2022-01-10 01:39:25 +00:00
|
|
|
}
|
|
|
|
};
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
// Extend the current scope with the module's exportables
|
2022-01-10 01:39:25 +00:00
|
|
|
working_set.use_decls(decls_to_use);
|
2022-03-19 18:58:01 +00:00
|
|
|
working_set.use_aliases(aliases_to_use);
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
// Create a new Use command call to pass the new import pattern
|
|
|
|
let import_pattern_expr = Expression {
|
|
|
|
expr: Expr::ImportPattern(import_pattern),
|
|
|
|
span: span(&spans[1..]),
|
|
|
|
ty: Type::List(Box::new(Type::String)),
|
|
|
|
custom_completion: None,
|
|
|
|
};
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
let call = Box::new(Call {
|
|
|
|
head: spans[0],
|
|
|
|
decl_id: use_decl_id,
|
2022-04-09 02:55:02 +00:00
|
|
|
arguments: vec![Argument::Positional(import_pattern_expr)],
|
2022-02-21 22:22:21 +00:00
|
|
|
redirect_stdout: true,
|
|
|
|
redirect_stderr: false,
|
2022-01-10 01:39:25 +00:00
|
|
|
});
|
2021-11-15 23:16:06 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-01-10 01:39:25 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2022-01-10 01:39:25 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-01-10 01:39:25 +00:00
|
|
|
error,
|
|
|
|
)
|
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
pub fn parse_hide(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2022-01-10 01:39:25 +00:00
|
|
|
if working_set.get_span_contents(spans[0]) != b"hide" {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-09-26 18:39:19 +00:00
|
|
|
Some(ParseError::UnknownState(
|
2022-01-10 01:39:25 +00:00
|
|
|
"internal error: Wrong call name for 'hide' command".into(),
|
2021-09-26 18:39:19 +00:00
|
|
|
span(spans),
|
|
|
|
)),
|
2022-01-10 01:39:25 +00:00
|
|
|
);
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span, hide_decl_id) = match working_set.find_decl(b"hide", &Type::Any) {
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2022-01-10 01:39:25 +00:00
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2022-01-10 01:39:25 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-01-10 01:39:25 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2022-01-10 01:39:25 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(call, call_span, decl_id)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'hide' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-04-09 02:55:02 +00:00
|
|
|
let import_pattern = if let Some(expr) = call.positional_nth(0) {
|
2022-01-10 01:39:25 +00:00
|
|
|
if let Some(pattern) = expr.as_import_pattern() {
|
|
|
|
pattern
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Import pattern positional is not import pattern".into(),
|
|
|
|
call_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2022-01-10 01:39:25 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Missing required positional after call parsing".into(),
|
|
|
|
call_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-09-28 20:18:48 +00:00
|
|
|
let mut error = None;
|
|
|
|
let bytes = working_set.get_span_contents(spans[0]);
|
|
|
|
|
|
|
|
if bytes == b"hide" && spans.len() >= 2 {
|
2021-11-15 23:16:06 +00:00
|
|
|
for span in spans[1..].iter() {
|
2022-04-25 23:44:44 +00:00
|
|
|
let (_, err) = parse_string(working_set, *span, expand_aliases_denylist);
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or(err);
|
|
|
|
}
|
2021-09-28 20:18:48 +00:00
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let (is_module, module) = if let Some(module_id) =
|
|
|
|
working_set.find_module(&import_pattern.head.name)
|
|
|
|
{
|
|
|
|
(true, working_set.get_module(module_id).clone())
|
|
|
|
} else if import_pattern.members.is_empty() {
|
|
|
|
// The pattern head can be:
|
|
|
|
if let Some(id) = working_set.find_alias(&import_pattern.head.name) {
|
|
|
|
// an alias,
|
|
|
|
let mut module = Module::new();
|
|
|
|
module.add_alias(&import_pattern.head.name, id);
|
|
|
|
|
|
|
|
(false, module)
|
|
|
|
} else if let Some(id) = working_set.find_decl(&import_pattern.head.name, &Type::Any) {
|
|
|
|
// a custom command,
|
|
|
|
let mut module = Module::new();
|
|
|
|
module.add_decl(&import_pattern.head.name, id);
|
|
|
|
|
|
|
|
(false, module)
|
2021-10-04 17:08:24 +00:00
|
|
|
} else {
|
2022-06-10 15:59:35 +00:00
|
|
|
// , or it could be an env var (handled by the engine)
|
|
|
|
(false, Module::new())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::ModuleNotFound(spans[1])),
|
|
|
|
);
|
|
|
|
};
|
2021-09-28 20:18:48 +00:00
|
|
|
|
2021-10-04 17:08:24 +00:00
|
|
|
// This kind of inverts the import pattern matching found in parse_use()
|
2022-02-12 09:50:37 +00:00
|
|
|
let (aliases_to_hide, decls_to_hide) = if import_pattern.members.is_empty() {
|
2021-10-31 15:38:00 +00:00
|
|
|
if is_module {
|
2022-02-12 09:50:37 +00:00
|
|
|
(
|
2022-05-07 19:39:22 +00:00
|
|
|
module.alias_names_with_head(&import_pattern.head.name),
|
|
|
|
module.decl_names_with_head(&import_pattern.head.name),
|
2022-02-12 09:50:37 +00:00
|
|
|
)
|
2021-10-31 15:38:00 +00:00
|
|
|
} else {
|
2022-05-07 19:39:22 +00:00
|
|
|
(module.alias_names(), module.decl_names())
|
2021-10-31 15:38:00 +00:00
|
|
|
}
|
2021-10-04 17:08:24 +00:00
|
|
|
} else {
|
|
|
|
match &import_pattern.members[0] {
|
2022-05-07 19:39:22 +00:00
|
|
|
ImportPatternMember::Glob { .. } => (module.alias_names(), module.decl_names()),
|
2021-10-04 17:08:24 +00:00
|
|
|
ImportPatternMember::Name { name, span } => {
|
2022-02-12 09:50:37 +00:00
|
|
|
let mut aliases = vec![];
|
|
|
|
let mut decls = vec![];
|
2021-11-15 23:16:06 +00:00
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
if let Some(item) = module.alias_name_with_head(name, &import_pattern.head.name)
|
2022-02-12 09:50:37 +00:00
|
|
|
{
|
|
|
|
aliases.push(item);
|
|
|
|
} else if let Some(item) =
|
2022-05-07 19:39:22 +00:00
|
|
|
module.decl_name_with_head(name, &import_pattern.head.name)
|
2022-02-12 09:50:37 +00:00
|
|
|
{
|
|
|
|
decls.push(item);
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if !module.has_env_var(name) {
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or(Some(ParseError::ExportNotFound(*span)));
|
2021-10-04 17:08:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-12 09:50:37 +00:00
|
|
|
(aliases, decls)
|
2021-10-04 17:08:24 +00:00
|
|
|
}
|
|
|
|
ImportPatternMember::List { names } => {
|
2022-02-12 09:50:37 +00:00
|
|
|
let mut aliases = vec![];
|
|
|
|
let mut decls = vec![];
|
2021-09-28 20:18:48 +00:00
|
|
|
|
2021-10-04 17:08:24 +00:00
|
|
|
for (name, span) in names {
|
2022-02-12 09:50:37 +00:00
|
|
|
if let Some(item) =
|
2022-05-07 19:39:22 +00:00
|
|
|
module.alias_name_with_head(name, &import_pattern.head.name)
|
2021-11-15 23:16:06 +00:00
|
|
|
{
|
2022-02-12 09:50:37 +00:00
|
|
|
aliases.push(item);
|
|
|
|
} else if let Some(item) =
|
2022-05-07 19:39:22 +00:00
|
|
|
module.decl_name_with_head(name, &import_pattern.head.name)
|
2022-02-12 09:50:37 +00:00
|
|
|
{
|
|
|
|
decls.push(item);
|
2022-05-07 19:39:22 +00:00
|
|
|
} else if !module.has_env_var(name) {
|
2021-11-15 23:16:06 +00:00
|
|
|
error = error.or(Some(ParseError::ExportNotFound(*span)));
|
|
|
|
break;
|
2021-10-04 17:08:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-12 09:50:37 +00:00
|
|
|
(aliases, decls)
|
2021-10-04 17:08:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-12 09:50:37 +00:00
|
|
|
let import_pattern = {
|
|
|
|
let aliases: HashSet<Vec<u8>> = aliases_to_hide.iter().cloned().collect();
|
|
|
|
let decls: HashSet<Vec<u8>> = decls_to_hide.iter().cloned().collect();
|
|
|
|
|
|
|
|
import_pattern.with_hidden(decls.union(&aliases).cloned().collect())
|
|
|
|
};
|
|
|
|
|
2021-11-15 23:16:06 +00:00
|
|
|
// TODO: `use spam; use spam foo; hide foo` will hide both `foo` and `spam foo` since
|
|
|
|
// they point to the same DeclId. Do we want to keep it that way?
|
|
|
|
working_set.hide_decls(&decls_to_hide);
|
2022-02-12 09:50:37 +00:00
|
|
|
working_set.hide_aliases(&aliases_to_hide);
|
2021-09-28 20:18:48 +00:00
|
|
|
|
2022-01-10 01:39:25 +00:00
|
|
|
// Create a new Use command call to pass the new import pattern
|
2021-11-15 23:16:06 +00:00
|
|
|
let import_pattern_expr = Expression {
|
|
|
|
expr: Expr::ImportPattern(import_pattern),
|
|
|
|
span: span(&spans[1..]),
|
|
|
|
ty: Type::List(Box::new(Type::String)),
|
|
|
|
custom_completion: None,
|
|
|
|
};
|
|
|
|
|
2021-09-28 20:18:48 +00:00
|
|
|
let call = Box::new(Call {
|
|
|
|
head: spans[0],
|
|
|
|
decl_id: hide_decl_id,
|
2022-04-09 02:55:02 +00:00
|
|
|
arguments: vec![Argument::Positional(import_pattern_expr)],
|
2022-02-21 22:22:21 +00:00
|
|
|
redirect_stdout: true,
|
|
|
|
redirect_stderr: false,
|
2021-09-28 20:18:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-09-28 20:18:48 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-09-28 20:18:48 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-09-28 20:18:48 +00:00
|
|
|
error,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-09-28 20:18:48 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"Expected structure: hide <name>".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
pub fn parse_overlay(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
|
|
|
expand_aliases_denylist: &[usize],
|
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
|
|
|
if working_set.get_span_contents(spans[0]) != b"overlay" {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'overlay' command".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if spans.len() > 1 {
|
|
|
|
let subcommand = working_set.get_span_contents(spans[1]);
|
|
|
|
|
|
|
|
match subcommand {
|
|
|
|
b"add" => {
|
|
|
|
return parse_overlay_add(working_set, spans, expand_aliases_denylist);
|
|
|
|
}
|
|
|
|
b"list" => {
|
|
|
|
// TODO: Abstract this code blob, it's repeated all over the place:
|
2022-06-10 15:59:35 +00:00
|
|
|
let call = match working_set.find_decl(b"overlay list", &Type::Any) {
|
2022-05-07 19:39:22 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-05-07 19:39:22 +00:00
|
|
|
working_set,
|
|
|
|
span(&spans[..2]),
|
|
|
|
if spans.len() > 2 { &spans[2..] } else { &[] },
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-05-07 19:39:22 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
call
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'overlay' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
|
|
|
ty: Type::Any,
|
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
}
|
2022-05-26 14:47:04 +00:00
|
|
|
b"new" => {
|
|
|
|
return parse_overlay_new(working_set, spans, expand_aliases_denylist);
|
|
|
|
}
|
2022-05-07 19:39:22 +00:00
|
|
|
b"remove" => {
|
|
|
|
return parse_overlay_remove(working_set, spans, expand_aliases_denylist);
|
|
|
|
}
|
|
|
|
_ => { /* continue parsing overlay */ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let call = match working_set.find_decl(b"overlay", &Type::Any) {
|
2022-05-07 19:39:22 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-05-07 19:39:22 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-05-07 19:39:22 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
call
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'overlay' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
|
|
|
ty: Type::Any,
|
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-26 14:47:04 +00:00
|
|
|
pub fn parse_overlay_new(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
|
|
|
expand_aliases_denylist: &[usize],
|
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
|
|
|
if spans.len() > 1 && working_set.get_span_contents(span(&spans[0..2])) != b"overlay new" {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'overlay new' command".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(b"overlay new", &Type::Any) {
|
2022-05-26 14:47:04 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-05-26 14:47:04 +00:00
|
|
|
working_set,
|
|
|
|
span(&spans[0..2]),
|
|
|
|
&spans[2..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-05-26 14:47:04 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'overlay new' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let (overlay_name, _) = if let Some(expr) = call.positional_nth(0) {
|
|
|
|
if let Some(s) = expr.as_string() {
|
|
|
|
(s, expr.span)
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Module name not a string".into(),
|
|
|
|
expr.span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Missing required positional after call parsing".into(),
|
|
|
|
call_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
let pipeline = Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
|
|
|
ty: Type::Any,
|
|
|
|
custom_completion: None,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
let module_id = working_set.add_module(&overlay_name, Module::new());
|
|
|
|
|
|
|
|
working_set.add_overlay(overlay_name.as_bytes().to_vec(), module_id, vec![], vec![]);
|
|
|
|
|
|
|
|
(pipeline, None)
|
|
|
|
}
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
pub fn parse_overlay_add(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
|
|
|
expand_aliases_denylist: &[usize],
|
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
|
|
|
if spans.len() > 1 && working_set.get_span_contents(span(&spans[0..2])) != b"overlay add" {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'overlay add' command".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Allow full import pattern as argument (requires custom naming of module/overlay)
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(b"overlay add", &Type::Any) {
|
2022-05-07 19:39:22 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-05-07 19:39:22 +00:00
|
|
|
working_set,
|
|
|
|
span(&spans[0..2]),
|
|
|
|
&spans[2..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-05-07 19:39:22 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'overlay add' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let (overlay_name, overlay_name_span) = if let Some(expr) = call.positional_nth(0) {
|
|
|
|
if let Some(s) = expr.as_string() {
|
|
|
|
(s, expr.span)
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Module name not a string".into(),
|
|
|
|
expr.span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Missing required positional after call parsing".into(),
|
|
|
|
call_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
let pipeline = Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
|
|
|
ty: Type::Any,
|
|
|
|
custom_completion: None,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
// TODO: Add support for it -- needs to play well with overlay remove
|
|
|
|
let has_prefix = false; //call.has_flag("prefix");
|
|
|
|
|
|
|
|
let cwd = working_set.get_cwd();
|
|
|
|
|
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
let result = if let Some(module_id) = working_set.find_overlay_origin(overlay_name.as_bytes()) {
|
|
|
|
// Activate existing overlay
|
|
|
|
if let Some(new_module_id) = working_set.find_module(overlay_name.as_bytes()) {
|
|
|
|
if module_id == new_module_id {
|
|
|
|
Some((overlay_name, Module::new(), module_id))
|
|
|
|
} else {
|
|
|
|
// The origin module of an overlay changed => update it
|
|
|
|
Some((
|
|
|
|
overlay_name,
|
|
|
|
working_set.get_module(new_module_id).clone(),
|
|
|
|
new_module_id,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Some((overlay_name, Module::new(), module_id))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Create a new overlay from a module
|
|
|
|
if let Some(module_id) =
|
|
|
|
// the name is a module
|
|
|
|
working_set.find_module(overlay_name.as_bytes())
|
|
|
|
{
|
|
|
|
Some((
|
|
|
|
overlay_name,
|
|
|
|
working_set.get_module(module_id).clone(),
|
|
|
|
module_id,
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
// try if the name is a file
|
|
|
|
if let Ok(module_filename) =
|
|
|
|
String::from_utf8(trim_quotes(overlay_name.as_bytes()).to_vec())
|
|
|
|
{
|
|
|
|
if let Some(module_path) =
|
|
|
|
find_in_dirs(&module_filename, working_set, &cwd, LIB_DIRS_ENV)
|
|
|
|
{
|
|
|
|
let overlay_name = if let Some(stem) = module_path.file_stem() {
|
|
|
|
stem.to_string_lossy().to_string()
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
pipeline,
|
|
|
|
Some(ParseError::ModuleOrOverlayNotFound(spans[1])),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Ok(contents) = std::fs::read(module_path) {
|
|
|
|
let span_start = working_set.next_span_start();
|
|
|
|
working_set.add_file(module_filename, &contents);
|
|
|
|
let span_end = working_set.next_span_start();
|
|
|
|
|
|
|
|
let (block, module, err) = parse_module_block(
|
|
|
|
working_set,
|
|
|
|
Span::new(span_start, span_end),
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
error = error.or(err);
|
|
|
|
|
|
|
|
let _ = working_set.add_block(block);
|
|
|
|
let module_id = working_set.add_module(&overlay_name, module.clone());
|
|
|
|
|
|
|
|
Some((overlay_name, module, module_id))
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
pipeline,
|
|
|
|
Some(ParseError::ModuleOrOverlayNotFound(spans[1])),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
error = error.or(Some(ParseError::ModuleOrOverlayNotFound(overlay_name_span)));
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return (garbage_pipeline(spans), Some(ParseError::NonUtf8(spans[1])));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some((name, module, module_id)) = result {
|
|
|
|
let (decls_to_lay, aliases_to_lay) = if has_prefix {
|
|
|
|
(
|
|
|
|
module.decls_with_head(name.as_bytes()),
|
|
|
|
module.aliases_with_head(name.as_bytes()),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(module.decls(), module.aliases())
|
|
|
|
};
|
|
|
|
|
|
|
|
working_set.add_overlay(
|
|
|
|
name.as_bytes().to_vec(),
|
|
|
|
module_id,
|
|
|
|
decls_to_lay,
|
|
|
|
aliases_to_lay,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
(pipeline, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_overlay_remove(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
|
|
|
expand_aliases_denylist: &[usize],
|
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
|
|
|
if spans.len() > 1 && working_set.get_span_contents(span(&spans[0..2])) != b"overlay remove" {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for 'overlay remove' command".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
let call = match working_set.find_decl(b"overlay remove", &Type::Any) {
|
2022-05-07 19:39:22 +00:00
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-05-07 19:39:22 +00:00
|
|
|
working_set,
|
|
|
|
span(&spans[0..2]),
|
|
|
|
&spans[2..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
|
|
|
let decl = working_set.get_decl(decl_id);
|
|
|
|
|
|
|
|
let call_span = span(spans);
|
|
|
|
|
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
|
|
|
if err.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-05-07 19:39:22 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
call
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: 'overlay remove' declaration not found".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let (overlay_name, overlay_name_span) = if let Some(expr) = call.positional_nth(0) {
|
|
|
|
if let Some(s) = expr.as_string() {
|
|
|
|
(s, expr.span)
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
garbage_pipeline(spans),
|
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Module name not a string".into(),
|
|
|
|
expr.span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(
|
|
|
|
String::from_utf8_lossy(working_set.last_overlay_name()).to_string(),
|
|
|
|
call.head,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2022-05-24 21:22:17 +00:00
|
|
|
let keep_custom = call.has_flag("keep-custom");
|
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
let pipeline = Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
|
|
|
ty: Type::Any,
|
|
|
|
custom_completion: None,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
if overlay_name == DEFAULT_OVERLAY_NAME {
|
|
|
|
return (
|
|
|
|
pipeline,
|
|
|
|
Some(ParseError::CantRemoveDefaultOverlay(
|
|
|
|
overlay_name,
|
|
|
|
overlay_name_span,
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if !working_set
|
|
|
|
.unique_overlay_names()
|
|
|
|
.contains(&overlay_name.as_bytes().to_vec())
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
pipeline,
|
|
|
|
Some(ParseError::ActiveOverlayNotFound(overlay_name_span)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if working_set.num_overlays() < 2 {
|
|
|
|
return (
|
|
|
|
pipeline,
|
|
|
|
Some(ParseError::CantRemoveLastOverlay(overlay_name_span)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-24 21:22:17 +00:00
|
|
|
working_set.remove_overlay(overlay_name.as_bytes(), keep_custom);
|
2022-05-07 19:39:22 +00:00
|
|
|
|
|
|
|
(pipeline, None)
|
|
|
|
}
|
|
|
|
|
2021-09-26 18:39:19 +00:00
|
|
|
pub fn parse_let(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2021-09-26 18:39:19 +00:00
|
|
|
let name = working_set.get_span_contents(spans[0]);
|
|
|
|
|
|
|
|
if name == b"let" {
|
|
|
|
if let Some((span, err)) = check_name(working_set, spans) {
|
2022-02-15 19:31:14 +00:00
|
|
|
return (Pipeline::from_vec(vec![garbage(*span)]), Some(err));
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
|
|
|
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(b"let", &Type::Any) {
|
2022-01-03 23:14:33 +00:00
|
|
|
let cmd = working_set.get_decl(decl_id);
|
|
|
|
let call_signature = cmd.signature().call_signature();
|
|
|
|
|
2021-12-15 22:56:12 +00:00
|
|
|
if spans.len() >= 4 {
|
|
|
|
// This is a bit of by-hand parsing to get around the issue where we want to parse in the reverse order
|
|
|
|
// so that the var-id created by the variable isn't visible in the expression that init it
|
|
|
|
for span in spans.iter().enumerate() {
|
|
|
|
let item = working_set.get_span_contents(*span.1);
|
|
|
|
if item == b"=" && spans.len() > (span.0 + 1) {
|
|
|
|
let mut error = None;
|
|
|
|
|
|
|
|
let mut idx = span.0;
|
|
|
|
let (rvalue, err) = parse_multispan_value(
|
|
|
|
working_set,
|
|
|
|
spans,
|
|
|
|
&mut idx,
|
|
|
|
&SyntaxShape::Keyword(b"=".to_vec(), Box::new(SyntaxShape::Expression)),
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist,
|
2021-12-15 22:56:12 +00:00
|
|
|
);
|
|
|
|
error = error.or(err);
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2021-12-27 03:04:22 +00:00
|
|
|
if idx < (spans.len() - 1) {
|
2022-01-03 23:14:33 +00:00
|
|
|
error = error.or(Some(ParseError::ExtraPositional(
|
|
|
|
call_signature,
|
|
|
|
spans[idx + 1],
|
|
|
|
)));
|
2021-12-27 03:04:22 +00:00
|
|
|
}
|
|
|
|
|
2021-12-15 22:56:12 +00:00
|
|
|
let mut idx = 0;
|
|
|
|
let (lvalue, err) =
|
|
|
|
parse_var_with_opt_type(working_set, &spans[1..(span.0)], &mut idx);
|
|
|
|
error = error.or(err);
|
|
|
|
|
2022-06-24 21:55:25 +00:00
|
|
|
let var_name =
|
|
|
|
String::from_utf8_lossy(working_set.get_span_contents(lvalue.span))
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
if ["in", "nu", "env", "nothing"].contains(&var_name.as_str()) {
|
|
|
|
error =
|
|
|
|
error.or(Some(ParseError::LetBuiltinVar(var_name, lvalue.span)));
|
|
|
|
}
|
|
|
|
|
2021-12-15 22:56:12 +00:00
|
|
|
let var_id = lvalue.as_var();
|
|
|
|
let rhs_type = rvalue.ty.clone();
|
|
|
|
|
|
|
|
if let Some(var_id) = var_id {
|
2022-04-18 22:28:01 +00:00
|
|
|
working_set.set_variable_type(var_id, rhs_type);
|
2021-12-15 22:56:12 +00:00
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
|
2021-12-15 22:56:12 +00:00
|
|
|
let call = Box::new(Call {
|
|
|
|
decl_id,
|
|
|
|
head: spans[0],
|
2022-04-09 02:55:02 +00:00
|
|
|
arguments: vec![
|
|
|
|
Argument::Positional(lvalue),
|
|
|
|
Argument::Positional(rvalue),
|
|
|
|
],
|
2022-02-21 22:22:21 +00:00
|
|
|
redirect_stdout: true,
|
|
|
|
redirect_stderr: false,
|
2021-12-15 22:56:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-15 22:56:12 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: nu_protocol::span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-12-15 22:56:12 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-15 22:56:12 +00:00
|
|
|
error,
|
|
|
|
);
|
|
|
|
}
|
2021-11-14 19:25:57 +00:00
|
|
|
}
|
2021-09-26 18:39:19 +00:00
|
|
|
}
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-09-26 18:39:19 +00:00
|
|
|
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline {
|
2021-12-15 22:56:12 +00:00
|
|
|
expressions: vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: nu_protocol::span(spans),
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2021-12-15 22:56:12 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}],
|
2022-02-15 19:31:14 +00:00
|
|
|
},
|
2021-09-26 18:39:19 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-09-26 18:39:19 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: let statement unparseable".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
2021-10-02 02:24:43 +00:00
|
|
|
|
|
|
|
pub fn parse_source(
|
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2021-12-03 19:49:11 +00:00
|
|
|
let mut error = None;
|
2021-10-02 02:24:43 +00:00
|
|
|
let name = working_set.get_span_contents(spans[0]);
|
|
|
|
|
|
|
|
if name == b"source" {
|
2022-06-10 15:59:35 +00:00
|
|
|
if let Some(decl_id) = working_set.find_decl(b"source", &Type::Any) {
|
2022-01-05 00:26:01 +00:00
|
|
|
let cwd = working_set.get_cwd();
|
2021-10-06 02:03:18 +00:00
|
|
|
// Is this the right call to be using here?
|
|
|
|
// Some of the others (`parse_let`) use it, some of them (`parse_hide`) don't.
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-12-03 19:49:11 +00:00
|
|
|
error = error.or(err);
|
2021-10-02 02:24:43 +00:00
|
|
|
|
2022-02-24 15:32:10 +00:00
|
|
|
if error.is_some() || call.has_flag("help") {
|
|
|
|
return (
|
|
|
|
Pipeline::from_vec(vec![Expression {
|
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(spans),
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2022-02-24 15:32:10 +00:00
|
|
|
custom_completion: None,
|
|
|
|
}]),
|
|
|
|
error,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-02 02:24:43 +00:00
|
|
|
// Command and one file name
|
|
|
|
if spans.len() >= 2 {
|
|
|
|
let name_expr = working_set.get_span_contents(spans[1]);
|
2022-05-01 18:37:20 +00:00
|
|
|
let (filename, err) = unescape_unquote_string(name_expr, spans[1]);
|
|
|
|
if err.is_none() {
|
2022-03-12 20:12:15 +00:00
|
|
|
if let Some(path) = find_in_dirs(&filename, working_set, &cwd, LIB_DIRS_ENV) {
|
2021-12-03 19:49:11 +00:00
|
|
|
if let Ok(contents) = std::fs::read(&path) {
|
|
|
|
// This will load the defs from the file into the
|
|
|
|
// working set, if it was a successful parse.
|
|
|
|
let (block, err) = parse(
|
|
|
|
working_set,
|
|
|
|
path.file_name().and_then(|x| x.to_str()),
|
|
|
|
&contents,
|
|
|
|
false,
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist,
|
2021-10-06 01:59:16 +00:00
|
|
|
);
|
|
|
|
|
2021-12-03 19:49:11 +00:00
|
|
|
if err.is_some() {
|
|
|
|
// Unsuccessful parse of file
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-03 19:49:11 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: span(&spans[1..]),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-12-03 19:49:11 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-03 19:49:11 +00:00
|
|
|
// Return the file parse error
|
|
|
|
err,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Save the block into the working set
|
|
|
|
let block_id = working_set.add_block(block);
|
|
|
|
|
|
|
|
let mut call_with_block = call;
|
|
|
|
|
|
|
|
// Adding this expression to the positional creates a syntax highlighting error
|
|
|
|
// after writing `source example.nu`
|
2022-04-09 02:55:02 +00:00
|
|
|
call_with_block.add_positional(Expression {
|
2021-12-03 19:49:11 +00:00
|
|
|
expr: Expr::Int(block_id as i64),
|
|
|
|
span: spans[1],
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-10-06 01:59:16 +00:00
|
|
|
custom_completion: None,
|
2021-12-03 19:49:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-03 19:49:11 +00:00
|
|
|
expr: Expr::Call(call_with_block),
|
2021-12-18 20:10:40 +00:00
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-12-03 19:49:11 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-03 19:49:11 +00:00
|
|
|
None,
|
|
|
|
);
|
|
|
|
}
|
2021-10-02 02:24:43 +00:00
|
|
|
}
|
2021-12-03 19:49:11 +00:00
|
|
|
} else {
|
2022-03-25 21:43:46 +00:00
|
|
|
error = error.or(Some(ParseError::SourcedFileNotFound(filename, spans[1])));
|
2021-10-02 02:24:43 +00:00
|
|
|
}
|
2021-10-31 15:53:53 +00:00
|
|
|
} else {
|
2022-02-15 19:31:14 +00:00
|
|
|
return (garbage_pipeline(spans), Some(ParseError::NonUtf8(spans[1])));
|
2021-10-02 02:24:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-10-02 02:24:43 +00:00
|
|
|
expr: Expr::Call(call),
|
2021-12-18 20:10:40 +00:00
|
|
|
span: span(spans),
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-10-02 02:24:43 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-03 19:49:11 +00:00
|
|
|
error,
|
2021-10-02 02:24:43 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-10-02 02:24:43 +00:00
|
|
|
Some(ParseError::UnknownState(
|
2021-10-06 02:29:05 +00:00
|
|
|
"internal error: source statement unparseable".into(),
|
2021-10-02 02:24:43 +00:00
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
}
|
2021-10-31 08:17:01 +00:00
|
|
|
|
2021-11-02 20:56:00 +00:00
|
|
|
#[cfg(feature = "plugin")]
|
2021-12-03 14:29:55 +00:00
|
|
|
pub fn parse_register(
|
2021-10-31 08:17:01 +00:00
|
|
|
working_set: &mut StateWorkingSet,
|
|
|
|
spans: &[Span],
|
2022-03-18 19:03:57 +00:00
|
|
|
expand_aliases_denylist: &[usize],
|
2022-02-15 19:31:14 +00:00
|
|
|
) -> (Pipeline, Option<ParseError>) {
|
2021-12-12 11:50:35 +00:00
|
|
|
use nu_plugin::{get_signature, EncodingType, PluginDeclaration};
|
2021-11-19 02:51:42 +00:00
|
|
|
use nu_protocol::Signature;
|
2022-01-05 00:26:01 +00:00
|
|
|
let cwd = working_set.get_cwd();
|
2021-11-19 02:51:42 +00:00
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
// Checking that the function is used with the correct name
|
|
|
|
// Maybe this is not necessary but it is a sanity check
|
|
|
|
if working_set.get_span_contents(spans[0]) != b"register" {
|
2021-10-31 08:17:01 +00:00
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-10-31 08:17:01 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Wrong call name for parse plugin function".into(),
|
|
|
|
span(spans),
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
// Parsing the spans and checking that they match the register signature
|
|
|
|
// Using a parsed call makes more sense than checking for how many spans are in the call
|
|
|
|
// Also, by creating a call, it can be checked if it matches the declaration signature
|
2022-06-10 15:59:35 +00:00
|
|
|
let (call, call_span) = match working_set.find_decl(b"register", &Type::Any) {
|
2021-12-12 11:50:35 +00:00
|
|
|
None => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
garbage_pipeline(spans),
|
2021-12-12 11:50:35 +00:00
|
|
|
Some(ParseError::UnknownState(
|
|
|
|
"internal error: Register declaration not found".into(),
|
|
|
|
span(spans),
|
2021-10-31 08:17:01 +00:00
|
|
|
)),
|
2021-12-12 11:50:35 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
Some(decl_id) => {
|
2022-06-12 19:18:00 +00:00
|
|
|
let ParsedInternalCall {
|
|
|
|
call,
|
|
|
|
error: mut err,
|
|
|
|
output,
|
|
|
|
} = parse_internal_call(
|
2022-03-18 19:03:57 +00:00
|
|
|
working_set,
|
|
|
|
spans[0],
|
|
|
|
&spans[1..],
|
|
|
|
decl_id,
|
|
|
|
expand_aliases_denylist,
|
|
|
|
);
|
2021-12-12 11:50:35 +00:00
|
|
|
let decl = working_set.get_decl(decl_id);
|
2021-12-03 14:29:55 +00:00
|
|
|
|
2021-12-18 20:10:40 +00:00
|
|
|
let call_span = span(spans);
|
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
err = check_call(call_span, &decl.signature(), &call).or(err);
|
2021-12-12 14:00:07 +00:00
|
|
|
if err.is_some() || call.has_flag("help") {
|
2021-12-12 11:50:35 +00:00
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-12 11:50:35 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-06-12 19:18:00 +00:00
|
|
|
ty: output,
|
2021-12-12 11:50:35 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-12 11:50:35 +00:00
|
|
|
err,
|
|
|
|
);
|
|
|
|
}
|
2021-12-03 14:29:55 +00:00
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
(call, call_span)
|
|
|
|
}
|
|
|
|
};
|
2021-12-03 14:29:55 +00:00
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
// Extracting the required arguments from the call and keeping them together in a tuple
|
|
|
|
// The ? operator is not used because the error has to be kept to be printed in the shell
|
|
|
|
// For that reason the values are kept in a result that will be passed at the end of this call
|
|
|
|
let arguments = call
|
2022-04-09 02:55:02 +00:00
|
|
|
.positional_nth(0)
|
2021-12-12 11:50:35 +00:00
|
|
|
.map(|expr| {
|
|
|
|
let name_expr = working_set.get_span_contents(expr.span);
|
2022-03-09 12:06:44 +00:00
|
|
|
|
2022-05-01 18:37:20 +00:00
|
|
|
let (name, err) = unescape_unquote_string(name_expr, expr.span);
|
|
|
|
|
|
|
|
if let Some(err) = err {
|
|
|
|
Err(err)
|
|
|
|
} else {
|
|
|
|
let path = if let Some(p) = find_in_dirs(&name, working_set, &cwd, PLUGIN_DIRS_ENV)
|
|
|
|
{
|
|
|
|
p
|
|
|
|
} else {
|
|
|
|
return Err(ParseError::RegisteredFileNotFound(name, expr.span));
|
|
|
|
};
|
|
|
|
|
|
|
|
if path.exists() & path.is_file() {
|
|
|
|
Ok(path)
|
|
|
|
} else {
|
|
|
|
Err(ParseError::RegisteredFileNotFound(
|
|
|
|
format!("{:?}", path),
|
|
|
|
expr.span,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
2021-12-12 11:50:35 +00:00
|
|
|
})
|
|
|
|
.expect("required positional has being checked")
|
|
|
|
.and_then(|path| {
|
|
|
|
call.get_flag_expr("encoding")
|
|
|
|
.map(|expr| {
|
|
|
|
EncodingType::try_from_bytes(working_set.get_span_contents(expr.span))
|
|
|
|
.ok_or_else(|| {
|
|
|
|
ParseError::IncorrectValue(
|
|
|
|
"wrong encoding".into(),
|
|
|
|
expr.span,
|
|
|
|
"Encodings available: capnp and json".into(),
|
|
|
|
)
|
2021-12-02 05:42:56 +00:00
|
|
|
})
|
2021-12-12 11:50:35 +00:00
|
|
|
})
|
|
|
|
.expect("required named has being checked")
|
|
|
|
.map(|encoding| (path, encoding))
|
|
|
|
});
|
2021-10-31 08:17:01 +00:00
|
|
|
|
2021-12-18 18:13:56 +00:00
|
|
|
// Signature is an optional value from the call and will be used to decide if
|
2021-12-12 11:50:35 +00:00
|
|
|
// the plugin is called to get the signatures or to use the given signature
|
2022-04-09 02:55:02 +00:00
|
|
|
let signature = call.positional_nth(1).map(|expr| {
|
2021-12-12 11:50:35 +00:00
|
|
|
let signature = working_set.get_span_contents(expr.span);
|
2022-06-25 21:23:56 +00:00
|
|
|
serde_json::from_slice::<Signature>(signature).map_err(|e| {
|
2021-12-12 11:50:35 +00:00
|
|
|
ParseError::LabeledError(
|
|
|
|
"Signature deserialization error".into(),
|
2022-06-25 21:23:56 +00:00
|
|
|
format!("unable to deserialize signature: {}", e),
|
2021-12-12 11:50:35 +00:00
|
|
|
spans[0],
|
|
|
|
)
|
|
|
|
})
|
|
|
|
});
|
2021-10-31 08:17:01 +00:00
|
|
|
|
2021-12-18 18:13:56 +00:00
|
|
|
// Shell is another optional value used as base to call shell to plugins
|
|
|
|
let shell = call.get_flag_expr("shell").map(|expr| {
|
|
|
|
let shell_expr = working_set.get_span_contents(expr.span);
|
|
|
|
|
|
|
|
String::from_utf8(shell_expr.to_vec())
|
|
|
|
.map_err(|_| ParseError::NonUtf8(expr.span))
|
|
|
|
.and_then(|name| {
|
2022-03-25 21:43:46 +00:00
|
|
|
canonicalize_with(&name, cwd)
|
|
|
|
.map_err(|_| ParseError::RegisteredFileNotFound(name, expr.span))
|
2021-12-18 18:13:56 +00:00
|
|
|
})
|
|
|
|
.and_then(|path| {
|
|
|
|
if path.exists() & path.is_file() {
|
|
|
|
Ok(path)
|
|
|
|
} else {
|
2022-03-25 21:43:46 +00:00
|
|
|
Err(ParseError::RegisteredFileNotFound(
|
|
|
|
format!("{:?}", path),
|
|
|
|
expr.span,
|
|
|
|
))
|
2021-12-18 18:13:56 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
let shell = match shell {
|
|
|
|
None => None,
|
|
|
|
Some(path) => match path {
|
|
|
|
Ok(path) => Some(path),
|
|
|
|
Err(err) => {
|
|
|
|
return (
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-18 18:13:56 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
2022-04-07 04:34:09 +00:00
|
|
|
ty: Type::Any,
|
2021-12-18 18:13:56 +00:00
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-18 18:13:56 +00:00
|
|
|
Some(err),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
let error = match signature {
|
|
|
|
Some(signature) => arguments.and_then(|(path, encoding)| {
|
|
|
|
signature.map(|signature| {
|
2021-12-18 18:13:56 +00:00
|
|
|
let plugin_decl = PluginDeclaration::new(path, signature, encoding, shell);
|
2021-12-12 11:50:35 +00:00
|
|
|
working_set.add_decl(Box::new(plugin_decl));
|
|
|
|
working_set.mark_plugins_file_dirty();
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
None => arguments.and_then(|(path, encoding)| {
|
2021-12-18 18:13:56 +00:00
|
|
|
get_signature(path.as_path(), &encoding, &shell)
|
2021-12-12 11:50:35 +00:00
|
|
|
.map_err(|err| {
|
|
|
|
ParseError::LabeledError(
|
|
|
|
"Error getting signatures".into(),
|
|
|
|
err.to_string(),
|
|
|
|
spans[0],
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.map(|signatures| {
|
|
|
|
for signature in signatures {
|
|
|
|
// create plugin command declaration (need struct impl Command)
|
|
|
|
// store declaration in working set
|
2021-12-18 18:13:56 +00:00
|
|
|
let plugin_decl = PluginDeclaration::new(
|
|
|
|
path.clone(),
|
|
|
|
signature,
|
|
|
|
encoding.clone(),
|
|
|
|
shell.clone(),
|
|
|
|
);
|
2021-12-12 11:50:35 +00:00
|
|
|
|
|
|
|
working_set.add_decl(Box::new(plugin_decl));
|
|
|
|
}
|
2021-10-31 08:17:01 +00:00
|
|
|
|
2021-12-12 11:50:35 +00:00
|
|
|
working_set.mark_plugins_file_dirty();
|
|
|
|
})
|
|
|
|
}),
|
2021-10-31 08:17:01 +00:00
|
|
|
}
|
2021-12-12 11:50:35 +00:00
|
|
|
.err();
|
|
|
|
|
|
|
|
(
|
2022-02-15 19:31:14 +00:00
|
|
|
Pipeline::from_vec(vec![Expression {
|
2021-12-12 11:50:35 +00:00
|
|
|
expr: Expr::Call(call),
|
|
|
|
span: call_span,
|
|
|
|
ty: Type::Nothing,
|
|
|
|
custom_completion: None,
|
2022-02-15 19:31:14 +00:00
|
|
|
}]),
|
2021-12-12 11:50:35 +00:00
|
|
|
error,
|
|
|
|
)
|
2021-10-31 08:17:01 +00:00
|
|
|
}
|
2022-03-12 20:12:15 +00:00
|
|
|
|
2022-05-07 19:39:22 +00:00
|
|
|
pub fn find_in_dirs(
|
2022-03-12 20:12:15 +00:00
|
|
|
filename: &str,
|
|
|
|
working_set: &StateWorkingSet,
|
|
|
|
cwd: &str,
|
|
|
|
dirs_env: &str,
|
|
|
|
) -> Option<PathBuf> {
|
|
|
|
if let Ok(p) = canonicalize_with(filename, cwd) {
|
|
|
|
Some(p)
|
|
|
|
} else {
|
|
|
|
let path = Path::new(filename);
|
|
|
|
|
|
|
|
if path.is_relative() {
|
2022-05-07 19:39:22 +00:00
|
|
|
if let Some(lib_dirs) = working_set.get_env_var(dirs_env) {
|
2022-03-12 20:12:15 +00:00
|
|
|
if let Ok(dirs) = lib_dirs.as_list() {
|
|
|
|
for lib_dir in dirs {
|
|
|
|
if let Ok(dir) = lib_dir.as_path() {
|
|
|
|
if let Ok(dir_abs) = canonicalize_with(&dir, cwd) {
|
|
|
|
// make sure the dir is absolute path
|
|
|
|
if let Ok(path) = canonicalize_with(filename, dir_abs) {
|
|
|
|
return Some(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|