-
Notifications
You must be signed in to change notification settings - Fork 22
Implement serde traits for ego-tree #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 3 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
05edbe3
implement serde traits for ego-tree
LoZack19 2f7167b
fix clippy warnings for serde feature
LoZack19 ea8c556
Update Cargo.toml
LoZack19 82514a5
updating to rust 2021: remove macro_use and extern crate from all tests
LoZack19 7fb9415
remove useless line beacause already in prelude
LoZack19 b5c1029
implement serialize through intermediate representation
LoZack19 9f3d03d
implement deserialize through intermediate representation
LoZack19 143afa6
correct to_* into into_* for semantic correctness
LoZack19 1ff4288
improve idiomacity of serialization and deserialization for structs
LoZack19 b85b188
into_tree_node now takes parent as NodeMut
LoZack19 be6bbea
add documentation for serde module
LoZack19 f094f01
wip: introduce serde_test token matching
LoZack19 08ae4d9
Ignore JetBrains' .idea folder
cfvescovo e975c79
Fix tests for serde feature
cfvescovo d082fec
Update src/serde.rs
cfvescovo 644828b
move serde module comments to serde.rs
LoZack19 2520ba0
remove unused return value in into_tree_node
LoZack19 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
use std::num::NonZeroUsize; | ||
|
||
use serde::{Deserialize, Serialize}; | ||
|
||
use crate::{Node, NodeId, Tree}; | ||
|
||
impl<T: Serialize> Serialize for Tree<T> { | ||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> | ||
where | ||
S: serde::Serializer, | ||
{ | ||
self.vec.serialize(serializer) | ||
} | ||
} | ||
|
||
impl<'de, T: Deserialize<'de>> Deserialize<'de> for Tree<T> { | ||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> | ||
where | ||
D: serde::Deserializer<'de>, | ||
{ | ||
let vec = Vec::deserialize(deserializer)?; | ||
Ok(Tree { vec }) | ||
} | ||
} | ||
|
||
impl<T: Serialize> Serialize for Node<T> { | ||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> | ||
where | ||
S: serde::Serializer, | ||
{ | ||
( | ||
&self.parent, | ||
&self.prev_sibling, | ||
&self.next_sibling, | ||
LoZack19 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
&self.children, | ||
&self.value, | ||
) | ||
.serialize(serializer) | ||
} | ||
} | ||
|
||
impl<'de, T: Deserialize<'de>> Deserialize<'de> for Node<T> { | ||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> | ||
where | ||
D: serde::Deserializer<'de>, | ||
{ | ||
let (parent, prev_sibling, next_sibling, children, value) = | ||
<( | ||
Option<NodeId>, | ||
Option<NodeId>, | ||
Option<NodeId>, | ||
Option<(NodeId, NodeId)>, | ||
T, | ||
)>::deserialize(deserializer)?; | ||
Ok(Node { | ||
parent, | ||
prev_sibling, | ||
next_sibling, | ||
children, | ||
value, | ||
}) | ||
} | ||
} | ||
|
||
impl Serialize for NodeId { | ||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> | ||
where | ||
S: serde::Serializer, | ||
{ | ||
self.0.serialize(serializer) | ||
} | ||
} | ||
|
||
impl<'de> Deserialize<'de> for NodeId { | ||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> | ||
where | ||
D: serde::Deserializer<'de>, | ||
{ | ||
let index = <NonZeroUsize>::deserialize(deserializer)?; | ||
Ok(NodeId(index)) | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![cfg(feature = "serde")] | ||
#[macro_use] | ||
extern crate ego_tree; | ||
adamreichold marked this conversation as resolved.
Show resolved
Hide resolved
|
||
use std::assert_eq; | ||
LoZack19 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
use ego_tree::Tree; | ||
|
||
#[test] | ||
fn test_serialize() { | ||
let tree = tree!("r" => {"a", "b" => { "d", "e" }, "c"}); | ||
|
||
let serialized = serde_json::to_string(&tree).unwrap(); | ||
let deserialized: Tree<&str> = serde_json::from_str(&serialized).unwrap(); | ||
LoZack19 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
assert_eq!(tree, deserialized); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.