2017-01-06 15:15:57 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations under the License.
|
2017-02-21 19:48:08 +00:00
|
|
|
|
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(linkedlist))]
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
use std::collections::{BTreeSet, BTreeMap, LinkedList};
|
|
|
|
use std::cmp::{Ordering, Ord, PartialOrd};
|
2017-01-28 22:18:17 +00:00
|
|
|
use std::fmt::{Display, Formatter};
|
2017-02-03 18:14:23 +00:00
|
|
|
use std::f64;
|
2017-01-11 21:51:34 +00:00
|
|
|
|
2017-04-29 03:11:55 +00:00
|
|
|
use chrono::{
|
|
|
|
DateTime,
|
2017-11-21 16:24:08 +00:00
|
|
|
TimeZone, // For Utc::timestamp. The compiler incorrectly complains that this is unused.
|
|
|
|
Utc,
|
2017-04-29 03:11:55 +00:00
|
|
|
};
|
2017-02-02 14:08:00 +00:00
|
|
|
use num::BigInt;
|
2017-01-06 15:15:57 +00:00
|
|
|
use ordered_float::OrderedFloat;
|
2017-04-29 03:11:55 +00:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
|
|
|
use symbols;
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
/// Value represents one of the allowed values in an EDN string.
|
2017-01-13 00:08:29 +00:00
|
|
|
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
|
2017-01-06 15:15:57 +00:00
|
|
|
pub enum Value {
|
|
|
|
Nil,
|
|
|
|
Boolean(bool),
|
|
|
|
Integer(i64),
|
2017-11-21 16:24:08 +00:00
|
|
|
Instant(DateTime<Utc>),
|
2017-01-06 15:15:57 +00:00
|
|
|
BigInteger(BigInt),
|
|
|
|
Float(OrderedFloat<f64>),
|
|
|
|
Text(String),
|
2017-04-29 03:11:55 +00:00
|
|
|
Uuid(Uuid),
|
2017-01-11 21:51:34 +00:00
|
|
|
PlainSymbol(symbols::PlainSymbol),
|
|
|
|
NamespacedSymbol(symbols::NamespacedSymbol),
|
|
|
|
Keyword(symbols::Keyword),
|
|
|
|
NamespacedKeyword(symbols::NamespacedKeyword),
|
2017-01-06 15:15:57 +00:00
|
|
|
Vector(Vec<Value>),
|
2017-02-02 15:15:25 +00:00
|
|
|
// We're using a LinkedList here instead of a Vec or VecDeque because the
|
|
|
|
// LinkedList is faster for appending (which we do a lot of).
|
|
|
|
// See https://github.com/mozilla/mentat/issues/231
|
2017-01-06 15:15:57 +00:00
|
|
|
List(LinkedList<Value>),
|
|
|
|
// We're using BTree{Set, Map} rather than Hash{Set, Map} because the BTree variants
|
2017-01-31 01:39:32 +00:00
|
|
|
// implement Hash. The Hash variants don't in order to preserve O(n) hashing
|
|
|
|
// time, which is hard given recursive data structures.
|
2017-01-06 15:15:57 +00:00
|
|
|
// See https://internals.rust-lang.org/t/implementing-hash-for-hashset-hashmap/3817/1
|
|
|
|
Set(BTreeSet<Value>),
|
|
|
|
Map(BTreeMap<Value, Value>),
|
|
|
|
}
|
|
|
|
|
2017-02-22 17:11:05 +00:00
|
|
|
/// `SpannedValue` is the parallel to `Value` but used in `ValueAndSpan`.
|
|
|
|
/// Container types have `ValueAndSpan` children.
|
2017-02-14 15:43:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
|
|
|
|
pub enum SpannedValue {
|
|
|
|
Nil,
|
|
|
|
Boolean(bool),
|
|
|
|
Integer(i64),
|
2017-11-21 16:24:08 +00:00
|
|
|
Instant(DateTime<Utc>),
|
2017-02-14 15:43:32 +00:00
|
|
|
BigInteger(BigInt),
|
|
|
|
Float(OrderedFloat<f64>),
|
|
|
|
Text(String),
|
2017-04-29 03:11:55 +00:00
|
|
|
Uuid(Uuid),
|
2017-02-14 15:43:32 +00:00
|
|
|
PlainSymbol(symbols::PlainSymbol),
|
|
|
|
NamespacedSymbol(symbols::NamespacedSymbol),
|
|
|
|
Keyword(symbols::Keyword),
|
|
|
|
NamespacedKeyword(symbols::NamespacedKeyword),
|
|
|
|
Vector(Vec<ValueAndSpan>),
|
|
|
|
List(LinkedList<ValueAndSpan>),
|
|
|
|
Set(BTreeSet<ValueAndSpan>),
|
|
|
|
Map(BTreeMap<ValueAndSpan, ValueAndSpan>),
|
|
|
|
}
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Span represents the current offset (start, end) into the input string.
|
2017-04-06 17:06:28 +00:00
|
|
|
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
|
|
|
|
pub struct Span(pub u32, pub u32);
|
|
|
|
|
|
|
|
impl Span {
|
|
|
|
pub fn new(start: usize, end: usize) -> Span {
|
|
|
|
Span(start as u32, end as u32)
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2017-02-22 17:11:05 +00:00
|
|
|
/// A wrapper type around `SpannedValue` and `Span`, representing some EDN value
|
2017-02-14 15:43:32 +00:00
|
|
|
/// and the parsing offset (start, end) in the original EDN string.
|
|
|
|
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
|
|
|
|
pub struct ValueAndSpan {
|
|
|
|
pub inner: SpannedValue,
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2017-04-06 17:06:28 +00:00
|
|
|
impl ValueAndSpan {
|
|
|
|
pub fn new<I>(spanned_value: SpannedValue, span: I) -> ValueAndSpan where I: Into<Option<Span>> {
|
|
|
|
ValueAndSpan {
|
|
|
|
inner: spanned_value,
|
|
|
|
span: span.into().unwrap_or(Span(0, 0)), // TODO: consider if this has implications.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_atom(self) -> Option<ValueAndSpan> {
|
|
|
|
if self.inner.is_atom() {
|
|
|
|
Some(self)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-04 20:40:41 +00:00
|
|
|
pub fn as_atom(&self) -> Option<&ValueAndSpan> {
|
|
|
|
if self.inner.is_atom() {
|
|
|
|
Some(self)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-06 17:06:28 +00:00
|
|
|
pub fn into_text(self) -> Option<String> {
|
|
|
|
self.inner.into_text()
|
|
|
|
}
|
2017-05-04 20:40:41 +00:00
|
|
|
|
|
|
|
pub fn as_text(&self) -> Option<&String> {
|
|
|
|
self.inner.as_text()
|
|
|
|
}
|
2017-04-06 17:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Value {
|
|
|
|
/// For debug use only!
|
|
|
|
///
|
|
|
|
/// But right now, it's used in the bootstrapper. We'll fix that soon.
|
|
|
|
pub fn with_spans(self) -> ValueAndSpan {
|
|
|
|
let s = self.to_pretty(120).unwrap();
|
|
|
|
use ::parse;
|
|
|
|
let with_spans = parse::value(&s).unwrap();
|
|
|
|
assert_eq!(self, with_spans.clone().without_spans());
|
|
|
|
with_spans
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
impl From<SpannedValue> for Value {
|
|
|
|
fn from(src: SpannedValue) -> Value {
|
|
|
|
match src {
|
|
|
|
SpannedValue::Nil => Value::Nil,
|
|
|
|
SpannedValue::Boolean(v) => Value::Boolean(v),
|
|
|
|
SpannedValue::Integer(v) => Value::Integer(v),
|
2017-04-29 03:11:55 +00:00
|
|
|
SpannedValue::Instant(v) => Value::Instant(v),
|
2017-02-14 15:43:32 +00:00
|
|
|
SpannedValue::BigInteger(v) => Value::BigInteger(v),
|
|
|
|
SpannedValue::Float(v) => Value::Float(v),
|
|
|
|
SpannedValue::Text(v) => Value::Text(v),
|
2017-04-29 03:11:55 +00:00
|
|
|
SpannedValue::Uuid(v) => Value::Uuid(v),
|
2017-02-14 15:43:32 +00:00
|
|
|
SpannedValue::PlainSymbol(v) => Value::PlainSymbol(v),
|
|
|
|
SpannedValue::NamespacedSymbol(v) => Value::NamespacedSymbol(v),
|
|
|
|
SpannedValue::Keyword(v) => Value::Keyword(v),
|
|
|
|
SpannedValue::NamespacedKeyword(v) => Value::NamespacedKeyword(v),
|
|
|
|
SpannedValue::Vector(v) => Value::Vector(v.into_iter().map(|x| x.without_spans()).collect()),
|
|
|
|
SpannedValue::List(v) => Value::List(v.into_iter().map(|x| x.without_spans()).collect()),
|
|
|
|
SpannedValue::Set(v) => Value::Set(v.into_iter().map(|x| x.without_spans()).collect()),
|
|
|
|
SpannedValue::Map(v) => Value::Map(v.into_iter().map(|(x, y)| (x.without_spans(), y.without_spans())).collect()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
impl From<ValueAndSpan> for Value {
|
|
|
|
fn from(src: ValueAndSpan) -> Value {
|
|
|
|
src.inner.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Creates `from_$TYPE` helper functions for Value and SpannedValue,
|
|
|
|
/// like `from_float()` or `from_ordered_float()`.
|
|
|
|
macro_rules! def_from {
|
|
|
|
($name: ident, $out: ty, $kind: path, $t: ty, $( $transform: expr ),* ) => {
|
|
|
|
pub fn $name(src: $t) -> $out {
|
|
|
|
$( let src = $transform(src); )*
|
|
|
|
$kind(src)
|
2017-01-28 22:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Creates `from_$TYPE` helper functions for Value or SpannedValue,
|
|
|
|
/// like `from_bigint()` where the conversion is optional.
|
|
|
|
macro_rules! def_from_option {
|
|
|
|
($name: ident, $out: ty, $kind: path, $t: ty, $( $transform: expr ),* ) => {
|
2017-02-22 17:11:05 +00:00
|
|
|
pub fn $name(src: $t) -> Option<$out> {
|
2017-02-14 15:43:32 +00:00
|
|
|
$( let src = $transform(src); )*
|
2017-02-22 17:11:05 +00:00
|
|
|
src.map($kind)
|
2017-02-14 15:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates `is_$TYPE` helper functions for Value or SpannedValue, like
|
2017-01-26 23:16:49 +00:00
|
|
|
/// `is_big_integer()` or `is_text()`.
|
|
|
|
macro_rules! def_is {
|
|
|
|
($name: ident, $pat: pat) => {
|
|
|
|
pub fn $name(&self) -> bool {
|
|
|
|
match *self { $pat => true, _ => false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Creates `as_$TYPE` helper functions for Value or SpannedValue, like
|
|
|
|
/// `as_integer()`, which returns the underlying value representing the
|
|
|
|
/// original variable wrapped in an Option, like `Option<i64>`.
|
2017-02-09 18:21:35 +00:00
|
|
|
macro_rules! def_as {
|
2017-02-09 19:00:17 +00:00
|
|
|
($name: ident, $kind: path, $t: ty, $( $transform: expr ),* ) => {
|
2017-02-09 18:21:35 +00:00
|
|
|
pub fn $name(&self) -> Option<$t> {
|
2017-02-09 19:00:17 +00:00
|
|
|
match *self { $kind(v) => { $( let v = $transform(v) )*; Some(v) }, _ => None }
|
2017-02-09 18:21:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Creates `as_$TYPE` helper functions for Value or SpannedValue, like
|
|
|
|
/// `as_big_integer()`, which returns a reference to the underlying value
|
|
|
|
/// representing the original variable wrapped in an Option, like `Option<&BigInt>`.
|
2017-02-09 18:21:35 +00:00
|
|
|
macro_rules! def_as_ref {
|
2017-01-26 23:16:49 +00:00
|
|
|
($name: ident, $kind: path, $t: ty) => {
|
|
|
|
pub fn $name(&self) -> Option<&$t> {
|
|
|
|
match *self { $kind(ref v) => Some(v), _ => None }
|
2017-01-25 22:06:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:43:32 +00:00
|
|
|
/// Creates `into_$TYPE` helper functions for Value or SpannedValue, like
|
|
|
|
/// `into_big_integer()`, which consumes it returning underlying value
|
|
|
|
/// representing the original variable wrapped in an Option, like `Option<BigInt>`.
|
2017-02-09 19:00:17 +00:00
|
|
|
macro_rules! def_into {
|
|
|
|
($name: ident, $kind: path, $t: ty, $( $transform: expr ),* ) => {
|
|
|
|
pub fn $name(self) -> Option<$t> {
|
|
|
|
match self { $kind(v) => { $( let v = $transform(v) )*; Some(v) }, _ => None }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-02 09:51:42 +00:00
|
|
|
/// Converts `name` into a plain or namespaced value symbol, depending on
|
|
|
|
/// whether or not `namespace` is given.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use edn::types::to_symbol;
|
|
|
|
/// # use edn::types::Value;
|
|
|
|
/// # use edn::symbols;
|
2017-02-14 15:43:32 +00:00
|
|
|
/// let value = to_symbol!("foo", "bar", Value);
|
2017-02-02 09:51:42 +00:00
|
|
|
/// assert_eq!(value, Value::NamespacedSymbol(symbols::NamespacedSymbol::new("foo", "bar")));
|
|
|
|
///
|
2017-02-14 15:43:32 +00:00
|
|
|
/// let value = to_symbol!(None, "baz", Value);
|
2017-02-02 09:51:42 +00:00
|
|
|
/// assert_eq!(value, Value::PlainSymbol(symbols::PlainSymbol::new("baz")));
|
2017-02-14 15:43:32 +00:00
|
|
|
///
|
|
|
|
/// let value = to_symbol!("foo", "bar", SpannedValue);
|
|
|
|
/// assert_eq!(value.into(), to_symbol!("foo", "bar", Value));
|
|
|
|
///
|
|
|
|
/// let value = to_symbol!(None, "baz", SpannedValue);
|
|
|
|
/// assert_eq!(value.into(), to_symbol!(None, "baz", Value));
|
2017-02-02 09:51:42 +00:00
|
|
|
/// ```
|
2017-02-14 15:43:32 +00:00
|
|
|
macro_rules! to_symbol {
|
|
|
|
( $namespace:expr, $name:expr, $t:tt ) => {
|
|
|
|
$namespace.into().map_or_else(
|
|
|
|
|| $t::PlainSymbol(symbols::PlainSymbol::new($name)),
|
|
|
|
|ns| $t::NamespacedSymbol(symbols::NamespacedSymbol::new(ns, $name)))
|
|
|
|
}
|
2017-01-11 21:51:34 +00:00
|
|
|
}
|
|
|
|
|
2017-02-02 09:51:42 +00:00
|
|
|
/// Converts `name` into a plain or namespaced value keyword, depending on
|
|
|
|
/// whether or not `namespace` is given.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use edn::types::to_keyword;
|
|
|
|
/// # use edn::types::Value;
|
|
|
|
/// # use edn::symbols;
|
2017-02-14 15:43:32 +00:00
|
|
|
/// let value = to_keyword!("foo", "bar", Value);
|
2017-02-02 09:51:42 +00:00
|
|
|
/// assert_eq!(value, Value::NamespacedKeyword(symbols::NamespacedKeyword::new("foo", "bar")));
|
|
|
|
///
|
2017-02-14 15:43:32 +00:00
|
|
|
/// let value = to_keyword!(None, "baz", Value);
|
2017-02-02 09:51:42 +00:00
|
|
|
/// assert_eq!(value, Value::Keyword(symbols::Keyword::new("baz")));
|
2017-02-14 15:43:32 +00:00
|
|
|
///
|
|
|
|
/// let value = to_keyword!("foo", "bar", SpannedValue);
|
|
|
|
/// assert_eq!(value.into(), to_keyword!("foo", "bar", Value));
|
|
|
|
///
|
|
|
|
/// let value = to_keyword!(None, "baz", SpannedValue);
|
|
|
|
/// assert_eq!(value.into(), to_keyword!(None, "baz", Value));
|
2017-02-02 09:51:42 +00:00
|
|
|
/// ```
|
2017-02-14 15:43:32 +00:00
|
|
|
macro_rules! to_keyword {
|
|
|
|
( $namespace:expr, $name:expr, $t:tt ) => {
|
|
|
|
$namespace.into().map_or_else(
|
|
|
|
|| $t::Keyword(symbols::Keyword::new($name)),
|
|
|
|
|ns| $t::NamespacedKeyword(symbols::NamespacedKeyword::new(ns, $name)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Implements multiple is*, as*, into* and from* methods common to
|
|
|
|
/// both Value and SpannedValue.
|
|
|
|
macro_rules! def_common_value_methods {
|
2017-02-21 10:15:22 +00:00
|
|
|
( $t:tt<$tchild:tt> ) => {
|
2017-02-14 15:43:32 +00:00
|
|
|
def_is!(is_nil, $t::Nil);
|
|
|
|
def_is!(is_boolean, $t::Boolean(_));
|
|
|
|
def_is!(is_integer, $t::Integer(_));
|
2017-04-29 03:11:55 +00:00
|
|
|
def_is!(is_instant, $t::Instant(_));
|
2017-02-14 15:43:32 +00:00
|
|
|
def_is!(is_big_integer, $t::BigInteger(_));
|
|
|
|
def_is!(is_float, $t::Float(_));
|
|
|
|
def_is!(is_text, $t::Text(_));
|
2017-04-29 03:11:55 +00:00
|
|
|
def_is!(is_uuid, $t::Uuid(_));
|
2017-02-14 15:43:32 +00:00
|
|
|
def_is!(is_symbol, $t::PlainSymbol(_));
|
|
|
|
def_is!(is_namespaced_symbol, $t::NamespacedSymbol(_));
|
|
|
|
def_is!(is_keyword, $t::Keyword(_));
|
|
|
|
def_is!(is_namespaced_keyword, $t::NamespacedKeyword(_));
|
|
|
|
def_is!(is_vector, $t::Vector(_));
|
|
|
|
def_is!(is_list, $t::List(_));
|
|
|
|
def_is!(is_set, $t::Set(_));
|
|
|
|
def_is!(is_map, $t::Map(_));
|
|
|
|
|
|
|
|
/// `as_nil` does not use the macro as it does not have an underlying
|
|
|
|
/// value, and returns `Option<()>`.
|
|
|
|
pub fn as_nil(&self) -> Option<()> {
|
|
|
|
match *self { $t::Nil => Some(()), _ => None }
|
|
|
|
}
|
|
|
|
|
|
|
|
def_as!(as_boolean, $t::Boolean, bool,);
|
|
|
|
def_as!(as_integer, $t::Integer, i64,);
|
2017-11-21 16:24:08 +00:00
|
|
|
def_as!(as_instant, $t::Instant, DateTime<Utc>,);
|
2017-02-14 15:43:32 +00:00
|
|
|
def_as!(as_float, $t::Float, f64, |v: OrderedFloat<f64>| v.into_inner());
|
|
|
|
|
|
|
|
def_as_ref!(as_big_integer, $t::BigInteger, BigInt);
|
|
|
|
def_as_ref!(as_ordered_float, $t::Float, OrderedFloat<f64>);
|
|
|
|
def_as_ref!(as_text, $t::Text, String);
|
2017-04-29 03:11:55 +00:00
|
|
|
def_as_ref!(as_uuid, $t::Uuid, Uuid);
|
2017-02-14 15:43:32 +00:00
|
|
|
def_as_ref!(as_symbol, $t::PlainSymbol, symbols::PlainSymbol);
|
|
|
|
def_as_ref!(as_namespaced_symbol, $t::NamespacedSymbol, symbols::NamespacedSymbol);
|
|
|
|
def_as_ref!(as_keyword, $t::Keyword, symbols::Keyword);
|
|
|
|
def_as_ref!(as_namespaced_keyword, $t::NamespacedKeyword, symbols::NamespacedKeyword);
|
|
|
|
def_as_ref!(as_vector, $t::Vector, Vec<$tchild>);
|
|
|
|
def_as_ref!(as_list, $t::List, LinkedList<$tchild>);
|
|
|
|
def_as_ref!(as_set, $t::Set, BTreeSet<$tchild>);
|
|
|
|
def_as_ref!(as_map, $t::Map, BTreeMap<$tchild, $tchild>);
|
|
|
|
|
|
|
|
def_into!(into_boolean, $t::Boolean, bool,);
|
|
|
|
def_into!(into_integer, $t::Integer, i64,);
|
2017-11-21 16:24:08 +00:00
|
|
|
def_into!(into_instant, $t::Instant, DateTime<Utc>,);
|
2017-02-14 15:43:32 +00:00
|
|
|
def_into!(into_big_integer, $t::BigInteger, BigInt,);
|
|
|
|
def_into!(into_ordered_float, $t::Float, OrderedFloat<f64>,);
|
|
|
|
def_into!(into_float, $t::Float, f64, |v: OrderedFloat<f64>| v.into_inner());
|
|
|
|
def_into!(into_text, $t::Text, String,);
|
2017-04-29 03:11:55 +00:00
|
|
|
def_into!(into_uuid, $t::Uuid, Uuid,);
|
2017-02-14 15:43:32 +00:00
|
|
|
def_into!(into_symbol, $t::PlainSymbol, symbols::PlainSymbol,);
|
|
|
|
def_into!(into_namespaced_symbol, $t::NamespacedSymbol, symbols::NamespacedSymbol,);
|
|
|
|
def_into!(into_keyword, $t::Keyword, symbols::Keyword,);
|
|
|
|
def_into!(into_namespaced_keyword, $t::NamespacedKeyword, symbols::NamespacedKeyword,);
|
|
|
|
def_into!(into_vector, $t::Vector, Vec<$tchild>,);
|
|
|
|
def_into!(into_list, $t::List, LinkedList<$tchild>,);
|
|
|
|
def_into!(into_set, $t::Set, BTreeSet<$tchild>,);
|
|
|
|
def_into!(into_map, $t::Map, BTreeMap<$tchild, $tchild>,);
|
|
|
|
|
2017-02-22 17:11:05 +00:00
|
|
|
def_from_option!(from_bigint, $t, $t::BigInteger, &str, |src: &str| src.parse::<BigInt>().ok());
|
2017-02-14 15:43:32 +00:00
|
|
|
def_from!(from_float, $t, $t::Float, f64, |src: f64| OrderedFloat::from(src));
|
|
|
|
def_from!(from_ordered_float, $t, $t::Float, OrderedFloat<f64>,);
|
|
|
|
|
|
|
|
pub fn from_symbol<'a, T: Into<Option<&'a str>>>(namespace: T, name: &str) -> $t {
|
|
|
|
to_symbol!(namespace, name, $t)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_keyword<'a, T: Into<Option<&'a str>>>(namespace: T, name: &str) -> $t {
|
|
|
|
to_keyword!(namespace, name, $t)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn precedence(&self) -> i32 {
|
|
|
|
match *self {
|
|
|
|
$t::Nil => 0,
|
|
|
|
$t::Boolean(_) => 1,
|
|
|
|
$t::Integer(_) => 2,
|
|
|
|
$t::BigInteger(_) => 3,
|
|
|
|
$t::Float(_) => 4,
|
2017-04-29 03:11:55 +00:00
|
|
|
$t::Instant(_) => 5,
|
|
|
|
$t::Text(_) => 6,
|
|
|
|
$t::Uuid(_) => 7,
|
|
|
|
$t::PlainSymbol(_) => 8,
|
|
|
|
$t::NamespacedSymbol(_) => 9,
|
|
|
|
$t::Keyword(_) => 10,
|
|
|
|
$t::NamespacedKeyword(_) => 11,
|
|
|
|
$t::Vector(_) => 12,
|
|
|
|
$t::List(_) => 13,
|
|
|
|
$t::Set(_) => 14,
|
|
|
|
$t::Map(_) => 15,
|
2017-02-14 15:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
Lookup refs, nested vector values, map notation. Fixes #180, fixes #183, fixes #284. (#382) r=rnewman
* Pre: Fix error in parser macros.
* Pre: Make test unwrapping more verbose.
* Pre: Make lookup refs be (lookup-ref a v) in the entity position.
This has the advantage of being explicit in all situations and
unambiguous at parse-time. This choice agrees with the Clojure
implementation but not with Datomic. Datomic treats [a v] as a lookup
ref, is ambiguous at parse-time, and is disambiguated in ways I do not
understand at transaction time. We mooted making lookup refs [[a v]]
and outlawing nested value vectors in transactions, but after
implementing that approach I decided it was better to handle lookup
refs at parse time and therefore outlawing nested value vectors is not
necessary.
* Handle lookup refs in the entity and value columns. Fixes #183.
* Pre 0a: Use a stack instead of into_iter.
* Pre 0b: Dedent.
* Pre 0c: Handle `e` after `v`.
This allows to use the original `e` while handling `v`.
* Explode value lists for :db.cardinality/many attributes. Fixes #284.
* Parse and accept map notation. Fixes #180.
* Pre: Modernize add() and retract() into one add_or_retract().
* Pre: Add is_collection and is_atom to edn::Value.
* Pre: Differentiate atoms from lookup-refs in value position.
Initially, I expected to accept arbitrary edn::Value instances in the
value position, and to differentiate in the transactor. However, the
implementation quickly became a two-stage parser, since we always
wanted to parse the resulting value position into some other known
thing using the tx-parser. To save calls into the parser and to allow
the parser to move forward with a smaller API surface, I push as much
of this parsing as possible into the initial parse.
* Pre: Modernize entities().
* Pre: Quote edn::Value::Text in Display.
* Review comment: Add and use edn::Value::into_atom.
* Review comment: Use skip(eof()) throughout.
* Review comment: VecDeque instead of Vec.
* Review comment: Part 0: Rename TempId to TempIdHandle.
* Review comment: Part 1: Differentiate internal and external tempids.
This breaks an abstraction boundary by pushing the Internal/External
split up to the Entity level in tx/ and tx-parser/. This just makes
it easier to explode Entity map notation instances into Entity
instances, taking an existing External tempid :db/id or generating a
new Internal tempid as appropriate. To do this without breaking the
abstraction boundary would require adding flexibility to the
transaction processor: we'd need to be able to turn Entity instances
into some internal enum and handle the two cases independently. It
wouldn't be too hard, but this reduces the combinatorial type
explosion.
2017-03-27 23:30:04 +00:00
|
|
|
|
|
|
|
pub fn is_collection(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
$t::Nil => false,
|
|
|
|
$t::Boolean(_) => false,
|
|
|
|
$t::Integer(_) => false,
|
2017-04-29 03:11:55 +00:00
|
|
|
$t::Instant(_) => false,
|
Lookup refs, nested vector values, map notation. Fixes #180, fixes #183, fixes #284. (#382) r=rnewman
* Pre: Fix error in parser macros.
* Pre: Make test unwrapping more verbose.
* Pre: Make lookup refs be (lookup-ref a v) in the entity position.
This has the advantage of being explicit in all situations and
unambiguous at parse-time. This choice agrees with the Clojure
implementation but not with Datomic. Datomic treats [a v] as a lookup
ref, is ambiguous at parse-time, and is disambiguated in ways I do not
understand at transaction time. We mooted making lookup refs [[a v]]
and outlawing nested value vectors in transactions, but after
implementing that approach I decided it was better to handle lookup
refs at parse time and therefore outlawing nested value vectors is not
necessary.
* Handle lookup refs in the entity and value columns. Fixes #183.
* Pre 0a: Use a stack instead of into_iter.
* Pre 0b: Dedent.
* Pre 0c: Handle `e` after `v`.
This allows to use the original `e` while handling `v`.
* Explode value lists for :db.cardinality/many attributes. Fixes #284.
* Parse and accept map notation. Fixes #180.
* Pre: Modernize add() and retract() into one add_or_retract().
* Pre: Add is_collection and is_atom to edn::Value.
* Pre: Differentiate atoms from lookup-refs in value position.
Initially, I expected to accept arbitrary edn::Value instances in the
value position, and to differentiate in the transactor. However, the
implementation quickly became a two-stage parser, since we always
wanted to parse the resulting value position into some other known
thing using the tx-parser. To save calls into the parser and to allow
the parser to move forward with a smaller API surface, I push as much
of this parsing as possible into the initial parse.
* Pre: Modernize entities().
* Pre: Quote edn::Value::Text in Display.
* Review comment: Add and use edn::Value::into_atom.
* Review comment: Use skip(eof()) throughout.
* Review comment: VecDeque instead of Vec.
* Review comment: Part 0: Rename TempId to TempIdHandle.
* Review comment: Part 1: Differentiate internal and external tempids.
This breaks an abstraction boundary by pushing the Internal/External
split up to the Entity level in tx/ and tx-parser/. This just makes
it easier to explode Entity map notation instances into Entity
instances, taking an existing External tempid :db/id or generating a
new Internal tempid as appropriate. To do this without breaking the
abstraction boundary would require adding flexibility to the
transaction processor: we'd need to be able to turn Entity instances
into some internal enum and handle the two cases independently. It
wouldn't be too hard, but this reduces the combinatorial type
explosion.
2017-03-27 23:30:04 +00:00
|
|
|
$t::BigInteger(_) => false,
|
|
|
|
$t::Float(_) => false,
|
|
|
|
$t::Text(_) => false,
|
2017-04-29 03:11:55 +00:00
|
|
|
$t::Uuid(_) => false,
|
Lookup refs, nested vector values, map notation. Fixes #180, fixes #183, fixes #284. (#382) r=rnewman
* Pre: Fix error in parser macros.
* Pre: Make test unwrapping more verbose.
* Pre: Make lookup refs be (lookup-ref a v) in the entity position.
This has the advantage of being explicit in all situations and
unambiguous at parse-time. This choice agrees with the Clojure
implementation but not with Datomic. Datomic treats [a v] as a lookup
ref, is ambiguous at parse-time, and is disambiguated in ways I do not
understand at transaction time. We mooted making lookup refs [[a v]]
and outlawing nested value vectors in transactions, but after
implementing that approach I decided it was better to handle lookup
refs at parse time and therefore outlawing nested value vectors is not
necessary.
* Handle lookup refs in the entity and value columns. Fixes #183.
* Pre 0a: Use a stack instead of into_iter.
* Pre 0b: Dedent.
* Pre 0c: Handle `e` after `v`.
This allows to use the original `e` while handling `v`.
* Explode value lists for :db.cardinality/many attributes. Fixes #284.
* Parse and accept map notation. Fixes #180.
* Pre: Modernize add() and retract() into one add_or_retract().
* Pre: Add is_collection and is_atom to edn::Value.
* Pre: Differentiate atoms from lookup-refs in value position.
Initially, I expected to accept arbitrary edn::Value instances in the
value position, and to differentiate in the transactor. However, the
implementation quickly became a two-stage parser, since we always
wanted to parse the resulting value position into some other known
thing using the tx-parser. To save calls into the parser and to allow
the parser to move forward with a smaller API surface, I push as much
of this parsing as possible into the initial parse.
* Pre: Modernize entities().
* Pre: Quote edn::Value::Text in Display.
* Review comment: Add and use edn::Value::into_atom.
* Review comment: Use skip(eof()) throughout.
* Review comment: VecDeque instead of Vec.
* Review comment: Part 0: Rename TempId to TempIdHandle.
* Review comment: Part 1: Differentiate internal and external tempids.
This breaks an abstraction boundary by pushing the Internal/External
split up to the Entity level in tx/ and tx-parser/. This just makes
it easier to explode Entity map notation instances into Entity
instances, taking an existing External tempid :db/id or generating a
new Internal tempid as appropriate. To do this without breaking the
abstraction boundary would require adding flexibility to the
transaction processor: we'd need to be able to turn Entity instances
into some internal enum and handle the two cases independently. It
wouldn't be too hard, but this reduces the combinatorial type
explosion.
2017-03-27 23:30:04 +00:00
|
|
|
$t::PlainSymbol(_) => false,
|
|
|
|
$t::NamespacedSymbol(_) => false,
|
|
|
|
$t::Keyword(_) => false,
|
|
|
|
$t::NamespacedKeyword(_) => false,
|
|
|
|
$t::Vector(_) => true,
|
|
|
|
$t::List(_) => true,
|
|
|
|
$t::Set(_) => true,
|
|
|
|
$t::Map(_) => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_atom(&self) -> bool {
|
|
|
|
!self.is_collection()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_atom(self) -> Option<$t> {
|
|
|
|
if self.is_atom() {
|
|
|
|
Some(self)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Compares Value or SpannedValue instances and returns Ordering.
|
|
|
|
/// Used in `Ord` implementations.
|
|
|
|
macro_rules! def_common_value_ord {
|
|
|
|
( $t:tt, $value:expr, $other:expr ) => {
|
|
|
|
match ($value, $other) {
|
|
|
|
(&$t::Nil, &$t::Nil) => Ordering::Equal,
|
|
|
|
(&$t::Boolean(a), &$t::Boolean(b)) => b.cmp(&a),
|
|
|
|
(&$t::Integer(a), &$t::Integer(b)) => b.cmp(&a),
|
2017-04-29 03:11:55 +00:00
|
|
|
(&$t::Instant(a), &$t::Instant(b)) => b.cmp(&a),
|
2017-02-14 15:43:32 +00:00
|
|
|
(&$t::BigInteger(ref a), &$t::BigInteger(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Float(ref a), &$t::Float(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Text(ref a), &$t::Text(ref b)) => b.cmp(a),
|
2017-04-29 03:11:55 +00:00
|
|
|
(&$t::Uuid(ref a), &$t::Uuid(ref b)) => b.cmp(a),
|
2017-02-14 15:43:32 +00:00
|
|
|
(&$t::PlainSymbol(ref a), &$t::PlainSymbol(ref b)) => b.cmp(a),
|
|
|
|
(&$t::NamespacedSymbol(ref a), &$t::NamespacedSymbol(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Keyword(ref a), &$t::Keyword(ref b)) => b.cmp(a),
|
|
|
|
(&$t::NamespacedKeyword(ref a), &$t::NamespacedKeyword(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Vector(ref a), &$t::Vector(ref b)) => b.cmp(a),
|
|
|
|
(&$t::List(ref a), &$t::List(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Set(ref a), &$t::Set(ref b)) => b.cmp(a),
|
|
|
|
(&$t::Map(ref a), &$t::Map(ref b)) => b.cmp(a),
|
|
|
|
_ => $value.precedence().cmp(&$other.precedence())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts a Value or SpannedValue to string, given a formatter.
|
|
|
|
// TODO: Make sure float syntax is correct, handle NaN and escaping.
|
|
|
|
// See https://github.com/mozilla/mentat/issues/232
|
|
|
|
macro_rules! def_common_value_display {
|
|
|
|
( $t:tt, $value:expr, $f:expr ) => {
|
|
|
|
match *$value {
|
|
|
|
$t::Nil => write!($f, "nil"),
|
|
|
|
$t::Boolean(v) => write!($f, "{}", v),
|
|
|
|
$t::Integer(v) => write!($f, "{}", v),
|
2017-04-29 03:11:55 +00:00
|
|
|
$t::Instant(v) => write!($f, "{}", v),
|
2017-02-14 15:43:32 +00:00
|
|
|
$t::BigInteger(ref v) => write!($f, "{}N", v),
|
|
|
|
// TODO: make sure float syntax is correct.
|
|
|
|
$t::Float(ref v) => {
|
|
|
|
if *v == OrderedFloat(f64::INFINITY) {
|
|
|
|
write!($f, "#f +Infinity")
|
|
|
|
} else if *v == OrderedFloat(f64::NEG_INFINITY) {
|
|
|
|
write!($f, "#f -Infinity")
|
|
|
|
} else if *v == OrderedFloat(f64::NAN) {
|
|
|
|
write!($f, "#f NaN")
|
|
|
|
} else {
|
|
|
|
write!($f, "{}", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: EDN escaping.
|
Lookup refs, nested vector values, map notation. Fixes #180, fixes #183, fixes #284. (#382) r=rnewman
* Pre: Fix error in parser macros.
* Pre: Make test unwrapping more verbose.
* Pre: Make lookup refs be (lookup-ref a v) in the entity position.
This has the advantage of being explicit in all situations and
unambiguous at parse-time. This choice agrees with the Clojure
implementation but not with Datomic. Datomic treats [a v] as a lookup
ref, is ambiguous at parse-time, and is disambiguated in ways I do not
understand at transaction time. We mooted making lookup refs [[a v]]
and outlawing nested value vectors in transactions, but after
implementing that approach I decided it was better to handle lookup
refs at parse time and therefore outlawing nested value vectors is not
necessary.
* Handle lookup refs in the entity and value columns. Fixes #183.
* Pre 0a: Use a stack instead of into_iter.
* Pre 0b: Dedent.
* Pre 0c: Handle `e` after `v`.
This allows to use the original `e` while handling `v`.
* Explode value lists for :db.cardinality/many attributes. Fixes #284.
* Parse and accept map notation. Fixes #180.
* Pre: Modernize add() and retract() into one add_or_retract().
* Pre: Add is_collection and is_atom to edn::Value.
* Pre: Differentiate atoms from lookup-refs in value position.
Initially, I expected to accept arbitrary edn::Value instances in the
value position, and to differentiate in the transactor. However, the
implementation quickly became a two-stage parser, since we always
wanted to parse the resulting value position into some other known
thing using the tx-parser. To save calls into the parser and to allow
the parser to move forward with a smaller API surface, I push as much
of this parsing as possible into the initial parse.
* Pre: Modernize entities().
* Pre: Quote edn::Value::Text in Display.
* Review comment: Add and use edn::Value::into_atom.
* Review comment: Use skip(eof()) throughout.
* Review comment: VecDeque instead of Vec.
* Review comment: Part 0: Rename TempId to TempIdHandle.
* Review comment: Part 1: Differentiate internal and external tempids.
This breaks an abstraction boundary by pushing the Internal/External
split up to the Entity level in tx/ and tx-parser/. This just makes
it easier to explode Entity map notation instances into Entity
instances, taking an existing External tempid :db/id or generating a
new Internal tempid as appropriate. To do this without breaking the
abstraction boundary would require adding flexibility to the
transaction processor: we'd need to be able to turn Entity instances
into some internal enum and handle the two cases independently. It
wouldn't be too hard, but this reduces the combinatorial type
explosion.
2017-03-27 23:30:04 +00:00
|
|
|
$t::Text(ref v) => write!($f, "\"{}\"", v),
|
2017-04-29 03:11:55 +00:00
|
|
|
$t::Uuid(ref u) => write!($f, "#uuid \"{}\"", u.hyphenated().to_string()),
|
2017-02-14 15:43:32 +00:00
|
|
|
$t::PlainSymbol(ref v) => v.fmt($f),
|
|
|
|
$t::NamespacedSymbol(ref v) => v.fmt($f),
|
|
|
|
$t::Keyword(ref v) => v.fmt($f),
|
|
|
|
$t::NamespacedKeyword(ref v) => v.fmt($f),
|
|
|
|
$t::Vector(ref v) => {
|
|
|
|
write!($f, "[")?;
|
|
|
|
for x in v {
|
|
|
|
write!($f, " {}", x)?;
|
|
|
|
}
|
|
|
|
write!($f, " ]")
|
|
|
|
}
|
|
|
|
$t::List(ref v) => {
|
|
|
|
write!($f, "(")?;
|
|
|
|
for x in v {
|
|
|
|
write!($f, " {}", x)?;
|
|
|
|
}
|
|
|
|
write!($f, " )")
|
|
|
|
}
|
|
|
|
$t::Set(ref v) => {
|
|
|
|
write!($f, "#{{")?;
|
|
|
|
for x in v {
|
|
|
|
write!($f, " {}", x)?;
|
|
|
|
}
|
|
|
|
write!($f, " }}")
|
|
|
|
}
|
|
|
|
$t::Map(ref v) => {
|
|
|
|
write!($f, "{{")?;
|
|
|
|
for (key, val) in v {
|
|
|
|
write!($f, " {} {}", key, val)?;
|
|
|
|
}
|
|
|
|
write!($f, " }}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-21 10:15:22 +00:00
|
|
|
macro_rules! def_common_value_impl {
|
|
|
|
( $t:tt<$tchild:tt> ) => {
|
|
|
|
impl $t {
|
|
|
|
def_common_value_methods!($t<$tchild>);
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2017-02-21 10:15:22 +00:00
|
|
|
impl PartialOrd for $t {
|
|
|
|
fn partial_cmp(&self, other: &$t) -> Option<Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2017-02-21 10:15:22 +00:00
|
|
|
impl Ord for $t {
|
|
|
|
fn cmp(&self, other: &$t) -> Ordering {
|
|
|
|
def_common_value_ord!($t, self, other)
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2017-02-21 10:15:22 +00:00
|
|
|
impl Display for $t {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> ::std::fmt::Result {
|
|
|
|
def_common_value_display!($t, self, f)
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 15:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-21 10:15:22 +00:00
|
|
|
def_common_value_impl!(Value<Value>);
|
|
|
|
def_common_value_impl!(SpannedValue<ValueAndSpan>);
|
|
|
|
|
|
|
|
impl ValueAndSpan {
|
|
|
|
pub fn without_spans(self) -> Value {
|
|
|
|
self.inner.into()
|
2017-02-14 15:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialOrd for ValueAndSpan {
|
|
|
|
fn partial_cmp(&self, other: &ValueAndSpan) -> Option<Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for ValueAndSpan {
|
|
|
|
fn cmp(&self, other: &ValueAndSpan) -> Ordering {
|
|
|
|
self.inner.cmp(&other.inner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for ValueAndSpan {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> ::std::fmt::Result {
|
|
|
|
self.inner.fmt(f)
|
|
|
|
}
|
2017-02-02 14:08:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-29 03:11:55 +00:00
|
|
|
pub trait FromMicros {
|
|
|
|
fn from_micros(ts: i64) -> Self;
|
|
|
|
}
|
|
|
|
|
2017-11-21 16:24:08 +00:00
|
|
|
impl FromMicros for DateTime<Utc> {
|
2017-04-29 03:11:55 +00:00
|
|
|
fn from_micros(ts: i64) -> Self {
|
2017-11-21 16:24:08 +00:00
|
|
|
Utc.timestamp(ts / 1_000_000, ((ts % 1_000_000).abs() as u32) * 1_000)
|
2017-04-29 03:11:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait ToMicros {
|
|
|
|
fn to_micros(&self) -> i64;
|
|
|
|
}
|
|
|
|
|
2017-11-21 16:24:08 +00:00
|
|
|
impl ToMicros for DateTime<Utc> {
|
2017-04-29 03:11:55 +00:00
|
|
|
fn to_micros(&self) -> i64 {
|
2017-06-16 15:00:14 +00:00
|
|
|
let major: i64 = self.timestamp() * 1_000_000;
|
|
|
|
let minor: i64 = self.timestamp_subsec_micros() as i64;
|
|
|
|
major + minor
|
2017-04-29 03:11:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-02 14:08:00 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2017-04-29 03:11:55 +00:00
|
|
|
extern crate chrono;
|
2017-02-02 14:08:00 +00:00
|
|
|
extern crate ordered_float;
|
|
|
|
extern crate num;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
use std::collections::{BTreeSet, BTreeMap, LinkedList};
|
|
|
|
use std::cmp::{Ordering};
|
2017-02-04 07:45:51 +00:00
|
|
|
use std::iter::FromIterator;
|
2017-02-03 18:14:23 +00:00
|
|
|
use std::f64;
|
2017-02-02 14:08:00 +00:00
|
|
|
|
2017-02-04 07:45:51 +00:00
|
|
|
use parse;
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2017-04-29 03:11:55 +00:00
|
|
|
use chrono::{
|
|
|
|
DateTime,
|
2017-11-21 16:24:08 +00:00
|
|
|
Utc,
|
2017-04-29 03:11:55 +00:00
|
|
|
};
|
2017-02-02 14:08:00 +00:00
|
|
|
use num::BigInt;
|
|
|
|
use ordered_float::OrderedFloat;
|
|
|
|
|
2017-04-29 03:11:55 +00:00
|
|
|
#[test]
|
|
|
|
fn test_micros_roundtrip() {
|
|
|
|
let ts_micros: i64 = 1493399581314000;
|
2017-11-21 16:24:08 +00:00
|
|
|
let dt = DateTime::<Utc>::from_micros(ts_micros);
|
2017-04-29 03:11:55 +00:00
|
|
|
assert_eq!(dt.to_micros(), ts_micros);
|
|
|
|
}
|
|
|
|
|
2017-02-02 14:08:00 +00:00
|
|
|
#[test]
|
|
|
|
fn test_value_from() {
|
2017-02-14 15:43:32 +00:00
|
|
|
assert_eq!(Value::from_float(42f64), Value::Float(OrderedFloat::from(42f64)));
|
|
|
|
assert_eq!(Value::from_ordered_float(OrderedFloat::from(42f64)), Value::Float(OrderedFloat::from(42f64)));
|
2017-02-02 14:08:00 +00:00
|
|
|
assert_eq!(Value::from_bigint("42").unwrap(), Value::BigInteger(BigInt::from(42)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_print_edn() {
|
2018-03-06 04:33:51 +00:00
|
|
|
assert_eq!("1234N", Value::from_bigint("1234").unwrap().to_string());
|
|
|
|
|
2017-02-04 07:45:51 +00:00
|
|
|
let string = "[ 1 2 ( 3.14 ) #{ 4N } { foo/bar 42 :baz/boz 43 } [ ] :five :six/seven eight nine/ten true false nil #f NaN #f -Infinity #f +Infinity ]";
|
2018-03-06 04:33:51 +00:00
|
|
|
|
2017-02-04 07:45:51 +00:00
|
|
|
let data = Value::Vector(vec![
|
|
|
|
Value::Integer(1),
|
|
|
|
Value::Integer(2),
|
|
|
|
Value::List(LinkedList::from_iter(vec![
|
2017-02-14 15:43:32 +00:00
|
|
|
Value::from_float(3.14)
|
2017-02-04 07:45:51 +00:00
|
|
|
])),
|
|
|
|
Value::Set(BTreeSet::from_iter(vec![
|
|
|
|
Value::from_bigint("4").unwrap()
|
|
|
|
])),
|
|
|
|
Value::Map(BTreeMap::from_iter(vec![
|
|
|
|
(Value::from_symbol("foo", "bar"), Value::Integer(42)),
|
|
|
|
(Value::from_keyword("baz", "boz"), Value::Integer(43))
|
|
|
|
])),
|
|
|
|
Value::Vector(vec![]),
|
2017-02-14 15:43:32 +00:00
|
|
|
Value::from_keyword(None, "five"),
|
|
|
|
Value::from_keyword("six", "seven"),
|
|
|
|
Value::from_symbol(None, "eight"),
|
|
|
|
Value::from_symbol("nine", "ten"),
|
2017-02-04 07:45:51 +00:00
|
|
|
Value::Boolean(true),
|
|
|
|
Value::Boolean(false),
|
|
|
|
Value::Nil,
|
2017-02-14 15:43:32 +00:00
|
|
|
Value::from_float(f64::NAN),
|
|
|
|
Value::from_float(f64::NEG_INFINITY),
|
|
|
|
Value::from_float(f64::INFINITY),
|
2017-02-04 07:45:51 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
assert_eq!(string, data.to_string());
|
|
|
|
assert_eq!(string, parse::value(&data.to_string()).unwrap().to_string());
|
2017-02-14 15:43:32 +00:00
|
|
|
assert_eq!(string, parse::value(&data.to_string()).unwrap().without_spans().to_string());
|
2017-02-02 14:08:00 +00:00
|
|
|
}
|
2017-02-02 14:38:38 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ord() {
|
|
|
|
// TODO: Check we follow the equality rules at the bottom of https://github.com/edn-format/edn
|
|
|
|
assert_eq!(Value::Nil.cmp(&Value::Nil), Ordering::Equal);
|
|
|
|
assert_eq!(Value::Boolean(false).cmp(&Value::Boolean(true)), Ordering::Greater);
|
|
|
|
assert_eq!(Value::Integer(1).cmp(&Value::Integer(2)), Ordering::Greater);
|
|
|
|
assert_eq!(Value::from_bigint("1").cmp(&Value::from_bigint("2")), Ordering::Greater);
|
2017-02-14 15:43:32 +00:00
|
|
|
assert_eq!(Value::from_float(1f64).cmp(&Value::from_float(2f64)), Ordering::Greater);
|
2017-02-02 14:38:38 +00:00
|
|
|
assert_eq!(Value::Text("1".to_string()).cmp(&Value::Text("2".to_string())), Ordering::Greater);
|
|
|
|
assert_eq!(Value::from_symbol("a", "b").cmp(&Value::from_symbol("c", "d")), Ordering::Greater);
|
|
|
|
assert_eq!(Value::from_symbol(None, "a").cmp(&Value::from_symbol(None, "b")), Ordering::Greater);
|
|
|
|
assert_eq!(Value::from_keyword(":a", ":b").cmp(&Value::from_keyword(":c", ":d")), Ordering::Greater);
|
|
|
|
assert_eq!(Value::from_keyword(None, ":a").cmp(&Value::from_keyword(None, ":b")), Ordering::Greater);
|
|
|
|
assert_eq!(Value::Vector(vec![]).cmp(&Value::Vector(vec![])), Ordering::Equal);
|
|
|
|
assert_eq!(Value::List(LinkedList::new()).cmp(&Value::List(LinkedList::new())), Ordering::Equal);
|
|
|
|
assert_eq!(Value::Set(BTreeSet::new()).cmp(&Value::Set(BTreeSet::new())), Ordering::Equal);
|
|
|
|
assert_eq!(Value::Map(BTreeMap::new()).cmp(&Value::Map(BTreeMap::new())), Ordering::Equal);
|
|
|
|
}
|
2017-02-03 18:14:23 +00:00
|
|
|
}
|