2017-02-21 19:48:08 +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.
|
|
|
|
|
|
|
|
use itertools::Itertools;
|
|
|
|
use pretty;
|
|
|
|
|
|
|
|
use std::io;
|
|
|
|
use std::borrow::Cow;
|
|
|
|
|
|
|
|
use types::Value;
|
|
|
|
|
|
|
|
impl Value {
|
|
|
|
/// Return a pretty string representation of this `Value`.
|
|
|
|
pub fn to_pretty(&self, width: usize) -> Result<String, io::Error> {
|
|
|
|
let mut out = Vec::new();
|
|
|
|
self.write_pretty(width, &mut out)?;
|
|
|
|
Ok(String::from_utf8_lossy(&out).into_owned())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write a pretty representation of this `Value` to the given writer.
|
2018-03-06 17:03:00 +00:00
|
|
|
fn write_pretty<W>(&self, width: usize, out: &mut W) -> Result<(), io::Error> where W: io::Write {
|
2017-02-21 19:48:08 +00:00
|
|
|
self.as_doc(&pretty::BoxAllocator).1.render(width, out)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Bracket a collection of values.
|
|
|
|
///
|
|
|
|
/// We aim for
|
|
|
|
/// [1 2 3]
|
|
|
|
/// and fall back if necessary to
|
|
|
|
/// [1,
|
|
|
|
/// 2,
|
|
|
|
/// 3].
|
|
|
|
fn bracket<'a, A, T, I>(&'a self, allocator: &'a A, open: T, vs: I, close: T) -> pretty::DocBuilder<'a, A>
|
2017-02-22 17:11:05 +00:00
|
|
|
where A: pretty::DocAllocator<'a>, T: Into<Cow<'a, str>>, I: IntoIterator<Item=&'a Value> {
|
2017-02-21 19:48:08 +00:00
|
|
|
let open = open.into();
|
|
|
|
let n = open.len();
|
2017-02-22 17:11:05 +00:00
|
|
|
let i = vs.into_iter().map(|v| v.as_doc(allocator)).intersperse(allocator.space());
|
2017-02-21 19:48:08 +00:00
|
|
|
allocator.text(open)
|
|
|
|
.append(allocator.concat(i).nest(n))
|
|
|
|
.append(allocator.text(close))
|
|
|
|
.group()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Recursively traverses this value and creates a pretty.rs document.
|
|
|
|
/// This pretty printing implementation is optimized for edn queries
|
|
|
|
/// readability and limited whitespace expansion.
|
2018-03-06 17:03:00 +00:00
|
|
|
fn as_doc<'a, A>(&'a self, pp: &'a A) -> pretty::DocBuilder<'a, A>
|
2017-02-21 19:48:08 +00:00
|
|
|
where A: pretty::DocAllocator<'a> {
|
2017-02-22 17:11:05 +00:00
|
|
|
match *self {
|
|
|
|
Value::Vector(ref vs) => self.bracket(pp, "[", vs, "]"),
|
|
|
|
Value::List(ref vs) => self.bracket(pp, "(", vs, ")"),
|
|
|
|
Value::Set(ref vs) => self.bracket(pp, "#{", vs, "}"),
|
|
|
|
Value::Map(ref vs) => {
|
|
|
|
let xs = vs.iter().rev().map(|(k, v)| k.as_doc(pp).append(pp.space()).append(v.as_doc(pp)).group()).intersperse(pp.space());
|
2017-02-21 19:48:08 +00:00
|
|
|
pp.text("{")
|
|
|
|
.append(pp.concat(xs).nest(1))
|
|
|
|
.append(pp.text("}"))
|
|
|
|
.group()
|
|
|
|
}
|
2017-02-22 17:11:05 +00:00
|
|
|
Value::NamespacedSymbol(ref v) => pp.text(v.namespace.as_ref()).append("/").append(v.name.as_ref()),
|
|
|
|
Value::PlainSymbol(ref v) => pp.text(v.0.as_ref()),
|
|
|
|
Value::NamespacedKeyword(ref v) => pp.text(":").append(v.namespace.as_ref()).append("/").append(v.name.as_ref()),
|
|
|
|
Value::Keyword(ref v) => pp.text(":").append(v.0.as_ref()),
|
|
|
|
Value::Text(ref v) => pp.text("\"").append(v.as_ref()).append("\""),
|
2017-04-29 03:11:55 +00:00
|
|
|
Value::Uuid(ref u) => pp.text("#uuid \"").append(u.hyphenated().to_string()).append("\""),
|
2017-02-21 19:48:08 +00:00
|
|
|
_ => pp.text(self.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use parse;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pp_io() {
|
|
|
|
let string = "$";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.write_pretty(40, &mut Vec::new()).is_ok(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pp_types_empty() {
|
|
|
|
let string = "[ [ ] ( ) #{ } { }, \"\" ]";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(40).unwrap(), "[[] () #{} {} \"\"]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_vector() {
|
|
|
|
let string = "[1 2 3 4 5 6]";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(20).unwrap(), "[1 2 3 4 5 6]");
|
|
|
|
assert_eq!(data.to_pretty(10).unwrap(), "\
|
|
|
|
[1
|
|
|
|
2
|
|
|
|
3
|
|
|
|
4
|
|
|
|
5
|
|
|
|
6]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_map() {
|
|
|
|
let string = "{:a 1 :b 2 :c 3}";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(20).unwrap(), "{:a 1 :b 2 :c 3}");
|
|
|
|
assert_eq!(data.to_pretty(10).unwrap(), "\
|
|
|
|
{:a 1
|
|
|
|
:b 2
|
|
|
|
:c 3}");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pp_types() {
|
|
|
|
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 ]";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(40).unwrap(), "\
|
|
|
|
[1
|
|
|
|
2
|
|
|
|
(3.14)
|
|
|
|
#{4N}
|
|
|
|
{:baz/boz 43 foo/bar 42}
|
|
|
|
[]
|
|
|
|
:five
|
|
|
|
:six/seven
|
|
|
|
eight
|
|
|
|
nine/ten
|
|
|
|
true
|
|
|
|
false
|
|
|
|
nil
|
|
|
|
#f NaN
|
|
|
|
#f -Infinity
|
|
|
|
#f +Infinity]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pp_query1() {
|
|
|
|
let string = "[:find ?id ?bar ?baz :in $ :where [?id :session/keyword-foo ?symbol1 ?symbol2 \"some string\"] [?tx :db/tx ?ts]]";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(40).unwrap(), "\
|
|
|
|
[:find
|
|
|
|
?id
|
|
|
|
?bar
|
|
|
|
?baz
|
|
|
|
:in
|
|
|
|
$
|
|
|
|
:where
|
|
|
|
[?id
|
|
|
|
:session/keyword-foo
|
|
|
|
?symbol1
|
|
|
|
?symbol2
|
|
|
|
\"some string\"]
|
|
|
|
[?tx :db/tx ?ts]]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pp_query2() {
|
|
|
|
let string = "[:find [?id ?bar ?baz] :in [$] :where [?id :session/keyword-foo ?symbol1 ?symbol2 \"some string\"] [?tx :db/tx ?ts] (not-join [?id] [?id :session/keyword-bar _])]";
|
|
|
|
let data = parse::value(string).unwrap().without_spans();
|
|
|
|
|
|
|
|
assert_eq!(data.to_pretty(40).unwrap(), "\
|
|
|
|
[:find
|
|
|
|
[?id ?bar ?baz]
|
|
|
|
:in
|
|
|
|
[$]
|
|
|
|
:where
|
|
|
|
[?id
|
|
|
|
:session/keyword-foo
|
|
|
|
?symbol1
|
|
|
|
?symbol2
|
|
|
|
\"some string\"]
|
|
|
|
[?tx :db/tx ?ts]
|
|
|
|
(not-join
|
|
|
|
[?id]
|
|
|
|
[?id :session/keyword-bar _])]");
|
|
|
|
}
|
|
|
|
}
|