2021-01-01 03:12:16 +01:00
|
|
|
use crate::prelude::*;
|
2021-01-11 05:58:15 +01:00
|
|
|
use nu_engine::basic_evaluation_context;
|
2021-01-10 03:50:49 +01:00
|
|
|
use nu_engine::whole_stream_command;
|
2021-01-01 03:12:16 +01:00
|
|
|
use std::error::Error;
|
|
|
|
|
|
|
|
pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Box<dyn Error>> {
|
2021-01-11 05:58:15 +01:00
|
|
|
let context = basic_evaluation_context()?;
|
2021-01-01 03:12:16 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
use crate::commands::*;
|
|
|
|
|
|
|
|
context.add_commands(vec![
|
|
|
|
// Fundamentals
|
|
|
|
whole_stream_command(NuPlugin),
|
2021-01-05 00:30:55 +01:00
|
|
|
whole_stream_command(Let),
|
|
|
|
whole_stream_command(LetEnv),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(Def),
|
|
|
|
whole_stream_command(Source),
|
|
|
|
// System/file operations
|
|
|
|
whole_stream_command(Exec),
|
|
|
|
whole_stream_command(Pwd),
|
|
|
|
whole_stream_command(Ls),
|
|
|
|
whole_stream_command(Du),
|
|
|
|
whole_stream_command(Cd),
|
|
|
|
whole_stream_command(Remove),
|
|
|
|
whole_stream_command(Open),
|
|
|
|
whole_stream_command(Config),
|
|
|
|
whole_stream_command(ConfigGet),
|
|
|
|
whole_stream_command(ConfigSet),
|
|
|
|
whole_stream_command(ConfigSetInto),
|
|
|
|
whole_stream_command(ConfigClear),
|
|
|
|
whole_stream_command(ConfigRemove),
|
|
|
|
whole_stream_command(ConfigPath),
|
|
|
|
whole_stream_command(Help),
|
|
|
|
whole_stream_command(History),
|
|
|
|
whole_stream_command(Save),
|
|
|
|
whole_stream_command(Touch),
|
|
|
|
whole_stream_command(Cpy),
|
|
|
|
whole_stream_command(Date),
|
|
|
|
whole_stream_command(DateListTimeZone),
|
|
|
|
whole_stream_command(DateNow),
|
|
|
|
whole_stream_command(DateToTable),
|
|
|
|
whole_stream_command(DateToTimeZone),
|
|
|
|
whole_stream_command(DateFormat),
|
|
|
|
whole_stream_command(Cal),
|
|
|
|
whole_stream_command(Mkdir),
|
|
|
|
whole_stream_command(Mv),
|
|
|
|
whole_stream_command(Kill),
|
|
|
|
whole_stream_command(Version),
|
|
|
|
whole_stream_command(Clear),
|
|
|
|
whole_stream_command(Describe),
|
|
|
|
whole_stream_command(Which),
|
|
|
|
whole_stream_command(Debug),
|
|
|
|
whole_stream_command(WithEnv),
|
|
|
|
whole_stream_command(Do),
|
|
|
|
whole_stream_command(Sleep),
|
|
|
|
// Statistics
|
|
|
|
whole_stream_command(Size),
|
2021-03-13 22:46:40 +01:00
|
|
|
whole_stream_command(Length),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(Benchmark),
|
|
|
|
// Metadata
|
|
|
|
whole_stream_command(Tags),
|
|
|
|
// Shells
|
|
|
|
whole_stream_command(Next),
|
|
|
|
whole_stream_command(Previous),
|
|
|
|
whole_stream_command(Shells),
|
|
|
|
whole_stream_command(Enter),
|
|
|
|
whole_stream_command(Exit),
|
|
|
|
// Viz
|
|
|
|
whole_stream_command(Chart),
|
|
|
|
// Viewers
|
|
|
|
whole_stream_command(Autoview),
|
|
|
|
whole_stream_command(Table),
|
|
|
|
// Text manipulation
|
|
|
|
whole_stream_command(Hash),
|
|
|
|
whole_stream_command(HashBase64),
|
2021-03-20 19:48:53 +01:00
|
|
|
whole_stream_command(HashMd5),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(Split),
|
|
|
|
whole_stream_command(SplitColumn),
|
|
|
|
whole_stream_command(SplitRow),
|
|
|
|
whole_stream_command(SplitChars),
|
|
|
|
whole_stream_command(Lines),
|
|
|
|
whole_stream_command(Echo),
|
|
|
|
whole_stream_command(Parse),
|
|
|
|
whole_stream_command(Str),
|
|
|
|
whole_stream_command(StrToDecimal),
|
|
|
|
whole_stream_command(StrToInteger),
|
|
|
|
whole_stream_command(StrDowncase),
|
|
|
|
whole_stream_command(StrUpcase),
|
|
|
|
whole_stream_command(StrCapitalize),
|
|
|
|
whole_stream_command(StrFindReplace),
|
|
|
|
whole_stream_command(StrFrom),
|
|
|
|
whole_stream_command(StrSubstring),
|
|
|
|
whole_stream_command(StrToDatetime),
|
|
|
|
whole_stream_command(StrContains),
|
|
|
|
whole_stream_command(StrIndexOf),
|
|
|
|
whole_stream_command(StrTrim),
|
|
|
|
whole_stream_command(StrTrimLeft),
|
|
|
|
whole_stream_command(StrTrimRight),
|
|
|
|
whole_stream_command(StrStartsWith),
|
|
|
|
whole_stream_command(StrEndsWith),
|
|
|
|
whole_stream_command(StrCollect),
|
|
|
|
whole_stream_command(StrLength),
|
|
|
|
whole_stream_command(StrLPad),
|
|
|
|
whole_stream_command(StrReverse),
|
|
|
|
whole_stream_command(StrRPad),
|
|
|
|
whole_stream_command(StrCamelCase),
|
|
|
|
whole_stream_command(StrPascalCase),
|
|
|
|
whole_stream_command(StrKebabCase),
|
|
|
|
whole_stream_command(StrSnakeCase),
|
|
|
|
whole_stream_command(StrScreamingSnakeCase),
|
|
|
|
whole_stream_command(BuildString),
|
|
|
|
whole_stream_command(Ansi),
|
2021-02-23 21:16:13 +01:00
|
|
|
whole_stream_command(AnsiStrip),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(Char),
|
|
|
|
// Column manipulation
|
Allow dropping columns. (#3107)
`drop` is used for removing the last row. Passing a number allows dropping N rows.
Here we introduce the same logic for dropping columns instead.
You can certainly remove columns by using `reject`, however, there could be cases
where we are interested in removing columns from tables that contain, say, a big
number of columns. Using `reject` becomes impractical, especially when you don't
care about the column names that could either be known or not known when exploring
tables.
```
> echo [[lib, extension]; [nu-core, rs] [rake, rb]]
─────────┬───────────
lib │ extension
─────────┼───────────
nu-core │ rs
rake │ rb
─────────┴───────────
```
```
> echo [[lib, extension]; [nu-core, rs] [rake, rb]] | drop column
─────────
lib
─────────
nu-core
rake
─────────
```
2021-02-25 21:37:21 +01:00
|
|
|
whole_stream_command(DropColumn),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(Move),
|
|
|
|
whole_stream_command(Reject),
|
|
|
|
whole_stream_command(Select),
|
|
|
|
whole_stream_command(Get),
|
|
|
|
whole_stream_command(Update),
|
|
|
|
whole_stream_command(Insert),
|
|
|
|
whole_stream_command(IntoInt),
|
|
|
|
whole_stream_command(SplitBy),
|
|
|
|
// Row manipulation
|
|
|
|
whole_stream_command(Reverse),
|
|
|
|
whole_stream_command(Append),
|
|
|
|
whole_stream_command(Prepend),
|
|
|
|
whole_stream_command(SortBy),
|
|
|
|
whole_stream_command(GroupBy),
|
|
|
|
whole_stream_command(GroupByDate),
|
|
|
|
whole_stream_command(First),
|
|
|
|
whole_stream_command(Last),
|
|
|
|
whole_stream_command(Every),
|
|
|
|
whole_stream_command(Nth),
|
|
|
|
whole_stream_command(Drop),
|
|
|
|
whole_stream_command(Format),
|
|
|
|
whole_stream_command(FileSize),
|
|
|
|
whole_stream_command(Where),
|
|
|
|
whole_stream_command(If),
|
|
|
|
whole_stream_command(Compact),
|
|
|
|
whole_stream_command(Default),
|
|
|
|
whole_stream_command(Skip),
|
|
|
|
whole_stream_command(SkipUntil),
|
|
|
|
whole_stream_command(SkipWhile),
|
|
|
|
whole_stream_command(Keep),
|
|
|
|
whole_stream_command(KeepUntil),
|
|
|
|
whole_stream_command(KeepWhile),
|
|
|
|
whole_stream_command(Range),
|
|
|
|
whole_stream_command(Rename),
|
|
|
|
whole_stream_command(Uniq),
|
|
|
|
whole_stream_command(Each),
|
|
|
|
whole_stream_command(EachGroup),
|
|
|
|
whole_stream_command(EachWindow),
|
|
|
|
whole_stream_command(Empty),
|
|
|
|
// Table manipulation
|
|
|
|
whole_stream_command(Flatten),
|
|
|
|
whole_stream_command(Move),
|
|
|
|
whole_stream_command(Merge),
|
|
|
|
whole_stream_command(Shuffle),
|
|
|
|
whole_stream_command(Wrap),
|
|
|
|
whole_stream_command(Pivot),
|
|
|
|
whole_stream_command(Headers),
|
|
|
|
whole_stream_command(Reduce),
|
2021-02-23 19:29:07 +01:00
|
|
|
whole_stream_command(Roll),
|
|
|
|
whole_stream_command(RollColumn),
|
|
|
|
whole_stream_command(RollUp),
|
90 degree table rotations (clockwise and counter-clockwise) (#3086)
Also for 180 degree is expected. Rotation is not exactly like pivoting (transposing)
for instance, given the following table:
```
> echo [[col1, col2, col3]; [cell1, cell2, cell3] [cell4, cell5, cell6]]
───┬───────┬───────┬───────
# │ col1 │ col2 │ col3
───┼───────┼───────┼───────
0 │ cell1 │ cell2 │ cell3
1 │ cell4 │ cell5 │ cell6
───┴───────┴───────┴───────
```
To rotate it counter clockwise by 90 degrees, we can resort to first transposing (`pivot`)
them adding a new column (preferably integers), sort by that column from highest to lowest,
then remove the column and we have a counter clockwise rotation.
```
> echo [[col1, col2, col3]; [cell1, cell2, cell3] [cell4, cell5, cell6]] | pivot | each --numbered { = $it.item | insert idx $it.index } | sort-by idx | reverse | reject idx
───┬─────────┬─────────┬─────────
# │ Column0 │ Column1 │ Column2
───┼─────────┼─────────┼─────────
0 │ col3 │ cell3 │ cell6
1 │ col2 │ cell2 │ cell5
2 │ col1 │ cell1 │ cell4
───┴─────────┴─────────┴─────────
```
Which we can get easily, in this case, by doing:
```
> echo [[col1, col2, cel3]; [cell1, cell2, cell3] [cell4, cell5, cell6]] | rotate counter-clockwise
───┬─────────┬─────────┬─────────
# │ Column0 │ Column1 │ Column2
───┼─────────┼─────────┼─────────
0 │ col3 │ cell3 │ cell6
1 │ col2 │ cell2 │ cell5
2 │ col1 │ cell1 │ cell4
───┴─────────┴─────────┴─────────
```
There are also many powerful use cases with rotation, it makes a breeze creating tables with many columns, say:
```
echo 0..12 | rotate counter-clockwise | reject Column0
───┬─────────┬─────────┬─────────┬─────────┬─────────┬─────────┬─────────┬─────────┬─────────┬──────────┬──────────┬──────────┬──────────
# │ Column1 │ Column2 │ Column3 │ Column4 │ Column5 │ Column6 │ Column7 │ Column8 │ Column9 │ Column10 │ Column11 │ Column12 │ Column13
───┼─────────┼─────────┼─────────┼─────────┼─────────┼─────────┼─────────┼─────────┼─────────┼──────────┼──────────┼──────────┼──────────
0 │ 0 │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 10 │ 11 │ 12
───┴─────────┴─────────┴─────────┴─────────┴─────────┴─────────┴─────────┴─────────┴─────────┴──────────┴──────────┴──────────┴──────────
```
2021-02-22 12:56:34 +01:00
|
|
|
whole_stream_command(Rotate),
|
|
|
|
whole_stream_command(RotateCounterClockwise),
|
2021-01-01 03:12:16 +01:00
|
|
|
// Data processing
|
|
|
|
whole_stream_command(Histogram),
|
|
|
|
whole_stream_command(Autoenv),
|
|
|
|
whole_stream_command(AutoenvTrust),
|
|
|
|
whole_stream_command(AutoenvUnTrust),
|
|
|
|
whole_stream_command(Math),
|
|
|
|
whole_stream_command(MathAbs),
|
|
|
|
whole_stream_command(MathAverage),
|
|
|
|
whole_stream_command(MathEval),
|
|
|
|
whole_stream_command(MathMedian),
|
|
|
|
whole_stream_command(MathMinimum),
|
|
|
|
whole_stream_command(MathMode),
|
|
|
|
whole_stream_command(MathMaximum),
|
|
|
|
whole_stream_command(MathStddev),
|
|
|
|
whole_stream_command(MathSummation),
|
|
|
|
whole_stream_command(MathVariance),
|
|
|
|
whole_stream_command(MathProduct),
|
|
|
|
whole_stream_command(MathRound),
|
|
|
|
whole_stream_command(MathFloor),
|
|
|
|
whole_stream_command(MathCeil),
|
|
|
|
// File format output
|
|
|
|
whole_stream_command(To),
|
|
|
|
whole_stream_command(ToCSV),
|
|
|
|
whole_stream_command(ToHTML),
|
|
|
|
whole_stream_command(ToJSON),
|
|
|
|
whole_stream_command(ToMarkdown),
|
|
|
|
whole_stream_command(ToTOML),
|
|
|
|
whole_stream_command(ToTSV),
|
|
|
|
whole_stream_command(ToURL),
|
|
|
|
whole_stream_command(ToYAML),
|
|
|
|
whole_stream_command(ToXML),
|
|
|
|
// File format input
|
|
|
|
whole_stream_command(From),
|
|
|
|
whole_stream_command(FromCSV),
|
|
|
|
whole_stream_command(FromEML),
|
|
|
|
whole_stream_command(FromTSV),
|
|
|
|
whole_stream_command(FromSSV),
|
|
|
|
whole_stream_command(FromINI),
|
|
|
|
whole_stream_command(FromJSON),
|
|
|
|
whole_stream_command(FromODS),
|
|
|
|
whole_stream_command(FromTOML),
|
|
|
|
whole_stream_command(FromURL),
|
|
|
|
whole_stream_command(FromXLSX),
|
|
|
|
whole_stream_command(FromXML),
|
|
|
|
whole_stream_command(FromYAML),
|
|
|
|
whole_stream_command(FromYML),
|
|
|
|
whole_stream_command(FromIcs),
|
|
|
|
whole_stream_command(FromVcf),
|
|
|
|
// "Private" commands (not intended to be accessed directly)
|
|
|
|
whole_stream_command(RunExternalCommand { interactive }),
|
|
|
|
// Random value generation
|
|
|
|
whole_stream_command(Random),
|
|
|
|
whole_stream_command(RandomBool),
|
|
|
|
whole_stream_command(RandomDice),
|
|
|
|
#[cfg(feature = "uuid_crate")]
|
|
|
|
whole_stream_command(RandomUUID),
|
|
|
|
whole_stream_command(RandomInteger),
|
|
|
|
whole_stream_command(RandomDecimal),
|
|
|
|
whole_stream_command(RandomChars),
|
|
|
|
// Path
|
|
|
|
whole_stream_command(PathBasename),
|
|
|
|
whole_stream_command(PathCommand),
|
|
|
|
whole_stream_command(PathDirname),
|
|
|
|
whole_stream_command(PathExists),
|
|
|
|
whole_stream_command(PathExpand),
|
|
|
|
whole_stream_command(PathExtension),
|
|
|
|
whole_stream_command(PathFilestem),
|
2021-03-04 08:04:56 +01:00
|
|
|
whole_stream_command(PathJoin),
|
2021-01-01 03:12:16 +01:00
|
|
|
whole_stream_command(PathType),
|
|
|
|
// Url
|
|
|
|
whole_stream_command(UrlCommand),
|
|
|
|
whole_stream_command(UrlScheme),
|
|
|
|
whole_stream_command(UrlPath),
|
|
|
|
whole_stream_command(UrlHost),
|
|
|
|
whole_stream_command(UrlQuery),
|
|
|
|
whole_stream_command(Seq),
|
|
|
|
whole_stream_command(SeqDates),
|
2021-02-10 15:58:22 +01:00
|
|
|
whole_stream_command(TermSize),
|
2021-01-01 03:12:16 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
#[cfg(feature = "clipboard-cli")]
|
|
|
|
{
|
|
|
|
context.add_commands(vec![whole_stream_command(crate::commands::clip::Clip)]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(context)
|
|
|
|
}
|