aboutsummaryrefslogtreecommitdiffstats
path: root/indexinglanguage/src/main/java/com/yahoo/vespa/indexinglanguage/FieldPathUpdateAdapter.java
blob: 0b4308d68a99a916e0eac8e743ac60da90815772 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.indexinglanguage;

import com.yahoo.document.*;
import com.yahoo.document.datatypes.*;
import com.yahoo.document.fieldpathupdate.AddFieldPathUpdate;
import com.yahoo.document.fieldpathupdate.AssignFieldPathUpdate;
import com.yahoo.document.fieldpathupdate.FieldPathUpdate;
import com.yahoo.document.fieldpathupdate.RemoveFieldPathUpdate;
import com.yahoo.vespa.indexinglanguage.expressions.Expression;
import com.yahoo.vespa.indexinglanguage.expressions.FieldValueAdapter;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

/**
 * @author Simon Thoresen Hult
 */
public class FieldPathUpdateAdapter implements UpdateAdapter {

    private final DocumentAdapter adapter;
    private final FieldPathUpdate update;

    public FieldPathUpdateAdapter(DocumentAdapter documentAdapter, FieldPathUpdate fieldUpdate) {
        adapter = documentAdapter;
        update = fieldUpdate;
    }

    @Override
    public Expression getExpression(Expression expression) {
        return expression;
    }

    @Override
    public DocumentUpdate getOutput() {
        Document doc = adapter.getFullOutput();
        DocumentUpdate upd = new DocumentUpdate(doc.getDataType(), doc.getId());
        createUpdatesAt(new ArrayList<>(), adapter.getUpdatableOutput(), 0, upd);
        return upd;
    }

    @Override
    public DataType getInputType(Expression exp, String fieldName) {
        return adapter.getInputType(exp, fieldName);
    }

    @Override
    public FieldValue getInputValue(String fieldName) {
        return adapter.getInputValue(fieldName);
    }

    @Override
    public FieldValue getInputValue(FieldPath fieldPath) {
        return adapter.getInputValue(fieldPath);
    }

    @Override
    public void tryOutputType(Expression exp, String fieldName, DataType valueType) {
        adapter.tryOutputType(exp, fieldName, valueType);
    }

    @Override
    public FieldValueAdapter setOutputValue(Expression exp, String fieldName, FieldValue fieldValue) {
        return adapter.setOutputValue(exp, fieldName, fieldValue);
    }

    @Override
    public DocumentType getDocumentType() { return adapter.getDocumentType(); }

    @SuppressWarnings({ "unchecked", "rawtypes" })
    private void createUpdatesAt(List<FieldPathEntry> path, FieldValue value, int idx, DocumentUpdate out) {
        FieldPath updatePath = update.getFieldPath();
        if (idx < updatePath.size()) {
            FieldPathEntry pathEntry = updatePath.get(idx);
            FieldPathEntry.Type type = pathEntry.getType();
            if (type == FieldPathEntry.Type.STRUCT_FIELD) {
                if (!(value instanceof StructuredFieldValue)) {
                    throw new IllegalArgumentException("Expected structured field value, got " +
                                                       value.getClass().getName() + ".");
                }
                for (Iterator<Map.Entry<Field, FieldValue>> it = ((StructuredFieldValue)value).iterator(); it.hasNext();) {
                    Map.Entry<Field, FieldValue> structEntry = it.next();
                    List<FieldPathEntry> nextPath = new ArrayList<>(path);
                    nextPath.add(FieldPathEntry.newStructFieldEntry(structEntry.getKey()));
                    createUpdatesAt(nextPath, structEntry.getValue(), idx + 1, out);
                }
            } else if (type == FieldPathEntry.Type.MAP_KEY) {
                if (value instanceof WeightedSet) {
                    WeightedSet wset = (WeightedSet)value;
                    for (Iterator<FieldValue> it = wset.fieldValueIterator(); it.hasNext();) {
                        FieldValue wsetEntry = it.next();
                        List<FieldPathEntry> nextPath = new ArrayList<>(path);
                        nextPath.add(FieldPathEntry.newMapLookupEntry(wsetEntry, DataType.INT));
                        createUpdatesAt(nextPath, new IntegerFieldValue(wset.get(wsetEntry)), idx + 1, out);
                    }
                } else if (value instanceof MapFieldValue) {
                    MapFieldValue<FieldValue, FieldValue> map = (MapFieldValue)value;
                    for (Map.Entry<FieldValue, FieldValue> entry : map.entrySet()) {
                        List<FieldPathEntry> nextPath = new ArrayList<>(path);
                        FieldValue nextVal = entry.getValue();
                        nextPath.add(FieldPathEntry.newMapLookupEntry(entry.getKey(), nextVal.getDataType()));
                        createUpdatesAt(nextPath, nextVal, idx + 1, out);
                    }
                } else {
                    throw new IllegalArgumentException("Expected map or weighted set, got " +
                                                       value.getClass().getName() + ".");
                }
            } else {
                path.add(pathEntry);
                createUpdatesAt(new ArrayList<>(path), value, idx + 1, out);
            }
        } else if (update instanceof AddFieldPathUpdate) {
            if (!(value instanceof Array)) {
                throw new IllegalStateException("Expected array, got " +
                                                value.getClass().getName() + ".");
            }
            out.addFieldPathUpdate(new AddFieldPathUpdate(update.getDocumentType(), new FieldPath(path).toString(),
                                                          update.getOriginalWhereClause(), (Array)value));
        } else if (update instanceof AssignFieldPathUpdate) {
            out.addFieldPathUpdate(new AssignFieldPathUpdate(update.getDocumentType(), new FieldPath(path).toString(),
                                                             update.getOriginalWhereClause(), value));
        } else if (update instanceof RemoveFieldPathUpdate) {
            out.addFieldPathUpdate(new RemoveFieldPathUpdate(update.getDocumentType(), new FieldPath(path).toString(),
                                                             update.getOriginalWhereClause()));
        }
    }

}