Commit Graph

50 Commits

Author SHA1 Message Date
ce947d70b0 Rename SpanSource to AnchorLocation 2019-09-29 18:18:59 +13:00
6aad0b8443 Remove async_stream_block from the prelude
... to indicate deprecation of its use
2019-09-26 02:39:59 +02:00
9891e5ab81 Use async-stream crate to replace most async_stream_block invocations 2019-09-26 02:39:20 +02:00
ab915f1c44 Revert "Revert "Migrate most uses of the Span concept to Tag""
This reverts commit bee7c5639c.
2019-09-14 11:30:24 -05:00
bee7c5639c Revert "Migrate most uses of the Span concept to Tag" 2019-09-11 19:53:05 +12:00
58b7800172 Migrate most uses of the Span concept to Tag
Also migrate mv, rm and commands like that to taking a
SyntaxType::Pattern instead of a SyntaxType::Path for their first
argument.
2019-09-10 20:41:03 -07:00
dcd97b6346 Move internal terminology to tables/rows 2019-09-06 04:23:42 +12:00
8a29c9e6ab Migrated numerics to BigInt/BigDecimal
This commit migrates Value's numeric types to BigInt and BigDecimal. The
basic idea is that overflow errors aren't great in a shell environment,
and not really necessary.

The main immediate consequence is that new errors can occur when
serializing Nu values to other formats. You can see this in changes to
the various serialization formats (JSON, TOML, etc.). There's a new
`CoerceInto` trait that uses the `ToPrimitive` trait from `num_traits`
to attempt to coerce a `BigNum` or `BigDecimal` into a target type, and
produces a `RangeError` (kind of `ShellError`) if the coercion fails.

Another possible future consequence is that certain performance-critical
numeric operations might be too slow. If that happens, we can introduce
specialized numeric types to help improve the performance of those
situations, based on the real-world experience.
2019-09-01 21:00:30 -07:00
ca0c6eaf58 This commit introduces a basic help feature. We can go to it
with the `help` command to explore and list all commands available.

Enter will also try to see if the location to be entered is an existing
Nu command, if it is it will let you inspect the command under `help`.

This provides baseline needed so we can iterate on it.
2019-08-31 19:06:11 -05:00
138b5af82b Basic support for decimal numbers
This commit is more substantial than it looks: there was basically no
real support for decimals before, and that impacted values all the way
through.

I also made Size contain a decimal instead of an integer (`1.6kb` is a
reasonable thing to type), which impacted a bunch of code.

The biggest impact of this commit is that it creates many more possible
ways for valid nu types to fail to serialize as toml, json, etc. which
typically can't support the full range of Decimal (or Bigint, which I
also think we should support). This commit makes to-toml fallible, and a
similar effort is necessary for the rest of the serializations.

We also need to figure out how to clearly communicate to users what has
happened, but failing to serialize to toml seems clearly superior to me
than weird errors in basic math operations.
2019-08-30 21:05:32 -07:00
fa2c6ec227 Merge master 2019-08-31 10:13:09 +12:00
c87fa14fc8 Replace crate visibility identifier with pub(crate)
Result of running:

find src -name *.rs -exec sed -i 's/crate /pub(crate) /g' {} \;
2019-08-29 13:09:09 +02:00
f730296e45 WIP supporting from/to automatically 2019-08-29 15:53:45 +12:00
21ad06b1e1 Remove unwraps and clean up playground
The original intent of this patch was to remove more unwraps to reduce
panics. I then lost a ton of time to the fact that the playground isn't
in a temp directory (because of permissions issues on Windows).

This commit improves the test facilities to:

- use a tempdir for the playground
- change the playground API so you instantiate it with a block that
  encloses the lifetime of the tempdir
- the block is called with a `dirs` argument that has `dirs.test()` and
  other important directories that we were computing by hand all the time
- the block is also called with a `playground` argument that you can use
  to construct files (it's the same `Playground` as before)
- change the nu! and nu_error! macros to produce output instead of
  taking a variable binding
- change the nu! and nu_error! macros to do the cwd() transformation
  internally
- change the nu! and nu_error! macros to take varargs at the end that
  get interpolated into the running command

I didn't manage to finish porting all of the tests, so a bunch of tests
are currently commented out. That will need to change before we land
this patch.
2019-08-28 10:01:16 -07:00
34292b282a Add support for ~ expansion
This ended up being a bit of a yak shave. The basic idea in this commit is to
expand `~` in paths, but only in paths.

The way this is accomplished is by doing the expansion inside of the code that
parses literal syntax for `SyntaxType::Path`.

As a quick refresher: every command is entitled to expand its arguments in a
custom way. While this could in theory be used for general-purpose macros,
today the expansion facility is limited to syntactic hints.

For example, the syntax `where cpu > 0` expands under the hood to
`where { $it.cpu > 0 }`. This happens because the first argument to `where`
is defined as a `SyntaxType::Block`, and the parser coerces binary expressions
whose left-hand-side looks like a member into a block when the command is
expecting one.

This is mildly more magical than what most programming languages would do,
but we believe that it makes sense to allow commands to fine-tune the syntax
because of the domain nushell is in (command-line shells).

The syntactic expansions supported by this facility are relatively limited.
For example, we don't allow `$it` to become a bare word, simply because the
command asks for a string in the relevant position. That would quickly
become more confusing than it's worth.

This PR adds a new `SyntaxType` rule: `SyntaxType::Path`. When a command
declares a parameter as a `SyntaxType::Path`, string literals and bare
words passed as an argument to that parameter are processed using the
path expansion rules. Right now, that only means that `~` is expanded into
the home directory, but additional rules are possible in the future.

By restricting this expansion to a syntactic expansion when passed as an
argument to a command expecting a path, we avoid making `~` a generally
reserved character. This will also allow us to give good tab completion
for paths with `~` characters in them when a command is expecting a path.

In order to accomplish the above, this commit changes the parsing functions
to take a `Context` instead of just a `CommandRegistry`. From the perspective
of macro expansion, you can think of the `CommandRegistry` as a dictionary
of in-scope macros, and the `Context` as the compile-time state used in
expansion. This could gain additional functionality over time as we find
more uses for the expansion system.
2019-08-26 21:03:24 -07:00
b5b8e4c8b0 Fix warnings 2019-08-19 19:59:41 +10:00
5bfb96447a Reduce unwraps
Remove a number of unwraps. In some cases, a `?` just worked as is. I also made it possible to use `?` to go from Result<OutputStream, ShellError> to OutputStream. Finally, started updating PerItemCommand to be able to use the signature deserialization logic, which substantially reduces unwraps.

This is still in-progress work, but tests pass and it should be clear to merge and keep iterating on master.
2019-08-16 20:53:39 -07:00
dd18122a24 WIP 2019-08-15 17:02:02 +12:00
aadacc2d36 Merge master 2019-08-09 16:51:21 +12:00
c231dd32cd Multi shells (#254)
Add multi-shells
2019-08-08 05:49:11 +12:00
14a52bc282 WIP - more streamlining 2019-08-06 09:26:33 -07:00
586aa6bae1 WIP - types check 2019-08-02 19:17:28 -07:00
fc173c46d8 Restructuring 2019-08-02 12:15:07 -07:00
db3ff52973 Add tags command and fix source_map transfer 2019-08-01 15:25:59 +12:00
462f783fac initial change to Tagged<Value> 2019-08-01 13:58:42 +12:00
73deeb69db Clean up lint errors 2019-07-23 21:10:48 -07:00
5a8e041a48 Tests pass! 2019-07-23 15:22:11 -07:00
3ebb6ba991 Fix plugin's commandconfig 2019-07-16 19:08:35 +12:00
6bf55c0f1e Remove more dead code and clean up JSON 2019-07-12 19:20:26 -07:00
70f9e355fd WIP 2019-07-12 19:20:26 -07:00
7b68739b52 WIP 2019-07-12 19:20:26 -07:00
71adfb4cdc WIP 2019-07-12 19:20:26 -07:00
34033afce4 WIP improve error infrastructure
Also simplify commands and reduce papercuts
2019-07-12 19:20:26 -07:00
47f23cacc7 Add second plugin 2019-06-28 04:47:24 +12:00
4036bf1ffd &str -> Text 2019-06-22 16:46:16 -04:00
e981129f1f Things work 2019-06-21 21:36:57 -04:00
e94d1d2758 Add pretty errors to commands 2019-06-08 10:35:07 +12:00
d5255f6dbf Evaluator MVP (#39)
Evaluator, MVP
2019-05-27 23:45:18 -07:00
b74daa2e60 A real parser (lalrpop) 2019-05-26 00:17:35 -07:00
bd055f2af1 Linting and other cleanup 2019-05-24 12:35:22 -07:00
bf332ea50c Improved streams 2019-05-23 21:34:43 -07:00
625a356361 Data flows across commands via streams now 2019-05-23 00:23:06 -07:00
31dd579d6f Small restructuring 2019-05-22 21:30:43 -07:00
261d7a793f Restructure and make commands uniform 2019-05-22 00:12:03 -07:00
6b82e3a8a8 Simplify commands 2019-05-15 17:21:46 -07:00
af1963d148 Remove dead code 2019-05-15 15:58:44 -07:00
a5a34b88a8 More cleanup 2019-05-15 15:23:36 -07:00
8f327477e7 Internals cleanup and | select ...fields 2019-05-15 13:14:51 -05:00
3040638881 Basic pipelining is working! 2019-05-15 11:12:38 -05:00
ceb0487eba A bunch of rework
I'm gonna use a VecDeque now instead of trying to get async streams
working to make progress, but the intent is that we should be able to
use async streams in and out to interleave the work better.
2019-05-13 13:30:51 -04:00