aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/aggregation/MaxAggregationResult.java
blob: 6d9b50b52b1201e02fbd36b3aaf4fe33c11d5b0c (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.aggregation;

import com.yahoo.searchlib.expression.ResultNode;
import com.yahoo.searchlib.expression.SingleResultNode;
import com.yahoo.vespa.objects.Deserializer;
import com.yahoo.vespa.objects.ObjectVisitor;
import com.yahoo.vespa.objects.Serializer;

/**
 * This is an aggregated result holding the maximum result of the matching hits.
 *
 * @author baldersheim
 * @author Simon Thoresen Hult
 */
public class MaxAggregationResult extends AggregationResult {

    public static final int classId = registerClass(0x4000 + 83, MaxAggregationResult.class, MaxAggregationResult::new);
    private SingleResultNode max;

    /**
     * Constructs an empty result node. <b>NOTE:</b> This instance is broken until non-optional member data is set.
     */
    public MaxAggregationResult() {

    }

    /**
     * Constructs an instance of this class with given max value.
     *
     * @param max The initial maximum to set.
     */
    public MaxAggregationResult(SingleResultNode max) {
        setMax(max);
    }

    /**
     * Returns the maximum value found in all matching hits.
     *
     * @return The value.
     */
    public final SingleResultNode getMax() {
        return max;
    }

    /**
     * Sets the maximum value found in all matching hits.
     *
     * @param max The value.
     * @return This, to allow chaining.
     */
    public final MaxAggregationResult setMax(SingleResultNode max) {
        this.max = max;
        return this;
    }

    @Override
    public ResultNode getRank() {
        return max;
    }

    @Override
    protected int onGetClassId() {
        return classId;
    }

    @Override
    protected void onSerialize(Serializer buf) {
        super.onSerialize(buf);
        serializeOptional(buf, max);
    }

    @Override
    protected void onDeserialize(Deserializer buf) {
        super.onDeserialize(buf);
        max = (SingleResultNode)deserializeOptional(buf);
    }

    @Override
    protected void onMerge(AggregationResult result) {
        max.max(((MaxAggregationResult)result).max);
    }

    @Override
    protected boolean equalsAggregation(AggregationResult obj) {
        return equals(max, ((MaxAggregationResult)obj).max);
    }

    @Override
    public MaxAggregationResult clone() {
        MaxAggregationResult obj = (MaxAggregationResult)super.clone();
        if (max != null) {
            obj.max = (SingleResultNode)max.clone();
        }
        return obj;
    }

    @Override
    public void visitMembers(ObjectVisitor visitor) {
        super.visitMembers(visitor);
        visitor.visit("max", max);
    }
}