mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-27 14:37:55 +00:00
Compare commits
72 Commits
v0.7.11
...
v0.8.0-rc2
| Author | SHA1 | Date | |
|---|---|---|---|
| fa51083a12 | |||
| aaca4f06c6 | |||
| cc8a5a79ab | |||
| 4f79829849 | |||
| 6c18896cf5 | |||
| ac738632ef | |||
| 8d06f36d71 | |||
| e404de85b2 | |||
| 6fe01bc8e3 | |||
| 855f3d99bb | |||
| 9d015a2942 | |||
| 42c41922ce | |||
| 984181c558 | |||
| ed603d4580 | |||
| 70c83768b7 | |||
| 7220029055 | |||
| 35676305da | |||
| fbad194042 | |||
| 2e4cc0b443 | |||
| 9217517532 | |||
| 0feeb7a341 | |||
| 2901344722 | |||
| 54c80ad677 | |||
| 16ba32dbe1 | |||
| 60938913b2 | |||
| 26528fbbb4 | |||
| 6adcaa55e5 | |||
| fb575225bc | |||
| ee4e7413b0 | |||
| a6f8bd5aac | |||
| 3766633f4a | |||
| 99038b044e | |||
| 4ec0a7e672 | |||
| a41dae45a5 | |||
| cb9e1cfb54 | |||
| 54ce7f2e90 | |||
| ddbd139793 | |||
| a070de28e2 | |||
| 57aeb26728 | |||
| a592828808 | |||
| 67d86dcc4f | |||
| 15764cb955 | |||
| 97bc1e08e7 | |||
| 7ffb74f5bb | |||
| f25e6d3ea9 | |||
| 431cbe48b7 | |||
| 5405ab319d | |||
| 0f9a930c4f | |||
| 1a449bb3d0 | |||
| c0e8164792 | |||
| a3a7e4085f | |||
| 149c87d7c2 | |||
| 5deba439c3 | |||
| d450de1482 | |||
| 47c7387279 | |||
| dc8d209f29 | |||
| 831802adc8 | |||
| 2d5a26dfc0 | |||
| c6b6e2a5d9 | |||
| d1be5ef187 | |||
| f531be1524 | |||
| 10b1508d4a | |||
| 041d5c0842 | |||
| 7d09053bb8 | |||
| 8e87926bc2 | |||
| d6a462b862 | |||
| cfc2f9adc0 | |||
| 00f94290a6 | |||
| 093201abfb | |||
| 6d64104375 | |||
| fb0e62951f | |||
| 18e077eda9 |
@@ -0,0 +1,7 @@
|
|||||||
|
paths = [
|
||||||
|
"serde",
|
||||||
|
"serde_codegen",
|
||||||
|
"serde_codegen_internals",
|
||||||
|
"serde_macros",
|
||||||
|
"serde_test",
|
||||||
|
]
|
||||||
+9
-9
@@ -2,10 +2,10 @@ sudo: false
|
|||||||
language: rust
|
language: rust
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
- beta
|
|
||||||
- nightly
|
- nightly
|
||||||
- 1.7.0
|
|
||||||
- 1.8.0
|
- 1.8.0
|
||||||
|
- 1.9.0
|
||||||
|
- beta
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
@@ -18,19 +18,19 @@ before_script:
|
|||||||
script:
|
script:
|
||||||
- (cd serde && travis-cargo build)
|
- (cd serde && travis-cargo build)
|
||||||
- (cd serde && travis-cargo --skip nightly test)
|
- (cd serde && travis-cargo --skip nightly test)
|
||||||
- (cd serde && travis-cargo --only nightly test -- --features nightly-testing)
|
- (cd serde && travis-cargo --only nightly test -- --features unstable-testing)
|
||||||
- (cd serde && travis-cargo build -- --no-default-features)
|
- (cd serde && travis-cargo build -- --no-default-features)
|
||||||
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features alloc)
|
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features alloc)
|
||||||
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features collections)
|
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features collections)
|
||||||
- (cd serde_tests && travis-cargo --skip nightly test)
|
- (cd testing && travis-cargo --skip nightly test)
|
||||||
- (cd serde_tests && travis-cargo --only nightly test -- --features nightly-testing)
|
- (cd testing && travis-cargo --only nightly test -- --features unstable-testing)
|
||||||
- (cd serde_macros && travis-cargo --only nightly test -- --features nightly-testing)
|
- (cd serde_macros && travis-cargo --only nightly test -- --features unstable-testing)
|
||||||
- (cd examples/serde-syntex-example && travis-cargo --skip nightly run)
|
#- (cd examples/serde-syntex-example && travis-cargo --skip nightly run)
|
||||||
- (cd examples/serde-syntex-example && travis-cargo --only nightly run -- --no-default-features --features nightly)
|
#- (cd examples/serde-syntex-example && travis-cargo --only nightly run -- --no-default-features --features unstable)
|
||||||
- (cd serde && travis-cargo --only stable doc)
|
- (cd serde && travis-cargo --only stable doc)
|
||||||
after_success:
|
after_success:
|
||||||
- (cd serde && travis-cargo --only stable doc-upload)
|
- (cd serde && travis-cargo --only stable doc-upload)
|
||||||
- (cd serde_tests && travis-cargo --only stable coveralls --no-sudo)
|
- (cd testing && travis-cargo --only stable coveralls --no-sudo)
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
# Contributing to Serde
|
||||||
|
|
||||||
|
Serde welcomes contribution from everyone. Here are the guidelines if you are
|
||||||
|
thinking of helping us:
|
||||||
|
|
||||||
|
## Contributions
|
||||||
|
|
||||||
|
Contributions to Serde or its dependencies should be made in the form of GitHub
|
||||||
|
pull requests. Each pull request will be reviewed by a core contributor
|
||||||
|
(someone with permission to land patches) and either landed in the main tree or
|
||||||
|
given feedback for changes that would be required. All contributions should
|
||||||
|
follow this format, even those from core contributors.
|
||||||
|
|
||||||
|
Should you wish to work on an issue, please claim it first by commenting on
|
||||||
|
the GitHub issue that you want to work on it. This is to prevent duplicated
|
||||||
|
efforts from contributors on the same issue.
|
||||||
|
|
||||||
|
## Pull Request Checklist
|
||||||
|
|
||||||
|
- Branch from the master branch and, if needed, rebase to the current master
|
||||||
|
branch before submitting your pull request. If it doesn't merge cleanly with
|
||||||
|
master you may be asked to rebase your changes.
|
||||||
|
|
||||||
|
- Commits should be as small as possible, while ensuring that each commit is
|
||||||
|
correct independently (i.e., each commit should compile and pass tests).
|
||||||
|
|
||||||
|
- If your patch is not getting reviewed or you need a specific person to review
|
||||||
|
it, you can @-reply a reviewer asking for a review in the pull request or a
|
||||||
|
comment, or you can ask for a review in `#serde` on `irc.mozilla.org`.
|
||||||
|
|
||||||
|
- Add tests relevant to the fixed bug or new feature.
|
||||||
|
|
||||||
|
## Conduct
|
||||||
|
|
||||||
|
In all Serde-related forums, we follow the [Rust Code of
|
||||||
|
Conduct](https://www.rust-lang.org/conduct.html). For escalation or moderation
|
||||||
|
issues, please contact Erick (erick.tryzelaar@gmail.com) instead of the Rust
|
||||||
|
moderation team.
|
||||||
|
|
||||||
|
## Communication
|
||||||
|
|
||||||
|
Beyond opening tickets on the
|
||||||
|
[serde-rs/serde](https://github.com/serde-rs/serde) project, Serde contributors
|
||||||
|
frequent the `#serde` channel on
|
||||||
|
[`irc.mozilla.org`](https://wiki.mozilla.org/IRC).
|
||||||
@@ -12,74 +12,100 @@ information. In many situations, the handshake protocol between serializers and
|
|||||||
serializees can be completely optimized away, leaving Serde to perform roughly
|
serializees can be completely optimized away, leaving Serde to perform roughly
|
||||||
the same speed as a hand written serializer for a specific type.
|
the same speed as a hand written serializer for a specific type.
|
||||||
|
|
||||||
Documentation is available at:
|
[Documentation](https://serde-rs.github.io/serde/serde/index.html)
|
||||||
|
|
||||||
* [serde](https://serde-rs.github.io/serde/serde/index.html)
|
Simple Serde Example
|
||||||
|
====================
|
||||||
|
|
||||||
Using Serde with Nightly Rust and serde\_macros
|
Here is a simple example that uses
|
||||||
===============================================
|
[serde_json](https://github.com/serde-rs/json), which uses Serde under the
|
||||||
|
covers, to generate and parse JSON. First, lets start off with the `Cargo.toml`
|
||||||
Here is a simple example that demonstrates how to use Serde by serializing and
|
file:
|
||||||
deserializing to JSON. Serde comes with some powerful code generation libraries
|
|
||||||
that work with Stable and Nightly Rust that eliminate much of the complexity of
|
|
||||||
hand rolling serialization and deserialization for a given type. First lets see
|
|
||||||
how we would use Nightly Rust, which is currently a bit simpler than Stable
|
|
||||||
Rust:
|
|
||||||
|
|
||||||
`Cargo.toml`:
|
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[package]
|
[package]
|
||||||
name = "serde_example_nightly"
|
name = "serde_example"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = "*"
|
|
||||||
serde_json = "*"
|
serde_json = "*"
|
||||||
serde_macros = "*"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
`src/main.rs`
|
Next, the `src/main.rs` file itself:
|
||||||
|
|
||||||
```rust
|
|
||||||
#![feature(custom_derive, plugin)]
|
|
||||||
#![plugin(serde_macros)]
|
|
||||||
|
|
||||||
|
```rust,ignore
|
||||||
extern crate serde_json;
|
extern crate serde_json;
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
use std::collections::HashMap;
|
||||||
struct Point {
|
use serde_json::Value;
|
||||||
x: i32,
|
use serde_json::builder::{ArrayBuilder, ObjectBuilder};
|
||||||
y: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let point = Point { x: 1, y: 2 };
|
// Serde has support for many of the builtin Rust types, like arrays..:
|
||||||
let serialized = serde_json::to_string(&point).unwrap();
|
let v = vec![1, 2];
|
||||||
|
let serialized = serde_json::to_string(&v).unwrap();
|
||||||
|
println!("serialized vec: {:?}", serialized);
|
||||||
|
|
||||||
println!("{}", serialized);
|
let deserialized: Vec<u32> = serde_json::from_str(&serialized).unwrap();
|
||||||
|
println!("deserialized vec: {:?}", deserialized);
|
||||||
|
|
||||||
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
// ... and maps:
|
||||||
|
let mut map = HashMap::new();
|
||||||
|
map.insert("x".to_string(), 1);
|
||||||
|
map.insert("y".to_string(), 2);
|
||||||
|
|
||||||
println!("{:?}", deserialized);
|
let serialized = serde_json::to_string(&map).unwrap();
|
||||||
|
println!("serialized map: {:?}", serialized);
|
||||||
|
|
||||||
|
let deserialized: HashMap<String, u32> = serde_json::from_str(&serialized).unwrap();
|
||||||
|
println!("deserialized map: {:?}", deserialized);
|
||||||
|
|
||||||
|
// It also can handle complex objects:
|
||||||
|
let value = ObjectBuilder::new()
|
||||||
|
.insert("int", 1)
|
||||||
|
.insert("string", "a string")
|
||||||
|
.insert("array", ArrayBuilder::new()
|
||||||
|
.push(1)
|
||||||
|
.push(2)
|
||||||
|
.unwrap())
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let serialized = serde_json::to_string(&value).unwrap();
|
||||||
|
println!("serialized value: {:?}", serialized);
|
||||||
|
|
||||||
|
let deserialized: serde_json::Value = serde_json::from_str(&serialized).unwrap();
|
||||||
|
println!("deserialized value: {:?}", deserialized);
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
When run, it produces:
|
This produces the following output when run:
|
||||||
|
|
||||||
```
|
```
|
||||||
% cargo run
|
% cargo run
|
||||||
{"x":1,"y":2}
|
serialized vec: "[1,2]"
|
||||||
Point { x: 1, y: 2 }
|
deserialized vec: [1, 2]
|
||||||
|
serialized map: "{\"y\":2,\"x\":1}"
|
||||||
|
deserialized map: {"y": 2, "x": 1}
|
||||||
|
serialized value: "{\"array\":[1,2],\"int\":1,\"string\":\"a string\"}"
|
||||||
|
deserialized value: {"array":[1,2],"int":1,"string":"a string"}
|
||||||
```
|
```
|
||||||
|
|
||||||
Using Serde with Stable Rust and serde\_codegen
|
Using Serde with Stable Rust and serde\_codegen
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
Stable Rust is a little more complicated because it does not yet support
|
The example before used `serde_json::Value` as the in-memory representation of
|
||||||
compiler plugins. Instead we need to use `serde_codegen` which is based on the
|
the JSON value, but it's also possible for Serde to serialize to and from
|
||||||
code generation library [syntex](https://github.com/serde-rs/syntex):
|
regular Rust types. However, the code to do this can be a bit complicated to
|
||||||
|
write. So instead, Serde also has some powerful code generation libraries that
|
||||||
|
work with Stable and Nightly Rust that eliminate much of the complexity of hand
|
||||||
|
rolling serialization and deserialization for a given type.
|
||||||
|
|
||||||
|
First lets see how we would use Stable Rust, which is currently a tad more
|
||||||
|
complicated than Nightly Rust due to having to work around compiler plugins
|
||||||
|
being unstable. We will use `serde_codegen` which is based on the code
|
||||||
|
generation library [syntex](https://github.com/serde-rs/syntex). First we need
|
||||||
|
to setup the `Cargo.toml` that builds the project:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[package]
|
[package]
|
||||||
@@ -96,16 +122,8 @@ serde = "*"
|
|||||||
serde_json = "*"
|
serde_json = "*"
|
||||||
```
|
```
|
||||||
|
|
||||||
`src/main.rs`:
|
Next, we define our source file, `src/main.rs.in`. Note this is a different
|
||||||
|
extension than usual becaues we need to do code generation:
|
||||||
```rust,ignore
|
|
||||||
extern crate serde;
|
|
||||||
extern crate serde_json;
|
|
||||||
|
|
||||||
include!(concat!(env!("OUT_DIR"), "/main.rs"));
|
|
||||||
```
|
|
||||||
|
|
||||||
`src/main.rs.in`:
|
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
@@ -116,17 +134,28 @@ struct Point {
|
|||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let point = Point { x: 1, y: 2 };
|
let point = Point { x: 1, y: 2 };
|
||||||
let serialized = serde_json::to_string(&point).unwrap();
|
|
||||||
|
|
||||||
|
let serialized = serde_json::to_string(&point).unwrap();
|
||||||
println!("{}", serialized);
|
println!("{}", serialized);
|
||||||
|
|
||||||
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
||||||
|
|
||||||
println!("{:?}", deserialized);
|
println!("{:?}", deserialized);
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
`build.rs`
|
To finish up the main source code, we define a very simple `src/main.rs` that
|
||||||
|
uses the generated code.
|
||||||
|
|
||||||
|
`src/main.rs`:
|
||||||
|
|
||||||
|
```rust,ignore
|
||||||
|
extern crate serde;
|
||||||
|
extern crate serde_json;
|
||||||
|
|
||||||
|
include!(concat!(env!("OUT_DIR"), "/main.rs"));
|
||||||
|
```
|
||||||
|
|
||||||
|
The last step is to actually drive the code generation, with the `build.rs` script:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
extern crate serde_codegen;
|
extern crate serde_codegen;
|
||||||
@@ -144,7 +173,7 @@ pub fn main() {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This also produces:
|
All this produces this when run:
|
||||||
|
|
||||||
```
|
```
|
||||||
% cargo run
|
% cargo run
|
||||||
@@ -153,8 +182,63 @@ Point { x: 1, y: 2 }
|
|||||||
```
|
```
|
||||||
|
|
||||||
While this works well with Stable Rust, be aware that the error locations
|
While this works well with Stable Rust, be aware that the error locations
|
||||||
currently are reported in the generated file instead of in the source file. You
|
currently are reported in the generated file instead of in the source file.
|
||||||
may find it easier to develop with Nightly Rust and `serde\_macros`, then
|
|
||||||
|
Using Serde with Nightly Rust and serde\_macros
|
||||||
|
===============================================
|
||||||
|
|
||||||
|
The prior example is a bit more complicated than it needs to be due to compiler
|
||||||
|
plugins being unstable. However, if you are already using Nightly Rust, you can
|
||||||
|
use `serde_macros`, which has a much simpler interface. First, here is the new
|
||||||
|
`Cargo.toml`:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[package]
|
||||||
|
name = "serde_example_nightly"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
serde = "*"
|
||||||
|
serde_json = "*"
|
||||||
|
serde_macros = "*"
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that it doesn't need a build script. Now the `src/main.rs`, which enables
|
||||||
|
the plugin feature, and registers the `serde_macros` plugin:
|
||||||
|
|
||||||
|
```rust
|
||||||
|
#![feature(custom_derive, plugin)]
|
||||||
|
#![plugin(serde_macros)]
|
||||||
|
|
||||||
|
extern crate serde_json;
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
|
struct Point {
|
||||||
|
x: i32,
|
||||||
|
y: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let point = Point { x: 1, y: 2 };
|
||||||
|
|
||||||
|
let serialized = serde_json::to_string(&point).unwrap();
|
||||||
|
println!("{}", serialized);
|
||||||
|
|
||||||
|
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
||||||
|
println!("{:?}", deserialized);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This also produces the same output:
|
||||||
|
|
||||||
|
```
|
||||||
|
% cargo run
|
||||||
|
{"x":1,"y":2}
|
||||||
|
Point { x: 1, y: 2 }
|
||||||
|
```
|
||||||
|
|
||||||
|
You may find it easier to develop with Nightly Rust and `serde\_macros`, then
|
||||||
deploy with Stable Rust and `serde_codegen`. It's possible to combine both
|
deploy with Stable Rust and `serde_codegen`. It's possible to combine both
|
||||||
approaches in one setup:
|
approaches in one setup:
|
||||||
|
|
||||||
@@ -740,6 +824,7 @@ Serialization Formats Using Serde
|
|||||||
| Format | Name |
|
| Format | Name |
|
||||||
| ------ | ---- |
|
| ------ | ---- |
|
||||||
| Bincode | [bincode](https://crates.io/crates/bincode) |
|
| Bincode | [bincode](https://crates.io/crates/bincode) |
|
||||||
|
| env vars | [envy](https://crates.io/crates/envy) |
|
||||||
| JSON | [serde\_json](https://crates.io/crates/serde_json) |
|
| JSON | [serde\_json](https://crates.io/crates/serde_json) |
|
||||||
| MessagePack | [rmp](https://crates.io/crates/rmp) |
|
| MessagePack | [rmp](https://crates.io/crates/rmp) |
|
||||||
| XML | [serde\_xml](https://github.com/serde-rs/xml) |
|
| XML | [serde\_xml](https://github.com/serde-rs/xml) |
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
paths = [
|
|
||||||
"../serde",
|
|
||||||
"../serde_codegen",
|
|
||||||
"../serde_macros",
|
|
||||||
]
|
|
||||||
@@ -6,12 +6,12 @@ build = "build.rs"
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["serde_codegen"]
|
default = ["serde_codegen"]
|
||||||
nightly = ["serde_macros"]
|
unstable = ["serde_macros"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
serde_codegen = { version = "^0.7.11", optional = true }
|
serde_codegen = { version = "^0.7", optional = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = "^0.7.11"
|
serde = "^0.7"
|
||||||
serde_json = "^0.7.0"
|
serde_json = "^0.7"
|
||||||
serde_macros = { version = "^0.7.11", optional = true }
|
serde_macros = { version = "^0.7", optional = true }
|
||||||
|
|||||||
+6
-4
@@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "0.7.11"
|
# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH
|
||||||
|
# USE THE 0.7.x BRANCH
|
||||||
|
version = "0.8.0-rc2"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "A generic serialization/deserialization framework"
|
description = "A generic serialization/deserialization framework"
|
||||||
@@ -14,10 +16,10 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
||||||
std = []
|
std = []
|
||||||
nightly = []
|
unstable = []
|
||||||
alloc = ["nightly"]
|
alloc = ["unstable"]
|
||||||
collections = ["alloc"]
|
collections = ["alloc"]
|
||||||
nightly-testing = ["clippy", "nightly", "std"]
|
unstable-testing = ["clippy", "unstable", "std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
|
|||||||
+11
-11
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
#[cfg(all(feature = "nightly", feature = "collections", not(feature = "std")))]
|
#[cfg(all(feature = "unstable", feature = "collections", not(feature = "std")))]
|
||||||
use collections::borrow::Cow;
|
use collections::borrow::Cow;
|
||||||
|
|
||||||
#[cfg(all(feature = "collections", not(feature = "std")))]
|
#[cfg(all(feature = "collections", not(feature = "std")))]
|
||||||
@@ -27,9 +27,9 @@ use std::collections::{
|
|||||||
VecDeque,
|
VecDeque,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
use collections::enum_set::{CLike, EnumSet};
|
use collections::enum_set::{CLike, EnumSet};
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
use collections::borrow::ToOwned;
|
use collections::borrow::ToOwned;
|
||||||
|
|
||||||
use core::hash::{Hash, BuildHasher};
|
use core::hash::{Hash, BuildHasher};
|
||||||
@@ -42,21 +42,21 @@ use core::str;
|
|||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
#[cfg(all(feature = "nightly", feature = "alloc", not(feature = "std")))]
|
#[cfg(all(feature = "unstable", feature = "alloc", not(feature = "std")))]
|
||||||
use alloc::rc::Rc;
|
use alloc::rc::Rc;
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
#[cfg(all(feature = "nightly", feature = "alloc", not(feature = "std")))]
|
#[cfg(all(feature = "unstable", feature = "alloc", not(feature = "std")))]
|
||||||
use alloc::arc::Arc;
|
use alloc::arc::Arc;
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "alloc", not(feature = "std")))]
|
#[cfg(all(feature = "unstable", feature = "alloc", not(feature = "std")))]
|
||||||
use alloc::boxed::Box;
|
use alloc::boxed::Box;
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::nonzero::{NonZero, Zeroable};
|
use core::nonzero::{NonZero, Zeroable};
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::num::Zero;
|
use core::num::Zero;
|
||||||
|
|
||||||
use de::{
|
use de::{
|
||||||
@@ -461,7 +461,7 @@ seq_impl!(
|
|||||||
BTreeSet::new(),
|
BTreeSet::new(),
|
||||||
BTreeSet::insert);
|
BTreeSet::insert);
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
seq_impl!(
|
seq_impl!(
|
||||||
EnumSet<T>,
|
EnumSet<T>,
|
||||||
EnumSetVisitor<T: Deserialize + CLike>,
|
EnumSetVisitor<T: Deserialize + CLike>,
|
||||||
@@ -806,7 +806,7 @@ map_impl!(
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "std"))]
|
#[cfg(all(feature = "unstable", feature = "std"))]
|
||||||
impl Deserialize for net::IpAddr {
|
impl Deserialize for net::IpAddr {
|
||||||
fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error>
|
fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error>
|
||||||
where D: Deserializer,
|
where D: Deserializer,
|
||||||
@@ -972,7 +972,7 @@ impl<'a, T: ?Sized> Deserialize for Cow<'a, T> where T: ToOwned, T::Owned: Deser
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
impl<T> Deserialize for NonZero<T> where T: Deserialize + PartialEq + Zeroable + Zero {
|
impl<T> Deserialize for NonZero<T> where T: Deserialize + PartialEq + Zeroable + Zero {
|
||||||
fn deserialize<D>(deserializer: &mut D) -> Result<NonZero<T>, D::Error> where D: Deserializer {
|
fn deserialize<D>(deserializer: &mut D) -> Result<NonZero<T>, D::Error> where D: Deserializer {
|
||||||
let value = try!(Deserialize::deserialize(deserializer));
|
let value = try!(Deserialize::deserialize(deserializer));
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ use error;
|
|||||||
#[cfg(all(not(feature = "std"), feature = "collections"))]
|
#[cfg(all(not(feature = "std"), feature = "collections"))]
|
||||||
use collections::{String, Vec};
|
use collections::{String, Vec};
|
||||||
|
|
||||||
|
use core::fmt;
|
||||||
|
|
||||||
pub mod impls;
|
pub mod impls;
|
||||||
pub mod value;
|
pub mod value;
|
||||||
mod from_primitive;
|
mod from_primitive;
|
||||||
@@ -169,6 +171,46 @@ pub enum Type {
|
|||||||
Bytes,
|
Bytes,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Type {
|
||||||
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||||
|
let display = match *self {
|
||||||
|
Type::Bool => "bool",
|
||||||
|
Type::Usize => "usize",
|
||||||
|
Type::U8 => "u8",
|
||||||
|
Type::U16 => "u16",
|
||||||
|
Type::U32 => "u32",
|
||||||
|
Type::U64 => "u64",
|
||||||
|
Type::Isize => "isize",
|
||||||
|
Type::I8 => "i8",
|
||||||
|
Type::I16 => "i16",
|
||||||
|
Type::I32 => "i32",
|
||||||
|
Type::I64 => "i64",
|
||||||
|
Type::F32 => "f32",
|
||||||
|
Type::F64 => "f64",
|
||||||
|
Type::Char => "char",
|
||||||
|
Type::Str => "str",
|
||||||
|
Type::String => "string",
|
||||||
|
Type::Unit => "unit",
|
||||||
|
Type::Option => "option",
|
||||||
|
Type::Seq => "seq",
|
||||||
|
Type::Map => "map",
|
||||||
|
Type::UnitStruct => "unit struct",
|
||||||
|
Type::NewtypeStruct => "newtype struct",
|
||||||
|
Type::TupleStruct => "tuple struct",
|
||||||
|
Type::Struct => "struct",
|
||||||
|
Type::FieldName => "field name",
|
||||||
|
Type::Tuple => "tuple",
|
||||||
|
Type::Enum => "enum",
|
||||||
|
Type::VariantName => "variant name",
|
||||||
|
Type::StructVariant => "struct variant",
|
||||||
|
Type::TupleVariant => "tuple variant",
|
||||||
|
Type::UnitVariant => "unit variant",
|
||||||
|
Type::Bytes => "bytes",
|
||||||
|
};
|
||||||
|
display.fmt(formatter)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/// `Deserialize` represents a type that can be deserialized.
|
/// `Deserialize` represents a type that can be deserialized.
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ use collections::{
|
|||||||
vec,
|
vec,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
use collections::borrow::ToOwned;
|
use collections::borrow::ToOwned;
|
||||||
|
|
||||||
use core::hash::Hash;
|
use core::hash::Hash;
|
||||||
|
|||||||
+2
-2
@@ -4,7 +4,7 @@ use core::fmt::{Debug, Display};
|
|||||||
|
|
||||||
|
|
||||||
/// A stand-in for `std::error::Error`, which requires no allocation.
|
/// A stand-in for `std::error::Error`, which requires no allocation.
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
pub trait Error: Debug + Display + ::core::marker::Reflect {
|
pub trait Error: Debug + Display + ::core::marker::Reflect {
|
||||||
/// A short description of the error.
|
/// A short description of the error.
|
||||||
///
|
///
|
||||||
@@ -24,7 +24,7 @@ pub trait Error: Debug + Display + ::core::marker::Reflect {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// A stand-in for `std::error::Error`, which requires no allocation.
|
/// A stand-in for `std::error::Error`, which requires no allocation.
|
||||||
#[cfg(not(feature = "nightly"))]
|
#[cfg(not(feature = "unstable"))]
|
||||||
pub trait Error: Debug + Display {
|
pub trait Error: Debug + Display {
|
||||||
/// A short description of the error.
|
/// A short description of the error.
|
||||||
///
|
///
|
||||||
|
|||||||
+8
-8
@@ -11,29 +11,29 @@
|
|||||||
|
|
||||||
#![doc(html_root_url="https://serde-rs.github.io/serde/serde")]
|
#![doc(html_root_url="https://serde-rs.github.io/serde/serde")]
|
||||||
#![cfg_attr(not(feature = "std"), no_std)]
|
#![cfg_attr(not(feature = "std"), no_std)]
|
||||||
#![cfg_attr(feature = "nightly", feature(reflect_marker, unicode, nonzero, plugin, step_trait, zero_one))]
|
#![cfg_attr(feature = "unstable", feature(reflect_marker, unicode, nonzero, plugin, step_trait, zero_one))]
|
||||||
#![cfg_attr(feature = "alloc", feature(alloc))]
|
#![cfg_attr(feature = "alloc", feature(alloc))]
|
||||||
#![cfg_attr(feature = "collections", feature(collections, enumset))]
|
#![cfg_attr(feature = "collections", feature(collections, enumset))]
|
||||||
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
||||||
#![cfg_attr(feature = "nightly-testing", allow(linkedlist))]
|
#![cfg_attr(feature = "clippy", allow(linkedlist))]
|
||||||
|
|
||||||
#![cfg_attr(any(not(feature = "std"), feature = "nightly"), allow(unused_variables, unused_imports, unused_features, dead_code))]
|
#![cfg_attr(any(not(feature = "std"), feature = "unstable"), allow(unused_variables, unused_imports, unused_features, dead_code))]
|
||||||
|
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
extern crate collections;
|
extern crate collections;
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "alloc"))]
|
#[cfg(all(feature = "unstable", feature = "alloc"))]
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
mod core {
|
mod core {
|
||||||
pub use std::{ops, hash, fmt, cmp, marker, mem, i8, i16, i32, i64, u8, u16, u32, u64, isize,
|
pub use std::{ops, hash, fmt, cmp, marker, mem, i8, i16, i32, i64, u8, u16, u32, u64, isize,
|
||||||
usize, f32, f64, char, str, num, slice, iter};
|
usize, f32, f64, char, str, num, slice, iter};
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
extern crate core;
|
extern crate core;
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
pub use self::core::nonzero;
|
pub use self::core::nonzero;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+75
-264
@@ -26,19 +26,19 @@ use collections::{
|
|||||||
Vec,
|
Vec,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
use collections::enum_set::{CLike, EnumSet};
|
use collections::enum_set::{CLike, EnumSet};
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
use collections::borrow::ToOwned;
|
use collections::borrow::ToOwned;
|
||||||
|
|
||||||
use core::hash::{Hash, BuildHasher};
|
use core::hash::{Hash, BuildHasher};
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::iter;
|
use core::iter;
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::net;
|
use std::net;
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::num;
|
use core::num;
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::ops;
|
use core::ops;
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use std::path;
|
use std::path;
|
||||||
@@ -57,15 +57,13 @@ use alloc::boxed::Box;
|
|||||||
|
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
use core::nonzero::{NonZero, Zeroable};
|
use core::nonzero::{NonZero, Zeroable};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
Error,
|
Error,
|
||||||
Serialize,
|
Serialize,
|
||||||
Serializer,
|
Serializer,
|
||||||
SeqVisitor,
|
|
||||||
MapVisitor,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -133,26 +131,6 @@ impl<T> Serialize for Option<T> where T: Serialize {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> SeqVisitor for Option<T> where T: Serialize {
|
|
||||||
#[inline]
|
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
match self.take() {
|
|
||||||
Some(value) => {
|
|
||||||
try!(serializer.serialize_seq_elt(value));
|
|
||||||
Ok(Some(()))
|
|
||||||
}
|
|
||||||
None => Ok(None),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
Some(if self.is_some() { 1 } else { 0 })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
impl<T> Serialize for PhantomData<T> {
|
impl<T> Serialize for PhantomData<T> {
|
||||||
@@ -164,69 +142,6 @@ impl<T> Serialize for PhantomData<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
/// A `serde::Visitor` for sequence iterators.
|
|
||||||
///
|
|
||||||
/// # Examples
|
|
||||||
///
|
|
||||||
/// ```
|
|
||||||
/// use serde::{Serialize, Serializer};
|
|
||||||
/// use serde::ser::impls::SeqIteratorVisitor;
|
|
||||||
///
|
|
||||||
/// struct Seq(Vec<u32>);
|
|
||||||
///
|
|
||||||
/// impl Serialize for Seq {
|
|
||||||
/// fn serialize<S>(&self, ser: &mut S) -> Result<(), S::Error>
|
|
||||||
/// where S: Serializer,
|
|
||||||
/// {
|
|
||||||
/// ser.serialize_seq(SeqIteratorVisitor::new(
|
|
||||||
/// self.0.iter(),
|
|
||||||
/// Some(self.0.len()),
|
|
||||||
/// ))
|
|
||||||
/// }
|
|
||||||
/// }
|
|
||||||
/// ```
|
|
||||||
pub struct SeqIteratorVisitor<Iter> {
|
|
||||||
iter: Iter,
|
|
||||||
len: Option<usize>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T, Iter> SeqIteratorVisitor<Iter>
|
|
||||||
where Iter: Iterator<Item=T>
|
|
||||||
{
|
|
||||||
/// Construct a new `SeqIteratorVisitor<Iter>`.
|
|
||||||
#[inline]
|
|
||||||
pub fn new(iter: Iter, len: Option<usize>) -> SeqIteratorVisitor<Iter> {
|
|
||||||
SeqIteratorVisitor {
|
|
||||||
iter: iter,
|
|
||||||
len: len,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T, Iter> SeqVisitor for SeqIteratorVisitor<Iter>
|
|
||||||
where T: Serialize,
|
|
||||||
Iter: Iterator<Item=T>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
match self.iter.next() {
|
|
||||||
Some(value) => {
|
|
||||||
try!(serializer.serialize_seq_elt(value));
|
|
||||||
Ok(Some(()))
|
|
||||||
}
|
|
||||||
None => Ok(None),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
self.len
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
@@ -237,7 +152,11 @@ impl<T> Serialize for [T]
|
|||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
where S: Serializer,
|
where S: Serializer,
|
||||||
{
|
{
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
let mut state = try!(serializer.serialize_seq(Some(self.len())));
|
||||||
|
for e in self.iter() {
|
||||||
|
try!(serializer.serialize_seq_elt(&mut state, e));
|
||||||
|
}
|
||||||
|
serializer.serialize_seq_end(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -250,8 +169,11 @@ macro_rules! array_impls {
|
|||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
where S: Serializer,
|
where S: Serializer,
|
||||||
{
|
{
|
||||||
let visitor = SeqIteratorVisitor::new(self.iter(), Some($len));
|
let mut state = try!(serializer.serialize_seq_fixed_size($len));
|
||||||
serializer.serialize_fixed_size_array(visitor)
|
for e in self.iter() {
|
||||||
|
try!(serializer.serialize_seq_elt(&mut state, e));
|
||||||
|
}
|
||||||
|
serializer.serialize_seq_end(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -293,40 +215,40 @@ array_impls!(32);
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
macro_rules! serialize_seq {
|
||||||
|
() => {
|
||||||
|
#[inline]
|
||||||
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
|
where S: Serializer,
|
||||||
|
{
|
||||||
|
let mut state = try!(serializer.serialize_seq(Some(self.len())));
|
||||||
|
for e in self {
|
||||||
|
try!(serializer.serialize_seq_elt(&mut state, e));
|
||||||
|
}
|
||||||
|
serializer.serialize_seq_end(state)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
impl<T> Serialize for BinaryHeap<T>
|
impl<T> Serialize for BinaryHeap<T>
|
||||||
where T: Serialize + Ord
|
where T: Serialize + Ord
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_seq!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
impl<T> Serialize for BTreeSet<T>
|
impl<T> Serialize for BTreeSet<T>
|
||||||
where T: Serialize + Ord,
|
where T: Serialize + Ord,
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_seq!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(all(feature = "nightly", feature = "collections"))]
|
#[cfg(all(feature = "unstable", feature = "collections"))]
|
||||||
impl<T> Serialize for EnumSet<T>
|
impl<T> Serialize for EnumSet<T>
|
||||||
where T: Serialize + CLike
|
where T: Serialize + CLike
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_seq!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
@@ -334,27 +256,27 @@ impl<T, H> Serialize for HashSet<T, H>
|
|||||||
where T: Serialize + Eq + Hash,
|
where T: Serialize + Eq + Hash,
|
||||||
H: BuildHasher,
|
H: BuildHasher,
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_seq!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
impl<T> Serialize for LinkedList<T>
|
impl<T> Serialize for LinkedList<T>
|
||||||
where T: Serialize,
|
where T: Serialize,
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_seq!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
|
impl<T> Serialize for Vec<T> where T: Serialize {
|
||||||
|
serialize_seq!();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
|
impl<T> Serialize for VecDeque<T> where T: Serialize {
|
||||||
|
serialize_seq!();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "unstable")]
|
||||||
impl<A> Serialize for ops::Range<A>
|
impl<A> Serialize for ops::Range<A>
|
||||||
where A: Serialize + Clone + iter::Step + num::One,
|
where A: Serialize + Clone + iter::Step + num::One,
|
||||||
for<'a> &'a A: ops::Add<&'a A, Output = A>,
|
for<'a> &'a A: ops::Add<&'a A, Output = A>,
|
||||||
@@ -364,27 +286,11 @@ impl<A> Serialize for ops::Range<A>
|
|||||||
where S: Serializer,
|
where S: Serializer,
|
||||||
{
|
{
|
||||||
let len = iter::Step::steps_between(&self.start, &self.end, &A::one());
|
let len = iter::Step::steps_between(&self.start, &self.end, &A::one());
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.clone(), len))
|
let mut state = try!(serializer.serialize_seq(len));
|
||||||
}
|
for e in self.clone() {
|
||||||
}
|
try!(serializer.serialize_seq_elt(&mut state, e));
|
||||||
|
}
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
serializer.serialize_seq_end(state)
|
||||||
impl<T> Serialize for Vec<T> where T: Serialize {
|
|
||||||
#[inline]
|
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
(&self[..]).serialize(serializer)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
|
||||||
impl<T> Serialize for VecDeque<T> where T: Serialize {
|
|
||||||
#[inline]
|
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_seq(SeqIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -413,52 +319,18 @@ macro_rules! tuple_impls {
|
|||||||
}
|
}
|
||||||
)+) => {
|
)+) => {
|
||||||
$(
|
$(
|
||||||
/// A tuple visitor.
|
|
||||||
pub struct $TupleVisitor<'a, $($T: 'a),+> {
|
|
||||||
tuple: &'a ($($T,)+),
|
|
||||||
state: u8,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a, $($T: 'a),+> $TupleVisitor<'a, $($T),+> {
|
|
||||||
/// Construct a new, empty `TupleVisitor`.
|
|
||||||
pub fn new(tuple: &'a ($($T,)+)) -> $TupleVisitor<'a, $($T),+> {
|
|
||||||
$TupleVisitor {
|
|
||||||
tuple: tuple,
|
|
||||||
state: 0,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a, $($T),+> SeqVisitor for $TupleVisitor<'a, $($T),+>
|
|
||||||
where $($T: Serialize),+
|
|
||||||
{
|
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
match self.state {
|
|
||||||
$(
|
|
||||||
$state => {
|
|
||||||
self.state += 1;
|
|
||||||
Ok(Some(try!(serializer.serialize_tuple_elt(&e!(self.tuple.$idx)))))
|
|
||||||
}
|
|
||||||
)+
|
|
||||||
_ => {
|
|
||||||
Ok(None)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
Some($len)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<$($T),+> Serialize for ($($T,)+)
|
impl<$($T),+> Serialize for ($($T,)+)
|
||||||
where $($T: Serialize),+
|
where $($T: Serialize),+
|
||||||
{
|
{
|
||||||
#[inline]
|
#[inline]
|
||||||
fn serialize<S: Serializer>(&self, serializer: &mut S) -> Result<(), S::Error> {
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
serializer.serialize_tuple($TupleVisitor::new(self))
|
where S: Serializer,
|
||||||
|
{
|
||||||
|
let mut state = try!(serializer.serialize_tuple($len));
|
||||||
|
$(
|
||||||
|
try!(serializer.serialize_tuple_elt(&mut state, &e!(self.$idx)));
|
||||||
|
)+
|
||||||
|
serializer.serialize_tuple_end(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)+
|
)+
|
||||||
@@ -638,83 +510,27 @@ tuple_impls! {
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/// A `serde::Visitor` for (key, value) map iterators.
|
macro_rules! serialize_map {
|
||||||
///
|
() => {
|
||||||
/// # Examples
|
#[inline]
|
||||||
///
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
/// ```
|
where S: Serializer,
|
||||||
/// use std::collections::HashMap;
|
{
|
||||||
/// use serde::{Serialize, Serializer};
|
let mut state = try!(serializer.serialize_map(Some(self.len())));
|
||||||
/// use serde::ser::impls::MapIteratorVisitor;
|
for (k, v) in self {
|
||||||
///
|
try!(serializer.serialize_map_elt(&mut state, k, v));
|
||||||
/// struct Map(HashMap<u32, u32>);
|
|
||||||
///
|
|
||||||
/// impl Serialize for Map {
|
|
||||||
/// fn serialize<S>(&self, ser: &mut S) -> Result<(), S::Error>
|
|
||||||
/// where S: Serializer,
|
|
||||||
/// {
|
|
||||||
/// ser.serialize_map(MapIteratorVisitor::new(
|
|
||||||
/// self.0.iter(),
|
|
||||||
/// Some(self.0.len()),
|
|
||||||
/// ))
|
|
||||||
/// }
|
|
||||||
/// }
|
|
||||||
/// ```
|
|
||||||
pub struct MapIteratorVisitor<Iter> {
|
|
||||||
iter: Iter,
|
|
||||||
len: Option<usize>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<K, V, Iter> MapIteratorVisitor<Iter>
|
|
||||||
where Iter: Iterator<Item=(K, V)>
|
|
||||||
{
|
|
||||||
/// Construct a new `MapIteratorVisitor<Iter>`.
|
|
||||||
#[inline]
|
|
||||||
pub fn new(iter: Iter, len: Option<usize>) -> MapIteratorVisitor<Iter> {
|
|
||||||
MapIteratorVisitor {
|
|
||||||
iter: iter,
|
|
||||||
len: len,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<K, V, I> MapVisitor for MapIteratorVisitor<I>
|
|
||||||
where K: Serialize,
|
|
||||||
V: Serialize,
|
|
||||||
I: Iterator<Item=(K, V)>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
match self.iter.next() {
|
|
||||||
Some((key, value)) => {
|
|
||||||
try!(serializer.serialize_map_elt(key, value));
|
|
||||||
Ok(Some(()))
|
|
||||||
}
|
}
|
||||||
None => Ok(None)
|
serializer.serialize_map_end(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
self.len
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "collections"))]
|
#[cfg(any(feature = "std", feature = "collections"))]
|
||||||
impl<K, V> Serialize for BTreeMap<K, V>
|
impl<K, V> Serialize for BTreeMap<K, V>
|
||||||
where K: Serialize + Ord,
|
where K: Serialize + Ord,
|
||||||
V: Serialize,
|
V: Serialize,
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_map!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_map(MapIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
@@ -723,12 +539,7 @@ impl<K, V, H> Serialize for HashMap<K, V, H>
|
|||||||
V: Serialize,
|
V: Serialize,
|
||||||
H: BuildHasher,
|
H: BuildHasher,
|
||||||
{
|
{
|
||||||
#[inline]
|
serialize_map!();
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
|
||||||
where S: Serializer,
|
|
||||||
{
|
|
||||||
serializer.serialize_map(MapIteratorVisitor::new(self.iter(), Some(self.len())))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -808,7 +619,7 @@ impl<T, E> Serialize for Result<T, E> where T: Serialize, E: Serialize {
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#[cfg(all(feature = "std", feature = "nightly"))]
|
#[cfg(all(feature = "std", feature = "unstable"))]
|
||||||
impl Serialize for net::IpAddr {
|
impl Serialize for net::IpAddr {
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>
|
||||||
where S: Serializer,
|
where S: Serializer,
|
||||||
@@ -893,7 +704,7 @@ impl Serialize for path::PathBuf {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
impl<T> Serialize for NonZero<T> where T: Serialize + Zeroable {
|
impl<T> Serialize for NonZero<T> where T: Serialize + Zeroable {
|
||||||
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer {
|
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer {
|
||||||
(**self).serialize(serializer)
|
(**self).serialize(serializer)
|
||||||
|
|||||||
+270
-286
@@ -45,339 +45,323 @@ pub trait Serializer {
|
|||||||
/// The error type that can be returned if some error occurs during serialization.
|
/// The error type that can be returned if some error occurs during serialization.
|
||||||
type Error: Error;
|
type Error: Error;
|
||||||
|
|
||||||
|
/// A state object that is initialized by `serialize_seq`, passed to
|
||||||
|
/// `serialize_seq_elt`, and consumed by `serialize_seq_end`. Use `()` if no
|
||||||
|
/// state is required.
|
||||||
|
type SeqState;
|
||||||
|
/// A state object that is initialized by `serialize_tuple`, passed to
|
||||||
|
/// `serialize_tuple_elt`, and consumed by `serialize_tuple_end`. Use `()`
|
||||||
|
/// if no state is required.
|
||||||
|
type TupleState;
|
||||||
|
/// A state object that is initialized by `serialize_tuple_struct`, passed
|
||||||
|
/// to `serialize_tuple_struct_elt`, and consumed by
|
||||||
|
/// `serialize_tuple_struct_end`. Use `()` if no state is required.
|
||||||
|
type TupleStructState;
|
||||||
|
/// A state object that is initialized by `serialize_tuple_variant`, passed
|
||||||
|
/// to `serialize_tuple_variant_elt`, and consumed by
|
||||||
|
/// `serialize_tuple_variant_end`. Use `()` if no state is required.
|
||||||
|
type TupleVariantState;
|
||||||
|
/// A state object that is initialized by `serialize_map`, passed to
|
||||||
|
/// `serialize_map_elt`, and consumed by `serialize_map_end`. Use `()` if no
|
||||||
|
/// state is required.
|
||||||
|
type MapState;
|
||||||
|
/// A state object that is initialized by `serialize_struct`, passed to
|
||||||
|
/// `serialize_struct_elt`, and consumed by `serialize_struct_end`. Use `()`
|
||||||
|
/// if no state is required.
|
||||||
|
type StructState;
|
||||||
|
/// A state object that is initialized by `serialize_struct_variant`, passed
|
||||||
|
/// to `serialize_struct_variant_elt`, and consumed by
|
||||||
|
/// `serialize_struct_variant_end`. Use `()` if no state is required.
|
||||||
|
type StructVariantState;
|
||||||
|
|
||||||
/// Serializes a `bool` value.
|
/// Serializes a `bool` value.
|
||||||
fn serialize_bool(&mut self, v: bool) -> Result<(), Self::Error>;
|
fn serialize_bool(&mut self, v: bool) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a `isize` value. By default it casts the value to a `i64` and
|
/// Serializes an `isize` value. If the format does not differentiate
|
||||||
/// passes it to the `serialize_i64` method.
|
/// between `isize` and `i64`, a reasonable implementation would be to cast
|
||||||
#[inline]
|
/// the value to `i64` and forward to `serialize_i64`.
|
||||||
fn serialize_isize(&mut self, v: isize) -> Result<(), Self::Error> {
|
fn serialize_isize(&mut self, v: isize) -> Result<(), Self::Error>;
|
||||||
self.serialize_i64(v as i64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `i8` value. By default it casts the value to a `i64` and
|
/// Serializes an `i8` value. If the format does not differentiate between
|
||||||
/// passes it to the `serialize_i64` method.
|
/// `i8` and `i64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `i64` and forward to `serialize_i64`.
|
||||||
fn serialize_i8(&mut self, v: i8) -> Result<(), Self::Error> {
|
fn serialize_i8(&mut self, v: i8) -> Result<(), Self::Error>;
|
||||||
self.serialize_i64(v as i64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `i16` value. By default it casts the value to a `i64` and
|
/// Serializes an `i16` value. If the format does not differentiate between
|
||||||
/// passes it to the `serialize_i64` method.
|
/// `i16` and `i64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `i64` and forward to `serialize_i64`.
|
||||||
fn serialize_i16(&mut self, v: i16) -> Result<(), Self::Error> {
|
fn serialize_i16(&mut self, v: i16) -> Result<(), Self::Error>;
|
||||||
self.serialize_i64(v as i64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `i32` value. By default it casts the value to a `i64` and
|
/// Serializes an `i32` value. If the format does not differentiate between
|
||||||
/// passes it to the `serialize_i64` method.
|
/// `i32` and `i64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `i64` and forward to `serialize_i64`.
|
||||||
fn serialize_i32(&mut self, v: i32) -> Result<(), Self::Error> {
|
fn serialize_i32(&mut self, v: i32) -> Result<(), Self::Error>;
|
||||||
self.serialize_i64(v as i64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `i64` value.
|
/// Serializes an `i64` value.
|
||||||
#[inline]
|
|
||||||
fn serialize_i64(&mut self, v: i64) -> Result<(), Self::Error>;
|
fn serialize_i64(&mut self, v: i64) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a `usize` value. By default it casts the value to a `u64` and
|
/// Serializes a `usize` value. If the format does not differentiate between
|
||||||
/// passes it to the `serialize_u64` method.
|
/// `usize` and `u64`, a reasonable implementation would be to cast the
|
||||||
#[inline]
|
/// value to `u64` and forward to `serialize_u64`.
|
||||||
fn serialize_usize(&mut self, v: usize) -> Result<(), Self::Error> {
|
fn serialize_usize(&mut self, v: usize) -> Result<(), Self::Error>;
|
||||||
self.serialize_u64(v as u64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `u8` value. By default it casts the value to a `u64` and passes
|
/// Serializes a `u8` value. If the format does not differentiate between
|
||||||
/// it to the `serialize_u64` method.
|
/// `u8` and `u64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `u64` and forward to `serialize_u64`.
|
||||||
fn serialize_u8(&mut self, v: u8) -> Result<(), Self::Error> {
|
fn serialize_u8(&mut self, v: u8) -> Result<(), Self::Error>;
|
||||||
self.serialize_u64(v as u64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `u32` value. By default it casts the value to a `u64` and passes
|
/// Serializes a `u16` value. If the format does not differentiate between
|
||||||
/// it to the `serialize_u64` method.
|
/// `u16` and `u64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `u64` and forward to `serialize_u64`.
|
||||||
fn serialize_u16(&mut self, v: u16) -> Result<(), Self::Error> {
|
fn serialize_u16(&mut self, v: u16) -> Result<(), Self::Error>;
|
||||||
self.serialize_u64(v as u64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `u32` value. By default it casts the value to a `u64` and passes
|
/// Serializes a `u32` value. If the format does not differentiate between
|
||||||
/// it to the `serialize_u64` method.
|
/// `u32` and `u64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `u64` and forward to `serialize_u64`.
|
||||||
fn serialize_u32(&mut self, v: u32) -> Result<(), Self::Error> {
|
fn serialize_u32(&mut self, v: u32) -> Result<(), Self::Error>;
|
||||||
self.serialize_u64(v as u64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// `Serializes a `u64` value.
|
/// `Serializes a `u64` value.
|
||||||
#[inline]
|
|
||||||
fn serialize_u64(&mut self, v: u64) -> Result<(), Self::Error>;
|
fn serialize_u64(&mut self, v: u64) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a `f32` value. By default it casts the value to a `f64` and passes
|
/// Serializes an `f32` value. If the format does not differentiate between
|
||||||
/// it to the `serialize_f64` method.
|
/// `f32` and `f64`, a reasonable implementation would be to cast the value
|
||||||
#[inline]
|
/// to `f64` and forward to `serialize_f64`.
|
||||||
fn serialize_f32(&mut self, v: f32) -> Result<(), Self::Error> {
|
fn serialize_f32(&mut self, v: f32) -> Result<(), Self::Error>;
|
||||||
self.serialize_f64(v as f64)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `f64` value.
|
/// Serializes an `f64` value.
|
||||||
fn serialize_f64(&mut self, v: f64) -> Result<(), Self::Error>;
|
fn serialize_f64(&mut self, v: f64) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a character. By default it serializes it as a `&str` containing a
|
/// Serializes a character.
|
||||||
/// single character.
|
fn serialize_char(&mut self, v: char) -> Result<(), Self::Error>;
|
||||||
#[inline]
|
|
||||||
fn serialize_char(&mut self, v: char) -> Result<(), Self::Error> {
|
|
||||||
self.serialize_str(::utils::encode_utf8(v).as_str())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `&str`.
|
/// Serializes a `&str`.
|
||||||
fn serialize_str(&mut self, value: &str) -> Result<(), Self::Error>;
|
fn serialize_str(&mut self, value: &str) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Enables those serialization formats that support serializing
|
/// Enables serializers to serialize byte slices more compactly or more
|
||||||
/// byte slices separately from generic arrays. By default it serializes as a regular array.
|
/// efficiently than other types of slices. If no efficient implementation
|
||||||
#[inline]
|
/// is available, a reasonable implementation would be to forward to
|
||||||
fn serialize_bytes(&mut self, value: &[u8]) -> Result<(), Self::Error> {
|
/// `serialize_seq`.
|
||||||
self.serialize_seq(impls::SeqIteratorVisitor::new(value.iter(), Some(value.len())))
|
fn serialize_bytes(&mut self, value: &[u8]) -> Result<(), Self::Error>;
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `()` value.
|
/// Serializes a `()` value.
|
||||||
fn serialize_unit(&mut self) -> Result<(), Self::Error>;
|
fn serialize_unit(&mut self) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a unit struct value.
|
/// Serializes a unit struct value. A reasonable implementation would be to
|
||||||
///
|
/// forward to `serialize_unit`.
|
||||||
/// By default, unit structs are serialized as a `()`.
|
fn serialize_unit_struct(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn serialize_unit_struct(&mut self, _name: &'static str) -> Result<(), Self::Error> {
|
name: &'static str,
|
||||||
self.serialize_unit()
|
) -> Result<(), Self::Error>;
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a unit variant, otherwise known as a variant with no arguments.
|
/// Serializes a unit variant, otherwise known as a variant with no
|
||||||
///
|
/// arguments. A reasonable implementation would be to forward to
|
||||||
/// By default, unit variants are serialized as a `()`.
|
/// `serialize_unit`.
|
||||||
#[inline]
|
fn serialize_unit_variant(
|
||||||
fn serialize_unit_variant(&mut self,
|
&mut self,
|
||||||
_name: &'static str,
|
name: &'static str,
|
||||||
_variant_index: usize,
|
variant_index: usize,
|
||||||
_variant: &'static str) -> Result<(), Self::Error> {
|
variant: &'static str,
|
||||||
self.serialize_unit()
|
) -> Result<(), Self::Error>;
|
||||||
}
|
|
||||||
|
|
||||||
/// Allows a tuple struct with a single element, also known as a
|
/// Allows a tuple struct with a single element, also known as a newtype
|
||||||
/// newtyped value, to be more efficiently serialized than a tuple struct with multiple items.
|
/// struct, to be more efficiently serialized than a tuple struct with
|
||||||
/// By default it just serializes the value as a tuple struct sequence.
|
/// multiple items. A reasonable implementation would be to forward to
|
||||||
#[inline]
|
/// `serialize_tuple_struct`.
|
||||||
fn serialize_newtype_struct<T>(&mut self,
|
fn serialize_newtype_struct<T: Serialize>(
|
||||||
name: &'static str,
|
&mut self,
|
||||||
value: T) -> Result<(), Self::Error>
|
name: &'static str,
|
||||||
where T: Serialize,
|
value: T,
|
||||||
{
|
) -> Result<(), Self::Error>;
|
||||||
self.serialize_tuple_struct(name, Some(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Allows a variant with a single item to be more efficiently
|
/// Allows a variant with a single item to be more efficiently serialized
|
||||||
/// serialized than a variant with multiple items. By default it just serializes the value as a
|
/// than a variant with multiple items. A reasonable implementation would be
|
||||||
/// tuple variant sequence.
|
/// to forward to `serialize_tuple_variant`.
|
||||||
#[inline]
|
fn serialize_newtype_variant<T: Serialize>(
|
||||||
fn serialize_newtype_variant<T>(&mut self,
|
&mut self,
|
||||||
name: &'static str,
|
name: &'static str,
|
||||||
variant_index: usize,
|
variant_index: usize,
|
||||||
variant: &'static str,
|
variant: &'static str,
|
||||||
value: T) -> Result<(), Self::Error>
|
value: T,
|
||||||
where T: Serialize,
|
) -> Result<(), Self::Error>;
|
||||||
{
|
|
||||||
self.serialize_tuple_variant(
|
|
||||||
name,
|
|
||||||
variant_index,
|
|
||||||
variant,
|
|
||||||
Some(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a `None` value..serialize
|
/// Serializes a `None` value.
|
||||||
fn serialize_none(&mut self) -> Result<(), Self::Error>;
|
fn serialize_none(&mut self) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a `Some(...)` value.
|
/// Serializes a `Some(...)` value.
|
||||||
fn serialize_some<V>(&mut self, value: V) -> Result<(), Self::Error>
|
fn serialize_some<T: Serialize>(
|
||||||
where V: Serialize;
|
&mut self,
|
||||||
|
value: T,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a sequence.
|
/// Begins to serialize a sequence. This call must be followed by zero or
|
||||||
///
|
/// more calls to `serialize_seq_elt`, then a call to `serialize_seq_end`.
|
||||||
/// Callees of this method need to construct a `SeqVisitor`, which iterates through each item
|
fn serialize_seq(
|
||||||
/// in the sequence.
|
&mut self,
|
||||||
fn serialize_seq<V>(&mut self, visitor: V) -> Result<(), Self::Error>
|
len: Option<usize>,
|
||||||
where V: SeqVisitor;
|
) -> Result<Self::SeqState, Self::Error>;
|
||||||
|
|
||||||
/// Serializes a sequence element.
|
/// Serializes a sequence element. Must have previously called
|
||||||
fn serialize_seq_elt<T>(&mut self, value: T) -> Result<(), Self::Error>
|
/// `serialize_seq`.
|
||||||
where T: Serialize;
|
fn serialize_seq_elt<T: Serialize>(
|
||||||
|
&mut self,
|
||||||
|
state: &mut Self::SeqState,
|
||||||
|
value: T,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
/// Serializes a tuple.
|
/// Finishes serializing a sequence.
|
||||||
///
|
fn serialize_seq_end(
|
||||||
/// By default this serializes a tuple as a sequence.
|
&mut self,
|
||||||
#[inline]
|
state: Self::SeqState,
|
||||||
fn serialize_tuple<V>(&mut self, visitor: V) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where V: SeqVisitor,
|
|
||||||
{
|
|
||||||
self.serialize_seq(visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a tuple element.
|
/// Begins to serialize a sequence whose length will be known at
|
||||||
///
|
/// deserialization time. This call must be followed by zero or more calls
|
||||||
/// By default, tuples are serialized as a sequence.
|
/// to `serialize_seq_elt`, then a call to `serialize_seq_end`. A reasonable
|
||||||
#[inline]
|
/// implementation would be to forward to `serialize_seq`.
|
||||||
fn serialize_tuple_elt<T>(&mut self, value: T) -> Result<(), Self::Error>
|
fn serialize_seq_fixed_size(
|
||||||
where T: Serialize
|
&mut self,
|
||||||
{
|
size: usize,
|
||||||
self.serialize_seq_elt(value)
|
) -> Result<Self::SeqState, Self::Error>;
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a fixed-size array.
|
/// Begins to serialize a tuple. This call must be followed by zero or more
|
||||||
///
|
/// calls to `serialize_tuple_elt`, then a call to `serialize_tuple_end`. A
|
||||||
/// By default this serializes an array as a sequence.
|
/// reasonable implementation would be to forward to `serialize_seq`.
|
||||||
#[inline]
|
fn serialize_tuple(
|
||||||
fn serialize_fixed_size_array<V>(&mut self, visitor: V) -> Result<(), Self::Error>
|
&mut self,
|
||||||
where V: SeqVisitor,
|
len: usize,
|
||||||
{
|
) -> Result<Self::TupleState, Self::Error>;
|
||||||
self.serialize_seq(visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a tuple struct.
|
/// Serializes a tuple element. Must have previously called
|
||||||
///
|
/// `serialize_tuple`.
|
||||||
/// By default, tuple structs are serialized as a tuple.
|
fn serialize_tuple_elt<T: Serialize>(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn serialize_tuple_struct<V>(&mut self,
|
state: &mut Self::TupleState,
|
||||||
_name: &'static str,
|
value: T,
|
||||||
visitor: V) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where V: SeqVisitor,
|
|
||||||
{
|
|
||||||
self.serialize_tuple(visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a tuple struct element.
|
/// Finishes serializing a tuple.
|
||||||
///
|
fn serialize_tuple_end(
|
||||||
/// By default, tuple struct elements are serialized as a tuple element.
|
&mut self,
|
||||||
#[inline]
|
state: Self::TupleState,
|
||||||
fn serialize_tuple_struct_elt<T>(&mut self, value: T) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where T: Serialize
|
|
||||||
{
|
|
||||||
self.serialize_tuple_elt(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a tuple variant.
|
/// Begins to serialize a tuple struct. This call must be followed by zero
|
||||||
///
|
/// or more calls to `serialize_tuple_struct_elt`, then a call to
|
||||||
/// By default, tuple variants are serialized as a tuple struct.
|
/// `serialize_tuple_struct_end`. A reasonable implementation would be to
|
||||||
#[inline]
|
/// forward to `serialize_tuple`.
|
||||||
fn serialize_tuple_variant<V>(&mut self,
|
fn serialize_tuple_struct(
|
||||||
_name: &'static str,
|
&mut self,
|
||||||
_variant_index: usize,
|
name: &'static str,
|
||||||
variant: &'static str,
|
len: usize,
|
||||||
visitor: V) -> Result<(), Self::Error>
|
) -> Result<Self::TupleStructState, Self::Error>;
|
||||||
where V: SeqVisitor,
|
|
||||||
{
|
|
||||||
self.serialize_tuple_struct(variant, visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a tuple element.
|
/// Serializes a tuple struct element. Must have previously called
|
||||||
///
|
/// `serialize_tuple_struct`.
|
||||||
/// By default, tuples are serialized as a sequence.
|
fn serialize_tuple_struct_elt<T: Serialize>(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn serialize_tuple_variant_elt<T>(&mut self, value: T) -> Result<(), Self::Error>
|
state: &mut Self::TupleStructState,
|
||||||
where T: Serialize
|
value: T,
|
||||||
{
|
) -> Result<(), Self::Error>;
|
||||||
self.serialize_tuple_struct_elt(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a map.
|
/// Finishes serializing a tuple struct.
|
||||||
///
|
fn serialize_tuple_struct_end(
|
||||||
/// Callees of this method need to construct a `MapVisitor`, which iterates through each item
|
&mut self,
|
||||||
/// in the map.
|
state: Self::TupleStructState,
|
||||||
fn serialize_map<V>(&mut self, visitor: V) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where V: MapVisitor;
|
|
||||||
|
|
||||||
/// Serializes a map element (key-value pair).
|
/// Begins to serialize a tuple variant. This call must be followed by zero
|
||||||
fn serialize_map_elt<K, V>(&mut self, key: K, value: V) -> Result<(), Self::Error>
|
/// or more calls to `serialize_tuple_variant_elt`, then a call to
|
||||||
where K: Serialize,
|
/// `serialize_tuple_variant_end`. A reasonable implementation would be to
|
||||||
V: Serialize;
|
/// forward to `serialize_tuple_struct`.
|
||||||
|
fn serialize_tuple_variant(
|
||||||
|
&mut self,
|
||||||
|
name: &'static str,
|
||||||
|
variant_index: usize,
|
||||||
|
variant: &'static str,
|
||||||
|
len: usize,
|
||||||
|
) -> Result<Self::TupleVariantState, Self::Error>;
|
||||||
|
|
||||||
/// Serializes a struct.
|
/// Serializes a tuple variant element. Must have previously called
|
||||||
///
|
/// `serialize_tuple_variant`.
|
||||||
/// By default, structs are serialized as a map with the field name as the key.
|
fn serialize_tuple_variant_elt<T: Serialize>(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn serialize_struct<V>(&mut self,
|
state: &mut Self::TupleVariantState,
|
||||||
_name: &'static str,
|
value: T,
|
||||||
visitor: V) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where V: MapVisitor,
|
|
||||||
{
|
|
||||||
self.serialize_map(visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes an element of a struct.
|
/// Finishes serializing a tuple variant.
|
||||||
///
|
fn serialize_tuple_variant_end(
|
||||||
/// By default, struct elements are serialized as a map element with the field name as the key.
|
&mut self,
|
||||||
#[inline]
|
state: Self::TupleVariantState,
|
||||||
fn serialize_struct_elt<V>(&mut self,
|
) -> Result<(), Self::Error>;
|
||||||
key: &'static str,
|
|
||||||
value: V) -> Result<(), Self::Error>
|
|
||||||
where V: Serialize,
|
|
||||||
{
|
|
||||||
self.serialize_map_elt(key, value)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes a struct variant.
|
/// Begins to serialize a map. This call must be followed by zero or more
|
||||||
///
|
/// calls to `serialize_map_elt`, then a call to `serialize_map_end`.
|
||||||
/// By default, struct variants are serialized as a struct.
|
fn serialize_map(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn serialize_struct_variant<V>(&mut self,
|
len: Option<usize>,
|
||||||
_name: &'static str,
|
) -> Result<Self::MapState, Self::Error>;
|
||||||
_variant_index: usize,
|
|
||||||
variant: &'static str,
|
|
||||||
visitor: V) -> Result<(), Self::Error>
|
|
||||||
where V: MapVisitor,
|
|
||||||
{
|
|
||||||
self.serialize_struct(variant, visitor)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Serializes an element of a struct variant.
|
/// Serialize a map element. Must have previously called `serialize_map`.
|
||||||
///
|
fn serialize_map_elt<K: Serialize, V: Serialize>(
|
||||||
/// By default, struct variant elements are serialized as a struct element.
|
&mut self,
|
||||||
#[inline]
|
state: &mut Self::MapState,
|
||||||
fn serialize_struct_variant_elt<V>(&mut self,
|
key: K,
|
||||||
key: &'static str,
|
value: V,
|
||||||
value: V) -> Result<(), Self::Error>
|
) -> Result<(), Self::Error>;
|
||||||
where V: Serialize,
|
|
||||||
{
|
/// Finishes serializing a map.
|
||||||
self.serialize_struct_elt(key, value)
|
fn serialize_map_end(
|
||||||
}
|
&mut self,
|
||||||
}
|
state: Self::MapState,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
/// A trait that is used by a `Serialize` to iterate through a sequence.
|
|
||||||
#[cfg_attr(feature = "nightly-testing", allow(len_without_is_empty))]
|
/// Begins to serialize a struct. This call must be followed by zero or more
|
||||||
pub trait SeqVisitor {
|
/// calls to `serialize_struct_elt`, then a call to `serialize_struct_end`.
|
||||||
/// Serializes a sequence item in the serializer.
|
fn serialize_struct(
|
||||||
///
|
&mut self,
|
||||||
/// This returns `Ok(Some(()))` when there are more items to serialize, or `Ok(None)` when
|
name: &'static str,
|
||||||
/// complete.
|
len: usize,
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
) -> Result<Self::StructState, Self::Error>;
|
||||||
where S: Serializer;
|
|
||||||
|
/// Serializes a struct field. Must have previously called
|
||||||
/// Return the length of the sequence if known.
|
/// `serialize_struct`.
|
||||||
#[inline]
|
fn serialize_struct_elt<V: Serialize>(
|
||||||
fn len(&self) -> Option<usize> {
|
&mut self,
|
||||||
None
|
state: &mut Self::StructState,
|
||||||
}
|
key: &'static str,
|
||||||
}
|
value: V,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
/// A trait that is used by a `Serialize` to iterate through a map.
|
|
||||||
#[cfg_attr(feature = "nightly-testing", allow(len_without_is_empty))]
|
/// Finishes serializing a struct.
|
||||||
pub trait MapVisitor {
|
fn serialize_struct_end(
|
||||||
/// Serializes a map item in the serializer.
|
&mut self,
|
||||||
///
|
state: Self::StructState,
|
||||||
/// This returns `Ok(Some(()))` when there are more items to serialize, or `Ok(None)` when
|
) -> Result<(), Self::Error>;
|
||||||
/// complete.
|
|
||||||
fn visit<S>(&mut self, serializer: &mut S) -> Result<Option<()>, S::Error>
|
/// Begins to serialize a struct variant. This call must be followed by zero
|
||||||
where S: Serializer;
|
/// or more calls to `serialize_struct_variant_elt`, then a call to
|
||||||
|
/// `serialize_struct_variant_end`.
|
||||||
/// Return the length of the map if known.
|
fn serialize_struct_variant(
|
||||||
#[inline]
|
&mut self,
|
||||||
fn len(&self) -> Option<usize> {
|
name: &'static str,
|
||||||
None
|
variant_index: usize,
|
||||||
}
|
variant: &'static str,
|
||||||
|
len: usize,
|
||||||
|
) -> Result<Self::StructVariantState, Self::Error>;
|
||||||
|
|
||||||
|
/// Serialize a struct variant element. Must have previously called
|
||||||
|
/// `serialize_struct_variant`.
|
||||||
|
fn serialize_struct_variant_elt<V: Serialize>(
|
||||||
|
&mut self,
|
||||||
|
state: &mut Self::StructVariantState,
|
||||||
|
key: &'static str,
|
||||||
|
value: V,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
|
|
||||||
|
/// Finishes serializing a struct variant.
|
||||||
|
fn serialize_struct_variant_end(
|
||||||
|
&mut self,
|
||||||
|
state: Self::StructVariantState,
|
||||||
|
) -> Result<(), Self::Error>;
|
||||||
}
|
}
|
||||||
|
|||||||
+14
-12
@@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_codegen"
|
name = "serde_codegen"
|
||||||
version = "0.7.11"
|
# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH
|
||||||
|
# USE THE 0.7.x BRANCH
|
||||||
|
version = "0.8.0-rc2"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "Macros to auto-generate implementations for the serde framework"
|
description = "Macros to auto-generate implementations for the serde framework"
|
||||||
@@ -12,26 +14,26 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/lib.rs.in"]
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["with-syntex"]
|
default = ["with-syntex"]
|
||||||
nightly = ["quasi_macros"]
|
unstable = ["quasi_macros"]
|
||||||
nightly-testing = ["clippy"]
|
unstable-testing = ["clippy"]
|
||||||
with-syntex = [
|
with-syntex = [
|
||||||
"quasi/with-syntex",
|
"quasi/with-syntex",
|
||||||
"quasi_codegen",
|
"quasi_codegen",
|
||||||
"quasi_codegen/with-syntex",
|
"quasi_codegen/with-syntex",
|
||||||
"serde_item/with-syntex",
|
"serde_codegen_internals/with-syntex",
|
||||||
"syntex",
|
"syntex",
|
||||||
"syntex_syntax",
|
"syntex_syntax",
|
||||||
]
|
]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
quasi_codegen = { version = "^0.13.0", optional = true }
|
quasi_codegen = { version = "^0.15.0", optional = true }
|
||||||
syntex = { version = "^0.36.0", optional = true }
|
syntex = { version = "^0.38.0", optional = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aster = { version = "^0.19.0", default-features = false }
|
aster = { version = "^0.21.1", default-features = false }
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
quasi = { version = "^0.13.0", default-features = false }
|
quasi = { version = "^0.15.0", default-features = false }
|
||||||
quasi_macros = { version = "^0.13.0", optional = true }
|
quasi_macros = { version = "^0.15.0", optional = true }
|
||||||
serde_item = { version = "^0.2.0", path = "../serde_item", default-features = false }
|
serde_codegen_internals = { version = "0.4.0-rc1", default-features = false }
|
||||||
syntex = { version = "^0.36.0", optional = true }
|
syntex = { version = "^0.38.0", optional = true }
|
||||||
syntex_syntax = { version = "^0.36.0", optional = true }
|
syntex_syntax = { version = "^0.38.0", optional = true }
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
use std::collections::HashSet;
|
|
||||||
|
|
||||||
use aster::AstBuilder;
|
use aster::AstBuilder;
|
||||||
|
|
||||||
use syntax::ast;
|
use syntax::ast;
|
||||||
use syntax::ptr::P;
|
use syntax::ptr::P;
|
||||||
use syntax::visit;
|
use syntax::visit;
|
||||||
|
|
||||||
use item::{attr, Item};
|
use internals::ast::Item;
|
||||||
|
use internals::attr;
|
||||||
|
|
||||||
// Remove the default from every type parameter because in the generated impls
|
// Remove the default from every type parameter because in the generated impls
|
||||||
// they look like associated types: "error: associated type bindings are not
|
// they look like associated types: "error: associated type bindings are not
|
||||||
@@ -62,8 +61,6 @@ pub fn with_bound<F>(
|
|||||||
item.body.all_fields()
|
item.body.all_fields()
|
||||||
.filter(|&field| filter(&field.attrs))
|
.filter(|&field| filter(&field.attrs))
|
||||||
.map(|field| &field.ty)
|
.map(|field| &field.ty)
|
||||||
// TODO this filter can be removed later, see comment on function
|
|
||||||
.filter(|ty| contains_generic(ty, generics))
|
|
||||||
.filter(|ty| !contains_recursion(ty, item.ident))
|
.filter(|ty| !contains_recursion(ty, item.ident))
|
||||||
.map(|ty| strip_reference(ty))
|
.map(|ty| strip_reference(ty))
|
||||||
.map(|ty| builder.where_predicate()
|
.map(|ty| builder.where_predicate()
|
||||||
@@ -75,44 +72,6 @@ pub fn with_bound<F>(
|
|||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rust <1.7 enforces that `where` clauses involve generic type parameters. The
|
|
||||||
// corresponding compiler error is E0193. It is no longer enforced in Rust >=1.7
|
|
||||||
// so this filtering can be removed in the future when we stop supporting <1.7.
|
|
||||||
//
|
|
||||||
// E0193 means we must not generate a `where` clause like `i32: Serialize`
|
|
||||||
// because even though i32 implements Serialize, i32 is not a generic type
|
|
||||||
// parameter. Clauses like `T: Serialize` and `Option<T>: Serialize` are okay.
|
|
||||||
// This function decides whether a given type references any of the generic type
|
|
||||||
// parameters in the input `Generics`.
|
|
||||||
fn contains_generic(ty: &ast::Ty, generics: &ast::Generics) -> bool {
|
|
||||||
struct FindGeneric<'a> {
|
|
||||||
generic_names: &'a HashSet<ast::Name>,
|
|
||||||
found_generic: bool,
|
|
||||||
}
|
|
||||||
impl<'a, 'v> visit::Visitor<'v> for FindGeneric<'a> {
|
|
||||||
fn visit_path(&mut self, path: &'v ast::Path, _id: ast::NodeId) {
|
|
||||||
if !path.global
|
|
||||||
&& path.segments.len() == 1
|
|
||||||
&& self.generic_names.contains(&path.segments[0].identifier.name) {
|
|
||||||
self.found_generic = true;
|
|
||||||
} else {
|
|
||||||
visit::walk_path(self, path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let generic_names: HashSet<_> = generics.ty_params.iter()
|
|
||||||
.map(|ty_param| ty_param.ident.name)
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let mut visitor = FindGeneric {
|
|
||||||
generic_names: &generic_names,
|
|
||||||
found_generic: false,
|
|
||||||
};
|
|
||||||
visit::walk_ty(&mut visitor, ty);
|
|
||||||
visitor.found_generic
|
|
||||||
}
|
|
||||||
|
|
||||||
// We do not attempt to generate any bounds based on field types that are
|
// We do not attempt to generate any bounds based on field types that are
|
||||||
// directly recursive, as in:
|
// directly recursive, as in:
|
||||||
//
|
//
|
||||||
@@ -137,8 +96,8 @@ fn contains_recursion(ty: &ast::Ty, ident: ast::Ident) -> bool {
|
|||||||
ident: ast::Ident,
|
ident: ast::Ident,
|
||||||
found_recursion: bool,
|
found_recursion: bool,
|
||||||
}
|
}
|
||||||
impl<'v> visit::Visitor<'v> for FindRecursion {
|
impl visit::Visitor for FindRecursion {
|
||||||
fn visit_path(&mut self, path: &'v ast::Path, _id: ast::NodeId) {
|
fn visit_path(&mut self, path: &ast::Path, _id: ast::NodeId) {
|
||||||
if !path.global
|
if !path.global
|
||||||
&& path.segments.len() == 1
|
&& path.segments.len() == 1
|
||||||
&& path.segments[0].identifier == self.ident {
|
&& path.segments[0].identifier == self.ident {
|
||||||
|
|||||||
+42
-36
@@ -5,10 +5,12 @@ use syntax::codemap::Span;
|
|||||||
use syntax::ext::base::{Annotatable, ExtCtxt};
|
use syntax::ext::base::{Annotatable, ExtCtxt};
|
||||||
use syntax::parse::token::InternedString;
|
use syntax::parse::token::InternedString;
|
||||||
use syntax::ptr::P;
|
use syntax::ptr::P;
|
||||||
|
use syntax::tokenstream::TokenTree;
|
||||||
|
|
||||||
use bound;
|
use bound;
|
||||||
use error::Error;
|
use span;
|
||||||
use item::{self, attr};
|
use internals::ast::{Body, Field, Item, Style, Variant};
|
||||||
|
use internals::{attr, Error};
|
||||||
|
|
||||||
pub fn expand_derive_deserialize(
|
pub fn expand_derive_deserialize(
|
||||||
cx: &mut ExtCtxt,
|
cx: &mut ExtCtxt,
|
||||||
@@ -27,9 +29,9 @@ pub fn expand_derive_deserialize(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let item = match item::Item::from_ast(cx, item) {
|
let item = match Item::from_ast(cx, item) {
|
||||||
Ok(item) => item,
|
Ok(item) => item,
|
||||||
Err(item::Error::UnexpectedItemKind) => {
|
Err(Error::UnexpectedItemKind) => {
|
||||||
cx.span_err(item.span,
|
cx.span_err(item.span,
|
||||||
"`#[derive(Deserialize)]` may only be applied to structs and enums");
|
"`#[derive(Deserialize)]` may only be applied to structs and enums");
|
||||||
return;
|
return;
|
||||||
@@ -43,13 +45,13 @@ pub fn expand_derive_deserialize(
|
|||||||
let builder = aster::AstBuilder::new().span(span);
|
let builder = aster::AstBuilder::new().span(span);
|
||||||
|
|
||||||
let impl_item = deserialize_item(cx, &builder, &item);
|
let impl_item = deserialize_item(cx, &builder, &item);
|
||||||
push(Annotatable::Item(impl_item))
|
push(span::record_expansion(cx, impl_item, "Deserialize"))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn deserialize_item(
|
fn deserialize_item(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
) -> P<ast::Item> {
|
) -> P<ast::Item> {
|
||||||
let impl_generics = build_impl_generics(builder, &item);
|
let impl_generics = build_impl_generics(builder, &item);
|
||||||
|
|
||||||
@@ -88,7 +90,7 @@ fn deserialize_item(
|
|||||||
// each generic field type that will be set to a default value.
|
// each generic field type that will be set to a default value.
|
||||||
fn build_impl_generics(
|
fn build_impl_generics(
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
) -> ast::Generics {
|
) -> ast::Generics {
|
||||||
let generics = bound::without_defaults(item.generics);
|
let generics = bound::without_defaults(item.generics);
|
||||||
|
|
||||||
@@ -131,12 +133,12 @@ fn requires_default(attrs: &attr::Field) -> bool {
|
|||||||
fn deserialize_body(
|
fn deserialize_body(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
match item.body {
|
match item.body {
|
||||||
item::Body::Enum(ref variants) => {
|
Body::Enum(ref variants) => {
|
||||||
deserialize_item_enum(
|
deserialize_item_enum(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -146,7 +148,7 @@ fn deserialize_body(
|
|||||||
variants,
|
variants,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Struct, ref fields) => {
|
Body::Struct(Style::Struct, ref fields) => {
|
||||||
if fields.iter().any(|field| field.ident.is_none()) {
|
if fields.iter().any(|field| field.ident.is_none()) {
|
||||||
cx.span_bug(item.span, "struct has unnamed fields")
|
cx.span_bug(item.span, "struct has unnamed fields")
|
||||||
}
|
}
|
||||||
@@ -161,8 +163,8 @@ fn deserialize_body(
|
|||||||
fields,
|
fields,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Tuple, ref fields) |
|
Body::Struct(Style::Tuple, ref fields) |
|
||||||
item::Body::Struct(item::Style::Newtype, ref fields) => {
|
Body::Struct(Style::Newtype, ref fields) => {
|
||||||
if fields.iter().any(|field| field.ident.is_some()) {
|
if fields.iter().any(|field| field.ident.is_some()) {
|
||||||
cx.span_bug(item.span, "tuple struct has named fields")
|
cx.span_bug(item.span, "tuple struct has named fields")
|
||||||
}
|
}
|
||||||
@@ -177,7 +179,7 @@ fn deserialize_body(
|
|||||||
fields,
|
fields,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Unit, _) => {
|
Body::Struct(Style::Unit, _) => {
|
||||||
deserialize_unit_struct(
|
deserialize_unit_struct(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -308,7 +310,7 @@ fn deserialize_tuple(
|
|||||||
variant_ident: Option<Ident>,
|
variant_ident: Option<Ident>,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let where_clause = &impl_generics.where_clause;
|
let where_clause = &impl_generics.where_clause;
|
||||||
@@ -390,9 +392,10 @@ fn deserialize_seq(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
type_path: ast::Path,
|
type_path: ast::Path,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
is_struct: bool,
|
is_struct: bool,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
|
let mut index_in_seq = 0usize;
|
||||||
let let_values: Vec<_> = fields.iter()
|
let let_values: Vec<_> = fields.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.map(|(i, field)| {
|
.map(|(i, field)| {
|
||||||
@@ -418,14 +421,17 @@ fn deserialize_seq(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
quote_stmt!(cx,
|
let assign = quote_stmt!(cx,
|
||||||
let $name = match $visit {
|
let $name = match $visit {
|
||||||
Some(value) => { value },
|
Some(value) => { value },
|
||||||
None => {
|
None => {
|
||||||
return Err(_serde::de::Error::end_of_stream());
|
try!(visitor.end());
|
||||||
|
return Err(_serde::de::Error::invalid_length($index_in_seq));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
).unwrap()
|
).unwrap();
|
||||||
|
index_in_seq += 1;
|
||||||
|
assign
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
@@ -470,8 +476,8 @@ fn deserialize_newtype_struct(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
type_path: &ast::Path,
|
type_path: &ast::Path,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
field: &item::Field,
|
field: &Field,
|
||||||
) -> Vec<ast::TokenTree> {
|
) -> Vec<TokenTree> {
|
||||||
let value = match field.attrs.deserialize_with() {
|
let value = match field.attrs.deserialize_with() {
|
||||||
None => {
|
None => {
|
||||||
let field_ty = &field.ty;
|
let field_ty = &field.ty;
|
||||||
@@ -505,7 +511,7 @@ fn deserialize_struct(
|
|||||||
variant_ident: Option<Ident>,
|
variant_ident: Option<Ident>,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let where_clause = &impl_generics.where_clause;
|
let where_clause = &impl_generics.where_clause;
|
||||||
@@ -587,7 +593,7 @@ fn deserialize_item_enum(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
variants: &[item::Variant],
|
variants: &[Variant],
|
||||||
item_attrs: &attr::Item
|
item_attrs: &attr::Item
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let where_clause = &impl_generics.where_clause;
|
let where_clause = &impl_generics.where_clause;
|
||||||
@@ -678,19 +684,19 @@ fn deserialize_variant(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
variant: &item::Variant,
|
variant: &Variant,
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let variant_ident = variant.ident;
|
let variant_ident = variant.ident;
|
||||||
|
|
||||||
match variant.style {
|
match variant.style {
|
||||||
item::Style::Unit => {
|
Style::Unit => {
|
||||||
quote_expr!(cx, {
|
quote_expr!(cx, {
|
||||||
try!(visitor.visit_unit());
|
try!(visitor.visit_unit());
|
||||||
Ok($type_ident::$variant_ident)
|
Ok($type_ident::$variant_ident)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
item::Style::Newtype => {
|
Style::Newtype => {
|
||||||
deserialize_newtype_variant(
|
deserialize_newtype_variant(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -700,7 +706,7 @@ fn deserialize_variant(
|
|||||||
&variant.fields[0],
|
&variant.fields[0],
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
item::Style::Tuple => {
|
Style::Tuple => {
|
||||||
deserialize_tuple(
|
deserialize_tuple(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -712,7 +718,7 @@ fn deserialize_variant(
|
|||||||
item_attrs,
|
item_attrs,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
item::Style::Struct => {
|
Style::Struct => {
|
||||||
deserialize_struct(
|
deserialize_struct(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -733,7 +739,7 @@ fn deserialize_newtype_variant(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
variant_ident: Ident,
|
variant_ident: Ident,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
field: &item::Field,
|
field: &Field,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let visit = match field.attrs.deserialize_with() {
|
let visit = match field.attrs.deserialize_with() {
|
||||||
None => {
|
None => {
|
||||||
@@ -919,7 +925,7 @@ fn deserialize_struct_visitor(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
struct_path: ast::Path,
|
struct_path: ast::Path,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> (Vec<P<ast::Item>>, ast::Stmt, P<ast::Expr>) {
|
) -> (Vec<P<ast::Item>>, ast::Stmt, P<ast::Expr>) {
|
||||||
let field_exprs = fields.iter()
|
let field_exprs = fields.iter()
|
||||||
@@ -971,7 +977,7 @@ fn deserialize_map(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
struct_path: ast::Path,
|
struct_path: ast::Path,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
// Create the field names for the fields.
|
// Create the field names for the fields.
|
||||||
@@ -1091,10 +1097,10 @@ fn deserialize_map(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$extract_values
|
|
||||||
|
|
||||||
try!(visitor.end());
|
try!(visitor.end());
|
||||||
|
|
||||||
|
$extract_values
|
||||||
|
|
||||||
Ok($result)
|
Ok($result)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1187,14 +1193,14 @@ fn name_expr(
|
|||||||
|
|
||||||
fn check_no_str(
|
fn check_no_str(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), ()> {
|
||||||
let fail = |field: &item::Field| {
|
let fail = |field: &Field| {
|
||||||
cx.span_err(
|
cx.span_err(
|
||||||
field.span,
|
field.span,
|
||||||
"Serde does not support deserializing fields of type &str; \
|
"Serde does not support deserializing fields of type &str; \
|
||||||
consider using String instead");
|
consider using String instead");
|
||||||
Err(Error)
|
Err(())
|
||||||
};
|
};
|
||||||
|
|
||||||
for field in item.body.all_fields() {
|
for field in item.body.all_fields() {
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
/// Error returned if failed to parse attribute.
|
|
||||||
pub struct Error;
|
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
||||||
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
|
#![cfg_attr(feature = "clippy", feature(plugin))]
|
||||||
#![cfg_attr(feature = "nightly-testing", allow(too_many_arguments))]
|
#![cfg_attr(feature = "clippy", allow(too_many_arguments))]
|
||||||
#![cfg_attr(feature = "nightly-testing", allow(used_underscore_binding))]
|
#![cfg_attr(feature = "clippy", allow(used_underscore_binding))]
|
||||||
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
|
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
|
||||||
#![cfg_attr(not(feature = "with-syntex"), plugin(quasi_macros))]
|
#![cfg_attr(not(feature = "with-syntex"), plugin(quasi_macros))]
|
||||||
|
|
||||||
extern crate aster;
|
extern crate aster;
|
||||||
extern crate quasi;
|
extern crate quasi;
|
||||||
extern crate serde_item as item;
|
extern crate serde_codegen_internals as internals;
|
||||||
|
|
||||||
#[cfg(feature = "with-syntex")]
|
#[cfg(feature = "with-syntex")]
|
||||||
extern crate syntex;
|
extern crate syntex;
|
||||||
@@ -40,13 +40,6 @@ pub fn expand<S, D>(src: S, dst: D) -> Result<(), syntex::Error>
|
|||||||
where S: AsRef<Path>,
|
where S: AsRef<Path>,
|
||||||
D: AsRef<Path>,
|
D: AsRef<Path>,
|
||||||
{
|
{
|
||||||
let mut registry = syntex::Registry::new();
|
|
||||||
register(&mut registry);
|
|
||||||
registry.expand("", src.as_ref(), dst.as_ref())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "with-syntex")]
|
|
||||||
pub fn register(reg: &mut syntex::Registry) {
|
|
||||||
use syntax::{ast, fold};
|
use syntax::{ast, fold};
|
||||||
|
|
||||||
/// Strip the serde attributes from the crate.
|
/// Strip the serde attributes from the crate.
|
||||||
@@ -73,6 +66,8 @@ pub fn register(reg: &mut syntex::Registry) {
|
|||||||
fold::Folder::fold_crate(&mut StripAttributeFolder, krate)
|
fold::Folder::fold_crate(&mut StripAttributeFolder, krate)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let mut reg = syntex::Registry::new();
|
||||||
|
|
||||||
reg.add_attr("feature(custom_derive)");
|
reg.add_attr("feature(custom_derive)");
|
||||||
reg.add_attr("feature(custom_attribute)");
|
reg.add_attr("feature(custom_attribute)");
|
||||||
|
|
||||||
@@ -80,6 +75,8 @@ pub fn register(reg: &mut syntex::Registry) {
|
|||||||
reg.add_decorator("derive_Deserialize", de::expand_derive_deserialize);
|
reg.add_decorator("derive_Deserialize", de::expand_derive_deserialize);
|
||||||
|
|
||||||
reg.add_post_expansion_pass(strip_attributes);
|
reg.add_post_expansion_pass(strip_attributes);
|
||||||
|
|
||||||
|
reg.expand("", src.as_ref(), dst.as_ref())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "with-syntex"))]
|
#[cfg(not(feature = "with-syntex"))]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
mod bound;
|
mod bound;
|
||||||
mod de;
|
mod de;
|
||||||
mod error;
|
|
||||||
mod ser;
|
mod ser;
|
||||||
|
mod span;
|
||||||
|
|||||||
+125
-312
@@ -6,7 +6,9 @@ use syntax::ext::base::{Annotatable, ExtCtxt};
|
|||||||
use syntax::ptr::P;
|
use syntax::ptr::P;
|
||||||
|
|
||||||
use bound;
|
use bound;
|
||||||
use item::{self, attr};
|
use span;
|
||||||
|
use internals::ast::{Body, Field, Item, Style, Variant};
|
||||||
|
use internals::{attr, Error};
|
||||||
|
|
||||||
pub fn expand_derive_serialize(
|
pub fn expand_derive_serialize(
|
||||||
cx: &mut ExtCtxt,
|
cx: &mut ExtCtxt,
|
||||||
@@ -25,9 +27,9 @@ pub fn expand_derive_serialize(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let item = match item::Item::from_ast(cx, item) {
|
let item = match Item::from_ast(cx, item) {
|
||||||
Ok(item) => item,
|
Ok(item) => item,
|
||||||
Err(item::Error::UnexpectedItemKind) => {
|
Err(Error::UnexpectedItemKind) => {
|
||||||
cx.span_err(item.span,
|
cx.span_err(item.span,
|
||||||
"`#[derive(Serialize)]` may only be applied to structs and enums");
|
"`#[derive(Serialize)]` may only be applied to structs and enums");
|
||||||
return;
|
return;
|
||||||
@@ -37,13 +39,13 @@ pub fn expand_derive_serialize(
|
|||||||
let builder = aster::AstBuilder::new().span(span);
|
let builder = aster::AstBuilder::new().span(span);
|
||||||
|
|
||||||
let impl_item = serialize_item(cx, &builder, &item);
|
let impl_item = serialize_item(cx, &builder, &item);
|
||||||
push(Annotatable::Item(impl_item))
|
push(span::record_expansion(cx, impl_item, "Serialize"))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_item(
|
fn serialize_item(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
) -> P<ast::Item> {
|
) -> P<ast::Item> {
|
||||||
let impl_generics = build_impl_generics(builder, &item);
|
let impl_generics = build_impl_generics(builder, &item);
|
||||||
|
|
||||||
@@ -81,7 +83,7 @@ fn serialize_item(
|
|||||||
// field type that will be serialized by us.
|
// field type that will be serialized by us.
|
||||||
fn build_impl_generics(
|
fn build_impl_generics(
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
) -> ast::Generics {
|
) -> ast::Generics {
|
||||||
let generics = bound::without_defaults(item.generics);
|
let generics = bound::without_defaults(item.generics);
|
||||||
|
|
||||||
@@ -114,12 +116,12 @@ fn needs_serialize_bound(attrs: &attr::Field) -> bool {
|
|||||||
fn serialize_body(
|
fn serialize_body(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
item: &item::Item,
|
item: &Item,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
match item.body {
|
match item.body {
|
||||||
item::Body::Enum(ref variants) => {
|
Body::Enum(ref variants) => {
|
||||||
serialize_item_enum(
|
serialize_item_enum(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -129,7 +131,7 @@ fn serialize_body(
|
|||||||
variants,
|
variants,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Struct, ref fields) => {
|
Body::Struct(Style::Struct, ref fields) => {
|
||||||
if fields.iter().any(|field| field.ident.is_none()) {
|
if fields.iter().any(|field| field.ident.is_none()) {
|
||||||
cx.span_bug(item.span, "struct has unnamed fields")
|
cx.span_bug(item.span, "struct has unnamed fields")
|
||||||
}
|
}
|
||||||
@@ -142,7 +144,7 @@ fn serialize_body(
|
|||||||
fields,
|
fields,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Tuple, ref fields) => {
|
Body::Struct(Style::Tuple, ref fields) => {
|
||||||
if fields.iter().any(|field| field.ident.is_some()) {
|
if fields.iter().any(|field| field.ident.is_some()) {
|
||||||
cx.span_bug(item.span, "tuple struct has named fields")
|
cx.span_bug(item.span, "tuple struct has named fields")
|
||||||
}
|
}
|
||||||
@@ -155,7 +157,7 @@ fn serialize_body(
|
|||||||
fields,
|
fields,
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Newtype, ref fields) => {
|
Body::Struct(Style::Newtype, ref fields) => {
|
||||||
serialize_newtype_struct(
|
serialize_newtype_struct(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -164,7 +166,7 @@ fn serialize_body(
|
|||||||
&fields[0],
|
&fields[0],
|
||||||
&item.attrs)
|
&item.attrs)
|
||||||
}
|
}
|
||||||
item::Body::Struct(item::Style::Unit, _) => {
|
Body::Struct(Style::Unit, _) => {
|
||||||
serialize_unit_struct(
|
serialize_unit_struct(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -190,7 +192,7 @@ fn serialize_newtype_struct(
|
|||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
item_ty: P<ast::Ty>,
|
item_ty: P<ast::Ty>,
|
||||||
field: &item::Field,
|
field: &Field,
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let type_name = name_expr(builder, item_attrs.name());
|
let type_name = name_expr(builder, item_attrs.name());
|
||||||
@@ -211,33 +213,26 @@ fn serialize_tuple_struct(
|
|||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let (visitor_struct, visitor_impl) = serialize_tuple_struct_visitor(
|
let serialize_stmts = serialize_tuple_struct_visitor(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
ty.clone(),
|
ty.clone(),
|
||||||
builder.ty()
|
|
||||||
.ref_()
|
|
||||||
.lifetime("'__a")
|
|
||||||
.build_ty(ty.clone()),
|
|
||||||
builder.id("serialize_tuple_struct_elt"),
|
|
||||||
fields,
|
fields,
|
||||||
impl_generics,
|
impl_generics,
|
||||||
false,
|
false,
|
||||||
|
cx.ident_of("serialize_tuple_struct_elt"),
|
||||||
);
|
);
|
||||||
|
|
||||||
let type_name = name_expr(builder, item_attrs.name());
|
let type_name = name_expr(builder, item_attrs.name());
|
||||||
|
let len = serialize_stmts.len();
|
||||||
|
|
||||||
quote_expr!(cx, {
|
quote_expr!(cx, {
|
||||||
$visitor_struct
|
let mut state = try!(_serializer.serialize_tuple_struct($type_name, $len));
|
||||||
$visitor_impl
|
$serialize_stmts
|
||||||
_serializer.serialize_tuple_struct($type_name, Visitor {
|
_serializer.serialize_tuple_struct_end(state)
|
||||||
value: self,
|
|
||||||
state: 0,
|
|
||||||
_structure_ty: ::std::marker::PhantomData::<&$ty>,
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,33 +241,37 @@ fn serialize_struct(
|
|||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let (visitor_struct, visitor_impl) = serialize_struct_visitor(
|
let serialize_fields = serialize_struct_visitor(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
ty.clone(),
|
ty.clone(),
|
||||||
builder.ty()
|
|
||||||
.ref_()
|
|
||||||
.lifetime("'__a")
|
|
||||||
.build_ty(ty.clone()),
|
|
||||||
builder.id("serialize_struct_elt"),
|
|
||||||
fields,
|
fields,
|
||||||
impl_generics,
|
impl_generics,
|
||||||
false,
|
false,
|
||||||
|
cx.ident_of("serialize_struct_elt"),
|
||||||
);
|
);
|
||||||
|
|
||||||
let type_name = name_expr(builder, item_attrs.name());
|
let type_name = name_expr(builder, item_attrs.name());
|
||||||
|
let len = fields.iter()
|
||||||
|
.filter(|&field| !field.attrs.skip_serializing())
|
||||||
|
.map(|field| {
|
||||||
|
let ident = field.ident.expect("struct has unnamed fields");
|
||||||
|
let field_expr = quote_expr!(cx, &self.$ident);
|
||||||
|
|
||||||
|
match field.attrs.skip_serializing_if() {
|
||||||
|
Some(path) => quote_expr!(cx, if $path($field_expr) { 0 } else { 1 }),
|
||||||
|
None => quote_expr!(cx, 1),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.fold(quote_expr!(cx, 0), |sum, expr| quote_expr!(cx, $sum + $expr));
|
||||||
|
|
||||||
quote_expr!(cx, {
|
quote_expr!(cx, {
|
||||||
$visitor_struct
|
let mut state = try!(_serializer.serialize_struct($type_name, $len));
|
||||||
$visitor_impl
|
$serialize_fields
|
||||||
_serializer.serialize_struct($type_name, Visitor {
|
_serializer.serialize_struct_end(state)
|
||||||
value: self,
|
|
||||||
state: 0,
|
|
||||||
_structure_ty: ::std::marker::PhantomData::<&$ty>,
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -282,7 +281,7 @@ fn serialize_item_enum(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
impl_generics: &ast::Generics,
|
impl_generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
variants: &[item::Variant],
|
variants: &[Variant],
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let arms: Vec<_> =
|
let arms: Vec<_> =
|
||||||
@@ -315,7 +314,7 @@ fn serialize_variant(
|
|||||||
type_ident: Ident,
|
type_ident: Ident,
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
variant: &item::Variant,
|
variant: &Variant,
|
||||||
variant_index: usize,
|
variant_index: usize,
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> ast::Arm {
|
) -> ast::Arm {
|
||||||
@@ -325,7 +324,7 @@ fn serialize_variant(
|
|||||||
let variant_name = name_expr(builder, variant.attrs.name());
|
let variant_name = name_expr(builder, variant.attrs.name());
|
||||||
|
|
||||||
match variant.style {
|
match variant.style {
|
||||||
item::Style::Unit => {
|
Style::Unit => {
|
||||||
quote_arm!(cx,
|
quote_arm!(cx,
|
||||||
$type_ident::$variant_ident => {
|
$type_ident::$variant_ident => {
|
||||||
_serde::ser::Serializer::serialize_unit_variant(
|
_serde::ser::Serializer::serialize_unit_variant(
|
||||||
@@ -337,7 +336,7 @@ fn serialize_variant(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
item::Style::Newtype => {
|
Style::Newtype => {
|
||||||
let expr = serialize_newtype_variant(
|
let expr = serialize_newtype_variant(
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
@@ -353,7 +352,7 @@ fn serialize_variant(
|
|||||||
$type_ident::$variant_ident(ref __simple_value) => { $expr }
|
$type_ident::$variant_ident(ref __simple_value) => { $expr }
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
item::Style::Tuple => {
|
Style::Tuple => {
|
||||||
let field_names: Vec<ast::Ident> = (0 .. variant.fields.len())
|
let field_names: Vec<ast::Ident> = (0 .. variant.fields.len())
|
||||||
.map(|i| builder.id(format!("__field{}", i)))
|
.map(|i| builder.id(format!("__field{}", i)))
|
||||||
.collect();
|
.collect();
|
||||||
@@ -375,35 +374,26 @@ fn serialize_variant(
|
|||||||
generics,
|
generics,
|
||||||
ty,
|
ty,
|
||||||
&variant.fields,
|
&variant.fields,
|
||||||
field_names,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
quote_arm!(cx,
|
quote_arm!(cx,
|
||||||
$pat => { $expr }
|
$pat => { $expr }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
item::Style::Struct => {
|
Style::Struct => {
|
||||||
let field_names: Vec<_> = (0 .. variant.fields.len())
|
let mut pat = builder.pat().struct_().id(type_ident).id(variant_ident).build();
|
||||||
.map(|i| builder.id(format!("__field{}", i)))
|
for field in variant.fields.iter() {
|
||||||
.collect();
|
let name = match field.ident {
|
||||||
|
Some(name) => name,
|
||||||
let pat = builder.pat().struct_()
|
None => cx.span_bug(field.span, "struct variant has unnamed fields"),
|
||||||
.id(type_ident).id(variant_ident).build()
|
};
|
||||||
.with_pats(
|
pat = pat.with_field_pat(ast::FieldPat {
|
||||||
field_names.iter()
|
ident: name,
|
||||||
.zip(variant.fields.iter())
|
pat: builder.pat().ref_id(name),
|
||||||
.map(|(id, field)| {
|
is_shorthand: true,
|
||||||
let name = match field.ident {
|
});
|
||||||
Some(name) => name,
|
}
|
||||||
None => {
|
let pat = pat.build();
|
||||||
cx.span_bug(field.span, "struct variant has unnamed fields")
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
(name, builder.pat().ref_id(id))
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let expr = serialize_struct_variant(
|
let expr = serialize_struct_variant(
|
||||||
cx,
|
cx,
|
||||||
@@ -413,7 +403,6 @@ fn serialize_variant(
|
|||||||
generics,
|
generics,
|
||||||
ty,
|
ty,
|
||||||
&variant.fields,
|
&variant.fields,
|
||||||
field_names,
|
|
||||||
item_attrs,
|
item_attrs,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -432,7 +421,7 @@ fn serialize_newtype_variant(
|
|||||||
variant_name: P<ast::Expr>,
|
variant_name: P<ast::Expr>,
|
||||||
item_ty: P<ast::Ty>,
|
item_ty: P<ast::Ty>,
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
field: &item::Field,
|
field: &Field,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let mut field_expr = quote_expr!(cx, __simple_value);
|
let mut field_expr = quote_expr!(cx, __simple_value);
|
||||||
if let Some(path) = field.attrs.serialize_with() {
|
if let Some(path) = field.attrs.serialize_with() {
|
||||||
@@ -459,47 +448,24 @@ fn serialize_tuple_variant(
|
|||||||
variant_name: P<ast::Expr>,
|
variant_name: P<ast::Expr>,
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
structure_ty: P<ast::Ty>,
|
structure_ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
field_names: Vec<Ident>,
|
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let variant_ty = builder.ty().tuple()
|
let serialize_stmts = serialize_tuple_struct_visitor(
|
||||||
.with_tys(
|
|
||||||
fields.iter().map(|field| {
|
|
||||||
builder.ty()
|
|
||||||
.ref_()
|
|
||||||
.lifetime("'__a")
|
|
||||||
.build_ty(field.ty.clone())
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let (visitor_struct, visitor_impl) = serialize_tuple_struct_visitor(
|
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
structure_ty.clone(),
|
structure_ty,
|
||||||
variant_ty,
|
|
||||||
builder.id("serialize_tuple_variant_elt"),
|
|
||||||
fields,
|
fields,
|
||||||
generics,
|
generics,
|
||||||
true,
|
true,
|
||||||
|
cx.ident_of("serialize_tuple_variant_elt"),
|
||||||
);
|
);
|
||||||
|
|
||||||
let value_expr = builder.expr().tuple()
|
let len = serialize_stmts.len();
|
||||||
.with_exprs(
|
|
||||||
field_names.iter().map(|field| {
|
|
||||||
builder.expr().id(field)
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
quote_expr!(cx, {
|
quote_expr!(cx, {
|
||||||
$visitor_struct
|
let mut state = try!(_serializer.serialize_tuple_variant($type_name, $variant_index, $variant_name, $len));
|
||||||
$visitor_impl
|
$serialize_stmts
|
||||||
_serializer.serialize_tuple_variant($type_name, $variant_index, $variant_name, Visitor {
|
_serializer.serialize_tuple_variant_end(state)
|
||||||
value: $value_expr,
|
|
||||||
state: 0,
|
|
||||||
_structure_ty: ::std::marker::PhantomData::<&$structure_ty>,
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -510,84 +476,43 @@ fn serialize_struct_variant(
|
|||||||
variant_name: P<ast::Expr>,
|
variant_name: P<ast::Expr>,
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
ty: P<ast::Ty>,
|
ty: P<ast::Ty>,
|
||||||
fields: &[item::Field],
|
fields: &[Field],
|
||||||
field_names: Vec<Ident>,
|
|
||||||
item_attrs: &attr::Item,
|
item_attrs: &attr::Item,
|
||||||
) -> P<ast::Expr> {
|
) -> P<ast::Expr> {
|
||||||
let variant_generics = builder.generics()
|
|
||||||
.with(generics.clone())
|
|
||||||
.add_lifetime_bound("'__serde_variant")
|
|
||||||
.lifetime_name("'__serde_variant")
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let variant_struct = builder.item().struct_("__VariantStruct")
|
let serialize_fields = serialize_struct_visitor(
|
||||||
.with_generics(variant_generics.clone())
|
|
||||||
.with_fields(
|
|
||||||
fields.iter().map(|field| {
|
|
||||||
builder.struct_field(field.ident.expect("struct has unnamed fields"))
|
|
||||||
.ty()
|
|
||||||
.ref_()
|
|
||||||
.lifetime("'__serde_variant")
|
|
||||||
.build_ty(field.ty.clone())
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.field("__serde_container_ty")
|
|
||||||
.ty().phantom_data().build(ty.clone())
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let variant_expr = builder.expr().struct_id("__VariantStruct")
|
|
||||||
.with_id_exprs(
|
|
||||||
fields.iter()
|
|
||||||
.zip(field_names.iter())
|
|
||||||
.map(|(field, field_name)| {
|
|
||||||
(
|
|
||||||
field.ident.expect("struct has unnamed fields"),
|
|
||||||
builder.expr().id(field_name),
|
|
||||||
)
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.field("__serde_container_ty").path()
|
|
||||||
.global()
|
|
||||||
.id("std").id("marker")
|
|
||||||
.segment("PhantomData")
|
|
||||||
.with_ty(ty.clone())
|
|
||||||
.build()
|
|
||||||
.build()
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let variant_ty = builder.ty().path()
|
|
||||||
.segment("__VariantStruct")
|
|
||||||
.with_generics(variant_generics.clone())
|
|
||||||
.build()
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let (visitor_struct, visitor_impl) = serialize_struct_visitor(
|
|
||||||
cx,
|
cx,
|
||||||
builder,
|
builder,
|
||||||
variant_ty.clone(),
|
ty.clone(),
|
||||||
variant_ty.clone(),
|
|
||||||
builder.id("serialize_struct_variant_elt"),
|
|
||||||
fields,
|
fields,
|
||||||
&variant_generics,
|
&generics,
|
||||||
true,
|
true,
|
||||||
|
cx.ident_of("serialize_struct_variant_elt"),
|
||||||
);
|
);
|
||||||
|
|
||||||
let item_name = name_expr(builder, item_attrs.name());
|
let item_name = name_expr(builder, item_attrs.name());
|
||||||
|
let len = fields.iter()
|
||||||
|
.filter(|&field| !field.attrs.skip_serializing())
|
||||||
|
.map(|field| {
|
||||||
|
let ident = field.ident.expect("struct has unnamed fields");
|
||||||
|
let field_expr = quote_expr!(cx, $ident);
|
||||||
|
|
||||||
|
match field.attrs.skip_serializing_if() {
|
||||||
|
Some(path) => quote_expr!(cx, if $path($field_expr) { 0 } else { 1 }),
|
||||||
|
None => quote_expr!(cx, 1),
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.fold(quote_expr!(cx, 0), |sum, expr| quote_expr!(cx, $sum + $expr));
|
||||||
|
|
||||||
quote_expr!(cx, {
|
quote_expr!(cx, {
|
||||||
$variant_struct
|
let mut state = try!(_serializer.serialize_struct_variant(
|
||||||
$visitor_struct
|
|
||||||
$visitor_impl
|
|
||||||
_serializer.serialize_struct_variant(
|
|
||||||
$item_name,
|
$item_name,
|
||||||
$variant_index,
|
$variant_index,
|
||||||
$variant_name,
|
$variant_name,
|
||||||
Visitor {
|
$len,
|
||||||
value: $variant_expr,
|
));
|
||||||
state: 0,
|
$serialize_fields
|
||||||
_structure_ty: ::std::marker::PhantomData,
|
_serializer.serialize_struct_variant_end(state)
|
||||||
},
|
|
||||||
)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -595,187 +520,75 @@ fn serialize_tuple_struct_visitor(
|
|||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
structure_ty: P<ast::Ty>,
|
structure_ty: P<ast::Ty>,
|
||||||
variant_ty: P<ast::Ty>,
|
fields: &[Field],
|
||||||
serializer_method: ast::Ident,
|
|
||||||
fields: &[item::Field],
|
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
is_enum: bool,
|
is_enum: bool,
|
||||||
) -> (P<ast::Item>, P<ast::Item>) {
|
func: ast::Ident,
|
||||||
let arms: Vec<_> = fields.iter()
|
) -> Vec<ast::Stmt> {
|
||||||
|
fields.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.map(|(i, field)| {
|
.map(|(i, field)| {
|
||||||
let mut field_expr = builder.expr().tup_field(i).field("value").self_();
|
let mut field_expr = if is_enum {
|
||||||
if !is_enum {
|
builder.expr().path().id(format!("__field{}", i)).build()
|
||||||
field_expr = quote_expr!(cx, &$field_expr);
|
} else {
|
||||||
}
|
builder.expr().ref_().tup_field(i).self_()
|
||||||
|
};
|
||||||
|
|
||||||
let continue_if_skip = field.attrs.skip_serializing_if()
|
let skip = field.attrs.skip_serializing_if()
|
||||||
.map(|path| quote_stmt!(cx, if $path($field_expr) { continue }));
|
.map(|path| quote_expr!(cx, $path($field_expr)))
|
||||||
|
.unwrap_or(quote_expr!(cx, false));
|
||||||
|
|
||||||
if let Some(path) = field.attrs.serialize_with() {
|
if let Some(path) = field.attrs.serialize_with() {
|
||||||
field_expr = wrap_serialize_with(cx, builder,
|
field_expr = wrap_serialize_with(cx, builder,
|
||||||
&structure_ty, generics, &field.ty, path, field_expr);
|
&structure_ty, generics, &field.ty, path, field_expr);
|
||||||
}
|
}
|
||||||
|
|
||||||
quote_arm!(cx,
|
quote_stmt!(cx,
|
||||||
$i => {
|
if !$skip {
|
||||||
self.state += 1;
|
try!(_serializer.$func(&mut state, $field_expr));
|
||||||
$continue_if_skip
|
|
||||||
Ok(Some(try!(_serializer.$serializer_method($field_expr))))
|
|
||||||
}
|
}
|
||||||
)
|
).unwrap()
|
||||||
})
|
})
|
||||||
.collect();
|
.collect()
|
||||||
|
|
||||||
let visitor_impl_generics = builder.from_generics(generics.clone())
|
|
||||||
.add_lifetime_bound("'__a")
|
|
||||||
.lifetime_name("'__a")
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let where_clause = &visitor_impl_generics.where_clause;
|
|
||||||
|
|
||||||
let visitor_generics = builder.from_generics(visitor_impl_generics.clone())
|
|
||||||
.strip_bounds()
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let nfields = fields.len();
|
|
||||||
|
|
||||||
(
|
|
||||||
quote_item!(cx,
|
|
||||||
struct Visitor $visitor_impl_generics $where_clause {
|
|
||||||
state: usize,
|
|
||||||
value: $variant_ty,
|
|
||||||
_structure_ty: ::std::marker::PhantomData<&'__a $structure_ty>,
|
|
||||||
}
|
|
||||||
).unwrap(),
|
|
||||||
|
|
||||||
quote_item!(cx,
|
|
||||||
impl $visitor_impl_generics _serde::ser::SeqVisitor
|
|
||||||
for Visitor $visitor_generics
|
|
||||||
$where_clause {
|
|
||||||
#[inline]
|
|
||||||
fn visit<__S>(&mut self, _serializer: &mut __S) -> ::std::result::Result<Option<()>, __S::Error>
|
|
||||||
where __S: _serde::ser::Serializer
|
|
||||||
{
|
|
||||||
match self.state {
|
|
||||||
$arms
|
|
||||||
_ => Ok(None)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
Some($nfields)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
).unwrap(),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_struct_visitor(
|
fn serialize_struct_visitor(
|
||||||
cx: &ExtCtxt,
|
cx: &ExtCtxt,
|
||||||
builder: &aster::AstBuilder,
|
builder: &aster::AstBuilder,
|
||||||
structure_ty: P<ast::Ty>,
|
structure_ty: P<ast::Ty>,
|
||||||
variant_ty: P<ast::Ty>,
|
fields: &[Field],
|
||||||
serializer_method: ast::Ident,
|
|
||||||
fields: &[item::Field],
|
|
||||||
generics: &ast::Generics,
|
generics: &ast::Generics,
|
||||||
is_enum: bool,
|
is_enum: bool,
|
||||||
) -> (P<ast::Item>, P<ast::Item>) {
|
func: ast::Ident,
|
||||||
let arms: Vec<ast::Arm> = fields.iter()
|
) -> Vec<ast::Stmt> {
|
||||||
|
fields.iter()
|
||||||
.filter(|&field| !field.attrs.skip_serializing())
|
.filter(|&field| !field.attrs.skip_serializing())
|
||||||
.enumerate()
|
.map(|field| {
|
||||||
.map(|(i, field)| {
|
|
||||||
let ident = field.ident.expect("struct has unnamed field");
|
let ident = field.ident.expect("struct has unnamed field");
|
||||||
let mut field_expr = quote_expr!(cx, self.value.$ident);
|
let mut field_expr = if is_enum {
|
||||||
if !is_enum {
|
quote_expr!(cx, $ident)
|
||||||
field_expr = quote_expr!(cx, &$field_expr);
|
} else {
|
||||||
}
|
quote_expr!(cx, &self.$ident)
|
||||||
|
};
|
||||||
|
|
||||||
let key_expr = name_expr(builder, field.attrs.name());
|
let key_expr = name_expr(builder, field.attrs.name());
|
||||||
|
|
||||||
let continue_if_skip = field.attrs.skip_serializing_if()
|
let skip = field.attrs.skip_serializing_if()
|
||||||
.map(|path| quote_stmt!(cx, if $path($field_expr) { continue }));
|
.map(|path| quote_expr!(cx, $path($field_expr)))
|
||||||
|
.unwrap_or(quote_expr!(cx, false));
|
||||||
|
|
||||||
if let Some(path) = field.attrs.serialize_with() {
|
if let Some(path) = field.attrs.serialize_with() {
|
||||||
field_expr = wrap_serialize_with(cx, builder,
|
field_expr = wrap_serialize_with(cx, builder,
|
||||||
&structure_ty, generics, &field.ty, path, field_expr)
|
&structure_ty, generics, &field.ty, path, field_expr)
|
||||||
}
|
}
|
||||||
|
|
||||||
let expr = quote_expr!(cx,
|
quote_stmt!(cx,
|
||||||
_serializer.$serializer_method($key_expr, $field_expr)
|
if !$skip {
|
||||||
);
|
try!(_serializer.$func(&mut state, $key_expr, $field_expr));
|
||||||
|
|
||||||
quote_arm!(cx,
|
|
||||||
$i => {
|
|
||||||
self.state += 1;
|
|
||||||
$continue_if_skip
|
|
||||||
return Ok(Some(try!($expr)));
|
|
||||||
}
|
}
|
||||||
)
|
).unwrap()
|
||||||
})
|
})
|
||||||
.collect();
|
.collect()
|
||||||
|
|
||||||
let visitor_impl_generics = builder.from_generics(generics.clone())
|
|
||||||
.add_lifetime_bound("'__a")
|
|
||||||
.lifetime_name("'__a")
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let where_clause = &visitor_impl_generics.where_clause;
|
|
||||||
|
|
||||||
let visitor_generics = builder.from_generics(visitor_impl_generics.clone())
|
|
||||||
.strip_bounds()
|
|
||||||
.build();
|
|
||||||
|
|
||||||
let len = fields.iter()
|
|
||||||
.filter(|&field| !field.attrs.skip_serializing())
|
|
||||||
.map(|field| {
|
|
||||||
let ident = field.ident.expect("struct has unnamed fields");
|
|
||||||
let mut field_expr = quote_expr!(cx, self.value.$ident);
|
|
||||||
if !is_enum {
|
|
||||||
field_expr = quote_expr!(cx, &$field_expr);
|
|
||||||
}
|
|
||||||
|
|
||||||
match field.attrs.skip_serializing_if() {
|
|
||||||
Some(path) => quote_expr!(cx, if $path($field_expr) { 0 } else { 1 }),
|
|
||||||
None => quote_expr!(cx, 1),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.fold(quote_expr!(cx, 0), |sum, expr| quote_expr!(cx, $sum + $expr));
|
|
||||||
|
|
||||||
(
|
|
||||||
quote_item!(cx,
|
|
||||||
struct Visitor $visitor_impl_generics $where_clause {
|
|
||||||
state: usize,
|
|
||||||
value: $variant_ty,
|
|
||||||
_structure_ty: ::std::marker::PhantomData<&'__a $structure_ty>,
|
|
||||||
}
|
|
||||||
).unwrap(),
|
|
||||||
|
|
||||||
quote_item!(cx,
|
|
||||||
impl $visitor_impl_generics
|
|
||||||
_serde::ser::MapVisitor
|
|
||||||
for Visitor $visitor_generics
|
|
||||||
$where_clause {
|
|
||||||
#[inline]
|
|
||||||
fn visit<__S>(&mut self, _serializer: &mut __S) -> ::std::result::Result<Option<()>, __S::Error>
|
|
||||||
where __S: _serde::ser::Serializer,
|
|
||||||
{
|
|
||||||
loop {
|
|
||||||
match self.state {
|
|
||||||
$arms
|
|
||||||
_ => { return Ok(None); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn len(&self) -> Option<usize> {
|
|
||||||
Some($len)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
).unwrap(),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn wrap_serialize_with(
|
fn wrap_serialize_with(
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
use syntax::ast;
|
||||||
|
use syntax::codemap::{self, ExpnId, Span};
|
||||||
|
use syntax::ext::base::{Annotatable, ExtCtxt};
|
||||||
|
use syntax::fold::{self, Folder};
|
||||||
|
use syntax::parse::token::intern;
|
||||||
|
use syntax::ptr::P;
|
||||||
|
|
||||||
|
pub fn record_expansion(
|
||||||
|
cx: &ExtCtxt,
|
||||||
|
item: P<ast::Item>,
|
||||||
|
derive: &str,
|
||||||
|
) -> Annotatable {
|
||||||
|
let info = codemap::ExpnInfo {
|
||||||
|
call_site: codemap::DUMMY_SP,
|
||||||
|
callee: codemap::NameAndSpan {
|
||||||
|
format: codemap::MacroAttribute(intern(&format!("derive({})", derive))),
|
||||||
|
span: None,
|
||||||
|
allow_internal_unstable: false,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
let expn_id = cx.codemap().record_expansion(info);
|
||||||
|
|
||||||
|
let mut respanner = Respanner { expn_id: expn_id };
|
||||||
|
let item = item.map(|item| respanner.fold_item_simple(item));
|
||||||
|
Annotatable::Item(item)
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Respanner {
|
||||||
|
expn_id: ExpnId,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Folder for Respanner {
|
||||||
|
fn new_span(&mut self, span: Span) -> Span {
|
||||||
|
Span {
|
||||||
|
expn_id: self.expn_id,
|
||||||
|
.. span
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn fold_mac(&mut self, mac: ast::Mac) -> ast::Mac {
|
||||||
|
fold::noop_fold_mac(mac, self)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_item"
|
name = "serde_codegen_internals"
|
||||||
version = "0.2.0"
|
version = "0.4.0-rc1"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "AST representation used by Serde codegen. Unstable."
|
description = "AST representation used by Serde codegen. Unstable."
|
||||||
@@ -11,9 +11,10 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["with-syntex"]
|
default = ["with-syntex"]
|
||||||
nightly-testing = ["clippy"]
|
unstable-testing = ["clippy"]
|
||||||
with-syntex = ["syntex_syntax"]
|
with-syntex = ["syntex_syntax", "syntex_errors"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
syntex_syntax = { version = "^0.36.0", optional = true }
|
syntex_syntax = { version = "^0.38.0", optional = true }
|
||||||
|
syntex_errors = { version = "^0.38.0", optional = true }
|
||||||
@@ -1,24 +1,10 @@
|
|||||||
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
|
|
||||||
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
|
|
||||||
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
|
|
||||||
|
|
||||||
#[cfg(feature = "with-syntex")]
|
|
||||||
#[macro_use]
|
|
||||||
extern crate syntex_syntax as syntax;
|
|
||||||
|
|
||||||
#[cfg(not(feature = "with-syntex"))]
|
|
||||||
#[macro_use]
|
|
||||||
extern crate syntax;
|
|
||||||
|
|
||||||
use syntax::ast;
|
use syntax::ast;
|
||||||
use syntax::codemap;
|
use syntax::codemap;
|
||||||
use syntax::ext::base::ExtCtxt;
|
use syntax::ext::base::ExtCtxt;
|
||||||
use syntax::ptr::P;
|
use syntax::ptr::P;
|
||||||
|
|
||||||
pub mod attr;
|
use attr;
|
||||||
|
use Error;
|
||||||
mod error;
|
|
||||||
pub use error::Error;
|
|
||||||
|
|
||||||
pub struct Item<'a> {
|
pub struct Item<'a> {
|
||||||
pub ident: ast::Ident,
|
pub ident: ast::Ident,
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
use syntax::ast::{self, TokenTree};
|
use syntax::ast;
|
||||||
use syntax::attr;
|
use syntax::attr::{self, HasAttrs};
|
||||||
use syntax::codemap::{Span, Spanned, respan};
|
use syntax::codemap::{Span, Spanned, respan};
|
||||||
use syntax::ext::base::ExtCtxt;
|
use syntax::ext::base::ExtCtxt;
|
||||||
use syntax::fold::Folder;
|
use syntax::fold::Folder;
|
||||||
@@ -10,6 +10,7 @@ use syntax::parse::token::{self, InternedString};
|
|||||||
use syntax::parse;
|
use syntax::parse;
|
||||||
use syntax::print::pprust::{lit_to_string, meta_item_to_string};
|
use syntax::print::pprust::{lit_to_string, meta_item_to_string};
|
||||||
use syntax::ptr::P;
|
use syntax::ptr::P;
|
||||||
|
use syntax::tokenstream::{self, TokenTree};
|
||||||
|
|
||||||
// This module handles parsing of `#[serde(...)]` attributes. The entrypoints
|
// This module handles parsing of `#[serde(...)]` attributes. The entrypoints
|
||||||
// are `attr::Item::from_ast`, `attr::Variant::from_ast`, and
|
// are `attr::Item::from_ast`, `attr::Variant::from_ast`, and
|
||||||
@@ -529,7 +530,7 @@ impl<'a, 'b> Folder for Respanner<'a, 'b> {
|
|||||||
TokenTree::Delimited(span, ref delimed) => {
|
TokenTree::Delimited(span, ref delimed) => {
|
||||||
TokenTree::Delimited(
|
TokenTree::Delimited(
|
||||||
self.new_span(span),
|
self.new_span(span),
|
||||||
Rc::new(ast::Delimited {
|
Rc::new(tokenstream::Delimited {
|
||||||
delim: delimed.delim,
|
delim: delimed.delim,
|
||||||
open_span: delimed.open_span,
|
open_span: delimed.open_span,
|
||||||
tts: self.fold_tts(&delimed.tts),
|
tts: self.fold_tts(&delimed.tts),
|
||||||
@@ -540,7 +541,7 @@ impl<'a, 'b> Folder for Respanner<'a, 'b> {
|
|||||||
TokenTree::Sequence(span, ref seq) => {
|
TokenTree::Sequence(span, ref seq) => {
|
||||||
TokenTree::Sequence(
|
TokenTree::Sequence(
|
||||||
self.new_span(span),
|
self.new_span(span),
|
||||||
Rc::new(ast::SequenceRepetition {
|
Rc::new(tokenstream::SequenceRepetition {
|
||||||
tts: self.fold_tts(&seq.tts),
|
tts: self.fold_tts(&seq.tts),
|
||||||
separator: seq.separator.clone().map(|tok| self.fold_token(tok)),
|
separator: seq.separator.clone().map(|tok| self.fold_token(tok)),
|
||||||
..**seq
|
..**seq
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
||||||
|
#![cfg_attr(feature = "clippy", feature(plugin))]
|
||||||
|
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
|
||||||
|
|
||||||
|
#[cfg(feature = "with-syntex")]
|
||||||
|
#[macro_use]
|
||||||
|
extern crate syntex_syntax as syntax;
|
||||||
|
#[cfg(feature = "with-syntex")]
|
||||||
|
extern crate syntex_errors as errors;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "with-syntex"))]
|
||||||
|
#[macro_use]
|
||||||
|
extern crate syntax;
|
||||||
|
#[cfg(not(feature = "with-syntex"))]
|
||||||
|
extern crate rustc_errors as errors;
|
||||||
|
|
||||||
|
pub mod ast;
|
||||||
|
pub mod attr;
|
||||||
|
|
||||||
|
mod error;
|
||||||
|
pub use error::Error;
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_macros"
|
name = "serde_macros"
|
||||||
version = "0.7.11"
|
# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH
|
||||||
|
# USE THE 0.7.x BRANCH
|
||||||
|
version = "0.8.0-rc2"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "Macros to auto-generate implementations for the serde framework"
|
description = "Macros to auto-generate implementations for the serde framework"
|
||||||
@@ -14,17 +16,19 @@ name = "serde_macros"
|
|||||||
plugin = true
|
plugin = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable-testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
serde_codegen = { version = "^0.7.11", path = "../serde_codegen", default-features = false, features = ["nightly"] }
|
serde_codegen = { version = "^0.8.0-rc2", default-features = false, features = ["unstable"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
clippy = "^0.*"
|
||||||
compiletest_rs = "^0.2.0"
|
compiletest_rs = "^0.2.0"
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
rustc-serialize = "^0.3.16"
|
rustc-serialize = "^0.3.16"
|
||||||
serde = { version = "^0.7.11", path = "../serde" }
|
serde = "0.8.0-rc2"
|
||||||
|
serde_test = "0.8.0-rc2"
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "test"
|
name = "test"
|
||||||
|
|||||||
@@ -6,4 +6,4 @@ extern crate rustc_serialize;
|
|||||||
extern crate serde;
|
extern crate serde;
|
||||||
extern crate test;
|
extern crate test;
|
||||||
|
|
||||||
include!("../../serde_tests/benches/bench.rs.in");
|
include!("../../testing/benches/bench.rs.in");
|
||||||
|
|||||||
@@ -20,6 +20,11 @@ fn run_mode(mode: &'static str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn compile_test() {
|
fn compile_fail() {
|
||||||
run_mode("compile-fail");
|
run_mode("compile-fail");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn run_pass() {
|
||||||
|
run_mode("run-pass");
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#![feature(custom_derive, plugin)]
|
||||||
|
#![plugin(serde_macros, clippy)]
|
||||||
|
|
||||||
|
#![deny(identity_op)]
|
||||||
|
|
||||||
|
// The derived implementation uses 0+1 to add up the number of fields
|
||||||
|
// serialized, which Clippy warns about. If the expansion info is registered
|
||||||
|
// correctly, the Clippy lint is not triggered.
|
||||||
|
#[derive(Serialize)]
|
||||||
|
struct A { b: u8 }
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -4,6 +4,6 @@
|
|||||||
extern crate serde;
|
extern crate serde;
|
||||||
extern crate test;
|
extern crate test;
|
||||||
|
|
||||||
include!("../../serde_tests/tests/test.rs.in");
|
include!("../../testing/tests/test.rs.in");
|
||||||
|
|
||||||
mod compile_tests;
|
mod compile_tests;
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
[package]
|
||||||
|
name = "serde_test"
|
||||||
|
# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH
|
||||||
|
# USE THE 0.7.x BRANCH
|
||||||
|
version = "0.8.0-rc2"
|
||||||
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
|
license = "MIT/Apache-2.0"
|
||||||
|
description = "Token De/Serializer for testing De/Serialize implementations"
|
||||||
|
repository = "https://github.com/serde-rs/serde"
|
||||||
|
documentation = "https://serde-rs.github.io/serde/serde/"
|
||||||
|
readme = "../README.md"
|
||||||
|
keywords = ["serde", "serialization"]
|
||||||
|
include = ["Cargo.toml", "src/**/*.rs"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
serde = "0.8.0-rc2"
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
|
use de::Deserializer;
|
||||||
|
use error::Error;
|
||||||
|
use ser::Serializer;
|
||||||
|
use token::Token;
|
||||||
|
|
||||||
|
use std::fmt::Debug;
|
||||||
|
|
||||||
|
pub fn assert_tokens<T>(value: &T, tokens: &[Token<'static>])
|
||||||
|
where T: Serialize + Deserialize + PartialEq + Debug,
|
||||||
|
{
|
||||||
|
assert_ser_tokens(value, tokens);
|
||||||
|
assert_de_tokens(value, tokens);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn assert_ser_tokens<T>(value: &T, tokens: &[Token])
|
||||||
|
where T: Serialize,
|
||||||
|
{
|
||||||
|
let mut ser = Serializer::new(tokens.iter());
|
||||||
|
assert_eq!(Serialize::serialize(value, &mut ser), Ok(()));
|
||||||
|
assert_eq!(ser.next_token(), None);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Expect an error serializing `T`.
|
||||||
|
pub fn assert_ser_tokens_error<T>(value: &T, tokens: &[Token], error: Error)
|
||||||
|
where T: Serialize + PartialEq + Debug,
|
||||||
|
{
|
||||||
|
let mut ser = Serializer::new(tokens.iter());
|
||||||
|
let v: Result<(), Error> = Serialize::serialize(value, &mut ser);
|
||||||
|
assert_eq!(v.as_ref(), Err(&error));
|
||||||
|
assert_eq!(ser.next_token(), None);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn assert_de_tokens<T>(value: &T, tokens: &[Token<'static>])
|
||||||
|
where T: Deserialize + PartialEq + Debug,
|
||||||
|
{
|
||||||
|
let mut de = Deserializer::new(tokens.to_vec().into_iter());
|
||||||
|
let v: Result<T, Error> = Deserialize::deserialize(&mut de);
|
||||||
|
assert_eq!(v.as_ref(), Ok(value));
|
||||||
|
assert_eq!(de.next_token(), None);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Expect an error deserializing tokens into a `T`.
|
||||||
|
pub fn assert_de_tokens_error<T>(tokens: &[Token<'static>], error: Error)
|
||||||
|
where T: Deserialize + PartialEq + Debug,
|
||||||
|
{
|
||||||
|
let mut de = Deserializer::new(tokens.to_vec().into_iter());
|
||||||
|
let v: Result<T, Error> = Deserialize::deserialize(&mut de);
|
||||||
|
assert_eq!(v, Err(error));
|
||||||
|
// There may be one token left if a peek caused the error
|
||||||
|
de.next_token();
|
||||||
|
assert_eq!(de.next_token(), None);
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,87 @@
|
|||||||
|
use std::{error, fmt};
|
||||||
|
|
||||||
|
use serde::{ser, de};
|
||||||
|
|
||||||
|
use token::Token;
|
||||||
|
|
||||||
|
#[derive(Clone, PartialEq, Debug)]
|
||||||
|
pub enum Error {
|
||||||
|
// Shared
|
||||||
|
Custom(String),
|
||||||
|
InvalidValue(String),
|
||||||
|
|
||||||
|
// De
|
||||||
|
EndOfStream,
|
||||||
|
InvalidType(de::Type),
|
||||||
|
InvalidLength(usize),
|
||||||
|
UnknownVariant(String),
|
||||||
|
UnknownField(String),
|
||||||
|
MissingField(&'static str),
|
||||||
|
DuplicateField(&'static str),
|
||||||
|
InvalidName(&'static str),
|
||||||
|
UnexpectedToken(Token<'static>),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ser::Error for Error {
|
||||||
|
fn custom<T: Into<String>>(msg: T) -> Error {
|
||||||
|
Error::Custom(msg.into())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn invalid_value(msg: &str) -> Error {
|
||||||
|
Error::InvalidValue(msg.to_owned())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl de::Error for Error {
|
||||||
|
fn custom<T: Into<String>>(msg: T) -> Error {
|
||||||
|
Error::Custom(msg.into())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn end_of_stream() -> Error {
|
||||||
|
Error::EndOfStream
|
||||||
|
}
|
||||||
|
|
||||||
|
fn invalid_type(ty: de::Type) -> Error {
|
||||||
|
Error::InvalidType(ty)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn invalid_value(msg: &str) -> Error {
|
||||||
|
Error::InvalidValue(msg.to_owned())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn invalid_length(len: usize) -> Error {
|
||||||
|
Error::InvalidLength(len)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn unknown_variant(variant: &str) -> Error {
|
||||||
|
Error::UnknownVariant(variant.to_owned())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn unknown_field(field: &str) -> Error {
|
||||||
|
Error::UnknownField(field.to_owned())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn missing_field(field: &'static str) -> Error {
|
||||||
|
Error::MissingField(field)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn duplicate_field(field: &'static str) -> Error {
|
||||||
|
Error::DuplicateField(field)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Error {
|
||||||
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||||
|
formatter.write_str(format!("{:?}", self).as_ref())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl error::Error for Error {
|
||||||
|
fn description(&self) -> &str {
|
||||||
|
"Serde Error"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn cause(&self) -> Option<&error::Error> {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
extern crate serde;
|
||||||
|
|
||||||
|
mod assert;
|
||||||
|
pub use assert::{
|
||||||
|
assert_tokens,
|
||||||
|
assert_ser_tokens,
|
||||||
|
assert_ser_tokens_error,
|
||||||
|
assert_de_tokens,
|
||||||
|
assert_de_tokens_error,
|
||||||
|
};
|
||||||
|
|
||||||
|
mod ser;
|
||||||
|
pub use ser::Serializer;
|
||||||
|
|
||||||
|
mod de;
|
||||||
|
pub use de::Deserializer;
|
||||||
|
|
||||||
|
mod token;
|
||||||
|
pub use token::Token;
|
||||||
|
|
||||||
|
mod error;
|
||||||
|
pub use error::Error;
|
||||||
@@ -0,0 +1,320 @@
|
|||||||
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
|
use serde::ser::{
|
||||||
|
self,
|
||||||
|
Serialize,
|
||||||
|
};
|
||||||
|
|
||||||
|
use error::Error;
|
||||||
|
use token::Token;
|
||||||
|
|
||||||
|
pub struct Serializer<'a, I>
|
||||||
|
where I: Iterator<Item=&'a Token<'a>>,
|
||||||
|
{
|
||||||
|
tokens: I,
|
||||||
|
phantom: PhantomData<&'a Token<'a>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, I> Serializer<'a, I>
|
||||||
|
where I: Iterator<Item=&'a Token<'a>>,
|
||||||
|
{
|
||||||
|
pub fn new(tokens: I) -> Serializer<'a, I> {
|
||||||
|
Serializer {
|
||||||
|
tokens: tokens,
|
||||||
|
phantom: PhantomData,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn next_token(&mut self) -> Option<&'a Token<'a>> {
|
||||||
|
self.tokens.next()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, I> ser::Serializer for Serializer<'a, I>
|
||||||
|
where I: Iterator<Item=&'a Token<'a>>,
|
||||||
|
{
|
||||||
|
type Error = Error;
|
||||||
|
type MapState = ();
|
||||||
|
type SeqState = ();
|
||||||
|
type TupleState = ();
|
||||||
|
type TupleStructState = ();
|
||||||
|
type TupleVariantState = ();
|
||||||
|
type StructState = ();
|
||||||
|
type StructVariantState = ();
|
||||||
|
|
||||||
|
fn serialize_unit(&mut self) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Unit));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_newtype_variant<T>(&mut self,
|
||||||
|
name: &str,
|
||||||
|
_variant_index: usize,
|
||||||
|
variant: &str,
|
||||||
|
value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize,
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumNewType(name, variant)));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_unit_struct(&mut self, name: &str) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::UnitStruct(name)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_unit_variant(&mut self,
|
||||||
|
name: &str,
|
||||||
|
_variant_index: usize,
|
||||||
|
variant: &str) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumUnit(name, variant)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_bool(&mut self, v: bool) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Bool(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_isize(&mut self, v: isize) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Isize(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i8(&mut self, v: i8) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::I8(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i16(&mut self, v: i16) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::I16(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i32(&mut self, v: i32) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::I32(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i64(&mut self, v: i64) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::I64(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_usize(&mut self, v: usize) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Usize(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u8(&mut self, v: u8) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::U8(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u16(&mut self, v: u16) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::U16(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u32(&mut self, v: u32) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::U32(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u64(&mut self, v: u64) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::U64(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_f32(&mut self, v: f32) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::F32(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_f64(&mut self, v: f64) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::F64(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_char(&mut self, v: char) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Char(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_str(&mut self, v: &str) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Str(v)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_none(&mut self) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Option(false)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_some<V>(&mut self, value: V) -> Result<(), Error>
|
||||||
|
where V: Serialize,
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::Option(true)));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq<'b>(&'b mut self, len: Option<usize>) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::SeqStart(len)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_elt<T>(&mut self, _: &mut (), value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::SeqSep));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_end(&mut self, _: ()) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::SeqEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_fixed_size(&mut self, len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::SeqArrayStart(len)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple(&mut self, len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleStart(len)));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_elt<T>(&mut self, _: &mut (), value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleSep));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_end(&mut self, _: ()) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_newtype_struct<T>(&mut self,
|
||||||
|
name: &'static str,
|
||||||
|
value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize,
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::StructNewType(name)));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct(&mut self, name: &'static str, len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleStructStart(name, len)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct_elt<T>(&mut self, _: &mut (), value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleStructSep));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct_end(&mut self, _: ()) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::TupleStructEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant(&mut self,
|
||||||
|
name: &str,
|
||||||
|
_variant_index: usize,
|
||||||
|
variant: &str,
|
||||||
|
len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumSeqStart(name, variant, len)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant_elt<T>(&mut self, _: &mut (), value: T) -> Result<(), Error>
|
||||||
|
where T: Serialize
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumSeqSep));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant_end(&mut self, _: ()) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumSeqEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map(&mut self, len: Option<usize>) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::MapStart(len)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map_elt<K, V>(&mut self, _: &mut (), key: K, value: V) -> Result<(), Self::Error> where K: Serialize, V: Serialize {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::MapSep));
|
||||||
|
try!(key.serialize(self));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map_end(&mut self, _: ()) -> Result<(), Self::Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::MapEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct(&mut self, name: &str, len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::StructStart(name, len)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_elt<V>(&mut self, _: &mut (), key: &'static str, value: V) -> Result<(), Self::Error> where V: Serialize {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::StructSep));
|
||||||
|
try!(key.serialize(self));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_end(&mut self, _: ()) -> Result<(), Self::Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::StructEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant(&mut self,
|
||||||
|
name: &str,
|
||||||
|
_variant_index: usize,
|
||||||
|
variant: &str,
|
||||||
|
len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumMapStart(name, variant, len)));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant_elt<V>(&mut self, _: &mut (), key: &'static str, value: V) -> Result<(), Self::Error> where V: Serialize {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumMapSep));
|
||||||
|
try!(key.serialize(self));
|
||||||
|
value.serialize(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant_end(&mut self, _: ()) -> Result<(), Self::Error> {
|
||||||
|
assert_eq!(self.tokens.next(), Some(&Token::EnumMapEnd));
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_bytes(&mut self, value: &[u8]) -> Result<(), Self::Error> {
|
||||||
|
let mut state = try!(self.serialize_seq(Some(value.len())));
|
||||||
|
for c in value {
|
||||||
|
try!(self.serialize_seq_elt(&mut state, c));
|
||||||
|
}
|
||||||
|
self.serialize_seq_end(state)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
#[derive(Clone, PartialEq, Debug)]
|
||||||
|
pub enum Token<'a> {
|
||||||
|
Bool(bool),
|
||||||
|
Isize(isize),
|
||||||
|
I8(i8),
|
||||||
|
I16(i16),
|
||||||
|
I32(i32),
|
||||||
|
I64(i64),
|
||||||
|
Usize(usize),
|
||||||
|
U8(u8),
|
||||||
|
U16(u16),
|
||||||
|
U32(u32),
|
||||||
|
U64(u64),
|
||||||
|
F32(f32),
|
||||||
|
F64(f64),
|
||||||
|
Char(char),
|
||||||
|
Str(&'a str),
|
||||||
|
String(String),
|
||||||
|
Bytes(&'a [u8]),
|
||||||
|
|
||||||
|
Option(bool),
|
||||||
|
|
||||||
|
Unit,
|
||||||
|
UnitStruct(&'a str),
|
||||||
|
|
||||||
|
StructNewType(&'a str),
|
||||||
|
|
||||||
|
EnumStart(&'a str),
|
||||||
|
EnumUnit(&'a str, &'a str),
|
||||||
|
EnumNewType(&'a str, &'a str),
|
||||||
|
|
||||||
|
SeqStart(Option<usize>),
|
||||||
|
SeqArrayStart(usize),
|
||||||
|
SeqSep,
|
||||||
|
SeqEnd,
|
||||||
|
|
||||||
|
TupleStart(usize),
|
||||||
|
TupleSep,
|
||||||
|
TupleEnd,
|
||||||
|
|
||||||
|
TupleStructStart(&'a str, usize),
|
||||||
|
TupleStructSep,
|
||||||
|
TupleStructEnd,
|
||||||
|
|
||||||
|
MapStart(Option<usize>),
|
||||||
|
MapSep,
|
||||||
|
MapEnd,
|
||||||
|
|
||||||
|
StructStart(&'a str, usize),
|
||||||
|
StructSep,
|
||||||
|
StructEnd,
|
||||||
|
|
||||||
|
EnumSeqStart(&'a str, &'a str, usize),
|
||||||
|
EnumSeqSep,
|
||||||
|
EnumSeqEnd,
|
||||||
|
|
||||||
|
EnumMapStart(&'a str, &'a str, usize),
|
||||||
|
EnumMapSep,
|
||||||
|
EnumMapEnd,
|
||||||
|
}
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
#![cfg_attr(feature = "nightly", feature(plugin))]
|
|
||||||
#![cfg_attr(feature = "nightly", plugin(clippy))]
|
|
||||||
|
|
||||||
include!(concat!(env!("OUT_DIR"), "/test.rs"));
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
use std::fmt;
|
|
||||||
use std::error;
|
|
||||||
|
|
||||||
extern crate serde;
|
|
||||||
use self::serde::Serialize;
|
|
||||||
use self::serde::bytes::{ByteBuf, Bytes};
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
|
||||||
struct Error;
|
|
||||||
|
|
||||||
impl serde::ser::Error for Error {
|
|
||||||
fn custom<T: Into<String>>(_: T) -> Error { Error }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl serde::de::Error for Error {
|
|
||||||
fn custom<T: Into<String>>(_: T) -> Error { Error }
|
|
||||||
|
|
||||||
fn end_of_stream() -> Error { Error }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Display for Error {
|
|
||||||
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
||||||
formatter.write_str(format!("{:?}", self).as_ref())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl error::Error for Error {
|
|
||||||
fn description(&self) -> &str {
|
|
||||||
"Serde Deserialization Error"
|
|
||||||
}
|
|
||||||
|
|
||||||
fn cause(&self) -> Option<&error::Error> {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
struct BytesSerializer {
|
|
||||||
bytes: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl BytesSerializer {
|
|
||||||
fn new(bytes: Vec<u8>) -> Self {
|
|
||||||
BytesSerializer {
|
|
||||||
bytes: bytes,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl serde::Serializer for BytesSerializer {
|
|
||||||
type Error = Error;
|
|
||||||
|
|
||||||
fn serialize_unit(&mut self) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_bool(&mut self, _v: bool) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_i64(&mut self, _v: i64) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_u64(&mut self, _v: u64) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_f32(&mut self, _v: f32) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_f64(&mut self, _v: f64) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_char(&mut self, _v: char) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_str(&mut self, _v: &str) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_none(&mut self) -> Result<(), Error> {
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_some<V>(&mut self, _value: V) -> Result<(), Error>
|
|
||||||
where V: serde::Serialize,
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_seq<V>(&mut self, _visitor: V) -> Result<(), Error>
|
|
||||||
where V: serde::ser::SeqVisitor,
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_seq_elt<T>(&mut self, _value: T) -> Result<(), Error>
|
|
||||||
where T: serde::Serialize
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_map<V>(&mut self, _visitor: V) -> Result<(), Error>
|
|
||||||
where V: serde::ser::MapVisitor,
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_map_elt<K, V>(&mut self, _key: K, _value: V) -> Result<(), Error>
|
|
||||||
where K: serde::Serialize,
|
|
||||||
V: serde::Serialize,
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialize_bytes(&mut self, bytes: &[u8]) -> Result<(), Error> {
|
|
||||||
assert_eq!(self.bytes, bytes);
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
struct BytesDeserializer {
|
|
||||||
bytes: Option<Vec<u8>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl BytesDeserializer {
|
|
||||||
fn new(bytes: Vec<u8>) -> Self {
|
|
||||||
BytesDeserializer {
|
|
||||||
bytes: Some(bytes),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl serde::Deserializer for BytesDeserializer {
|
|
||||||
type Error = Error;
|
|
||||||
|
|
||||||
fn deserialize<V>(&mut self, _visitor: V) -> Result<V::Value, Error>
|
|
||||||
where V: serde::de::Visitor,
|
|
||||||
{
|
|
||||||
Err(Error)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn deserialize_bytes<V>(&mut self, mut visitor: V) -> Result<V::Value, Error>
|
|
||||||
where V: serde::de::Visitor,
|
|
||||||
{
|
|
||||||
visitor.visit_byte_buf(self.bytes.take().unwrap())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_bytes_ser_bytes() {
|
|
||||||
let buf = vec![];
|
|
||||||
let bytes = Bytes::from(&buf);
|
|
||||||
let mut ser = BytesSerializer::new(vec![]);
|
|
||||||
bytes.serialize(&mut ser).unwrap();
|
|
||||||
|
|
||||||
let buf = vec![1, 2, 3];
|
|
||||||
let bytes = Bytes::from(&buf);
|
|
||||||
let mut ser = BytesSerializer::new(vec![1, 2, 3]);
|
|
||||||
bytes.serialize(&mut ser).unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_byte_buf_de_bytes() {
|
|
||||||
let mut de = BytesDeserializer::new(vec![]);
|
|
||||||
let bytes = serde::Deserialize::deserialize(&mut de);
|
|
||||||
assert_eq!(bytes, Ok(ByteBuf::new()));
|
|
||||||
|
|
||||||
let mut de = BytesDeserializer::new(vec![1, 2, 3]);
|
|
||||||
let bytes = serde::Deserialize::deserialize(&mut de);
|
|
||||||
assert_eq!(bytes, Ok(ByteBuf::from(vec![1, 2, 3])));
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_tests"
|
name = "serde_testing"
|
||||||
version = "0.7.11"
|
version = "0.8.0-rc2"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "A generic serialization/deserialization framework"
|
description = "A generic serialization/deserialization framework"
|
||||||
@@ -11,15 +11,16 @@ keywords = ["serialization"]
|
|||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable-testing"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
serde_codegen = { version = "*", path = "../serde_codegen", features = ["with-syntex"] }
|
serde_codegen = { path = "../serde_codegen", features = ["with-syntex"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
rustc-serialize = "^0.3.16"
|
rustc-serialize = "^0.3.16"
|
||||||
serde = { version = "*", path = "../serde" }
|
serde = { path = "../serde" }
|
||||||
|
serde_test = { path = "../serde_test" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.*", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
#![feature(test)]
|
#![feature(test)]
|
||||||
#![cfg_attr(feature = "nightly", feature(plugin))]
|
#![cfg_attr(feature = "clippy", feature(plugin))]
|
||||||
#![cfg_attr(feature = "nightly", plugin(clippy))]
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
||||||
|
|
||||||
extern crate rustc_serialize;
|
extern crate rustc_serialize;
|
||||||
extern crate serde;
|
extern crate serde;
|
||||||
@@ -5,7 +5,7 @@ macro_rules! declare_ser_tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn $name() {
|
fn $name() {
|
||||||
$(
|
$(
|
||||||
::token::assert_ser_tokens(&$value, $tokens);
|
assert_ser_tokens(&$value, $tokens);
|
||||||
)+
|
)+
|
||||||
}
|
}
|
||||||
)+
|
)+
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#![cfg_attr(feature = "clippy", feature(plugin))]
|
||||||
|
#![cfg_attr(feature = "clippy", plugin(clippy))]
|
||||||
|
|
||||||
|
include!(concat!(env!("OUT_DIR"), "/test.rs"));
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
mod macros;
|
mod macros;
|
||||||
|
|
||||||
mod token;
|
|
||||||
|
|
||||||
mod test_annotations;
|
mod test_annotations;
|
||||||
mod test_bytes;
|
mod test_bytes;
|
||||||
mod test_de;
|
mod test_de;
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
extern crate serde;
|
extern crate serde;
|
||||||
use self::serde::{Serialize, Serializer, Deserialize, Deserializer};
|
use self::serde::{Serialize, Serializer, Deserialize, Deserializer};
|
||||||
|
|
||||||
use token::{
|
extern crate serde_test;
|
||||||
|
use self::serde_test::{
|
||||||
Error,
|
Error,
|
||||||
Token,
|
Token,
|
||||||
assert_tokens,
|
assert_tokens,
|
||||||
@@ -80,8 +81,8 @@ struct DefaultStruct<A, B, C, D, E>
|
|||||||
fn test_default_struct() {
|
fn test_default_struct() {
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DefaultStruct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
&DefaultStruct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DefaultStruct", Some(3)),
|
Token::StructStart("DefaultStruct", 3),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -109,8 +110,8 @@ fn test_default_struct() {
|
|||||||
|
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DefaultStruct { a1: 1, a2: 0, a3: 123, a4: 0, a5: 123 },
|
&DefaultStruct { a1: 1, a2: 0, a3: 123, a4: 0, a5: 123 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DefaultStruct", Some(1)),
|
Token::StructStart("DefaultStruct", 1),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -143,8 +144,8 @@ enum DefaultEnum<A, B, C, D, E>
|
|||||||
fn test_default_enum() {
|
fn test_default_enum() {
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DefaultEnum::Struct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
&DefaultEnum::Struct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("DefaultEnum", "Struct", Some(5)),
|
Token::EnumMapStart("DefaultEnum", "Struct", 5),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -172,8 +173,8 @@ fn test_default_enum() {
|
|||||||
|
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DefaultEnum::Struct { a1: 1, a2: 0, a3: 123, a4: 0, a5: 123 },
|
&DefaultEnum::Struct { a1: 1, a2: 0, a3: 123, a4: 0, a5: 123 },
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("DefaultEnum", "Struct", Some(5)),
|
Token::EnumMapStart("DefaultEnum", "Struct", 5),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -206,16 +207,16 @@ struct ContainsNoStdDefault<A: MyDefault> {
|
|||||||
fn test_no_std_default() {
|
fn test_no_std_default() {
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&ContainsNoStdDefault { a: NoStdDefault(123) },
|
&ContainsNoStdDefault { a: NoStdDefault(123) },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("ContainsNoStdDefault", Some(1)),
|
Token::StructStart("ContainsNoStdDefault", 1),
|
||||||
Token::StructEnd,
|
Token::StructEnd,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&ContainsNoStdDefault { a: NoStdDefault(8) },
|
&ContainsNoStdDefault { a: NoStdDefault(8) },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("ContainsNoStdDefault", Some(1)),
|
Token::StructStart("ContainsNoStdDefault", 1),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -279,8 +280,8 @@ fn test_elt_not_deserialize() {
|
|||||||
c: NotDeserializeStruct(123),
|
c: NotDeserializeStruct(123),
|
||||||
e: NotDeserializeEnum::Trouble,
|
e: NotDeserializeEnum::Trouble,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("ContainsNotDeserialize", Some(3)),
|
Token::StructStart("ContainsNotDeserialize", 3),
|
||||||
Token::StructEnd,
|
Token::StructEnd,
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
@@ -297,8 +298,8 @@ fn test_ignore_unknown() {
|
|||||||
// 'Default' allows unknown. Basic smoke test of ignore...
|
// 'Default' allows unknown. Basic smoke test of ignore...
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DefaultStruct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
&DefaultStruct { a1: 1, a2: 2, a3: 3, a4: 0, a5: 123 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DefaultStruct", Some(5)),
|
Token::StructStart("DefaultStruct", 5),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("whoops1"),
|
Token::Str("whoops1"),
|
||||||
@@ -332,8 +333,8 @@ fn test_ignore_unknown() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
assert_de_tokens_error::<DenyUnknown>(
|
assert_de_tokens_error::<DenyUnknown>(
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DenyUnknown", Some(2)),
|
Token::StructStart("DenyUnknown", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -341,11 +342,8 @@ fn test_ignore_unknown() {
|
|||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("whoops"),
|
Token::Str("whoops"),
|
||||||
Token::I32(2),
|
|
||||||
|
|
||||||
Token::StructEnd,
|
|
||||||
],
|
],
|
||||||
Error::UnknownFieldError("whoops".to_owned())
|
Error::UnknownField("whoops".to_owned())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,8 +367,8 @@ struct RenameStructSerializeDeserialize {
|
|||||||
fn test_rename_struct() {
|
fn test_rename_struct() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&RenameStruct { a1: 1, a2: 2 },
|
&RenameStruct { a1: 1, a2: 2 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("Superhero", Some(2)),
|
Token::StructStart("Superhero", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -387,7 +385,7 @@ fn test_rename_struct() {
|
|||||||
assert_ser_tokens(
|
assert_ser_tokens(
|
||||||
&RenameStructSerializeDeserialize { a1: 1, a2: 2 },
|
&RenameStructSerializeDeserialize { a1: 1, a2: 2 },
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SuperheroSer", Some(2)),
|
Token::StructStart("SuperheroSer", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -403,8 +401,8 @@ fn test_rename_struct() {
|
|||||||
|
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&RenameStructSerializeDeserialize { a1: 1, a2: 2 },
|
&RenameStructSerializeDeserialize { a1: 1, a2: 2 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("SuperheroDe", Some(2)),
|
Token::StructStart("SuperheroDe", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -451,14 +449,14 @@ enum RenameEnumSerializeDeserialize<A> {
|
|||||||
fn test_rename_enum() {
|
fn test_rename_enum() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&RenameEnum::Batman,
|
&RenameEnum::Batman,
|
||||||
vec![
|
&[
|
||||||
Token::EnumUnit("Superhero", "bruce_wayne"),
|
Token::EnumUnit("Superhero", "bruce_wayne"),
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&RenameEnum::Superman(0),
|
&RenameEnum::Superman(0),
|
||||||
vec![
|
&[
|
||||||
Token::EnumNewType("Superhero", "clark_kent"),
|
Token::EnumNewType("Superhero", "clark_kent"),
|
||||||
Token::I8(0),
|
Token::I8(0),
|
||||||
]
|
]
|
||||||
@@ -466,8 +464,8 @@ fn test_rename_enum() {
|
|||||||
|
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&RenameEnum::WonderWoman(0, 1),
|
&RenameEnum::WonderWoman(0, 1),
|
||||||
vec![
|
&[
|
||||||
Token::EnumSeqStart("Superhero", "diana_prince", Some(2)),
|
Token::EnumSeqStart("Superhero", "diana_prince", 2),
|
||||||
|
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::I8(0),
|
Token::I8(0),
|
||||||
@@ -481,8 +479,8 @@ fn test_rename_enum() {
|
|||||||
|
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&RenameEnum::Flash { a: 1 },
|
&RenameEnum::Flash { a: 1 },
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("Superhero", "barry_allan", Some(1)),
|
Token::EnumMapStart("Superhero", "barry_allan", 1),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("b"),
|
Token::Str("b"),
|
||||||
@@ -498,7 +496,7 @@ fn test_rename_enum() {
|
|||||||
b: String::new(),
|
b: String::new(),
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SuperheroSer", "dick_grayson", Some(2)),
|
Token::EnumMapStart("SuperheroSer", "dick_grayson", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -517,8 +515,8 @@ fn test_rename_enum() {
|
|||||||
a: 0,
|
a: 0,
|
||||||
b: String::new(),
|
b: String::new(),
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("SuperheroDe", "jason_todd", Some(2)),
|
Token::EnumMapStart("SuperheroDe", "jason_todd", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -552,7 +550,7 @@ fn test_skip_serializing_struct() {
|
|||||||
c: 3,
|
c: 3,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SkipSerializingStruct", Some(2)),
|
Token::StructStart("SkipSerializingStruct", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -573,7 +571,7 @@ fn test_skip_serializing_struct() {
|
|||||||
c: 123,
|
c: 123,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SkipSerializingStruct", Some(1)),
|
Token::StructStart("SkipSerializingStruct", 1),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -605,7 +603,7 @@ fn test_skip_serializing_enum() {
|
|||||||
c: 3,
|
c: 3,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SkipSerializingEnum", "Struct", Some(2)),
|
Token::EnumMapStart("SkipSerializingEnum", "Struct", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -626,7 +624,7 @@ fn test_skip_serializing_enum() {
|
|||||||
c: 123,
|
c: 123,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SkipSerializingEnum", "Struct", Some(1)),
|
Token::EnumMapStart("SkipSerializingEnum", "Struct", 1),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -673,7 +671,7 @@ fn test_elt_not_serialize() {
|
|||||||
d: NotSerializeEnum::Trouble,
|
d: NotSerializeEnum::Trouble,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("ContainsNotSerialize", Some(2)),
|
Token::StructStart("ContainsNotSerialize", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -705,7 +703,7 @@ fn test_serialize_with_struct() {
|
|||||||
b: 2,
|
b: 2,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SerializeWithStruct", Some(2)),
|
Token::StructStart("SerializeWithStruct", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -725,7 +723,7 @@ fn test_serialize_with_struct() {
|
|||||||
b: 123,
|
b: 123,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SerializeWithStruct", Some(2)),
|
Token::StructStart("SerializeWithStruct", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -758,7 +756,7 @@ fn test_serialize_with_enum() {
|
|||||||
b: 2,
|
b: 2,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SerializeWithEnum", "Struct", Some(2)),
|
Token::EnumMapStart("SerializeWithEnum", "Struct", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -778,7 +776,7 @@ fn test_serialize_with_enum() {
|
|||||||
b: 123,
|
b: 123,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SerializeWithEnum", "Struct", Some(2)),
|
Token::EnumMapStart("SerializeWithEnum", "Struct", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -807,8 +805,8 @@ fn test_deserialize_with_struct() {
|
|||||||
a: 1,
|
a: 1,
|
||||||
b: 2,
|
b: 2,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DeserializeWithStruct", Some(2)),
|
Token::StructStart("DeserializeWithStruct", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -827,8 +825,8 @@ fn test_deserialize_with_struct() {
|
|||||||
a: 1,
|
a: 1,
|
||||||
b: 123,
|
b: 123,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DeserializeWithStruct", Some(2)),
|
Token::StructStart("DeserializeWithStruct", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -859,8 +857,8 @@ fn test_deserialize_with_enum() {
|
|||||||
a: 1,
|
a: 1,
|
||||||
b: 2,
|
b: 2,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("DeserializeWithEnum", "Struct", Some(2)),
|
Token::EnumMapStart("DeserializeWithEnum", "Struct", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -879,8 +877,8 @@ fn test_deserialize_with_enum() {
|
|||||||
a: 1,
|
a: 1,
|
||||||
b: 123,
|
b: 123,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("DeserializeWithEnum", "Struct", Some(2)),
|
Token::EnumMapStart("DeserializeWithEnum", "Struct", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -898,8 +896,8 @@ fn test_deserialize_with_enum() {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_missing_renamed_field_struct() {
|
fn test_missing_renamed_field_struct() {
|
||||||
assert_de_tokens_error::<RenameStruct>(
|
assert_de_tokens_error::<RenameStruct>(
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("Superhero", Some(2)),
|
Token::StructStart("Superhero", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -907,12 +905,12 @@ fn test_missing_renamed_field_struct() {
|
|||||||
|
|
||||||
Token::StructEnd,
|
Token::StructEnd,
|
||||||
],
|
],
|
||||||
Error::MissingFieldError("a3"),
|
Error::MissingField("a3"),
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_de_tokens_error::<RenameStructSerializeDeserialize>(
|
assert_de_tokens_error::<RenameStructSerializeDeserialize>(
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("SuperheroDe", Some(2)),
|
Token::StructStart("SuperheroDe", 2),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a1"),
|
Token::Str("a1"),
|
||||||
@@ -920,24 +918,24 @@ fn test_missing_renamed_field_struct() {
|
|||||||
|
|
||||||
Token::StructEnd,
|
Token::StructEnd,
|
||||||
],
|
],
|
||||||
Error::MissingFieldError("a5"),
|
Error::MissingField("a5"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_missing_renamed_field_enum() {
|
fn test_missing_renamed_field_enum() {
|
||||||
assert_de_tokens_error::<RenameEnum>(
|
assert_de_tokens_error::<RenameEnum>(
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("Superhero", "barry_allan", Some(1)),
|
Token::EnumMapStart("Superhero", "barry_allan", 1),
|
||||||
|
|
||||||
Token::EnumMapEnd,
|
Token::EnumMapEnd,
|
||||||
],
|
],
|
||||||
Error::MissingFieldError("b"),
|
Error::MissingField("b"),
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_de_tokens_error::<RenameEnumSerializeDeserialize<i8>>(
|
assert_de_tokens_error::<RenameEnumSerializeDeserialize<i8>>(
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("SuperheroDe", "jason_todd", Some(2)),
|
Token::EnumMapStart("SuperheroDe", "jason_todd", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -945,6 +943,34 @@ fn test_missing_renamed_field_enum() {
|
|||||||
|
|
||||||
Token::EnumMapEnd,
|
Token::EnumMapEnd,
|
||||||
],
|
],
|
||||||
Error::MissingFieldError("d"),
|
Error::MissingField("d"),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Deserialize)]
|
||||||
|
enum InvalidLengthEnum {
|
||||||
|
A(i32, i32, i32),
|
||||||
|
B(#[serde(skip_deserializing)] i32, i32, i32),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_invalid_length_enum() {
|
||||||
|
assert_de_tokens_error::<InvalidLengthEnum>(
|
||||||
|
&[
|
||||||
|
Token::EnumSeqStart("InvalidLengthEnum", "A", 3),
|
||||||
|
Token::EnumSeqSep,
|
||||||
|
Token::I32(1),
|
||||||
|
Token::EnumSeqEnd,
|
||||||
|
],
|
||||||
|
Error::InvalidLength(1),
|
||||||
|
);
|
||||||
|
assert_de_tokens_error::<InvalidLengthEnum>(
|
||||||
|
&[
|
||||||
|
Token::EnumSeqStart("InvalidLengthEnum", "B", 3),
|
||||||
|
Token::EnumSeqSep,
|
||||||
|
Token::I32(1),
|
||||||
|
Token::EnumSeqEnd,
|
||||||
|
],
|
||||||
|
Error::InvalidLength(1),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,337 @@
|
|||||||
|
use std::fmt;
|
||||||
|
use std::error;
|
||||||
|
|
||||||
|
extern crate serde;
|
||||||
|
use self::serde::Serialize;
|
||||||
|
use self::serde::bytes::{ByteBuf, Bytes};
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq)]
|
||||||
|
struct Error;
|
||||||
|
|
||||||
|
impl serde::ser::Error for Error {
|
||||||
|
fn custom<T: Into<String>>(_: T) -> Error { Error }
|
||||||
|
}
|
||||||
|
|
||||||
|
impl serde::de::Error for Error {
|
||||||
|
fn custom<T: Into<String>>(_: T) -> Error { Error }
|
||||||
|
|
||||||
|
fn end_of_stream() -> Error { Error }
|
||||||
|
}
|
||||||
|
|
||||||
|
impl fmt::Display for Error {
|
||||||
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||||
|
formatter.write_str(format!("{:?}", self).as_ref())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl error::Error for Error {
|
||||||
|
fn description(&self) -> &str {
|
||||||
|
"Serde Deserialization Error"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn cause(&self) -> Option<&error::Error> {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
struct BytesSerializer {
|
||||||
|
bytes: Vec<u8>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BytesSerializer {
|
||||||
|
fn new(bytes: Vec<u8>) -> Self {
|
||||||
|
BytesSerializer {
|
||||||
|
bytes: bytes,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl serde::Serializer for BytesSerializer {
|
||||||
|
type Error = Error;
|
||||||
|
type SeqState = ();
|
||||||
|
type MapState = ();
|
||||||
|
type TupleState = ();
|
||||||
|
type TupleStructState = ();
|
||||||
|
type TupleVariantState = ();
|
||||||
|
type StructState = ();
|
||||||
|
type StructVariantState = ();
|
||||||
|
|
||||||
|
fn serialize_unit(&mut self) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_unit_struct(&mut self, _name: &'static str) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_unit_variant(&mut self, _: &'static str, _: usize, _: &'static str) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_bool(&mut self, _v: bool) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_isize(&mut self, _v: isize) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_usize(&mut self, _v: usize) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i8(&mut self, _v: i8) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u8(&mut self, _v: u8) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i16(&mut self, _v: i16) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u16(&mut self, _v: u16) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i32(&mut self, _v: i32) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u32(&mut self, _v: u32) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_i64(&mut self, _v: i64) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_u64(&mut self, _v: u64) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_f32(&mut self, _v: f32) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_f64(&mut self, _v: f64) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_char(&mut self, _v: char) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_str(&mut self, _v: &str) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_none(&mut self) -> Result<(), Error> {
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_some<V>(&mut self, _value: V) -> Result<(), Error>
|
||||||
|
where V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_newtype_struct<V>(&mut self, _: &'static str, _value: V) -> Result<(), Error>
|
||||||
|
where V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_newtype_variant<V>(&mut self, _: &'static str, _: usize, _: &'static str, _value: V) -> Result<(), Error>
|
||||||
|
where V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq(&mut self, _len: Option<usize>) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_fixed_size(&mut self, _len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_elt<T>(&mut self, _: &mut (), _value: T) -> Result<(), Error>
|
||||||
|
where T: serde::Serialize
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_seq_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple(&mut self, _len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_elt<T>(&mut self, _: &mut (), _value: T) -> Result<(), Error>
|
||||||
|
where T: serde::Serialize
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct(&mut self, _: &'static str, _len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct_elt<T>(&mut self, _: &mut (), _value: T) -> Result<(), Error>
|
||||||
|
where T: serde::Serialize
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_struct_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant(&mut self, _: &'static str, _: usize, _: &'static str, _len: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant_elt<T>(&mut self, _: &mut (), _value: T) -> Result<(), Error>
|
||||||
|
where T: serde::Serialize
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_tuple_variant_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map(&mut self, _: Option<usize>) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map_elt<K, V>(&mut self, _: &mut (), _key: K, _value: V) -> Result<(), Error>
|
||||||
|
where K: serde::Serialize,
|
||||||
|
V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_map_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct(&mut self, _: &'static str, _: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_elt<V>(&mut self, _: &mut (), _key: &'static str, _value: V) -> Result<(), Error>
|
||||||
|
where V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant(&mut self, _: &'static str, _: usize, _: &'static str, _: usize) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant_elt<V>(&mut self, _: &mut (), _key: &'static str, _value: V) -> Result<(), Error>
|
||||||
|
where V: serde::Serialize,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_struct_variant_end(&mut self, _: ()) -> Result<(), Error>
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialize_bytes(&mut self, bytes: &[u8]) -> Result<(), Error> {
|
||||||
|
assert_eq!(self.bytes, bytes);
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
struct BytesDeserializer {
|
||||||
|
bytes: Option<Vec<u8>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BytesDeserializer {
|
||||||
|
fn new(bytes: Vec<u8>) -> Self {
|
||||||
|
BytesDeserializer {
|
||||||
|
bytes: Some(bytes),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl serde::Deserializer for BytesDeserializer {
|
||||||
|
type Error = Error;
|
||||||
|
|
||||||
|
fn deserialize<V>(&mut self, _visitor: V) -> Result<V::Value, Error>
|
||||||
|
where V: serde::de::Visitor,
|
||||||
|
{
|
||||||
|
Err(Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn deserialize_bytes<V>(&mut self, mut visitor: V) -> Result<V::Value, Error>
|
||||||
|
where V: serde::de::Visitor,
|
||||||
|
{
|
||||||
|
visitor.visit_byte_buf(self.bytes.take().unwrap())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_bytes_ser_bytes() {
|
||||||
|
let buf = vec![];
|
||||||
|
let bytes = Bytes::from(&buf);
|
||||||
|
let mut ser = BytesSerializer::new(vec![]);
|
||||||
|
bytes.serialize(&mut ser).unwrap();
|
||||||
|
|
||||||
|
let buf = vec![1, 2, 3];
|
||||||
|
let bytes = Bytes::from(&buf);
|
||||||
|
let mut ser = BytesSerializer::new(vec![1, 2, 3]);
|
||||||
|
bytes.serialize(&mut ser).unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_byte_buf_de_bytes() {
|
||||||
|
let mut de = BytesDeserializer::new(vec![]);
|
||||||
|
let bytes = serde::Deserialize::deserialize(&mut de);
|
||||||
|
assert_eq!(bytes, Ok(ByteBuf::new()));
|
||||||
|
|
||||||
|
let mut de = BytesDeserializer::new(vec![1, 2, 3]);
|
||||||
|
let bytes = serde::Deserialize::deserialize(&mut de);
|
||||||
|
assert_eq!(bytes, Ok(ByteBuf::from(vec![1, 2, 3])));
|
||||||
|
}
|
||||||
@@ -2,14 +2,17 @@ use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
|
|||||||
use std::net;
|
use std::net;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
extern crate serde;
|
||||||
|
use self::serde::Deserialize;
|
||||||
|
|
||||||
extern crate fnv;
|
extern crate fnv;
|
||||||
use self::fnv::FnvHasher;
|
use self::fnv::FnvHasher;
|
||||||
|
|
||||||
use token::{
|
extern crate serde_test;
|
||||||
|
use self::serde_test::{
|
||||||
Error,
|
Error,
|
||||||
Token,
|
Token,
|
||||||
assert_de_tokens,
|
assert_de_tokens,
|
||||||
assert_de_tokens_ignore,
|
|
||||||
assert_de_tokens_error,
|
assert_de_tokens_error,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -73,107 +76,147 @@ macro_rules! declare_error_tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn assert_de_tokens_ignore(ignorable_tokens: &[Token<'static>]) {
|
||||||
|
#[derive(PartialEq, Debug, Deserialize)]
|
||||||
|
struct IgnoreBase {
|
||||||
|
a: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
let expected = IgnoreBase{a: 1};
|
||||||
|
|
||||||
|
// Embed the tokens to be ignored in the normal token
|
||||||
|
// stream for an IgnoreBase type
|
||||||
|
let concated_tokens : Vec<Token<'static>> = vec![
|
||||||
|
Token::MapStart(Some(2)),
|
||||||
|
Token::MapSep,
|
||||||
|
Token::Str("a"),
|
||||||
|
Token::I32(1),
|
||||||
|
|
||||||
|
Token::MapSep,
|
||||||
|
Token::Str("ignored")
|
||||||
|
]
|
||||||
|
.into_iter()
|
||||||
|
.chain(ignorable_tokens.to_vec().into_iter())
|
||||||
|
.chain(vec![
|
||||||
|
Token::MapEnd,
|
||||||
|
].into_iter())
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let mut de = serde_test::Deserializer::new(concated_tokens.into_iter());
|
||||||
|
let v: Result<IgnoreBase, Error> = Deserialize::deserialize(&mut de);
|
||||||
|
|
||||||
|
// We run this test on every token stream for convenience, but
|
||||||
|
// some token streams don't make sense embedded as a map value,
|
||||||
|
// so we ignore those. SyntaxError is the real sign of trouble.
|
||||||
|
if let Err(Error::UnexpectedToken(_)) = v {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_eq!(v.as_ref(), Ok(&expected));
|
||||||
|
assert_eq!(de.next_token(), None);
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
declare_tests! {
|
declare_tests! {
|
||||||
test_bool {
|
test_bool {
|
||||||
true => vec![Token::Bool(true)],
|
true => &[Token::Bool(true)],
|
||||||
false => vec![Token::Bool(false)],
|
false => &[Token::Bool(false)],
|
||||||
}
|
}
|
||||||
test_isize {
|
test_isize {
|
||||||
0isize => vec![Token::Isize(0)],
|
0isize => &[Token::Isize(0)],
|
||||||
0isize => vec![Token::I8(0)],
|
0isize => &[Token::I8(0)],
|
||||||
0isize => vec![Token::I16(0)],
|
0isize => &[Token::I16(0)],
|
||||||
0isize => vec![Token::I32(0)],
|
0isize => &[Token::I32(0)],
|
||||||
0isize => vec![Token::I64(0)],
|
0isize => &[Token::I64(0)],
|
||||||
0isize => vec![Token::Usize(0)],
|
0isize => &[Token::Usize(0)],
|
||||||
0isize => vec![Token::U8(0)],
|
0isize => &[Token::U8(0)],
|
||||||
0isize => vec![Token::U16(0)],
|
0isize => &[Token::U16(0)],
|
||||||
0isize => vec![Token::U32(0)],
|
0isize => &[Token::U32(0)],
|
||||||
0isize => vec![Token::U64(0)],
|
0isize => &[Token::U64(0)],
|
||||||
0isize => vec![Token::F32(0.)],
|
0isize => &[Token::F32(0.)],
|
||||||
0isize => vec![Token::F64(0.)],
|
0isize => &[Token::F64(0.)],
|
||||||
}
|
}
|
||||||
test_ints {
|
test_ints {
|
||||||
0isize => vec![Token::Isize(0)],
|
0isize => &[Token::Isize(0)],
|
||||||
0i8 => vec![Token::I8(0)],
|
0i8 => &[Token::I8(0)],
|
||||||
0i16 => vec![Token::I16(0)],
|
0i16 => &[Token::I16(0)],
|
||||||
0i32 => vec![Token::I32(0)],
|
0i32 => &[Token::I32(0)],
|
||||||
0i64 => vec![Token::I64(0)],
|
0i64 => &[Token::I64(0)],
|
||||||
}
|
}
|
||||||
test_uints {
|
test_uints {
|
||||||
0usize => vec![Token::Usize(0)],
|
0usize => &[Token::Usize(0)],
|
||||||
0u8 => vec![Token::U8(0)],
|
0u8 => &[Token::U8(0)],
|
||||||
0u16 => vec![Token::U16(0)],
|
0u16 => &[Token::U16(0)],
|
||||||
0u32 => vec![Token::U32(0)],
|
0u32 => &[Token::U32(0)],
|
||||||
0u64 => vec![Token::U64(0)],
|
0u64 => &[Token::U64(0)],
|
||||||
}
|
}
|
||||||
test_floats {
|
test_floats {
|
||||||
0f32 => vec![Token::F32(0.)],
|
0f32 => &[Token::F32(0.)],
|
||||||
0f64 => vec![Token::F64(0.)],
|
0f64 => &[Token::F64(0.)],
|
||||||
}
|
}
|
||||||
test_char {
|
test_char {
|
||||||
'a' => vec![Token::Char('a')],
|
'a' => &[Token::Char('a')],
|
||||||
'a' => vec![Token::Str("a")],
|
'a' => &[Token::Str("a")],
|
||||||
'a' => vec![Token::String("a".to_owned())],
|
'a' => &[Token::String("a".to_owned())],
|
||||||
}
|
}
|
||||||
test_string {
|
test_string {
|
||||||
"abc".to_owned() => vec![Token::Str("abc")],
|
"abc".to_owned() => &[Token::Str("abc")],
|
||||||
"abc".to_owned() => vec![Token::String("abc".to_owned())],
|
"abc".to_owned() => &[Token::String("abc".to_owned())],
|
||||||
"a".to_owned() => vec![Token::Char('a')],
|
"a".to_owned() => &[Token::Char('a')],
|
||||||
}
|
}
|
||||||
test_option {
|
test_option {
|
||||||
None::<i32> => vec![Token::Unit],
|
None::<i32> => &[Token::Unit],
|
||||||
None::<i32> => vec![Token::Option(false)],
|
None::<i32> => &[Token::Option(false)],
|
||||||
Some(1) => vec![Token::I32(1)],
|
Some(1) => &[Token::I32(1)],
|
||||||
Some(1) => vec![
|
Some(1) => &[
|
||||||
Token::Option(true),
|
Token::Option(true),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_result {
|
test_result {
|
||||||
Ok::<i32, i32>(0) => vec![
|
Ok::<i32, i32>(0) => &[
|
||||||
Token::EnumStart("Result"),
|
Token::EnumStart("Result"),
|
||||||
Token::Str("Ok"),
|
Token::Str("Ok"),
|
||||||
Token::I32(0),
|
Token::I32(0),
|
||||||
],
|
],
|
||||||
Err::<i32, i32>(1) => vec![
|
Err::<i32, i32>(1) => &[
|
||||||
Token::EnumStart("Result"),
|
Token::EnumStart("Result"),
|
||||||
Token::Str("Err"),
|
Token::Str("Err"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_unit {
|
test_unit {
|
||||||
() => vec![Token::Unit],
|
() => &[Token::Unit],
|
||||||
() => vec![
|
() => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
() => vec![
|
() => &[
|
||||||
Token::SeqStart(None),
|
Token::SeqStart(None),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
() => vec![
|
() => &[
|
||||||
Token::TupleStructStart("Anything", Some(0)),
|
Token::TupleStructStart("Anything", 0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_unit_struct {
|
test_unit_struct {
|
||||||
UnitStruct => vec![Token::Unit],
|
UnitStruct => &[Token::Unit],
|
||||||
UnitStruct => vec![
|
UnitStruct => &[
|
||||||
Token::UnitStruct("UnitStruct"),
|
Token::UnitStruct("UnitStruct"),
|
||||||
],
|
],
|
||||||
UnitStruct => vec![
|
UnitStruct => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
UnitStruct => vec![
|
UnitStruct => &[
|
||||||
Token::SeqStart(None),
|
Token::SeqStart(None),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_tuple_struct {
|
test_tuple_struct {
|
||||||
TupleStruct(1, 2, 3) => vec![
|
TupleStruct(1, 2, 3) => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -185,7 +228,7 @@ declare_tests! {
|
|||||||
Token::I32(3),
|
Token::I32(3),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
TupleStruct(1, 2, 3) => vec![
|
TupleStruct(1, 2, 3) => &[
|
||||||
Token::SeqStart(None),
|
Token::SeqStart(None),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -197,8 +240,8 @@ declare_tests! {
|
|||||||
Token::I32(3),
|
Token::I32(3),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
TupleStruct(1, 2, 3) => vec![
|
TupleStruct(1, 2, 3) => &[
|
||||||
Token::TupleStructStart("TupleStruct", Some(3)),
|
Token::TupleStructStart("TupleStruct", 3),
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
@@ -209,8 +252,8 @@ declare_tests! {
|
|||||||
Token::I32(3),
|
Token::I32(3),
|
||||||
Token::TupleStructEnd,
|
Token::TupleStructEnd,
|
||||||
],
|
],
|
||||||
TupleStruct(1, 2, 3) => vec![
|
TupleStruct(1, 2, 3) => &[
|
||||||
Token::TupleStructStart("TupleStruct", None),
|
Token::TupleStructStart("TupleStruct", 3),
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
@@ -223,14 +266,14 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_btreeset {
|
test_btreeset {
|
||||||
BTreeSet::<isize>::new() => vec![
|
BTreeSet::<isize>::new() => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
BTreeSet::<isize>::new() => vec![
|
BTreeSet::<isize>::new() => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
btreeset![btreeset![], btreeset![1], btreeset![2, 3]] => vec![
|
btreeset![btreeset![], btreeset![1], btreeset![2, 3]] => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
@@ -252,23 +295,23 @@ declare_tests! {
|
|||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
BTreeSet::<isize>::new() => vec![
|
BTreeSet::<isize>::new() => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
BTreeSet::<isize>::new() => vec![
|
BTreeSet::<isize>::new() => &[
|
||||||
Token::TupleStructStart("Anything", Some(0)),
|
Token::TupleStructStart("Anything", 0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_hashset {
|
test_hashset {
|
||||||
HashSet::<isize>::new() => vec![
|
HashSet::<isize>::new() => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
HashSet::<isize>::new() => vec![
|
HashSet::<isize>::new() => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
hashset![1, 2, 3] => vec![
|
hashset![1, 2, 3] => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -280,14 +323,14 @@ declare_tests! {
|
|||||||
Token::I32(3),
|
Token::I32(3),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
HashSet::<isize>::new() => vec![
|
HashSet::<isize>::new() => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
HashSet::<isize>::new() => vec![
|
HashSet::<isize>::new() => &[
|
||||||
Token::TupleStructStart("Anything", Some(0)),
|
Token::TupleStructStart("Anything", 0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
hashset![FnvHasher @ 1, 2, 3] => vec![
|
hashset![FnvHasher @ 1, 2, 3] => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -301,14 +344,14 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_vec {
|
test_vec {
|
||||||
Vec::<isize>::new() => vec![
|
Vec::<isize>::new() => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
Vec::<isize>::new() => vec![
|
Vec::<isize>::new() => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
vec![vec![], vec![1], vec![2, 3]] => vec![
|
vec![vec![], vec![1], vec![2, 3]] => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
@@ -330,27 +373,27 @@ declare_tests! {
|
|||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
Vec::<isize>::new() => vec![
|
Vec::<isize>::new() => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
Vec::<isize>::new() => vec![
|
Vec::<isize>::new() => &[
|
||||||
Token::TupleStructStart("Anything", Some(0)),
|
Token::TupleStructStart("Anything", 0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_array {
|
test_array {
|
||||||
[0; 0] => vec![
|
[0; 0] => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
[0; 0] => vec![
|
[0; 0] => &[
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
[0; 0] => vec![
|
[0; 0] => &[
|
||||||
Token::SeqArrayStart(0),
|
Token::SeqArrayStart(0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
([0; 0], [1], [2, 3]) => vec![
|
([0; 0], [1], [2, 3]) => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::SeqStart(Some(0)),
|
Token::SeqStart(Some(0)),
|
||||||
@@ -372,7 +415,7 @@ declare_tests! {
|
|||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
([0; 0], [1], [2, 3]) => vec![
|
([0; 0], [1], [2, 3]) => &[
|
||||||
Token::SeqArrayStart(3),
|
Token::SeqArrayStart(3),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::SeqArrayStart(0),
|
Token::SeqArrayStart(0),
|
||||||
@@ -394,22 +437,22 @@ declare_tests! {
|
|||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
[0; 0] => vec![
|
[0; 0] => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
[0; 0] => vec![
|
[0; 0] => &[
|
||||||
Token::TupleStructStart("Anything", Some(0)),
|
Token::TupleStructStart("Anything", 0),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_tuple {
|
test_tuple {
|
||||||
(1,) => vec![
|
(1,) => &[
|
||||||
Token::SeqStart(Some(1)),
|
Token::SeqStart(Some(1)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
(1, 2, 3) => vec![
|
(1, 2, 3) => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -421,13 +464,13 @@ declare_tests! {
|
|||||||
Token::I32(3),
|
Token::I32(3),
|
||||||
Token::SeqEnd,
|
Token::SeqEnd,
|
||||||
],
|
],
|
||||||
(1,) => vec![
|
(1,) => &[
|
||||||
Token::TupleStart(1),
|
Token::TupleStart(1),
|
||||||
Token::TupleSep,
|
Token::TupleSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
Token::TupleEnd,
|
Token::TupleEnd,
|
||||||
],
|
],
|
||||||
(1, 2, 3) => vec![
|
(1, 2, 3) => &[
|
||||||
Token::TupleStart(3),
|
Token::TupleStart(3),
|
||||||
Token::TupleSep,
|
Token::TupleSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -441,21 +484,21 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_btreemap {
|
test_btreemap {
|
||||||
BTreeMap::<isize, isize>::new() => vec![
|
BTreeMap::<isize, isize>::new() => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
BTreeMap::<isize, isize>::new() => vec![
|
BTreeMap::<isize, isize>::new() => &[
|
||||||
Token::MapStart(Some(0)),
|
Token::MapStart(Some(0)),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
btreemap![1 => 2] => vec![
|
btreemap![1 => 2] => &[
|
||||||
Token::MapStart(Some(1)),
|
Token::MapStart(Some(1)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
Token::I32(2),
|
Token::I32(2),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
btreemap![1 => 2, 3 => 4] => vec![
|
btreemap![1 => 2, 3 => 4] => &[
|
||||||
Token::MapStart(Some(2)),
|
Token::MapStart(Some(2)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -466,7 +509,7 @@ declare_tests! {
|
|||||||
Token::I32(4),
|
Token::I32(4),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
btreemap![1 => btreemap![], 2 => btreemap![3 => 4, 5 => 6]] => vec![
|
btreemap![1 => btreemap![], 2 => btreemap![3 => 4, 5 => 6]] => &[
|
||||||
Token::MapStart(Some(2)),
|
Token::MapStart(Some(2)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -486,30 +529,30 @@ declare_tests! {
|
|||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
BTreeMap::<isize, isize>::new() => vec![
|
BTreeMap::<isize, isize>::new() => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
BTreeMap::<isize, isize>::new() => vec![
|
BTreeMap::<isize, isize>::new() => &[
|
||||||
Token::StructStart("Anything", Some(0)),
|
Token::StructStart("Anything", 0),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_hashmap {
|
test_hashmap {
|
||||||
HashMap::<isize, isize>::new() => vec![
|
HashMap::<isize, isize>::new() => &[
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
HashMap::<isize, isize>::new() => vec![
|
HashMap::<isize, isize>::new() => &[
|
||||||
Token::MapStart(Some(0)),
|
Token::MapStart(Some(0)),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
hashmap![1 => 2] => vec![
|
hashmap![1 => 2] => &[
|
||||||
Token::MapStart(Some(1)),
|
Token::MapStart(Some(1)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
Token::I32(2),
|
Token::I32(2),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
hashmap![1 => 2, 3 => 4] => vec![
|
hashmap![1 => 2, 3 => 4] => &[
|
||||||
Token::MapStart(Some(2)),
|
Token::MapStart(Some(2)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -520,7 +563,7 @@ declare_tests! {
|
|||||||
Token::I32(4),
|
Token::I32(4),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
hashmap![1 => hashmap![], 2 => hashmap![3 => 4, 5 => 6]] => vec![
|
hashmap![1 => hashmap![], 2 => hashmap![3 => 4, 5 => 6]] => &[
|
||||||
Token::MapStart(Some(2)),
|
Token::MapStart(Some(2)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -540,14 +583,14 @@ declare_tests! {
|
|||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
HashMap::<isize, isize>::new() => vec![
|
HashMap::<isize, isize>::new() => &[
|
||||||
Token::UnitStruct("Anything"),
|
Token::UnitStruct("Anything"),
|
||||||
],
|
],
|
||||||
HashMap::<isize, isize>::new() => vec![
|
HashMap::<isize, isize>::new() => &[
|
||||||
Token::StructStart("Anything", Some(0)),
|
Token::StructStart("Anything", 0),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
hashmap![FnvHasher @ 1 => 2, 3 => 4] => vec![
|
hashmap![FnvHasher @ 1 => 2, 3 => 4] => &[
|
||||||
Token::MapStart(Some(2)),
|
Token::MapStart(Some(2)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -560,7 +603,7 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_struct {
|
test_struct {
|
||||||
Struct { a: 1, b: 2, c: 0 } => vec![
|
Struct { a: 1, b: 2, c: 0 } => &[
|
||||||
Token::MapStart(Some(3)),
|
Token::MapStart(Some(3)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -571,8 +614,8 @@ declare_tests! {
|
|||||||
Token::I32(2),
|
Token::I32(2),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
Struct { a: 1, b: 2, c: 0 } => vec![
|
Struct { a: 1, b: 2, c: 0 } => &[
|
||||||
Token::StructStart("Struct", Some(3)),
|
Token::StructStart("Struct", 3),
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -582,7 +625,7 @@ declare_tests! {
|
|||||||
Token::I32(2),
|
Token::I32(2),
|
||||||
Token::StructEnd,
|
Token::StructEnd,
|
||||||
],
|
],
|
||||||
Struct { a: 1, b: 2, c: 0 } => vec![
|
Struct { a: 1, b: 2, c: 0 } => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -593,7 +636,7 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_struct_with_skip {
|
test_struct_with_skip {
|
||||||
Struct { a: 1, b: 2, c: 0 } => vec![
|
Struct { a: 1, b: 2, c: 0 } => &[
|
||||||
Token::MapStart(Some(3)),
|
Token::MapStart(Some(3)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -612,8 +655,8 @@ declare_tests! {
|
|||||||
Token::I32(4),
|
Token::I32(4),
|
||||||
Token::MapEnd,
|
Token::MapEnd,
|
||||||
],
|
],
|
||||||
Struct { a: 1, b: 2, c: 0 } => vec![
|
Struct { a: 1, b: 2, c: 0 } => &[
|
||||||
Token::StructStart("Struct", Some(3)),
|
Token::StructStart("Struct", 3),
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -633,19 +676,19 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_unit {
|
test_enum_unit {
|
||||||
Enum::Unit => vec![
|
Enum::Unit => &[
|
||||||
Token::EnumUnit("Enum", "Unit"),
|
Token::EnumUnit("Enum", "Unit"),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_simple {
|
test_enum_simple {
|
||||||
Enum::Simple(1) => vec![
|
Enum::Simple(1) => &[
|
||||||
Token::EnumNewType("Enum", "Simple"),
|
Token::EnumNewType("Enum", "Simple"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_seq {
|
test_enum_seq {
|
||||||
Enum::Seq(1, 2, 3) => vec![
|
Enum::Seq(1, 2, 3) => &[
|
||||||
Token::EnumSeqStart("Enum", "Seq", Some(3)),
|
Token::EnumSeqStart("Enum", "Seq", 3),
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
@@ -658,8 +701,8 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_map {
|
test_enum_map {
|
||||||
Enum::Map { a: 1, b: 2, c: 3 } => vec![
|
Enum::Map { a: 1, b: 2, c: 3 } => &[
|
||||||
Token::EnumMapStart("Enum", "Map", Some(3)),
|
Token::EnumMapStart("Enum", "Map", 3),
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -675,24 +718,24 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_unit_usize {
|
test_enum_unit_usize {
|
||||||
Enum::Unit => vec![
|
Enum::Unit => &[
|
||||||
Token::EnumStart("Enum"),
|
Token::EnumStart("Enum"),
|
||||||
Token::Usize(0),
|
Token::Usize(0),
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum_unit_bytes {
|
test_enum_unit_bytes {
|
||||||
Enum::Unit => vec![
|
Enum::Unit => &[
|
||||||
Token::EnumStart("Enum"),
|
Token::EnumStart("Enum"),
|
||||||
Token::Bytes(b"Unit"),
|
Token::Bytes(b"Unit"),
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_box {
|
test_box {
|
||||||
Box::new(0i32) => vec![Token::I32(0)],
|
Box::new(0i32) => &[Token::I32(0)],
|
||||||
}
|
}
|
||||||
test_boxed_slice {
|
test_boxed_slice {
|
||||||
Box::new([0, 1, 2]) => vec![
|
Box::new([0, 1, 2]) => &[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(0),
|
Token::I32(0),
|
||||||
@@ -704,52 +747,50 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_net_ipv4addr {
|
test_net_ipv4addr {
|
||||||
"1.2.3.4".parse::<net::Ipv4Addr>().unwrap() => vec![Token::Str("1.2.3.4")],
|
"1.2.3.4".parse::<net::Ipv4Addr>().unwrap() => &[Token::Str("1.2.3.4")],
|
||||||
}
|
}
|
||||||
test_net_ipv6addr {
|
test_net_ipv6addr {
|
||||||
"::1".parse::<net::Ipv6Addr>().unwrap() => vec![Token::Str("::1")],
|
"::1".parse::<net::Ipv6Addr>().unwrap() => &[Token::Str("::1")],
|
||||||
}
|
}
|
||||||
test_net_socketaddr {
|
test_net_socketaddr {
|
||||||
"1.2.3.4:1234".parse::<net::SocketAddr>().unwrap() => vec![Token::Str("1.2.3.4:1234")],
|
"1.2.3.4:1234".parse::<net::SocketAddr>().unwrap() => &[Token::Str("1.2.3.4:1234")],
|
||||||
"1.2.3.4:1234".parse::<net::SocketAddrV4>().unwrap() => vec![Token::Str("1.2.3.4:1234")],
|
"1.2.3.4:1234".parse::<net::SocketAddrV4>().unwrap() => &[Token::Str("1.2.3.4:1234")],
|
||||||
"[::1]:1234".parse::<net::SocketAddrV6>().unwrap() => vec![Token::Str("[::1]:1234")],
|
"[::1]:1234".parse::<net::SocketAddrV6>().unwrap() => &[Token::Str("[::1]:1234")],
|
||||||
}
|
}
|
||||||
test_path_buf {
|
test_path_buf {
|
||||||
PathBuf::from("/usr/local/lib") => vec![
|
PathBuf::from("/usr/local/lib") => &[
|
||||||
Token::String("/usr/local/lib".to_owned()),
|
Token::String("/usr/local/lib".to_owned()),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
#[test]
|
#[test]
|
||||||
fn test_net_ipaddr() {
|
fn test_net_ipaddr() {
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
"1.2.3.4".parse::<net::IpAddr>().unwrap(),
|
"1.2.3.4".parse::<net::IpAddr>().unwrap(),
|
||||||
vec![Token::Str("1.2.3.4")],
|
&[Token::Str("1.2.3.4")],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
declare_error_tests! {
|
declare_error_tests! {
|
||||||
test_unknown_variant<Enum> {
|
test_unknown_variant<Enum> {
|
||||||
vec![
|
&[
|
||||||
Token::EnumUnit("Enum", "Foo"),
|
Token::EnumUnit("Enum", "Foo"),
|
||||||
],
|
],
|
||||||
Error::UnknownVariantError("Foo".to_owned()),
|
Error::UnknownVariant("Foo".to_owned()),
|
||||||
}
|
}
|
||||||
test_struct_seq_too_long<Struct> {
|
test_struct_seq_too_long<Struct> {
|
||||||
vec![
|
&[
|
||||||
Token::SeqStart(Some(4)),
|
Token::SeqStart(Some(4)),
|
||||||
Token::SeqSep, Token::I32(1),
|
Token::SeqSep, Token::I32(1),
|
||||||
Token::SeqSep, Token::I32(2),
|
Token::SeqSep, Token::I32(2),
|
||||||
Token::SeqSep, Token::I32(3),
|
Token::SeqSep, Token::I32(3),
|
||||||
Token::SeqSep, Token::I32(4),
|
|
||||||
Token::SeqEnd,
|
|
||||||
],
|
],
|
||||||
Error::UnexpectedToken(Token::SeqSep),
|
Error::UnexpectedToken(Token::SeqSep),
|
||||||
}
|
}
|
||||||
test_duplicate_field_struct<Struct> {
|
test_duplicate_field_struct<Struct> {
|
||||||
vec![
|
&[
|
||||||
Token::MapStart(Some(3)),
|
Token::MapStart(Some(3)),
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -757,23 +798,19 @@ declare_error_tests! {
|
|||||||
|
|
||||||
Token::MapSep,
|
Token::MapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(3),
|
|
||||||
Token::MapEnd,
|
|
||||||
],
|
],
|
||||||
Error::DuplicateFieldError("a"),
|
Error::DuplicateField("a"),
|
||||||
}
|
}
|
||||||
test_duplicate_field_enum<Enum> {
|
test_duplicate_field_enum<Enum> {
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("Enum", "Map", Some(3)),
|
Token::EnumMapStart("Enum", "Map", 3),
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(3),
|
|
||||||
Token::EnumMapEnd,
|
|
||||||
],
|
],
|
||||||
Error::DuplicateFieldError("a"),
|
Error::DuplicateField("a"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
use std::marker::PhantomData;
|
extern crate serde_test;
|
||||||
use token::{Token, assert_tokens, assert_ser_tokens, assert_de_tokens};
|
use self::serde_test::{
|
||||||
|
Token,
|
||||||
|
assert_tokens,
|
||||||
|
assert_ser_tokens,
|
||||||
|
assert_de_tokens,
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
use std::marker::PhantomData;
|
||||||
trait Trait {
|
|
||||||
type Type;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
// That tests that the derived Serialize implementation doesn't trigger
|
// That tests that the derived Serialize implementation doesn't trigger
|
||||||
// any warning about `serializer` not being used, in case of empty enums.
|
// any warning about `serializer` not being used, in case of empty enums.
|
||||||
@@ -161,7 +162,7 @@ struct DefaultTyParam<T: AssociatedType<X=i32> = i32> {
|
|||||||
fn test_named_unit() {
|
fn test_named_unit() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&NamedUnit,
|
&NamedUnit,
|
||||||
vec![Token::UnitStruct("NamedUnit")]
|
&[Token::UnitStruct("NamedUnit")]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -173,7 +174,7 @@ fn test_ser_named_tuple() {
|
|||||||
assert_ser_tokens(
|
assert_ser_tokens(
|
||||||
&SerNamedTuple(&a, &mut b, c),
|
&SerNamedTuple(&a, &mut b, c),
|
||||||
&[
|
&[
|
||||||
Token::TupleStructStart("SerNamedTuple", Some(3)),
|
Token::TupleStructStart("SerNamedTuple", 3),
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::I32(5),
|
Token::I32(5),
|
||||||
|
|
||||||
@@ -192,7 +193,7 @@ fn test_ser_named_tuple() {
|
|||||||
fn test_de_named_tuple() {
|
fn test_de_named_tuple() {
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DeNamedTuple(5, 6, 7),
|
&DeNamedTuple(5, 6, 7),
|
||||||
vec![
|
&[
|
||||||
Token::SeqStart(Some(3)),
|
Token::SeqStart(Some(3)),
|
||||||
Token::SeqSep,
|
Token::SeqSep,
|
||||||
Token::I32(5),
|
Token::I32(5),
|
||||||
@@ -209,8 +210,8 @@ fn test_de_named_tuple() {
|
|||||||
|
|
||||||
assert_de_tokens(
|
assert_de_tokens(
|
||||||
&DeNamedTuple(5, 6, 7),
|
&DeNamedTuple(5, 6, 7),
|
||||||
vec![
|
&[
|
||||||
Token::TupleStructStart("DeNamedTuple", Some(3)),
|
Token::TupleStructStart("DeNamedTuple", 3),
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::I32(5),
|
Token::I32(5),
|
||||||
|
|
||||||
@@ -238,7 +239,7 @@ fn test_ser_named_map() {
|
|||||||
c: c,
|
c: c,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::StructStart("SerNamedMap", Some(3)),
|
Token::StructStart("SerNamedMap", 3),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -265,8 +266,8 @@ fn test_de_named_map() {
|
|||||||
b: 6,
|
b: 6,
|
||||||
c: 7,
|
c: 7,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DeNamedMap", Some(3)),
|
Token::StructStart("DeNamedMap", 3),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -314,7 +315,7 @@ fn test_ser_enum_seq() {
|
|||||||
//f,
|
//f,
|
||||||
),
|
),
|
||||||
&[
|
&[
|
||||||
Token::EnumSeqStart("SerEnum", "Seq", Some(4)),
|
Token::EnumSeqStart("SerEnum", "Seq", 4),
|
||||||
|
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::I8(1),
|
Token::I8(1),
|
||||||
@@ -352,7 +353,7 @@ fn test_ser_enum_map() {
|
|||||||
//f: f,
|
//f: f,
|
||||||
},
|
},
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("SerEnum", "Map", Some(4)),
|
Token::EnumMapStart("SerEnum", "Map", 4),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -379,7 +380,7 @@ fn test_ser_enum_map() {
|
|||||||
fn test_de_enum_unit() {
|
fn test_de_enum_unit() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&DeEnum::Unit::<u32, u32, u32>,
|
&DeEnum::Unit::<u32, u32, u32>,
|
||||||
vec![
|
&[
|
||||||
Token::EnumUnit("DeEnum", "Unit"),
|
Token::EnumUnit("DeEnum", "Unit"),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@@ -403,8 +404,8 @@ fn test_de_enum_seq() {
|
|||||||
e,
|
e,
|
||||||
//f,
|
//f,
|
||||||
),
|
),
|
||||||
vec![
|
&[
|
||||||
Token::EnumSeqStart("DeEnum", "Seq", Some(4)),
|
Token::EnumSeqStart("DeEnum", "Seq", 4),
|
||||||
|
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::I8(1),
|
Token::I8(1),
|
||||||
@@ -441,8 +442,8 @@ fn test_de_enum_map() {
|
|||||||
e: e,
|
e: e,
|
||||||
//f: f,
|
//f: f,
|
||||||
},
|
},
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("DeEnum", "Map", Some(4)),
|
Token::EnumMapStart("DeEnum", "Map", 4),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -488,7 +489,7 @@ fn test_lifetimes() {
|
|||||||
assert_ser_tokens(
|
assert_ser_tokens(
|
||||||
&Lifetimes::LifetimeMap { a: &value },
|
&Lifetimes::LifetimeMap { a: &value },
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("Lifetimes", "LifetimeMap", Some(1)),
|
Token::EnumMapStart("Lifetimes", "LifetimeMap", 1),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -501,7 +502,7 @@ fn test_lifetimes() {
|
|||||||
assert_ser_tokens(
|
assert_ser_tokens(
|
||||||
&Lifetimes::NoLifetimeMap { a: 5 },
|
&Lifetimes::NoLifetimeMap { a: 5 },
|
||||||
&[
|
&[
|
||||||
Token::EnumMapStart("Lifetimes", "NoLifetimeMap", Some(1)),
|
Token::EnumMapStart("Lifetimes", "NoLifetimeMap", 1),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
@@ -516,8 +517,8 @@ fn test_lifetimes() {
|
|||||||
fn test_generic_struct() {
|
fn test_generic_struct() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericStruct { x: 5u32 },
|
&GenericStruct { x: 5u32 },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("GenericStruct", Some(1)),
|
Token::StructStart("GenericStruct", 1),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("x"),
|
Token::Str("x"),
|
||||||
@@ -532,7 +533,7 @@ fn test_generic_struct() {
|
|||||||
fn test_generic_newtype_struct() {
|
fn test_generic_newtype_struct() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericNewTypeStruct(5u32),
|
&GenericNewTypeStruct(5u32),
|
||||||
vec![
|
&[
|
||||||
Token::StructNewType("GenericNewTypeStruct"),
|
Token::StructNewType("GenericNewTypeStruct"),
|
||||||
Token::U32(5),
|
Token::U32(5),
|
||||||
]
|
]
|
||||||
@@ -543,8 +544,8 @@ fn test_generic_newtype_struct() {
|
|||||||
fn test_generic_tuple_struct() {
|
fn test_generic_tuple_struct() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericTupleStruct(5u32, 6u32),
|
&GenericTupleStruct(5u32, 6u32),
|
||||||
vec![
|
&[
|
||||||
Token::TupleStructStart("GenericTupleStruct", Some(2)),
|
Token::TupleStructStart("GenericTupleStruct", 2),
|
||||||
|
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::U32(5),
|
Token::U32(5),
|
||||||
@@ -561,7 +562,7 @@ fn test_generic_tuple_struct() {
|
|||||||
fn test_generic_enum_unit() {
|
fn test_generic_enum_unit() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericEnum::Unit::<u32, u32>,
|
&GenericEnum::Unit::<u32, u32>,
|
||||||
vec![
|
&[
|
||||||
Token::EnumUnit("GenericEnum", "Unit"),
|
Token::EnumUnit("GenericEnum", "Unit"),
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
@@ -571,7 +572,7 @@ fn test_generic_enum_unit() {
|
|||||||
fn test_generic_enum_newtype() {
|
fn test_generic_enum_newtype() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericEnum::NewType::<u32, u32>(5),
|
&GenericEnum::NewType::<u32, u32>(5),
|
||||||
vec![
|
&[
|
||||||
Token::EnumNewType("GenericEnum", "NewType"),
|
Token::EnumNewType("GenericEnum", "NewType"),
|
||||||
Token::U32(5),
|
Token::U32(5),
|
||||||
]
|
]
|
||||||
@@ -582,8 +583,8 @@ fn test_generic_enum_newtype() {
|
|||||||
fn test_generic_enum_seq() {
|
fn test_generic_enum_seq() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericEnum::Seq::<u32, u32>(5, 6),
|
&GenericEnum::Seq::<u32, u32>(5, 6),
|
||||||
vec![
|
&[
|
||||||
Token::EnumSeqStart("GenericEnum", "Seq", Some(2)),
|
Token::EnumSeqStart("GenericEnum", "Seq", 2),
|
||||||
|
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::U32(5),
|
Token::U32(5),
|
||||||
@@ -600,8 +601,8 @@ fn test_generic_enum_seq() {
|
|||||||
fn test_generic_enum_map() {
|
fn test_generic_enum_map() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&GenericEnum::Map::<u32, u32> { x: 5, y: 6 },
|
&GenericEnum::Map::<u32, u32> { x: 5, y: 6 },
|
||||||
vec![
|
&[
|
||||||
Token::EnumMapStart("GenericEnum", "Map", Some(2)),
|
Token::EnumMapStart("GenericEnum", "Map", 2),
|
||||||
|
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("x"),
|
Token::Str("x"),
|
||||||
@@ -620,8 +621,8 @@ fn test_generic_enum_map() {
|
|||||||
fn test_default_ty_param() {
|
fn test_default_ty_param() {
|
||||||
assert_tokens(
|
assert_tokens(
|
||||||
&DefaultTyParam::<i32> { phantom: PhantomData },
|
&DefaultTyParam::<i32> { phantom: PhantomData },
|
||||||
vec![
|
&[
|
||||||
Token::StructStart("DefaultTyParam", Some(1)),
|
Token::StructStart("DefaultTyParam", 1),
|
||||||
|
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("phantom"),
|
Token::Str("phantom"),
|
||||||
@@ -3,7 +3,13 @@ use std::net;
|
|||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
||||||
use token::{self, Token};
|
extern crate serde_test;
|
||||||
|
use self::serde_test::{
|
||||||
|
Error,
|
||||||
|
Token,
|
||||||
|
assert_ser_tokens,
|
||||||
|
assert_ser_tokens_error,
|
||||||
|
};
|
||||||
|
|
||||||
extern crate fnv;
|
extern crate fnv;
|
||||||
use self::fnv::FnvHasher;
|
use self::fnv::FnvHasher;
|
||||||
@@ -250,7 +256,7 @@ declare_ser_tests! {
|
|||||||
}
|
}
|
||||||
test_tuple_struct {
|
test_tuple_struct {
|
||||||
TupleStruct(1, 2, 3) => &[
|
TupleStruct(1, 2, 3) => &[
|
||||||
Token::TupleStructStart("TupleStruct", Some(3)),
|
Token::TupleStructStart("TupleStruct", 3),
|
||||||
Token::TupleStructSep,
|
Token::TupleStructSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
@@ -264,7 +270,7 @@ declare_ser_tests! {
|
|||||||
}
|
}
|
||||||
test_struct {
|
test_struct {
|
||||||
Struct { a: 1, b: 2, c: 3 } => &[
|
Struct { a: 1, b: 2, c: 3 } => &[
|
||||||
Token::StructStart("Struct", Some(3)),
|
Token::StructStart("Struct", 3),
|
||||||
Token::StructSep,
|
Token::StructSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -283,7 +289,7 @@ declare_ser_tests! {
|
|||||||
Enum::Unit => &[Token::EnumUnit("Enum", "Unit")],
|
Enum::Unit => &[Token::EnumUnit("Enum", "Unit")],
|
||||||
Enum::One(42) => &[Token::EnumNewType("Enum", "One"), Token::I32(42)],
|
Enum::One(42) => &[Token::EnumNewType("Enum", "One"), Token::I32(42)],
|
||||||
Enum::Seq(1, 2) => &[
|
Enum::Seq(1, 2) => &[
|
||||||
Token::EnumSeqStart("Enum", "Seq", Some(2)),
|
Token::EnumSeqStart("Enum", "Seq", 2),
|
||||||
Token::EnumSeqSep,
|
Token::EnumSeqSep,
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
|
|
||||||
@@ -292,7 +298,7 @@ declare_ser_tests! {
|
|||||||
Token::EnumSeqEnd,
|
Token::EnumSeqEnd,
|
||||||
],
|
],
|
||||||
Enum::Map { a: 1, b: 2 } => &[
|
Enum::Map { a: 1, b: 2 } => &[
|
||||||
Token::EnumMapStart("Enum", "Map", Some(2)),
|
Token::EnumMapStart("Enum", "Map", 2),
|
||||||
Token::EnumMapSep,
|
Token::EnumMapSep,
|
||||||
Token::Str("a"),
|
Token::Str("a"),
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -341,7 +347,7 @@ declare_ser_tests! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "nightly")]
|
#[cfg(feature = "unstable")]
|
||||||
#[test]
|
#[test]
|
||||||
fn test_net_ipaddr() {
|
fn test_net_ipaddr() {
|
||||||
assert_ser_tokens(
|
assert_ser_tokens(
|
||||||
@@ -355,16 +361,16 @@ fn test_cannot_serialize_paths() {
|
|||||||
let path = unsafe {
|
let path = unsafe {
|
||||||
str::from_utf8_unchecked(b"Hello \xF0\x90\x80World")
|
str::from_utf8_unchecked(b"Hello \xF0\x90\x80World")
|
||||||
};
|
};
|
||||||
token::assert_ser_tokens_error(
|
assert_ser_tokens_error(
|
||||||
&Path::new(path),
|
&Path::new(path),
|
||||||
&[Token::Str("Hello �World")],
|
&[],
|
||||||
token::Error::InvalidValue("Path contains invalid UTF-8 characters".to_owned()));
|
Error::InvalidValue("Path contains invalid UTF-8 characters".to_owned()));
|
||||||
|
|
||||||
let mut path_buf = PathBuf::new();
|
let mut path_buf = PathBuf::new();
|
||||||
path_buf.push(path);
|
path_buf.push(path);
|
||||||
|
|
||||||
token::assert_ser_tokens_error(
|
assert_ser_tokens_error(
|
||||||
&path_buf,
|
&path_buf,
|
||||||
&[Token::Str("Hello �World")],
|
&[],
|
||||||
token::Error::InvalidValue("Path contains invalid UTF-8 characters".to_owned()));
|
Error::InvalidValue("Path contains invalid UTF-8 characters".to_owned()));
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user