aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/request/XorBitFunction.java
blob: 2e0bf25b8944db7a60261730de47ba7552396285 (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
// Copyright Vespa.ai. 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;
import java.util.List;
import java.util.stream.Collectors;

/**
 * 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
 * @author bratseth
 */
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) {
        this(null, null, Arrays.asList(exp, new LongValue(numBits)));
    }

    private XorBitFunction(String label, Integer level, List<GroupingExpression> exp) {
        super("xorbit", label, level, exp);
    }

    @Override
    public XorBitFunction copy() {
        return new XorBitFunction(getLabel(),
                                  getLevelOrNull(),
                                  args().stream().map(arg -> arg.copy()).toList());
    }

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