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
use crate::aggregation::AggregationTrait;
use serde::ser::SerializeStruct;
use serde::{Serialize, Serializer};
use serde_json::{json, Value};
use std::collections::HashMap;
#[derive(Default)]
pub struct TopHitsAggregation {
name: String,
value: TopHitsValue,
aggregation: Value,
}
#[derive(Default)]
struct TopHitsValue {
script: String,
size: i64,
sort: Vec<(String, String)>,
}
impl TopHitsAggregation {
pub fn new(name: &str) -> Self {
let mut term = TopHitsAggregation {
name: name.to_string(),
..Default::default()
};
term.value.size = 10;
term
}
pub fn add_sort(mut self, field: &str, order: &str) -> Self {
self.value.sort.push((field.to_string(), order.to_string()));
self
}
pub fn set_size(mut self, size: i64) -> Self {
self.value.size = size;
self
}
pub fn set_script(mut self, script: &str) -> Self {
self.value.script = script.to_string();
self
}
pub fn set_aggregation<T>(mut self, aggregation: T) -> Self
where
T: AggregationTrait,
{
self.aggregation = aggregation.build();
self
}
}
impl Serialize for TopHitsValue {
fn serialize<S>(&self, serializer: S) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("TopHitsBuilder", 0)?;
if self.script.is_empty() {
state.serialize_field("size", &self.size)?;
if !self.sort.is_empty() {
let mut sort_map = HashMap::new();
for (field, order) in self.sort.iter() {
sort_map.insert(field.to_string(), order.to_string());
}
state.serialize_field("sort", &sort_map)?;
}
} else {
let mut source = HashMap::new();
source.insert("includes", self.script.clone());
state.serialize_field("_source", &source)?;
state.serialize_field("size", &self.size)?;
}
state.end()
}
}
impl Serialize for TopHitsAggregation {
fn serialize<S>(&self, serializer: S) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("TopHitsAggregation", 0)?;
state.serialize_field("top_hits", &self.value)?;
if !(self.aggregation.is_null() || self.aggregation.to_string().is_empty()) {
state.serialize_field("aggs", &self.aggregation)?;
}
state.end()
}
}
impl AggregationTrait for TopHitsAggregation {
fn name(&self) -> &str {
self.name.as_str()
}
fn build(&self) -> Value {
let name = self.name.to_string();
json!({ name: self })
}
fn query_name(&self) -> String {
"top_hits".to_string()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::aggregation::AggregationTrait;
#[test]
fn test_terms_aggregation() {
let agg = TopHitsAggregation::new("hoge");
let json = agg.build();
println!("{}", json);
}
}