nushell/src/object/types.rs

181 lines
4.9 KiB
Rust
Raw Normal View History

2019-07-06 00:08:58 +02:00
use crate::object::base as value;
use crate::parser::hir;
use crate::prelude::*;
use derive_new::new;
2019-07-08 18:44:53 +02:00
use serde_derive::Deserialize;
2019-07-15 23:16:27 +02:00
use std::path::PathBuf;
2019-05-10 18:59:12 +02:00
2019-07-06 00:08:58 +02:00
pub trait Type: std::fmt::Debug + Send {
2019-07-08 18:44:53 +02:00
type Extractor: ExtractType;
2019-07-06 00:08:58 +02:00
fn name(&self) -> &'static str;
}
2019-07-08 18:44:53 +02:00
pub trait ExtractType: Sized {
fn extract(value: &Spanned<Value>) -> Result<Self, ShellError>;
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError>;
2019-07-15 23:16:27 +02:00
fn syntax_type() -> hir::SyntaxType {
hir::SyntaxType::Any
}
}
impl<T: ExtractType> ExtractType for Spanned<T> {
fn extract(value: &Spanned<Value>) -> Result<Spanned<T>, ShellError> {
Ok(T::extract(value)?.spanned(value.span))
}
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
T::check(value)
}
fn syntax_type() -> hir::SyntaxType {
T::syntax_type()
}
2019-07-06 00:08:58 +02:00
}
#[derive(Debug, Deserialize, Clone, Eq, PartialEq, Hash, Ord, PartialOrd, new)]
pub struct Any;
impl Type for Any {
2019-07-08 18:44:53 +02:00
type Extractor = Spanned<Value>;
2019-07-06 00:08:58 +02:00
fn name(&self) -> &'static str {
"Any"
}
2019-07-08 18:44:53 +02:00
}
impl ExtractType for Spanned<Value> {
fn extract(value: &Spanned<Value>) -> Result<Self, ShellError> {
Ok(value.clone())
}
2019-07-09 06:31:26 +02:00
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
2019-07-06 00:08:58 +02:00
Ok(value)
}
}
2019-07-15 23:16:27 +02:00
impl ExtractType for std::path::PathBuf {
fn syntax_type() -> hir::SyntaxType {
hir::SyntaxType::Path
}
fn extract(value: &'a Spanned<Value>) -> Result<std::path::PathBuf, ShellError> {
match &value {
Spanned {
item: Value::Primitive(Primitive::String(p)),
2019-07-16 09:08:35 +02:00
..
2019-07-15 23:16:27 +02:00
} => Ok(PathBuf::from(p)),
other => Err(ShellError::type_error("Path", other.spanned_type_name())),
}
}
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
match &value {
v @ Spanned {
item: Value::Primitive(Primitive::Path(_)),
..
} => Ok(v),
other => Err(ShellError::type_error("Path", other.spanned_type_name())),
}
}
}
2019-07-06 00:08:58 +02:00
#[derive(Debug, Deserialize, Clone, Eq, PartialEq, Hash, Ord, PartialOrd, new)]
pub struct Integer;
impl Type for Integer {
2019-07-08 18:44:53 +02:00
type Extractor = i64;
fn name(&self) -> &'static str {
"Integer"
}
}
impl ExtractType for i64 {
fn extract(value: &Spanned<Value>) -> Result<i64, ShellError> {
match value {
&Spanned {
item: Value::Primitive(Primitive::Int(int)),
..
} => Ok(int),
other => Err(ShellError::type_error("Integer", other.spanned_type_name())),
}
}
2019-07-09 06:31:26 +02:00
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
2019-07-08 18:44:53 +02:00
match value {
v @ Spanned {
item: Value::Primitive(Primitive::Int(_)),
..
} => Ok(v),
other => Err(ShellError::type_error("Integer", other.spanned_type_name())),
}
}
}
#[derive(Debug, Deserialize, Clone, Eq, PartialEq, Hash, Ord, PartialOrd, new)]
pub struct NuString;
impl Type for NuString {
type Extractor = String;
2019-07-06 00:08:58 +02:00
fn name(&self) -> &'static str {
"Integer"
}
}
2019-07-08 18:44:53 +02:00
impl ExtractType for String {
fn extract(value: &Spanned<Value>) -> Result<String, ShellError> {
match value {
Spanned {
item: Value::Primitive(Primitive::String(string)),
..
} => Ok(string.clone()),
other => Err(ShellError::type_error("String", other.spanned_type_name())),
}
}
2019-07-09 06:31:26 +02:00
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
2019-07-06 00:08:58 +02:00
match value {
2019-07-08 18:44:53 +02:00
v @ Spanned {
2019-07-09 06:31:26 +02:00
item: Value::Primitive(Primitive::String(_)),
2019-07-08 18:44:53 +02:00
..
} => Ok(v),
2019-07-09 06:31:26 +02:00
other => Err(ShellError::type_error("String", other.spanned_type_name())),
2019-07-06 00:08:58 +02:00
}
}
}
#[derive(Debug, Deserialize, Clone, Eq, PartialEq, Hash, Ord, PartialOrd, new)]
pub struct Block;
impl Type for Block {
2019-07-08 18:44:53 +02:00
type Extractor = value::Block;
2019-07-06 00:08:58 +02:00
fn name(&self) -> &'static str {
"Block"
}
2019-07-09 06:31:26 +02:00
}
2019-07-06 00:08:58 +02:00
2019-07-09 06:31:26 +02:00
impl ExtractType for value::Block {
fn check(value: &'value Spanned<Value>) -> Result<&'value Spanned<Value>, ShellError> {
2019-07-06 00:08:58 +02:00
match value {
v @ Spanned {
item: Value::Block(_),
..
} => Ok(v),
other => Err(ShellError::type_error("Block", other.spanned_type_name())),
}
}
2019-07-08 18:44:53 +02:00
fn extract(value: &Spanned<Value>) -> Result<value::Block, ShellError> {
match value {
Spanned {
item: Value::Block(block),
..
} => Ok(block.clone()),
other => Err(ShellError::type_error("Block", other.spanned_type_name())),
}
}
2019-05-15 18:12:38 +02:00
}