summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/TensorField.java
blob: 0d97a5bdaf77fe6b508810ec2c63cb9edfcd91d1 (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
package com.yahoo.prelude.fastsearch;

import com.yahoo.data.access.Inspector;
import com.yahoo.data.access.simple.Value;
import com.yahoo.io.GrowableByteBuffer;
import com.yahoo.tensor.Tensor;
import com.yahoo.tensor.serialization.TypedBinaryFormat;

import java.nio.ByteBuffer;
import java.util.Optional;

/**
 * A tensor field. Tensors are encoded as a data field where the data (following the length)
 * is encoded in a tensor binary format defined by com.yahoo.tensor.serialization.TypedBinaryFormat
 * 
 * @author bratseth
 */
public class TensorField extends DocsumField implements VariableLengthField {

    public TensorField(String name) {
        super(name);
    }

    @Override
    public Tensor decode(ByteBuffer buffer) {
        int length = buffer.getInt();
        if (length == 0) return null;
        ByteBuffer contentBuffer = ByteBuffer.wrap(buffer.array(), buffer.arrayOffset() + buffer.position(), length);
        Tensor tensor = TypedBinaryFormat.decode(Optional.empty(), new GrowableByteBuffer(contentBuffer));
        buffer.position(buffer.position() + length);
        return tensor;
    }

    @Override
    public Tensor decode(ByteBuffer b, FastHit hit) {
        Tensor tensor = decode(b);
        hit.setField(name, tensor);
        return tensor;
    }

    @Override
    public String toString() {
        return "field " + getName() + " type tensor";
    }

    @Override
    public int getLength(ByteBuffer b) {
        int offset = b.position();
        int length = b.getInt();
        b.position(offset + length);
        return length;
    }

    @Override
    public int sizeOfLength() {
        return 4;
    }

    @Override
    public Object convert(Inspector value) {
        byte[] content = value.asData(Value.empty().asData());
        if (content.length == 0) return null;
        return TypedBinaryFormat.decode(Optional.empty(), GrowableByteBuffer.wrap(content));
    }

}