aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/rpc/MapConverter.java
blob: 5e77637fb669b020839660fb83de9c81db648607 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.dispatch.rpc;

import ai.vespa.searchlib.searchprotocol.protobuf.SearchProtocol.StringProperty;
import ai.vespa.searchlib.searchprotocol.protobuf.SearchProtocol.TensorProperty;
import com.google.protobuf.ByteString;
import com.yahoo.io.GrowableByteBuffer;
import com.yahoo.tensor.Tensor;
import com.yahoo.tensor.serialization.TypedBinaryFormat;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;

/**
 * @author ollivir
 */
public class MapConverter {

    public static void convertMapTensors(GrowableByteBuffer buffer, Map<String, Object> map, Consumer<TensorProperty.Builder> inserter) {
        for (var entry : map.entrySet()) {
            var value = entry.getValue();
            if (value instanceof Tensor tensor) {
                buffer.clear();
                TypedBinaryFormat.encode(tensor, buffer);
                inserter.accept(TensorProperty.newBuilder().setName(entry.getKey()).setValue(ByteString.copyFrom(buffer.getByteBuffer().flip())));
            }
        }
    }

    public static void convertMapPrimitives(Map<String, Object> map, Consumer<StringProperty.Builder> inserter) {
        for (var entry : map.entrySet()) {
            var value = entry.getValue();
            if (!(value instanceof Tensor)) {
                inserter.accept(StringProperty.newBuilder().setName(entry.getKey()).addValues(value.toString()));
            }
        }
    }

    public static void convertStringMultiMap(Map<String, List<String>> map, Consumer<StringProperty.Builder> inserter) {
        for (var entry : map.entrySet()) {
            var values = entry.getValue();
            if (values != null) {
                inserter.accept(StringProperty.newBuilder().setName(entry.getKey()).addAllValues(values));
            }
        }
    }

    public static void convertMultiMap(GrowableByteBuffer buffer,
                                       Map<String, List<Object>> map,
                                       Consumer<StringProperty.Builder> stringInserter,
                                       Consumer<TensorProperty.Builder> tensorInserter) {
        for (var entry : map.entrySet()) {
            if (entry.getValue() != null) {
                var key = entry.getKey();
                var stringValues = new ArrayList<String>(entry.getValue().size());
                for (var value : entry.getValue()) {
                    if (value != null) {
                        if (value instanceof Tensor tensor) {
                            buffer.clear();
                            TypedBinaryFormat.encode(tensor, buffer);
                            tensorInserter.accept(TensorProperty.newBuilder().setName(key).setValue(ByteString.copyFrom(buffer.getByteBuffer().flip())));
                        } else {
                            stringValues.add(value.toString());
                        }
                    }
                }
                if (!stringValues.isEmpty()) {
                    stringInserter.accept(StringProperty.newBuilder().setName(key).addAllValues(stringValues));
                }
            }
        }
    }

}