use std::cmp::Ordering; use std::str::FromStr; use super::*; use crate::color::{Color, RgbaColor}; /// `type`: The name of a value's type. pub fn type_(_: &mut EvalContext, args: &mut Args) -> TypResult { Ok(args.expect::("value")?.type_name().into()) } /// `repr`: The string representation of a value. pub fn repr(_: &mut EvalContext, args: &mut Args) -> TypResult { Ok(args.expect::("value")?.repr().into()) } /// `join`: Join a sequence of values, optionally interspersing it with another /// value. pub fn join(_: &mut EvalContext, args: &mut Args) -> TypResult { let span = args.span; let sep = args.named::("sep")?.unwrap_or(Value::None); let mut result = Value::None; let mut iter = args.all::(); if let Some(first) = iter.next() { result = first; } for value in iter { result = result.join(sep.clone()).at(span)?; result = result.join(value).at(span)?; } Ok(result) } /// `int`: Try to convert a value to a integer. pub fn int(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect("value")?; Ok(Value::Int(match v { Value::Bool(v) => v as i64, Value::Int(v) => v, Value::Float(v) => v as i64, Value::Str(v) => match v.parse() { Ok(v) => v, Err(_) => bail!(span, "invalid integer"), }, v => bail!(span, "cannot convert {} to integer", v.type_name()), })) } /// `float`: Try to convert a value to a float. pub fn float(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect("value")?; Ok(Value::Float(match v { Value::Int(v) => v as f64, Value::Float(v) => v, Value::Str(v) => match v.parse() { Ok(v) => v, Err(_) => bail!(span, "invalid float"), }, v => bail!(span, "cannot convert {} to float", v.type_name()), })) } /// `str`: Try to convert a value to a string. pub fn str(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect("value")?; Ok(Value::Str(match v { Value::Int(v) => format_str!("{}", v), Value::Float(v) => format_str!("{}", v), Value::Str(v) => v, v => bail!(span, "cannot convert {} to string", v.type_name()), })) } /// `abs`: The absolute value of a numeric value. pub fn abs(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect("numeric value")?; Ok(match v { Value::Int(v) => Value::Int(v.abs()), Value::Float(v) => Value::Float(v.abs()), Value::Length(v) => Value::Length(v.abs()), Value::Angle(v) => Value::Angle(v.abs()), Value::Relative(v) => Value::Relative(v.abs()), Value::Fractional(v) => Value::Fractional(v.abs()), Value::Linear(_) => bail!(span, "cannot take absolute value of a linear"), _ => bail!(span, "expected numeric value"), }) } /// `min`: The minimum of a sequence of values. pub fn min(_: &mut EvalContext, args: &mut Args) -> TypResult { minmax(args, Ordering::Less) } /// `max`: The maximum of a sequence of values. pub fn max(_: &mut EvalContext, args: &mut Args) -> TypResult { minmax(args, Ordering::Greater) } /// Find the minimum or maximum of a sequence of values. fn minmax(args: &mut Args, goal: Ordering) -> TypResult { let mut extremum = args.expect::("value")?; for Spanned { v, span } in args.all::>() { match v.partial_cmp(&extremum) { Some(ordering) => { if ordering == goal { extremum = v; } } None => bail!( span, "cannot compare {} with {}", extremum.type_name(), v.type_name(), ), } } Ok(extremum) } /// `rgb`: Create an RGB(A) color. pub fn rgb(_: &mut EvalContext, args: &mut Args) -> TypResult { Ok(Value::Color(Color::Rgba( if let Some(string) = args.eat::>() { match RgbaColor::from_str(&string.v) { Ok(color) => color, Err(_) => bail!(string.span, "invalid color"), } } else { let r = args.expect("red component")?; let g = args.expect("green component")?; let b = args.expect("blue component")?; let a = args.eat().unwrap_or(1.0); let f = |v: f64| (v.clamp(0.0, 1.0) * 255.0).round() as u8; RgbaColor::new(f(r), f(g), f(b), f(a)) }, ))) } /// `lower`: Convert a string to lowercase. pub fn lower(_: &mut EvalContext, args: &mut Args) -> TypResult { Ok(args.expect::("string")?.to_lowercase().into()) } /// `upper`: Convert a string to uppercase. pub fn upper(_: &mut EvalContext, args: &mut Args) -> TypResult { Ok(args.expect::("string")?.to_uppercase().into()) } /// `len`: The length of a string, an array or a dictionary. pub fn len(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect("collection")?; Ok(Value::Int(match v { Value::Str(v) => v.len(), Value::Array(v) => v.len(), Value::Dict(v) => v.len(), _ => bail!(span, "expected string, array or dictionary"), })) } /// `sorted`: The sorted version of an array. pub fn sorted(_: &mut EvalContext, args: &mut Args) -> TypResult { let Spanned { v, span } = args.expect::>("array")?; Ok(Value::Array(v.sorted().at(span)?)) }