aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/expression/DocumentFieldNode.java
blob: de7ef5b4dfb142320f49086b903d510bbd958ca3 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright Yahoo. 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;

/**
 * The node is a request to retrieve the content of a document field.
 *
 * @author baldersheim
 * @author Simon Thoresen Hult
 */
public class DocumentFieldNode extends DocumentAccessorNode {

    public static final int classId = registerClass(0x4000 + 56, DocumentFieldNode.class);
    private String fieldName;
    private ResultNode result;

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

    /**
     * Constructs an instance of this class with given field name.
     *
     * @param fieldName The field whose value to retrieve.
     */
    public DocumentFieldNode(String fieldName) {
        super();
        setDocumentFieldName(fieldName);
    }

    /**
     * Returns the name of the field whose value to retrieve.
     *
     * @return The field name.
     */
    public String getDocumentFieldName() {
        return fieldName;
    }

    /**
     * Sets the name of the field whose value to retrieve.
     *
     * @param fieldName The field name to set.
     * @return This, to allow chaining.
     */
    public DocumentFieldNode setDocumentFieldName(String fieldName) {
        if (fieldName == null) {
            throw new IllegalArgumentException("Field name can not be null.");
        }
        this.fieldName = fieldName;
        return this;
    }

    @Override
    public ResultNode getResult() {
        return result;
    }

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

    @Override
    protected void onSerialize(Serializer buf) {
        super.onSerialize(buf);
        putUtf8(buf, fieldName);
        serializeOptional(buf, result);
    }

    @Override
    protected void onDeserialize(Deserializer buf) {
        super.onDeserialize(buf);
        fieldName = getUtf8(buf);
        result = (ResultNode)deserializeOptional(buf);
    }

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

    @Override
    protected boolean equalsExpression(ExpressionNode obj) {
        DocumentFieldNode rhs = (DocumentFieldNode)obj;
        if (!fieldName.equals(rhs.fieldName)) {
            return false;
        }
        if (!equals(result, rhs.result)) {
            return false;
        }
        return true;
    }

    @Override
    public DocumentFieldNode clone() {
        DocumentFieldNode obj = (DocumentFieldNode)super.clone();
        if (result != null) {
            obj.result = (ResultNode)result.clone();
        }
        return obj;
    }

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