2022-10-01 14:55:48 +00:00
|
|
|
use crate::ctx::Context;
|
2023-07-06 14:57:42 +00:00
|
|
|
use crate::dbs::{Options, Transaction};
|
|
|
|
use crate::doc::CursorDoc;
|
2022-10-01 14:55:48 +00:00
|
|
|
use crate::err::Error;
|
2022-09-30 21:22:00 +00:00
|
|
|
use crate::sql::value::Value;
|
2023-05-20 07:28:52 +00:00
|
|
|
use crate::sql::Datetime;
|
|
|
|
use chrono::TimeZone;
|
|
|
|
use chrono::Utc;
|
2022-10-01 14:55:48 +00:00
|
|
|
use derive::Store;
|
2023-08-17 18:03:46 +00:00
|
|
|
use revision::revisioned;
|
2022-10-01 14:55:48 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::fmt;
|
2022-09-30 21:22:00 +00:00
|
|
|
|
2023-03-30 10:41:44 +00:00
|
|
|
pub(crate) const TOKEN: &str = "$surrealdb::private::sql::Constant";
|
|
|
|
|
2024-04-17 14:27:55 +00:00
|
|
|
#[revisioned(revision = 1)]
|
2023-04-29 20:50:25 +00:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize, Store, Hash)]
|
|
|
|
#[serde(rename = "$surrealdb::private::sql::Constant")]
|
2024-01-09 15:34:52 +00:00
|
|
|
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
|
2024-04-02 20:12:08 +00:00
|
|
|
#[non_exhaustive]
|
2022-10-01 14:55:48 +00:00
|
|
|
pub enum Constant {
|
|
|
|
MathE,
|
|
|
|
MathFrac1Pi,
|
|
|
|
MathFrac1Sqrt2,
|
|
|
|
MathFrac2Pi,
|
|
|
|
MathFrac2SqrtPi,
|
|
|
|
MathFracPi2,
|
|
|
|
MathFracPi3,
|
|
|
|
MathFracPi4,
|
|
|
|
MathFracPi6,
|
|
|
|
MathFracPi8,
|
2023-06-09 16:53:22 +00:00
|
|
|
MathInf,
|
2022-10-01 14:55:48 +00:00
|
|
|
MathLn10,
|
|
|
|
MathLn2,
|
|
|
|
MathLog102,
|
|
|
|
MathLog10E,
|
|
|
|
MathLog210,
|
|
|
|
MathLog2E,
|
|
|
|
MathPi,
|
|
|
|
MathSqrt2,
|
|
|
|
MathTau,
|
2023-05-20 07:28:52 +00:00
|
|
|
TimeEpoch,
|
2023-04-29 20:50:25 +00:00
|
|
|
// Add new variants here
|
2022-10-01 14:55:48 +00:00
|
|
|
}
|
|
|
|
|
2023-05-20 07:28:52 +00:00
|
|
|
/// A type of constant that may be converted to a value or JSON.
|
|
|
|
pub(crate) enum ConstantValue {
|
|
|
|
Float(f64),
|
|
|
|
Datetime(Datetime),
|
|
|
|
}
|
|
|
|
|
2022-10-01 14:55:48 +00:00
|
|
|
impl Constant {
|
2023-05-20 07:28:52 +00:00
|
|
|
pub(crate) fn value(&self) -> ConstantValue {
|
|
|
|
use std::f64::consts as f64c;
|
2023-04-29 08:06:02 +00:00
|
|
|
match self {
|
2023-05-20 07:28:52 +00:00
|
|
|
Self::MathE => ConstantValue::Float(f64c::E),
|
|
|
|
Self::MathFrac1Pi => ConstantValue::Float(f64c::FRAC_1_PI),
|
|
|
|
Self::MathFrac1Sqrt2 => ConstantValue::Float(f64c::FRAC_1_SQRT_2),
|
|
|
|
Self::MathFrac2Pi => ConstantValue::Float(f64c::FRAC_2_PI),
|
|
|
|
Self::MathFrac2SqrtPi => ConstantValue::Float(f64c::FRAC_2_SQRT_PI),
|
|
|
|
Self::MathFracPi2 => ConstantValue::Float(f64c::FRAC_PI_2),
|
|
|
|
Self::MathFracPi3 => ConstantValue::Float(f64c::FRAC_PI_3),
|
|
|
|
Self::MathFracPi4 => ConstantValue::Float(f64c::FRAC_PI_4),
|
|
|
|
Self::MathFracPi6 => ConstantValue::Float(f64c::FRAC_PI_6),
|
|
|
|
Self::MathFracPi8 => ConstantValue::Float(f64c::FRAC_PI_8),
|
2023-06-09 16:53:22 +00:00
|
|
|
Self::MathInf => ConstantValue::Float(f64::INFINITY),
|
2023-05-20 07:28:52 +00:00
|
|
|
Self::MathLn10 => ConstantValue::Float(f64c::LN_10),
|
|
|
|
Self::MathLn2 => ConstantValue::Float(f64c::LN_2),
|
|
|
|
Self::MathLog102 => ConstantValue::Float(f64c::LOG10_2),
|
|
|
|
Self::MathLog10E => ConstantValue::Float(f64c::LOG10_E),
|
|
|
|
Self::MathLog210 => ConstantValue::Float(f64c::LOG2_10),
|
|
|
|
Self::MathLog2E => ConstantValue::Float(f64c::LOG2_E),
|
|
|
|
Self::MathPi => ConstantValue::Float(f64c::PI),
|
|
|
|
Self::MathSqrt2 => ConstantValue::Float(f64c::SQRT_2),
|
|
|
|
Self::MathTau => ConstantValue::Float(f64c::TAU),
|
|
|
|
Self::TimeEpoch => ConstantValue::Datetime(Datetime(Utc.timestamp_nanos(0))),
|
2023-04-29 08:06:02 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-09 22:17:29 +00:00
|
|
|
/// Process this type returning a computed simple Value
|
2023-07-06 14:57:42 +00:00
|
|
|
pub(crate) async fn compute(
|
|
|
|
&self,
|
|
|
|
_ctx: &Context<'_>,
|
|
|
|
_opt: &Options,
|
|
|
|
_txn: &Transaction,
|
|
|
|
_doc: Option<&CursorDoc<'_>>,
|
|
|
|
) -> Result<Value, Error> {
|
2023-05-20 07:28:52 +00:00
|
|
|
Ok(match self.value() {
|
|
|
|
ConstantValue::Datetime(d) => d.into(),
|
|
|
|
ConstantValue::Float(f) => f.into(),
|
|
|
|
})
|
2022-10-01 14:55:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Constant {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.write_str(match self {
|
2022-10-04 21:51:18 +00:00
|
|
|
Self::MathE => "math::E",
|
|
|
|
Self::MathFrac1Pi => "math::FRAC_1_PI",
|
|
|
|
Self::MathFrac1Sqrt2 => "math::FRAC_1_SQRT_2",
|
|
|
|
Self::MathFrac2Pi => "math::FRAC_2_PI",
|
|
|
|
Self::MathFrac2SqrtPi => "math::FRAC_2_SQRT_PI",
|
|
|
|
Self::MathFracPi2 => "math::FRAC_PI_2",
|
|
|
|
Self::MathFracPi3 => "math::FRAC_PI_3",
|
|
|
|
Self::MathFracPi4 => "math::FRAC_PI_4",
|
|
|
|
Self::MathFracPi6 => "math::FRAC_PI_6",
|
|
|
|
Self::MathFracPi8 => "math::FRAC_PI_8",
|
2023-06-09 16:53:22 +00:00
|
|
|
Self::MathInf => "math::INF",
|
2022-10-04 21:51:18 +00:00
|
|
|
Self::MathLn10 => "math::LN_10",
|
|
|
|
Self::MathLn2 => "math::LN_2",
|
|
|
|
Self::MathLog102 => "math::LOG10_2",
|
|
|
|
Self::MathLog10E => "math::LOG10_E",
|
|
|
|
Self::MathLog210 => "math::LOG2_10",
|
|
|
|
Self::MathLog2E => "math::LOG2_E",
|
|
|
|
Self::MathPi => "math::PI",
|
|
|
|
Self::MathSqrt2 => "math::SQRT_2",
|
|
|
|
Self::MathTau => "math::TAU",
|
2023-05-20 07:28:52 +00:00
|
|
|
Self::TimeEpoch => "time::EPOCH",
|
2022-10-01 14:55:48 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|