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
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
#[derive(Debug, Serialize, Deserialize)]
pub struct SearchResponse<T, V = Value> {
    #[serde(default)]
    pub _scroll_id: Option<String>,
    #[serde(default)]
    pub took: Option<usize>,
    pub hits: Option<Hits<T>>,
    #[serde(default)]
    pub aggregations: Option<V>,
}
impl<T, V> SearchResponse<T, V> {
    pub fn total_value(&self) -> usize {
        if self.hits.is_none() {
            return 0;
        }
        if self.hits.as_ref().is_none(){
            return 0;
        }
        let hits = self.hits.as_ref().unwrap();
        if hits.total.as_ref().is_none(){
            return 0;
        }
        let total = hits.total.as_ref().unwrap();
        total.value.unwrap_or_default()
    }
    pub fn sources(&self) -> Vec<&T> {
        if self.hits.is_none() {
            return vec![];
        }
        let hits = self.hits.as_ref().unwrap();
        if hits.hits.is_none() {
            return vec![];
        }
        let mut data = vec![];
        let hits = hits.hits.as_ref().unwrap();
        for hit in hits {
            if hit._source.is_some() {
                data.push(hit._source.as_ref().unwrap());
            }
        }
        data
    }
}
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct HitsTotal {
    #[serde(default)]
    pub value: Option<usize>,
    #[serde(default)]
    pub relation: Option<String>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Hits<T> {
    pub total: Option<HitsTotal>,
    pub max_score: Option<f32>,
    pub hits: Option<Vec<Hit<T>>>,
}
#[derive(Debug, Serialize, Deserialize, Default, Clone)]
pub struct Hit<T> {
    #[serde(default)]
    pub _index: Option<String>,
    #[serde(default)]
    pub _type: Option<String>,
    #[serde(default)]
    pub _id: Option<String>,
    #[serde(default)]
    pub _score: Option<f32>,
    pub _source: Option<T>,
}
impl<T: std::default::Default> Hit<T> {
    pub fn index(&self) -> String {
        if self._index.is_none() {
            return "".to_string();
        }
        self._index.as_ref().unwrap().to_string()
    }
    
    
    
    
    
    
    
    
    
}
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Doc<T> {
    pub _index: String,
    pub _type: String,
    pub _id: String,
    
    
    
    
    pub _source: Option<T>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Shards {
    pub total: Option<usize>,
    pub successful: Option<usize>,
    pub failed: Option<usize>,
}
use serde::de;
use serde_json::Value;
pub fn parse<'a, T>(s: &'a str) -> T
    where
        T: de::Deserialize<'a>,
{
    serde_json::from_str(s).expect("")
}
impl<T> SearchResponse<T>
    where
        T: std::clone::Clone,
{
    pub fn to_hit(&self) -> Vec<Hit<T>> {
        let hits = self.hits.clone();
        if hits.is_none() {
            return vec![];
        }
        hits.unwrap().hits.unwrap_or_default().to_vec()
    }
}