mirror of
https://github.com/nushell/nushell.git
synced 2025-04-14 08:18:17 +02:00
This commit extracts five new crates: - nu-source, which contains the core source-code handling logic in Nu, including Text, Span, and also the pretty.rs-based debug logic - nu-parser, which is the parser and expander logic - nu-protocol, which is the bulk of the types and basic conveniences used by plugins - nu-errors, which contains ShellError, ParseError and error handling conveniences - nu-textview, which is the textview plugin extracted into a crate One of the major consequences of this refactor is that it's no longer possible to `impl X for Spanned<Y>` outside of the `nu-source` crate, so a lot of types became more concrete (Value became a concrete type instead of Spanned<Value>, for example). This also turned a number of inherent methods in the main nu crate into plain functions (impl Value {} became a bunch of functions in the `value` namespace in `crate::data::value`).
68 lines
1.7 KiB
Rust
68 lines
1.7 KiB
Rust
use serde::{Deserialize, Serialize};
|
|
use nu_source::{b, PrettyDebug, DebugDocBuilder};
|
|
|
|
use std::str::FromStr;
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Deserialize, Serialize)]
|
|
pub enum Operator {
|
|
Equal,
|
|
NotEqual,
|
|
LessThan,
|
|
GreaterThan,
|
|
LessThanOrEqual,
|
|
GreaterThanOrEqual,
|
|
Dot,
|
|
Contains,
|
|
NotContains,
|
|
}
|
|
|
|
impl PrettyDebug for Operator {
|
|
fn pretty(&self) -> DebugDocBuilder {
|
|
b::operator(self.as_str())
|
|
}
|
|
}
|
|
|
|
impl Operator {
|
|
pub fn print(&self) -> String {
|
|
self.as_str().to_string()
|
|
}
|
|
|
|
pub fn as_str(&self) -> &str {
|
|
match *self {
|
|
Operator::Equal => "==",
|
|
Operator::NotEqual => "!=",
|
|
Operator::LessThan => "<",
|
|
Operator::GreaterThan => ">",
|
|
Operator::LessThanOrEqual => "<=",
|
|
Operator::GreaterThanOrEqual => ">=",
|
|
Operator::Dot => ".",
|
|
Operator::Contains => "=~",
|
|
Operator::NotContains => "!~",
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<&str> for Operator {
|
|
fn from(input: &str) -> Operator {
|
|
Operator::from_str(input).unwrap()
|
|
}
|
|
}
|
|
|
|
impl FromStr for Operator {
|
|
type Err = ();
|
|
fn from_str(input: &str) -> Result<Self, <Self as std::str::FromStr>::Err> {
|
|
match input {
|
|
"==" => Ok(Operator::Equal),
|
|
"!=" => Ok(Operator::NotEqual),
|
|
"<" => Ok(Operator::LessThan),
|
|
">" => Ok(Operator::GreaterThan),
|
|
"<=" => Ok(Operator::LessThanOrEqual),
|
|
">=" => Ok(Operator::GreaterThanOrEqual),
|
|
"." => Ok(Operator::Dot),
|
|
"=~" => Ok(Operator::Contains),
|
|
"!~" => Ok(Operator::NotContains),
|
|
_ => Err(()),
|
|
}
|
|
}
|
|
}
|