aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/expression/UnaryBitFunctionNode.java
blob: 1def3586471bcdade84a81dab59fb1f8a93346b6 (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
// 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 is an abstract super-class for all unary functions that operator on bit values.
 *
 * @author baldersheim
 * @author Simon Thoresen Hult
 */
public abstract class UnaryBitFunctionNode extends UnaryFunctionNode {

    public static final int classId = registerClass(0x4000 + 46, UnaryBitFunctionNode.class);
    private int numBits = 0;

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

    /**
     * Constructs an instance of this class with given argument and number of bits.
     *
     * @param arg     The argument for this function.
     * @param numBits The number of bits to operate on.
     */
    public UnaryBitFunctionNode(ExpressionNode arg, int numBits) {
        addArg(arg);
        setNumBits(numBits);
    }

    /**
     * Returns the number of bits to operate on.
     *
     * @return The number of bits.
     */
    public final int getNumBits() {
        return numBits;
    }

    /**
     * Sets the number of bits to operate on.
     *
     * @param numBits The number of bits.
     * @return This, to allow chaining.
     */
    public UnaryBitFunctionNode setNumBits(int numBits) {
        this.numBits = numBits;
        return this;
    }

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

    @Override
    protected void onSerialize(Serializer buf) {
        super.onSerialize(buf);
        buf.putInt(null, numBits);
    }

    @Override
    protected void onDeserialize(Deserializer buf) {
        super.onDeserialize(buf);
        numBits = buf.getInt(null);
    }

    @Override
    public int hashCode() {
        return super.hashCode() + numBits;
    }

    @Override
    protected final boolean equalsUnaryFunction(UnaryFunctionNode obj) {
        return numBits == ((UnaryBitFunctionNode)obj).numBits;
    }

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