aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/select/rule/DocumentNode.java
blob: 55154a7451ed50a5156a7e112c7a3d8feed511c2 (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.document.select.rule;

import com.yahoo.document.BucketIdFactory;
import com.yahoo.document.DocumentOperation;
import com.yahoo.document.DocumentPut;
import com.yahoo.document.DocumentUpdate;
import com.yahoo.document.select.BucketSet;
import com.yahoo.document.select.Context;
import com.yahoo.document.select.Visitor;

/**
 * A document node which returns a document: For accessing document field data in AttributeNode,
 * where it should be possible to access fields both by the concrete type ("concreteType.fieldName")
 * and by parent type ("inheritedType.inheritedField").
 *
 * @author Simon Thoresen Hult
 * @author bratseth
 */
public class DocumentNode implements ExpressionNode {

    private String type;

    public DocumentNode(String type) {
        this.type = type;
    }

    public String getType() {
        return type;
    }

    public DocumentNode setType(String type) {
        this.type = type;
        return this;
    }

    @Override
    public BucketSet getBucketSet(BucketIdFactory factory) {
        return null;
    }

    @Override
    public Object evaluate(Context context) {
        return evaluate(context.getDocumentOperation());
    }

    private Object evaluate(DocumentOperation op) {
        if (hasData(op))
            return evaluateForDataLookup(op);
        else // Simplify to just false since we can't progress here?
            return op.getId().getDocType().equals(type) ? op : false;
    }

    private Object evaluateForDataLookup(DocumentOperation op) {
        if (op instanceof DocumentPut)
            return ((DocumentPut)op).getDocument().getDataType().isA(this.type) ? op : false;
        else if (op instanceof DocumentUpdate)
            return ((DocumentUpdate)op).getDocumentType().isA(this.type) ? op : false;
        else
            throw new IllegalStateException("Programming error");
    }

    /** Returns whether this operation is of a type that may contain data */
    private boolean hasData(DocumentOperation op) {
        return op instanceof DocumentPut || op instanceof DocumentUpdate;
    }

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

    @Override
    public String toString() {
        return type;
    }

}