5b770a54cd
* Make Variable::from_symbol public. * Implement basic parsing of queries. * Use pinned dependencies the hard way to fix Travis. * Bump ordered-float dependency to 0.4.0. * Error coercions to use ?, and finishing the find interface.
151 lines
5.1 KiB
Rust
151 lines
5.1 KiB
Rust
// 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.
|
|
|
|
extern crate edn;
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
/// Take a slice of EDN values, as would be extracted from an
|
|
/// `edn::Value::Vector`, and turn it into a map.
|
|
///
|
|
/// The slice must consist of subsequences of an initial plain
|
|
/// keyword, followed by one or more non-plain-keyword values.
|
|
///
|
|
/// The plain keywords are used as keys into the resulting map.
|
|
/// The values are accumulated into vectors.
|
|
///
|
|
/// Invalid input causes this function to return `None`.
|
|
///
|
|
/// TODO: this function can be generalized to take an arbitrary
|
|
/// destructuring/break function, yielding a map with a custom
|
|
/// key type and splitting in the right places.
|
|
pub fn vec_to_keyword_map(vec: &[edn::Value]) -> Option<BTreeMap<edn::Keyword, Vec<edn::Value>>> {
|
|
let mut m = BTreeMap::new();
|
|
|
|
if vec.is_empty() {
|
|
return Some(m);
|
|
}
|
|
|
|
if vec.len() == 1 {
|
|
return None;
|
|
}
|
|
|
|
// Turn something like
|
|
//
|
|
// `[:foo 1 2 3 :bar 4 5 6]`
|
|
//
|
|
// into
|
|
//
|
|
// `Some((:foo, [1 2 3]))`
|
|
fn step(slice: &[edn::Value]) -> Option<(edn::Keyword, Vec<edn::Value>)> {
|
|
// [:foo 1 2 3 :bar] is invalid: nothing follows `:bar`.
|
|
if slice.len() < 2 {
|
|
return None;
|
|
}
|
|
|
|
// The first item must be a keyword.
|
|
if let edn::Value::Keyword(ref k) = slice[0] {
|
|
|
|
// The second can't be: [:foo :bar 1 2 3] is invalid.
|
|
if slice[1].is_keyword() {
|
|
return None;
|
|
}
|
|
|
|
// Accumulate items until we reach the next keyword.
|
|
let mut acc = Vec::new();
|
|
for v in &slice[1..] {
|
|
if v.is_keyword() {
|
|
break;
|
|
}
|
|
acc.push(v.clone());
|
|
}
|
|
return Some((k.clone(), acc));
|
|
}
|
|
|
|
None
|
|
}
|
|
|
|
let mut bits = vec;
|
|
while !bits.is_empty() {
|
|
match step(bits) {
|
|
Some((k, v)) => {
|
|
bits = &bits[(v.len() + 1)..];
|
|
|
|
// Duplicate keys aren't allowed.
|
|
if m.contains_key(&k) {
|
|
return None;
|
|
}
|
|
m.insert(k, v);
|
|
},
|
|
None => return None,
|
|
}
|
|
}
|
|
return Some(m);
|
|
}
|
|
|
|
#[test]
|
|
fn test_vec_to_keyword_map() {
|
|
let foo = edn::symbols::Keyword("foo".to_string());
|
|
let bar = edn::symbols::Keyword("bar".to_string());
|
|
let baz = edn::symbols::Keyword("baz".to_string());
|
|
|
|
// [:foo 1 2 3 :bar 4]
|
|
let input = vec!(edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Integer(1),
|
|
edn::Value::Integer(2),
|
|
edn::Value::Integer(3),
|
|
edn::Value::Keyword(bar.clone()),
|
|
edn::Value::Integer(4));
|
|
|
|
let m = vec_to_keyword_map(&input).unwrap();
|
|
|
|
assert!(m.contains_key(&foo));
|
|
assert!(m.contains_key(&bar));
|
|
assert!(!m.contains_key(&baz));
|
|
|
|
let onetwothree = vec!(edn::Value::Integer(1),
|
|
edn::Value::Integer(2),
|
|
edn::Value::Integer(3));
|
|
let four = vec!(edn::Value::Integer(4));
|
|
|
|
assert_eq!(m.get(&foo).unwrap(), &onetwothree);
|
|
assert_eq!(m.get(&bar).unwrap(), &four);
|
|
|
|
// Trailing keywords aren't allowed.
|
|
assert_eq!(None,
|
|
vec_to_keyword_map(&vec!(edn::Value::Keyword(foo.clone()))));
|
|
assert_eq!(None,
|
|
vec_to_keyword_map(&vec!(edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Integer(2),
|
|
edn::Value::Keyword(bar.clone()))));
|
|
|
|
// Duplicate keywords aren't allowed.
|
|
assert_eq!(None,
|
|
vec_to_keyword_map(&vec!(edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Integer(2),
|
|
edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Integer(1))));
|
|
|
|
// Starting with anything but a keyword isn't allowed.
|
|
assert_eq!(None,
|
|
vec_to_keyword_map(&vec!(edn::Value::Integer(2),
|
|
edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Integer(1))));
|
|
|
|
// Consecutive keywords aren't allowed.
|
|
assert_eq!(None,
|
|
vec_to_keyword_map(&vec!(edn::Value::Keyword(foo.clone()),
|
|
edn::Value::Keyword(bar.clone()),
|
|
edn::Value::Integer(1))));
|
|
|
|
// Empty lists return an empty map.
|
|
assert_eq!(BTreeMap::new(), vec_to_keyword_map(&vec!()).unwrap());
|
|
}
|
|
|