aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/XorBitFunction.java
blob: 2f6061a3aa290060edeba3bb32bfcd24953e8042 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.grouping.request;

import java.util.Arrays;

/**
 * This class represents an xor-function in a {@link GroupingExpression}. It evaluates to a long that equals the xor of
 * 'width' bits over the binary representation of the result of the argument.
 *
 * @author Simon Thoresen Hult
 */
public class XorBitFunction extends FunctionNode {

    /**
     * Constructs a new instance of this class.
     *
     * @param exp     The expression to evaluate.
     * @param numBits The number of bits of the expression value to xor.
     */
    public XorBitFunction(GroupingExpression exp, int numBits) {
        super("xorbit", Arrays.asList(exp, new LongValue(numBits)));
    }

    /**
     * Returns the number of bits of the expression value to xor.
     *
     * @return The bit count.
     */
    public int getNumBits() {
        return ((LongValue)getArg(1)).getValue().intValue();
    }
}