1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//! JSONPath implementation for Rust.
//!
//! The library is in development stage at the moment, but you can use already
//! limited functionality.
//!
//! Currently the following operators are supported:
//!
//! * `$` - The root element. All path expression should start with it.
//! * `.` - A direct child element.
//! * `..` - Any descendant element (aka deep child).
//!
//!
//! # Example
//!
//! ```
//! extern crate jsonpath;
//! extern crate serde_json;
//!
//! use jsonpath::Selector;
//! use serde_json::Value;
//!
//! fn main() {
//! let jsondoc = r#"
//! {
//! "favorites": {
//! "books": [
//! {
//! "title": "Der schwarze Obelist",
//! "author": "Erich Maria Remarque"
//! },
//! {
//! "title": "Le mur",
//! "author": "Jean-Paul Sartre"
//! }
//! ]
//! }
//! }
//! "#;
//!
//! // Parse JSON document
//! let json: Value = serde_json::from_str(jsondoc).unwrap();
//!
//! // Create a JSONPath selector
//! let selector = Selector::new("$.favorites.books.*.title").unwrap();
//!
//! // Apply the selector to the JSON and convert Vec<&Value> into Vec<&str>
//! let titles: Vec<&str> = selector.find(&json)
//! .map(|t| t.as_str().unwrap())
//! .collect();
//! assert_eq!(titles, vec!["Der schwarze Obelist", "Le mur"]);
//! }
//!
//! ```
extern crate serde;
extern crate serde_json;
extern crate error_chain;
extern crate pest;
extern crate pest_derive;
extern crate lazy_static;
pub use Selector;