2017-01-06 15:15:57 +00:00
|
|
|
/* vim: set filetype=rust.rustpeg */
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
use std::collections::{BTreeSet, BTreeMap, LinkedList};
|
|
|
|
use std::iter::FromIterator;
|
2017-02-03 18:14:23 +00:00
|
|
|
use std::f64::{NAN, INFINITY, NEG_INFINITY};
|
2017-01-11 21:51:34 +00:00
|
|
|
|
2017-04-29 03:11:55 +00:00
|
|
|
use chrono::{
|
|
|
|
DateTime,
|
|
|
|
TimeZone,
|
2017-11-21 16:24:08 +00:00
|
|
|
Utc
|
2017-04-29 03:11:55 +00:00
|
|
|
};
|
2017-01-06 15:15:57 +00:00
|
|
|
use num::BigInt;
|
|
|
|
use ordered_float::OrderedFloat;
|
2017-04-29 03:11:55 +00:00
|
|
|
use uuid::Uuid;
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2018-05-07 17:32:28 +00:00
|
|
|
use entities::*;
|
|
|
|
use symbols::*;
|
2017-02-14 15:43:32 +00:00
|
|
|
use types::{SpannedValue, Span, ValueAndSpan};
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
// Goal: Be able to parse https://github.com/edn-format/edn
|
|
|
|
// Also extensible to help parse http://docs.datomic.com/query.html
|
|
|
|
|
|
|
|
// Debugging hint: test using `cargo test --features peg/trace -- --nocapture`
|
|
|
|
// to trace where the parser is failing
|
|
|
|
|
|
|
|
// TODO: Support tagged elements
|
|
|
|
// TODO: Support discard
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub nil -> SpannedValue = "nil" { SpannedValue::Nil }
|
|
|
|
pub nan -> SpannedValue = "#f" whitespace+ "NaN" { SpannedValue::Float(OrderedFloat(NAN)) }
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub infinity -> SpannedValue = "#f" whitespace+ s:$(sign) "Infinity"
|
|
|
|
{ SpannedValue::Float(OrderedFloat(if s == "+" { INFINITY } else { NEG_INFINITY })) }
|
2017-02-03 18:14:23 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub boolean -> SpannedValue
|
|
|
|
= "true" { SpannedValue::Boolean(true) }
|
|
|
|
/ "false" { SpannedValue::Boolean(false) }
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
digit = [0-9]
|
2017-02-11 00:03:35 +00:00
|
|
|
alphanumeric = [0-9a-zA-Z]
|
|
|
|
octaldigit = [0-7]
|
|
|
|
validbase = [3][0-6] / [12][0-9] / [2-9]
|
|
|
|
hex = [0-9a-fA-F]
|
2018-03-06 04:33:51 +00:00
|
|
|
sign = [+-]
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-05-07 17:32:28 +00:00
|
|
|
pub raw_bigint -> BigInt = b:$( sign? digit+ ) "N"
|
|
|
|
{ b.parse::<BigInt>().unwrap() }
|
|
|
|
pub raw_octalinteger -> i64 = "0" i:$( octaldigit+ )
|
|
|
|
{ i64::from_str_radix(i, 8).unwrap() }
|
|
|
|
pub raw_hexinteger -> i64 = "0x" i:$( hex+ )
|
|
|
|
{ i64::from_str_radix(i, 16).unwrap() }
|
|
|
|
pub raw_basedinteger -> i64 = b:$( validbase ) "r" i:$( alphanumeric+ )
|
|
|
|
{ i64::from_str_radix(i, b.parse::<u32>().unwrap()).unwrap() }
|
|
|
|
pub raw_integer -> i64 = i:$( sign? digit+ ) !("." / ([eE]))
|
|
|
|
{ i.parse::<i64>().unwrap() }
|
|
|
|
pub raw_float -> OrderedFloat<f64> = f:$(sign? digit+ ("." digit+)? ([eE] sign? digit+)?)
|
|
|
|
{ OrderedFloat(f.parse::<f64>().unwrap()) }
|
|
|
|
|
|
|
|
pub bigint -> SpannedValue = v:raw_bigint { SpannedValue::BigInteger(v) }
|
|
|
|
pub octalinteger -> SpannedValue = v:raw_octalinteger { SpannedValue::Integer(v) }
|
|
|
|
pub hexinteger -> SpannedValue = v:raw_hexinteger { SpannedValue::Integer(v) }
|
|
|
|
pub basedinteger -> SpannedValue = v:raw_basedinteger { SpannedValue::Integer(v) }
|
|
|
|
pub integer -> SpannedValue = v:raw_integer { SpannedValue::Integer(v) }
|
|
|
|
pub float -> SpannedValue = v:raw_float { SpannedValue::Float(v) }
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
number -> SpannedValue = ( bigint / basedinteger / hexinteger / octalinteger / integer / float )
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-03-15 14:13:27 +00:00
|
|
|
// TODO: standalone characters: \<char>, \newline, \return, \space and \tab.
|
|
|
|
|
|
|
|
string_special_char -> &'input str = "\\" $([\\"ntr])
|
|
|
|
string_normal_chars -> &'input str = $([^"\\]+)
|
|
|
|
|
|
|
|
// This is what we need to do in order to unescape. We can't just match the entire string slice:
|
|
|
|
// we get a Vec<&str> from rust-peg, where some of the parts might be unescaped special characters,
|
|
|
|
// and we join it together to form an output string.
|
|
|
|
// E.g., input = r#"\"foo\\\\bar\""#
|
|
|
|
// output = [quote, "foo", backslash, "bar", quote]
|
|
|
|
// result = r#""foo\\bar""#
|
|
|
|
// For the typical case, string_normal_chars will match multiple, leading to a single-element vec.
|
2018-05-07 17:32:28 +00:00
|
|
|
pub raw_text -> String = "\"" t:((string_special_char / string_normal_chars)*) "\""
|
|
|
|
{ t.join(&"").to_string() }
|
|
|
|
|
|
|
|
pub text -> SpannedValue
|
|
|
|
= v:raw_text { SpannedValue::Text(v) }
|
2017-04-29 03:11:55 +00:00
|
|
|
|
|
|
|
// RFC 3339 timestamps. #inst "1985-04-12T23:20:50.52Z"
|
|
|
|
// We accept an arbitrary depth of decimals.
|
|
|
|
// Note that we discard the timezone information -- all times are translated to UTC.
|
2018-03-06 04:33:51 +00:00
|
|
|
inst_string -> DateTime<Utc> =
|
2017-04-29 03:11:55 +00:00
|
|
|
"#inst" whitespace+ "\"" d:$( [0-9]*<4> "-" [0-2][0-9] "-" [0-3][0-9]
|
|
|
|
"T"
|
|
|
|
[0-2][0-9] ":" [0-5][0-9] ":" [0-6][0-9]
|
|
|
|
("." [0-9]+)?
|
2018-05-11 09:11:04 +00:00
|
|
|
("Z" / (("+" / "-") [0-2][0-9] ":" [0-5][0-9]))
|
2017-04-29 03:11:55 +00:00
|
|
|
)
|
|
|
|
"\"" {?
|
|
|
|
DateTime::parse_from_rfc3339(d)
|
2017-11-21 16:24:08 +00:00
|
|
|
.map(|t| t.with_timezone(&Utc))
|
2017-04-29 03:11:55 +00:00
|
|
|
.map_err(|_| "invalid datetime") // Oh, rustpeg.
|
|
|
|
}
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
inst_micros -> DateTime<Utc> =
|
2017-04-29 03:11:55 +00:00
|
|
|
"#instmicros" whitespace+ d:$( digit+ ) {
|
|
|
|
let micros = d.parse::<i64>().unwrap();
|
|
|
|
let seconds: i64 = micros / 1000000;
|
|
|
|
let nanos: u32 = ((micros % 1000000).abs() as u32) * 1000;
|
2017-11-21 16:24:08 +00:00
|
|
|
Utc.timestamp(seconds, nanos)
|
2017-04-29 03:11:55 +00:00
|
|
|
}
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
inst_millis -> DateTime<Utc> =
|
2017-04-29 03:11:55 +00:00
|
|
|
"#instmillis" whitespace+ d:$( digit+ ) {
|
|
|
|
let millis = d.parse::<i64>().unwrap();
|
|
|
|
let seconds: i64 = millis / 1000;
|
|
|
|
let nanos: u32 = ((millis % 1000).abs() as u32) * 1000000;
|
2017-11-21 16:24:08 +00:00
|
|
|
Utc.timestamp(seconds, nanos)
|
2017-04-29 03:11:55 +00:00
|
|
|
}
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
inst -> SpannedValue = t:(inst_millis / inst_micros / inst_string)
|
|
|
|
{ SpannedValue::Instant(t) }
|
2017-04-29 03:11:55 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
uuid_string -> Uuid =
|
2017-04-29 03:11:55 +00:00
|
|
|
"\"" u:$( [a-f0-9]*<8> "-" [a-f0-9]*<4> "-" [a-f0-9]*<4> "-" [a-f0-9]*<4> "-" [a-f0-9]*<12> ) "\"" {
|
|
|
|
Uuid::parse_str(u).expect("this is a valid UUID string")
|
|
|
|
}
|
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub uuid -> SpannedValue = "#uuid" whitespace+ u:uuid_string
|
|
|
|
{ SpannedValue::Uuid(u) }
|
2017-04-29 03:11:55 +00:00
|
|
|
|
2017-01-11 21:51:34 +00:00
|
|
|
namespace_divider = "."
|
|
|
|
namespace_separator = "/"
|
|
|
|
|
2017-01-06 15:15:57 +00:00
|
|
|
// TODO: Be more picky here
|
2017-02-02 10:52:34 +00:00
|
|
|
// Keywords follow the rules of symbols, except they can (and must) begin with :
|
|
|
|
// e.g. :fred or :my/fred. See https://github.com/edn-format/edn#keywords
|
2018-03-06 04:33:51 +00:00
|
|
|
symbol_char_initial = [a-zA-Z0-9*!_?$%&=<>]
|
|
|
|
symbol_char_subsequent = [a-zA-Z0-9*!_?$%&=<>-]
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2017-02-02 10:52:34 +00:00
|
|
|
symbol_namespace = symbol_char_initial symbol_char_subsequent* (namespace_divider symbol_char_subsequent+)*
|
2017-03-06 22:55:14 +00:00
|
|
|
symbol_name = ( symbol_char_initial+ symbol_char_subsequent* )
|
|
|
|
plain_symbol_name = symbol_name / "..." / "."
|
2017-01-11 21:51:34 +00:00
|
|
|
|
|
|
|
keyword_prefix = ":"
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub symbol -> SpannedValue =
|
2017-02-14 15:43:32 +00:00
|
|
|
ns:( sns:$(symbol_namespace) namespace_separator { sns })?
|
2017-03-06 22:55:14 +00:00
|
|
|
n:$(plain_symbol_name)
|
2018-03-06 04:33:51 +00:00
|
|
|
{ SpannedValue::from_symbol(ns, n) }
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub keyword -> SpannedValue =
|
2017-02-14 15:43:32 +00:00
|
|
|
keyword_prefix
|
|
|
|
ns:( sns:$(symbol_namespace) namespace_separator { sns })?
|
|
|
|
n:$(symbol_name)
|
2018-03-06 04:33:51 +00:00
|
|
|
{ SpannedValue::from_keyword(ns, n) }
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub list -> SpannedValue = "(" __ v:(value)* __ ")"
|
|
|
|
{ SpannedValue::List(LinkedList::from_iter(v)) }
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub vector -> SpannedValue = "[" __ v:(value)* __ "]"
|
|
|
|
{ SpannedValue::Vector(v) }
|
2017-02-14 15:43:32 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub set -> SpannedValue = "#{" __ v:(value)* __ "}"
|
|
|
|
{ SpannedValue::Set(BTreeSet::from_iter(v)) }
|
2017-02-14 15:43:32 +00:00
|
|
|
|
|
|
|
pair -> (ValueAndSpan, ValueAndSpan) =
|
2017-02-02 10:36:53 +00:00
|
|
|
k:(value) v:(value) {
|
|
|
|
(k, v)
|
|
|
|
}
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2018-03-06 04:33:51 +00:00
|
|
|
pub map -> SpannedValue = "{" __ v:(pair)* __ "}"
|
|
|
|
{ SpannedValue::Map(BTreeMap::from_iter(v)) }
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
// It's important that float comes before integer or the parser assumes that
|
|
|
|
// floats are integers and fails to parse
|
2017-02-14 15:43:32 +00:00
|
|
|
pub value -> ValueAndSpan =
|
2018-03-06 04:33:51 +00:00
|
|
|
__ start:#position v:(nil / nan / infinity / boolean / number / inst / uuid / text / keyword / symbol / list / vector / map / set) end:#position __ {
|
|
|
|
ValueAndSpan {
|
|
|
|
inner: v,
|
|
|
|
span: Span::new(start, end)
|
|
|
|
}
|
2017-02-02 10:36:53 +00:00
|
|
|
}
|
2017-01-17 19:26:45 +00:00
|
|
|
|
2018-05-07 17:32:28 +00:00
|
|
|
atom -> ValueAndSpan
|
|
|
|
= v:value {? if v.is_atom() { Ok(v) } else { Err("expected atom") } }
|
|
|
|
|
2017-01-17 19:26:45 +00:00
|
|
|
// Clojure (and thus EDN) regards commas as whitespace, and thus the two-element vectors [1 2] and
|
|
|
|
// [1,,,,2] are equivalent, as are the maps {:a 1, :b 2} and {:a 1 :b 2}.
|
2018-05-07 17:32:28 +00:00
|
|
|
whitespace = #quiet<[ \r\n\t,]>
|
|
|
|
comment = #quiet<";" [^\r\n]* [\r\n]?>
|
2017-01-06 15:15:57 +00:00
|
|
|
|
2017-01-17 19:25:31 +00:00
|
|
|
__ = (whitespace / comment)*
|
2018-05-07 17:32:28 +00:00
|
|
|
|
|
|
|
pub op -> OpType
|
|
|
|
= ":db/add" { OpType::Add }
|
|
|
|
/ ":db/retract" { OpType::Retract }
|
|
|
|
|
2018-05-11 16:52:17 +00:00
|
|
|
raw_keyword -> Keyword
|
|
|
|
= keyword_prefix ns:$(symbol_namespace) namespace_separator n:$(symbol_name) { Keyword::namespaced(ns, n) }
|
2018-05-07 17:32:28 +00:00
|
|
|
|
2018-05-11 16:52:17 +00:00
|
|
|
raw_forward_keyword -> Keyword
|
2018-05-07 17:32:28 +00:00
|
|
|
= v:raw_keyword {? if v.is_forward() { Ok(v) } else { Err("expected :forward/keyword") } }
|
|
|
|
|
2018-05-11 16:52:17 +00:00
|
|
|
raw_backward_keyword -> Keyword
|
2018-05-07 17:32:28 +00:00
|
|
|
= v:raw_keyword {? if v.is_backward() { Ok(v) } else { Err("expected :backward/_keyword") } }
|
|
|
|
|
|
|
|
entid -> Entid
|
|
|
|
= v:( raw_basedinteger / raw_hexinteger / raw_octalinteger / raw_integer ) { Entid::Entid(v) }
|
|
|
|
/ v:raw_keyword { Entid::Ident(v) }
|
|
|
|
|
|
|
|
forward_entid -> Entid
|
|
|
|
= v:( raw_basedinteger / raw_hexinteger / raw_octalinteger / raw_integer ) { Entid::Entid(v) }
|
|
|
|
/ v:raw_forward_keyword { Entid::Ident(v) }
|
|
|
|
|
|
|
|
backward_entid -> Entid
|
|
|
|
= v:raw_backward_keyword { Entid::Ident(v.to_reversed()) }
|
|
|
|
|
|
|
|
lookup_ref -> LookupRef
|
|
|
|
= "(" __ "lookup-ref" __ a:(entid) __ v:(value) __ ")" { LookupRef { a, v: v.without_spans() } }
|
|
|
|
|
|
|
|
tx_function -> TxFunction
|
2018-05-11 16:52:17 +00:00
|
|
|
= "(" __ n:$(symbol_name) __ ")" { TxFunction { op: PlainSymbol::plain(n) } }
|
2018-05-07 17:32:28 +00:00
|
|
|
|
|
|
|
entity_place -> EntidOrLookupRefOrTempId
|
|
|
|
= v:raw_text { EntidOrLookupRefOrTempId::TempId(TempId::External(v)) }
|
|
|
|
/ v:entid { EntidOrLookupRefOrTempId::Entid(v) }
|
|
|
|
/ v:lookup_ref { EntidOrLookupRefOrTempId::LookupRef(v) }
|
|
|
|
/ v:tx_function { EntidOrLookupRefOrTempId::TxFunction(v) }
|
|
|
|
|
|
|
|
value_place_pair -> (Entid, AtomOrLookupRefOrVectorOrMapNotation)
|
|
|
|
= k:(entid) __ v:(value_place) { (k, v) }
|
|
|
|
|
|
|
|
map_notation -> MapNotation
|
|
|
|
= "{" __ kvs:(value_place_pair*) __ "}" { kvs.into_iter().collect() }
|
|
|
|
|
|
|
|
value_place -> AtomOrLookupRefOrVectorOrMapNotation
|
|
|
|
= __ v:lookup_ref __ { AtomOrLookupRefOrVectorOrMapNotation::LookupRef(v) }
|
|
|
|
/ __ v:tx_function __ { AtomOrLookupRefOrVectorOrMapNotation::TxFunction(v) }
|
|
|
|
/ __ "[" __ vs:(value_place*) __ "]" __ { AtomOrLookupRefOrVectorOrMapNotation::Vector(vs) }
|
|
|
|
/ __ v:map_notation __ { AtomOrLookupRefOrVectorOrMapNotation::MapNotation(v) }
|
|
|
|
/ __ v:atom __ { AtomOrLookupRefOrVectorOrMapNotation::Atom(v) }
|
|
|
|
|
|
|
|
pub entity -> Entity
|
|
|
|
= __ "[" __ op:(op) __ e:(entity_place) __ a:(forward_entid) __ v:(value_place) __ "]" __ { Entity::AddOrRetract { op, e: e, a, v: v } }
|
|
|
|
/ __ "[" __ op:(op) __ e:(value_place) __ a:(backward_entid) __ v:(entity_place) __ "]" __ { Entity::AddOrRetract { op, e: v, a, v: e } }
|
|
|
|
/ __ map:map_notation __ { Entity::MapNotation(map) }
|
|
|
|
|
|
|
|
pub entities -> Vec<Entity>
|
|
|
|
= __ "[" __ es:(entity*) __ "]" __ { es }
|