aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/expression/RangeBucketPreDefFunctionNode.java
blob: 42f489f69ee3f420876b337754e0bd67067398f7 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.expression;

import com.yahoo.vespa.objects.Deserializer;
import com.yahoo.vespa.objects.ObjectVisitor;
import com.yahoo.vespa.objects.Serializer;

/**
 * This function assign a fixed width bucket to each input value
 *
 * @author <a href="mailto:havardpe@yahoo-inc.com">Haavard Pettersen</a>
 * @author Simon Thoresen Hult
 */
public class RangeBucketPreDefFunctionNode extends UnaryFunctionNode {

    public static final int classId = registerClass(0x4000 + 76, RangeBucketPreDefFunctionNode.class, RangeBucketPreDefFunctionNode::new);
    private ResultNodeVector predef = null;

    public RangeBucketPreDefFunctionNode() {}

    /**
     * Create a bucket expression with the given width and the given subexpression
     *
     * @param v   predefined bucket list
     * @param arg The argument for this function.
     */
    public RangeBucketPreDefFunctionNode(ResultNodeVector v, ExpressionNode arg) {
        addArg(arg);
        predef = v;
    }

    /**
     * Obtain the predefined bucket list of this bucket expression
     *
     * @return predefined bucket list for this expression
     */
    public ResultNodeVector getBucketList() {
        return predef;
    }

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

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

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

    @Override
    protected boolean equalsUnaryFunction(UnaryFunctionNode obj) {
        return equals(predef, ((RangeBucketPreDefFunctionNode)obj).predef);
    }

    @Override
    public RangeBucketPreDefFunctionNode clone() {
        RangeBucketPreDefFunctionNode obj = (RangeBucketPreDefFunctionNode)super.clone();
        if (predef != null) {
            obj.predef = (ResultNodeVector)predef.clone();
        }
        return obj;
    }

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