This crate provides an implementation of the EDN format for rust.
The intent is to provide a more complete api than the existing edn and edn-rs crates.
[dependencies]
edn-format = "3.2.2"
```rust let data = "{:person/name \"bob\"\ :person/age 35\ :person/children #{\"sally\" \"suzie\" \"jen\"}}"; let parsed = parse_str(data).expect("Should be valid");
println!("{:?}", parsed); // Map({Keyword(Keyword { namespace: Some("person"), name: "age" }): Integer(35), Keyword(Keyword { namespace: Some("person"), name: "name" }): String("bob"), Keyword(Keyword { namespace: Some("person"), name: "children" }): Set({String("jen"), String("sally"), String("suzie")})})
println!("{}", emit_str(&parsed)); // {:person/age 35 :person/name "bob" :person/children #{"jen" "sally" "suzie"}} ```
You will likely notice that writing code to serialize and deserialize your own data structures using just the facilities in this library will lead to some verbose code.
EDN's semantics are much richer than JSON's and providing something like serde support is a problem I deliberately chose not to solve.
There are pros and cons to this, but I choose to focus on the pro that you will at least have explicit control over the form your serialized structures take.
```rust
struct Person {
name: String,
age: u32,
hobbies: Vec
impl Into
impl TryFrom
fn try_from(value: Value) -> Result<Self, Self::Error> {
match value {
Value::TaggedElement(tag, element) => {
if tag == Symbol::from_namespace_and_name("my.project", "person") {
match *element {
Value::Map(map) => {
if let (
Some(Value::String(name)),
Some(Value::Integer(age)),
Some(Value::Vector(hobbies)),
) = (
map.get(&Value::from(Keyword::from_name("name"))),
map.get(&Value::from(Keyword::from_name("age"))),
map.get(&Value::from(Keyword::from_name("hobbies"))),
) {
let mut hobby_strings = vec![];
for hobby in hobbies {
if let Value::String(hobby) = hobby {
hobby_strings.push(hobby.clone())
}
else {
return Err(())
}
}
Ok(Person {
name: name.clone(),
age: *age as u32,
hobbies: hobby_strings
})
} else {
Err(())
}
}
_ => Err(()),
}
} else {
Err(())
}
}
// I'm sure this error handling strategy isn't going
// to win many awards
_ => Err(()),
}
}
}
fn example() { let bob = Person { name: "bob".tostring(), age: 23, hobbies: vec!["card games".tostring(), "motorcycles".to_string()], };
let serialized = emit_str(&bob.into());
println!("{}", serialized);
// #my.project/person {:age 23 :name "bob" :hobbies ["card games" "motorcycles"]}
let deserialized = parse_str(&serialized).map(|value| Person::try_from(value));
println!("{:?}", deserialized)
// Ok(Ok(Person { name: "bob", age: 23, hobbies: ["card games", "motorcycles"] }))
} ```
```rust use edn_format::{Parser, ParserOptions};
let parser = Parser::from_iter("123 456 [] [[]]".chars(), ParserOptions::default()); for element in parser { println!("{}", element.expect("expected valid element")); }
// 123 // 456 // [] // [[]] ```