#![no_std]
#![forbid(unsafe_code)]
#![warn(missing_docs)]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "math")]
mod math;
#[cfg(feature = "regex")]
mod regex;
#[cfg(feature = "time")]
mod time;
use alloc::string::{String, ToString};
use alloc::{borrow::ToOwned, boxed::Box, vec::Vec};
use jaq_core::results::{run_if_ok, then};
use jaq_core::{load, Bind, Cv, Error, Exn, FilterT, Native, RunPtr, UpdatePtr, ValR, ValX, ValXs};
pub fn defs() -> impl Iterator<Item = load::parse::Def<&'static str>> {
load::parse(include_str!("defs.jq"), |p| p.defs())
.unwrap()
.into_iter()
}
pub type Filter<F> = (&'static str, Box<[Bind]>, F);
#[cfg(all(
feature = "std",
feature = "format",
feature = "log",
feature = "math",
feature = "regex",
feature = "time",
))]
pub fn funs<V: ValT>() -> impl Iterator<Item = Filter<Native<V>>> {
base_funs().chain(extra_funs())
}
pub fn base_funs<V: ValT>() -> impl Iterator<Item = Filter<Native<V>>> {
let base_run = base_run().into_vec().into_iter().map(run);
base_run.chain([upd(error())])
}
#[cfg(all(
feature = "std",
feature = "format",
feature = "log",
feature = "math",
feature = "regex",
feature = "time",
))]
pub fn extra_funs<V: ValT>() -> impl Iterator<Item = Filter<Native<V>>> {
[std(), format(), math(), regex(), time()]
.into_iter()
.flat_map(|fs| fs.into_vec().into_iter().map(run))
.chain([upd(debug())])
}
pub trait ValT: jaq_core::ValT + Ord + From<f64> {
fn into_seq<S: FromIterator<Self>>(self) -> Result<S, Self>;
fn as_isize(&self) -> Option<isize>;
fn as_f64(&self) -> Result<f64, Error<Self>>;
}
trait ValTx: ValT + Sized {
fn into_vec(self) -> Result<Vec<Self>, Error<Self>> {
self.into_seq().map_err(|v| Error::typ(v, "array"))
}
fn try_as_str(&self) -> Result<&str, Error<Self>> {
self.as_str()
.ok_or_else(|| Error::typ(self.clone(), "string"))
}
fn try_as_isize(&self) -> Result<isize, Error<Self>> {
self.as_isize()
.ok_or_else(|| Error::typ(self.clone(), "integer"))
}
fn try_as_i32(&self) -> Result<i32, Error<Self>> {
self.try_as_isize()?.try_into().map_err(Error::str)
}
fn mutate_arr(self, f: impl FnOnce(&mut Vec<Self>)) -> ValR<Self> {
let mut a = self.into_vec()?;
f(&mut a);
Ok(Self::from_iter(a))
}
fn try_mutate_arr<'a, F>(self, f: F) -> ValX<'a, Self>
where
F: FnOnce(&mut Vec<Self>) -> Result<(), Exn<'a, Self>>,
{
let mut a = self.into_vec()?;
f(&mut a)?;
Ok(Self::from_iter(a))
}
fn mutate_str(self, f: impl FnOnce(&mut str)) -> ValR<Self> {
let mut s = self.try_as_str()?.to_owned();
f(&mut s);
Ok(Self::from(s))
}
fn round(self, f: impl FnOnce(f64) -> f64) -> ValR<Self> {
if self.as_isize().is_some() {
Ok(self)
} else {
Ok(Self::from(f(self.as_f64()?)))
}
}
}
impl<T: ValT> ValTx for T {}
pub fn run<V>((name, arity, run): Filter<RunPtr<V>>) -> Filter<Native<V>> {
(name, arity, Native::new(run))
}
fn upd<V>((name, arity, (run, update)): Filter<(RunPtr<V>, UpdatePtr<V>)>) -> Filter<Native<V>> {
(name, arity, Native::new(run).with_update(update))
}
fn sort_by<'a, V: ValT>(xs: &mut [V], f: impl Fn(V) -> ValXs<'a, V>) -> Result<(), Exn<'a, V>> {
let mut err = None;
xs.sort_by_cached_key(|x| run_if_ok(x.clone(), &mut err, &f));
err.map_or(Ok(()), Err)
}
fn group_by<'a, V: ValT>(xs: Vec<V>, f: impl Fn(V) -> ValXs<'a, V>) -> ValX<'a, V> {
let mut yx: Vec<(Vec<V>, V)> = xs
.into_iter()
.map(|x| Ok((f(x.clone()).collect::<Result<_, _>>()?, x)))
.collect::<Result<_, Exn<_>>>()?;
yx.sort_by(|(y1, _), (y2, _)| y1.cmp(y2));
let mut grouped = Vec::new();
let mut yx = yx.into_iter();
if let Some((mut group_y, first_x)) = yx.next() {
let mut group = Vec::from([first_x]);
for (y, x) in yx {
if group_y != y {
grouped.push(V::from_iter(core::mem::take(&mut group)));
group_y = y;
}
group.push(x);
}
if !group.is_empty() {
grouped.push(V::from_iter(group));
}
}
Ok(V::from_iter(grouped))
}
fn cmp_by<'a, V: Clone, F, R>(xs: Vec<V>, f: F, replace: R) -> Result<Option<V>, Exn<'a, V>>
where
F: Fn(V) -> ValXs<'a, V>,
R: Fn(&[V], &[V]) -> bool,
{
let iter = xs.into_iter();
let mut iter = iter.map(|x| (x.clone(), f(x).collect::<Result<Vec<_>, _>>()));
let (mut mx, mut my) = if let Some((x, y)) = iter.next() {
(x, y?)
} else {
return Ok(None);
};
for (x, y) in iter {
let y = y?;
if replace(&my, &y) {
(mx, my) = (x, y);
}
}
Ok(Some(mx))
}
fn explode<V: ValT>(s: &str) -> impl Iterator<Item = ValR<V>> + '_ {
let conv = |c: char| Ok(isize::try_from(c as u32).map_err(Error::str)?.into());
s.chars().map(conv)
}
fn implode<V: ValT>(xs: &[V]) -> Result<String, Error<V>> {
xs.iter().map(as_codepoint).collect()
}
fn as_codepoint<V: ValT>(v: &V) -> Result<char, Error<V>> {
let i = v.try_as_isize()?;
let u = u32::try_from(i).map_err(Error::str)?;
char::from_u32(u).ok_or_else(|| Error::str(format_args!("cannot use {u} as character")))
}
fn range<V: ValT>(mut from: ValX<V>, to: V, by: V) -> impl Iterator<Item = ValX<V>> {
use core::cmp::Ordering::{Equal, Greater, Less};
let cmp = by.partial_cmp(&V::from(0)).unwrap_or(Equal);
core::iter::from_fn(move || match from.clone() {
Ok(x) => match cmp {
Greater => x < to,
Less => x > to,
Equal => x != to,
}
.then(|| core::mem::replace(&mut from, (x + by.clone()).map_err(Exn::from))),
e @ Err(_) => {
from = Ok(to.clone());
Some(e)
}
})
}
pub fn once_with<'a, T>(f: impl FnOnce() -> T + 'a) -> Box<dyn Iterator<Item = T> + 'a> {
Box::new(core::iter::once_with(f))
}
fn once_or_empty<'a, T>(f: impl FnOnce() -> Option<T> + 'a) -> Box<dyn Iterator<Item = T> + 'a> {
Box::new(core::iter::once_with(f).flatten())
}
#[macro_export]
macro_rules! ow {
( $f:expr ) => {
once_with(move || $f.map_err(|e: jaq_core::Error<_>| Exn::from(e)))
};
}
pub fn unary<'a, V: Clone>(mut cv: Cv<'a, V>, f: impl Fn(V, V) -> ValR<V> + 'a) -> ValXs<'a, V> {
ow!(f(cv.1, cv.0.pop_var()))
}
pub fn v(n: usize) -> Box<[Bind]> {
core::iter::repeat(Bind::Var(())).take(n).collect()
}
#[allow(clippy::unit_arg)]
fn base_run<V: ValT, F: FilterT<V = V>>() -> Box<[Filter<RunPtr<V, F>>]> {
let f = || [Bind::Fun(())].into();
let vf = [Bind::Var(()), Bind::Fun(())].into();
Box::new([
("inputs", v(0), |_, cv| {
Box::new(
cv.0.inputs()
.map(|r| r.map_err(|e| Exn::from(Error::str(e)))),
)
}),
("floor", v(0), |_, cv| ow!(cv.1.round(f64::floor))),
("round", v(0), |_, cv| ow!(cv.1.round(f64::round))),
("ceil", v(0), |_, cv| ow!(cv.1.round(f64::ceil))),
("utf8bytelength", v(0), |_, cv| {
ow!(cv.1.try_as_str().map(|s| (s.len() as isize).into()))
}),
("explode", v(0), |_, cv| {
ow!(cv.1.try_as_str().and_then(|s| explode(s).collect()))
}),
("implode", v(0), |_, cv| {
ow!(cv.1.into_vec().and_then(|s| implode(&s)).map(V::from))
}),
("ascii_downcase", v(0), |_, cv| {
ow!(cv.1.mutate_str(str::make_ascii_lowercase))
}),
("ascii_upcase", v(0), |_, cv| {
ow!(cv.1.mutate_str(str::make_ascii_uppercase))
}),
("reverse", v(0), |_, cv| {
ow!(cv.1.mutate_arr(|a| a.reverse()))
}),
("sort", v(0), |_, cv| ow!(cv.1.mutate_arr(|a| a.sort()))),
("sort_by", f(), |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
let f = move |v| f.run(lut, (fc.clone(), v));
once_with(|| cv.1.try_mutate_arr(|a| sort_by(a, f)))
}),
("group_by", f(), |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
let f = move |v| f.run(lut, (fc.clone(), v));
once_with(|| group_by(cv.1.into_vec()?, f))
}),
("min_by_or_empty", f(), |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
let f = move |a| cmp_by(a, |v| f.run(lut, (fc.clone(), v)), |my, y| y < my);
once_or_empty(|| cv.1.into_vec().map_err(Exn::from).and_then(f).transpose())
}),
("max_by_or_empty", f(), |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
let f = move |a| cmp_by(a, |v| f.run(lut, (fc.clone(), v)), |my, y| y >= my);
once_or_empty(|| cv.1.into_vec().map_err(Exn::from).and_then(f).transpose())
}),
("first", f(), |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
Box::new(f.run(lut, (fc, cv.1)).take(1))
}),
("limit", vf, |lut, mut cv| {
let (f, fc) = cv.0.pop_fun();
let n = cv.0.pop_var();
let pos = |n: isize| n.try_into().unwrap_or(0usize);
then(n.try_as_isize().map_err(Exn::from), |n| {
Box::new(f.run(lut, (fc, cv.1)).take(pos(n)))
})
}),
("range", v(3), |_, mut cv| {
let by = cv.0.pop_var();
let to = cv.0.pop_var();
let from = cv.0.pop_var();
Box::new(range(Ok(from), to, by))
}),
("startswith", v(1), |_, cv| {
unary(cv, |v, s| {
Ok(v.try_as_str()?.starts_with(s.try_as_str()?).into())
})
}),
("endswith", v(1), |_, cv| {
unary(cv, |v, s| {
Ok(v.try_as_str()?.ends_with(s.try_as_str()?).into())
})
}),
("ltrimstr", v(1), |_, cv| {
unary(cv, |v, pre| {
Ok(v.try_as_str()?
.strip_prefix(pre.try_as_str()?)
.map_or_else(|| v.clone(), |s| V::from(s.to_owned())))
})
}),
("rtrimstr", v(1), |_, cv| {
unary(cv, |v, suf| {
Ok(v.try_as_str()?
.strip_suffix(suf.try_as_str()?)
.map_or_else(|| v.clone(), |s| V::from(s.to_owned())))
})
}),
("escape_csv", v(0), |_, cv| {
ow!(Ok(cv.1.try_as_str()?.replace('"', "\"\"").into()))
}),
("escape_sh", v(0), |_, cv| {
ow!(Ok(cv.1.try_as_str()?.replace('\'', r"'\''").into()))
}),
])
}
#[cfg(feature = "std")]
fn now<V: From<String>>() -> Result<f64, Error<V>> {
use std::time::{SystemTime, UNIX_EPOCH};
SystemTime::now()
.duration_since(UNIX_EPOCH)
.map(|x| x.as_secs_f64())
.map_err(Error::str)
}
#[cfg(feature = "std")]
fn std<V: ValT>() -> Box<[Filter<RunPtr<V>>]> {
use std::env::vars;
Box::new([
("env", v(0), |_, _| {
ow!(V::from_map(vars().map(|(k, v)| (V::from(k), V::from(v)))))
}),
("now", v(0), |_, _| ow!(now().map(V::from))),
("halt", v(0), |_, _| once_with(|| std::process::exit(0))),
("halt_error", v(1), |_, mut cv| {
once_with(move || {
let exit_code = cv.0.pop_var().try_as_isize()?;
if let Some(s) = cv.1.as_str() {
std::print!("{}", s);
} else {
std::println!("{}", cv.1);
}
std::process::exit(exit_code as i32)
})
}),
])
}
#[cfg(feature = "format")]
fn replace(s: &str, patterns: &[&str], replacements: &[&str]) -> String {
let ac = aho_corasick::AhoCorasick::new(patterns).unwrap();
ac.replace_all(s, replacements)
}
#[cfg(feature = "format")]
fn format<V: ValT>() -> Box<[Filter<RunPtr<V>>]> {
Box::new([
("escape_html", v(0), |_, cv| {
let pats = ["<", ">", "&", "\'", "\""];
let reps = ["<", ">", "&", "'", """];
ow!(Ok(replace(cv.1.try_as_str()?, &pats, &reps).into()))
}),
("escape_tsv", v(0), |_, cv| {
let pats = ["\n", "\r", "\t", "\\"];
let reps = ["\\n", "\\r", "\\t", "\\\\"];
ow!(Ok(replace(cv.1.try_as_str()?, &pats, &reps).into()))
}),
("encode_uri", v(0), |_, cv| {
use urlencoding::encode;
ow!(Ok(encode(cv.1.try_as_str()?).into_owned().into()))
}),
("encode_base64", v(0), |_, cv| {
use base64::{engine::general_purpose::STANDARD, Engine};
ow!(Ok(STANDARD.encode(cv.1.try_as_str()?).into()))
}),
("decode_base64", v(0), |_, cv| {
use base64::{engine::general_purpose::STANDARD, Engine};
use core::str::from_utf8;
ow!({
let d = STANDARD.decode(cv.1.try_as_str()?).map_err(Error::str)?;
Ok(from_utf8(&d).map_err(Error::str)?.to_owned().into())
})
}),
])
}
#[cfg(feature = "math")]
fn math<V: ValT>() -> Box<[Filter<RunPtr<V>>]> {
let rename = |name, (_name, arity, f): Filter<RunPtr<V>>| (name, arity, f);
Box::new([
math::f_f!(acos),
math::f_f!(acosh),
math::f_f!(asin),
math::f_f!(asinh),
math::f_f!(atan),
math::f_f!(atanh),
math::f_f!(cbrt),
math::f_f!(cos),
math::f_f!(cosh),
math::f_f!(erf),
math::f_f!(erfc),
math::f_f!(exp),
math::f_f!(exp10),
math::f_f!(exp2),
math::f_f!(expm1),
math::f_f!(fabs),
math::f_fi!(frexp),
math::f_i!(ilogb),
math::f_f!(j0),
math::f_f!(j1),
math::f_f!(lgamma),
math::f_f!(log),
math::f_f!(log10),
math::f_f!(log1p),
math::f_f!(log2),
math::f_ff!(modf),
rename("nearbyint", math::f_f!(round)),
math::f_f!(rint),
math::f_f!(sin),
math::f_f!(sinh),
math::f_f!(sqrt),
math::f_f!(tan),
math::f_f!(tanh),
math::f_f!(tgamma),
math::f_f!(trunc),
math::f_f!(y0),
math::f_f!(y1),
math::ff_f!(atan2),
math::ff_f!(copysign),
math::ff_f!(fdim),
math::ff_f!(fmax),
math::ff_f!(fmin),
math::ff_f!(fmod),
math::ff_f!(hypot),
math::if_f!(jn),
math::fi_f!(ldexp),
math::ff_f!(nextafter),
math::ff_f!(pow),
math::ff_f!(remainder),
rename("scalbln", math::fi_f!(scalbn)),
math::if_f!(yn),
math::fff_f!(fma),
])
}
#[cfg(feature = "regex")]
fn re<V: ValT>(s: bool, m: bool, mut cv: Cv<V>) -> ValR<V> {
let flags = cv.0.pop_var();
let re = cv.0.pop_var();
use crate::regex::Part::{Matches, Mismatch};
let fail_flag = |e| Error::str(format_args!("invalid regex flag: {e}"));
let fail_re = |e| Error::str(format_args!("invalid regex: {e}"));
let flags = regex::Flags::new(flags.try_as_str()?).map_err(fail_flag)?;
let re = flags.regex(re.try_as_str()?).map_err(fail_re)?;
let out = regex::regex(cv.1.try_as_str()?, &re, flags, (s, m));
let out = out.into_iter().map(|out| match out {
Matches(ms) => ms.into_iter().map(|m| V::from_map(m.fields())).collect(),
Mismatch(s) => Ok(V::from(s.to_string())),
});
out.collect()
}
#[cfg(feature = "regex")]
fn regex<V: ValT>() -> Box<[Filter<RunPtr<V>>]> {
let vv = || [Bind::Var(()), Bind::Var(())].into();
Box::new([
("matches", vv(), |_, cv| ow!(re(false, true, cv))),
("split_matches", vv(), |_, cv| ow!(re(true, true, cv))),
("split_", vv(), |_, cv| ow!(re(true, false, cv))),
])
}
#[cfg(feature = "time")]
fn time<V: ValT>() -> Box<[Filter<RunPtr<V>>]> {
Box::new([
("fromdateiso8601", v(0), |_, cv| {
ow!(time::from_iso8601(cv.1.try_as_str()?))
}),
("todateiso8601", v(0), |_, cv| {
ow!(Ok(time::to_iso8601(&cv.1)?.into()))
}),
])
}
fn error<V: Clone, F>() -> Filter<(RunPtr<V, F>, UpdatePtr<V, F>)> {
(
"error",
v(1),
(
|_, mut cv| ow!(Err(Error::new(cv.0.pop_var()))),
|_, mut cv, _| ow!(Err(Error::new(cv.0.pop_var()))),
),
)
}
#[cfg(feature = "log")]
fn with_debug<T: core::fmt::Display>(x: T) -> T {
log::debug!("{}", x);
x
}
#[cfg(feature = "log")]
fn debug<V: core::fmt::Display>() -> Filter<(RunPtr<V>, UpdatePtr<V>)> {
(
"debug",
v(0),
(
|_, cv| ow!(Ok(with_debug(cv.1))),
|_, cv, f| f(with_debug(cv.1)),
),
)
}