Documentation
use std::rc::Rc;

use crate::{
    functions_definitions::{Arguments, Example, FunctionDefinitions},
    json_value::JsonValue,
    processor::Context,
    selection::Get,
};

pub fn get() -> FunctionDefinitions {
    FunctionDefinitions::new("<=", 2, 2, |args| {
        struct Impl(Vec<Rc<dyn Get>>);
        impl Get for Impl {
            fn get(&self, value: &Context) -> Option<JsonValue> {
                if let (Some(val1), Some(val2)) = (self.0.apply(value, 0), self.0.apply(value, 1)) {
                    let eq = val1 <= val2;
                    Some(eq.into())
                } else {
                    None
                }
            }
        }
        Rc::new(Impl(args))
    })
    .add_description_line(
        "Compare two value and return true if the first is smaller or eqauls than the second.",
    )
    .add_example(
        Example::new()
            .add_argument("1")
            .add_argument("3")
            .expected_output("true"),
    )
    .add_example(
        Example::new()
            .add_argument("1")
            .add_argument("1")
            .expected_output("true"),
    )
    .add_example(
        Example::new()
            .add_argument("31")
            .add_argument("1")
            .expected_output("false"),
    )
}