#![cfg(feature = "partial-eval")]
use crate::extensions::partial_evaluation;
use crate::validator::extension_schema::{ExtensionFunctionType, ExtensionSchema};
use crate::validator::types::{self, Type};
#[expect(clippy::panic, reason = "see `Note on safety` above")]
fn get_argument_types(fname: &str) -> Vec<types::Type> {
match fname {
"error" => vec![Type::primitive_string()],
"unknown" => vec![Type::primitive_string()],
_ => panic!("unexpected decimal extension function name: {fname}"),
}
}
#[expect(clippy::panic, reason = "see `Note on safety` above")]
fn get_return_type(fname: &str) -> Type {
match fname {
"error" => Type::Never,
"unknown" => Type::Never,
_ => panic!("unexpected decimal extension function name: {fname}"),
}
}
pub fn extension_schema() -> ExtensionSchema {
let pe_ext = partial_evaluation::extension();
let fun_tys = pe_ext.funcs().map(|f| {
let fname = f.name();
let fstring = fname.to_string();
let return_type = get_return_type(&fstring);
debug_assert!(f
.return_type()
.map(|ty| return_type.is_consistent_with(ty))
.unwrap_or_else(|| return_type == Type::Never));
ExtensionFunctionType::new(
fname.clone(),
get_argument_types(&fstring),
return_type,
None,
f.is_variadic(),
)
});
ExtensionSchema::new(pe_ext.name().clone(), fun_tys, std::iter::empty())
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn extension_schema_correctness() {
let _ = extension_schema();
}
}