aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/select/rule/SearchColumnNode.java
blob: ffcf576dcfccdf041e7a8c3f5b53ad1af4626c42 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.select.rule;

import com.yahoo.document.BucketDistribution;
import com.yahoo.document.BucketIdFactory;
import com.yahoo.document.select.*;

/**
 * @author Simon Thoresen Hult
 */
public class SearchColumnNode implements ExpressionNode {

    private int field;
    private BucketIdFactory factory = new BucketIdFactory(); // why is this not an abstract class?
    private BucketDistribution distribution;

    public SearchColumnNode() {
        setField(0);
    }

    public int getField() {
        return field;
    }

    public SearchColumnNode setField(int field) {
        distribution = new BucketDistribution(this.field = field, 16);
        return this;
    }

    public BucketDistribution getDistribution() {
        return distribution;
    }

    // Inherit doc from ExpressionNode.
    public BucketSet getBucketSet(BucketIdFactory factory) {
        return null;
    }

    // Inherit doc from ExpressionNode.
    public Object evaluate(Context context) {
        return distribution.getColumn(factory.getBucketId(context.getDocumentOperation().getId()));
    }

    public void accept(Visitor visitor) {
        visitor.visit(this);
    }

    @Override
    public String toString() {
        return "searchcolumn." + field;
    }

    public OrderingSpecification getOrdering(int order) {
        return null;
    }
}