expressive/src/function/builtin.rs

116 lines
4.2 KiB
Rust
Raw Normal View History

#[cfg(feature = "regex_support")]
use regex::Regex;
2019-08-29 07:02:05 +00:00
use crate::{
value::{FloatType, IntType},
EvalexprError, Function, Value, ValueType,
2019-08-29 07:02:05 +00:00
};
pub fn builtin_function(identifier: &str) -> Option<Function> {
match identifier {
2019-05-04 11:54:19 +00:00
"min" => Some(Function::new(Box::new(|argument| {
let arguments = argument.as_tuple()?;
2019-05-04 11:54:19 +00:00
let mut min_int = IntType::max_value();
let mut min_float = 1.0f64 / 0.0f64;
debug_assert!(min_float.is_infinite());
2019-05-04 11:54:19 +00:00
for argument in arguments {
if let Value::Float(float) = argument {
min_float = min_float.min(float);
2019-05-04 11:54:19 +00:00
} else if let Value::Int(int) = argument {
min_int = min_int.min(int);
} else {
2019-05-04 11:54:19 +00:00
return Err(EvalexprError::expected_number(argument.clone()));
}
2019-05-04 11:54:19 +00:00
}
2019-05-04 11:54:19 +00:00
if (min_int as FloatType) < min_float {
Ok(Value::Int(min_int))
} else {
Ok(Value::Float(min_float))
}
}))),
"max" => Some(Function::new(Box::new(|argument| {
let arguments = argument.as_tuple()?;
2019-05-04 11:54:19 +00:00
let mut max_int = IntType::min_value();
let mut max_float = -1.0f64 / 0.0f64;
debug_assert!(max_float.is_infinite());
2019-05-04 11:54:19 +00:00
for argument in arguments {
if let Value::Float(float) = argument {
max_float = max_float.max(float);
2019-05-04 11:54:19 +00:00
} else if let Value::Int(int) = argument {
max_int = max_int.max(int);
} else {
2019-05-04 11:54:19 +00:00
return Err(EvalexprError::expected_number(argument.clone()));
}
2019-05-04 11:54:19 +00:00
}
2019-05-04 11:54:19 +00:00
if (max_int as FloatType) > max_float {
Ok(Value::Int(max_int))
} else {
Ok(Value::Float(max_float))
}
}))),
"len" => Some(Function::new(Box::new(|argument| {
if let Ok(subject) = argument.as_string() {
Ok(Value::from(subject.len() as i64))
} else if let Ok(subject) = argument.as_tuple() {
Ok(Value::from(subject.len() as i64))
} else {
Err(EvalexprError::type_error(
argument.clone(),
vec![ValueType::String, ValueType::Tuple],
))
}
2019-05-04 11:54:19 +00:00
}))),
// string functions
#[cfg(feature = "regex_support")]
2019-05-04 11:54:19 +00:00
"str::regex_matches" => Some(Function::new(Box::new(|argument| {
let arguments = argument.as_tuple()?;
let subject = arguments[0].as_string()?;
let re_str = arguments[1].as_string()?;
match Regex::new(&re_str) {
Ok(re) => Ok(Value::Boolean(re.is_match(&subject))),
2019-05-04 11:54:19 +00:00
Err(err) => Err(EvalexprError::invalid_regex(
re_str.to_string(),
format!("{}", err),
)),
}
}))),
#[cfg(feature = "regex_support")]
2019-05-04 11:54:19 +00:00
"str::regex_replace" => Some(Function::new(Box::new(|argument| {
let arguments = argument.as_tuple()?;
let subject = arguments[0].as_string()?;
let re_str = arguments[1].as_string()?;
let repl = arguments[2].as_string()?;
match Regex::new(&re_str) {
2019-08-29 07:02:05 +00:00
Ok(re) => Ok(Value::String(
re.replace_all(&subject, repl.as_str()).to_string(),
)),
2019-05-04 11:54:19 +00:00
Err(err) => Err(EvalexprError::invalid_regex(
re_str.to_string(),
format!("{}", err),
)),
}
}))),
"str::to_lowercase" => Some(Function::new(Box::new(|argument| {
let subject = argument.as_string()?;
2019-05-04 11:54:19 +00:00
Ok(Value::from(subject.to_lowercase()))
}))),
"str::to_uppercase" => Some(Function::new(Box::new(|argument| {
let subject = argument.as_string()?;
2019-05-04 11:54:19 +00:00
Ok(Value::from(subject.to_uppercase()))
}))),
"str::trim" => Some(Function::new(Box::new(|argument| {
let subject = argument.as_string()?;
2019-05-04 11:54:19 +00:00
Ok(Value::from(subject.trim()))
}))),
_ => None,
}
}