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
//! Types for working with activity map topologies.
//!
//! This module contains the request and response types needed to interact with
//! `/api/v1/activitymaps/query`.
//!
//! # Usage
//! Queries can be constructed using struct literals or with builders from
//! the `req` module.
//!
//! ## Using Builders
//! ```rust
//! use extrahop::{Builder, Oid};
//! use extrahop::activitymap::{self, Walk, Source, Step};
//!
//! // Create a request for the last half hour, starting from device 15 and
//! // finding all its immediate peers. The default weight strategy will be
//! // used, and no extra annotations were requested.
//! let _ = activitymap::Query::builder()
//!             .from(-30000)
//!             .walks(vec![
//!                 Walk::builder()
//!                     .origins(vec![Source::device(Oid::new(15))])
//!                     .steps(vec![Step::default()])
//!                     .build().unwrap()
//!             ])
//!             .build().unwrap();
//! ```

pub mod query;
pub mod rsp;

#[doc(inline)]
pub use self::query::{Query, Source, Step, Walk, WalkOrigin};

#[doc(inline)]
pub use self::rsp::{Response, Edge};

#[cfg(test)]
mod tests {
    use serde_json;

    use ::Oid;
    use super::{Query, Step, Source, Walk};
    use super::query::{EdgeAnnotation, Role, Relationship};

    #[test]
    fn it_works() {
        let request = Query {
            from: 0.into(),
            walks: vec![Walk {
                origins: vec![Source::device(Oid::new(14))].into(),
                steps: vec![
                    Step {
                        relationships: vec![Relationship::new("HTTP", Role::Server)],
                        ..Default::default()
                    },
                ]
            }],
            edge_annotations: vec![EdgeAnnotation::Protocols],
            ..Default::default()
        };

        println!("{}", serde_json::to_string_pretty(&request).unwrap());
    }
}