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
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#![crate_name = "streamson_lib"]

//! This library is able to process large JSON data.
//!
//! It can have various matchers which matches the path (see [matcher](matcher/index.html))
//!
//! And various handlers to do something with found data (see [handlers](handler/index.html))
//!
//! # Examples
//! ```
//! use streamson_lib::{handler::{self, Handler}, matcher, strategy::{self, Strategy}};
//! use std::{io, fs, sync::{Arc, Mutex}};
//!
//! let stdout_handler = Arc::new(Mutex::new(handler::Output::new(io::stdout())));
//!
//! let file = fs::File::create("out.txt").unwrap();
//! let handler = handler::Group::new()
//!     .add_handler(Arc::new(Mutex::new(handler::Output::new(file))))
//!     .add_handler(stdout_handler.clone());
//!
//! let first_matcher = matcher::Simple::new(r#"{"users"}[]"#).unwrap();
//! let second_matcher = matcher::Simple::new(r#"{"groups"}[]"#).unwrap();
//!
//! let mut trigger = strategy::Trigger::new();
//!
//! // exports users to stdout and out.txt
//! trigger.add_matcher(
//!     Box::new(first_matcher),
//!     Arc::new(Mutex::new(handler.clone())),
//! );
//!
//! // groups are going to be expoted only to stdout
//! trigger.add_matcher(
//!     Box::new(second_matcher),
//!     stdout_handler,
//! );
//!
//! for input in vec![
//!     br#"{"users": [1,2]"#.to_vec(),
//!     br#", "groups": [3, 4]}"#.to_vec(),
//! ] {
//!     trigger.process(&input).unwrap();
//! }
//! ```
//!
//! ```
//! use streamson_lib::{handler::{self, Handler}, matcher, strategy::{Strategy, self}};
//! use std::{fs, io, sync::{Arc, Mutex}};
//!
//! let file = fs::File::create("out.txt").unwrap();
//! let file_handler = Arc::new(
//!     Mutex::new(handler::Output::new(file))
//! );
//! let stdout_handler = Arc::new(Mutex::new(handler::Output::new(io::stdout())));
//! let handler = handler::Group::new()
//!     .add_handler(stdout_handler)
//!     .add_handler(file_handler);
//!
//! let first_matcher = matcher::Depth::new(1, Some(2));
//! let second_matcher = matcher::Simple::new(r#"{"users"}[]"#).unwrap();
//! let matcher = matcher::Combinator::new(first_matcher) |
//!     matcher::Combinator::new(second_matcher);
//!
//! let mut trigger = strategy::Trigger::new();
//!
//! // Paths with depths 1, 2 are exported to out.txt
//! trigger.add_matcher(
//!     Box::new(matcher),
//!     Arc::new(Mutex::new(handler)),
//! );
//!
//! for input in vec![
//!     br#"{"users": [1,2]"#.to_vec(),
//!     br#", "groups": [3, 4]}"#.to_vec(),
//! ] {
//!     trigger.process(&input).unwrap();
//! }
//! ```
//!
//! ```
//! use streamson_lib::{handler::{self, Handler}, matcher, strategy::{Strategy, self}};
//! use std::{io, fs, sync::{Arc, Mutex}};
//!
//! let file = fs::File::create("out.txt").unwrap();
//! let file_handler = Arc::new(
//!     Mutex::new(handler::Output::new(file))
//! );
//! let stdout_handler = Arc::new(Mutex::new(handler::Output::new(io::stdout())));
//! let handler = handler::Group::new()
//!     .add_handler(stdout_handler)
//!     .add_handler(file_handler);
//!
//! let matcher = matcher::Depth::new(1, Some(2));
//!
//! let mut trigger = strategy::Trigger::new();
//!
//! // Paths with depths 1, 2 are exported to out.txt
//! trigger.add_matcher(
//!     Box::new(matcher),
//!     Arc::new(Mutex::new(handler)),
//! );
//!
//! for input in vec![
//!     br#"{"users": [1,2]"#.to_vec(),
//!     br#", "groups": [3, 4]}"#.to_vec(),
//! ] {
//!     trigger.process(&input).unwrap();
//! }
//! ```

pub mod error;
pub mod handler;
pub mod matcher;
pub mod path;
pub mod strategy;
pub mod streamer;

pub use handler::Handler;
pub use path::Path;
pub use streamer::{Streamer, Token};

#[cfg(doctest)]
mod test_readme {
    macro_rules! external_doc_test {
        ($x:expr) => {
            #[doc = $x]
            extern "C" {}
        };
    }
    external_doc_test!(include_str!("../README.md"));
}

#[cfg(test)]
pub mod test {
    pub trait Splitter {
        fn split(&self, input: Vec<u8>) -> Vec<Vec<Vec<u8>>>;
    }

    pub(crate) struct Single;

    impl Single {
        pub fn new() -> Self {
            Self
        }
    }

    impl Splitter for Single {
        fn split(&self, input: Vec<u8>) -> Vec<Vec<Vec<u8>>> {
            vec![input.iter().map(|e| vec![*e]).collect()]
        }
    }

    pub(crate) struct Window {
        size: usize,
    }

    impl Window {
        pub fn new(size: usize) -> Self {
            Self { size }
        }
    }

    impl Splitter for Window {
        fn split(&self, input: Vec<u8>) -> Vec<Vec<Vec<u8>>> {
            if input.len() <= self.size {
                return vec![vec![input]];
            }
            let out_count = input.len() - self.size;
            let mut res = vec![];
            for i in 0..=out_count {
                res.push(vec![
                    input[0..i].to_vec(),
                    input[i..self.size + i].to_vec(),
                    input[self.size + i..input.len()].to_vec(),
                ]);
            }
            res
        }
    }
}