summaryrefslogtreecommitdiffstats
path: root/indexinglanguage/src/main/java/com/yahoo/vespa/indexinglanguage/expressions/EncodeExpression.java
blob: f84da9ddef88fe5c1afef1ec889795a591be08b8 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.indexinglanguage.expressions;

import com.yahoo.document.DataType;
import com.yahoo.document.TensorDataType;
import com.yahoo.document.datatypes.StringFieldValue;
import com.yahoo.document.datatypes.TensorFieldValue;
import com.yahoo.language.process.Encoder;
import com.yahoo.tensor.Tensor;
import com.yahoo.tensor.TensorType;

/**
 * Encodes a string as a tensor using the configured Encoder component
 *
 * @author bratseth
 */
public class EncodeExpression extends Expression  {

    private final Encoder encoder;

    /** The target type we are encoding to. Set during verification. */
    private TensorType targetType;

    public EncodeExpression(Encoder encoder) {
        super(DataType.STRING);
        this.encoder = encoder;
    }

    @Override
    public void setStatementOutputType(DataType type) {
        targetType = ((TensorDataType)type).getTensorType();
    }

    @Override
    protected void doExecute(ExecutionContext context) {
        StringFieldValue input = (StringFieldValue) context.getValue();
        Tensor tensor = encoder.encode(input.getString(), context.getLanguage(), targetType);
        context.setValue(new TensorFieldValue(tensor));
    }

    @Override
    protected void doVerify(VerificationContext context) {
        String outputField = context.getOutputField();
        if (outputField == null)
            throw new VerificationException(this, "No output field in this statement: " +
                                                  "Don't know what tensor type to encode to.");
        DataType outputFieldType = context.getInputType(this, outputField);
        if ( ! (outputFieldType instanceof TensorDataType) )
            throw new VerificationException(this, "The type of the output field " + outputField +
                                                  " is not a tensor but " + outputField);
        targetType = ((TensorDataType) outputFieldType).getTensorType();
        context.setValueType(createdOutputType());
    }

    @Override
    public DataType createdOutputType() {
        return new TensorDataType(targetType);
    }

    @Override
    public String toString() { return "encode"; }

    @Override
    public int hashCode() { return 1; }

    @Override
    public boolean equals(Object o) { return o instanceof EncodeExpression; }

}