aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search/src/main/java/com/yahoo/search/predicate/serialization/PredicateQuerySerializer.java
blob: f7ccbaac906e84ebbd7ea6eae827a5a095815617 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.predicate.serialization;

import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonGenerator;
import com.yahoo.search.predicate.PredicateQuery;
import com.yahoo.search.predicate.PredicateQueryParser;
import com.yahoo.search.predicate.SubqueryBitmap;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.util.List;


/**
 * Converts {@link PredicateQuery} to and from JSON
 *
 * Example:
 *  {
 *      features: [
 *          {"k": "key-name", "v":"value", "s":"0xDEADBEEFDEADBEEF"}
 *      ],
 *      rangeFeatures: [
 *          {"k": "key-name", "v":42, "s":"0xDEADBEEFDEADBEEF"}
 *      ]
 *  }
 *
 * @author bjorncs
 */
public class PredicateQuerySerializer {

    private final JsonFactory factory = new JsonFactory();
    private final PredicateQueryParser parser = new PredicateQueryParser();

    public String toJSON(PredicateQuery query) {
        try {
            StringWriter writer = new StringWriter(1024);
            toJSON(query, writer);
            return writer.toString();
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    public void toJSON(PredicateQuery query, Writer writer) throws IOException {
        try (JsonGenerator g = factory.createGenerator(writer)) {
            g.writeStartObject();

            // Write features
            g.writeArrayFieldStart("features");
            for (PredicateQuery.Feature feature : query.getFeatures()) {
                writeFeature(feature.key, feature.value, feature.subqueryBitmap, g, JsonGenerator::writeStringField);
            }
            g.writeEndArray();

            // Write rangeFeatures
            g.writeArrayFieldStart("rangeFeatures");
            for (PredicateQuery.RangeFeature rangeFeature : query.getRangeFeatures()) {
                writeFeature(rangeFeature.key, rangeFeature.value, rangeFeature.subqueryBitmap, g,
                        JsonGenerator::writeNumberField);
            }
            g.writeEndArray();

            g.writeEndObject();
        }
    }

    private static <T> void writeFeature(
            String key, T value, long subqueryBitmap, JsonGenerator g, ValueWriter<T> valueWriter)
            throws IOException {

        g.writeStartObject();
        g.writeStringField("k", key);
        valueWriter.write(g, "v", value);
        if (subqueryBitmap != SubqueryBitmap.DEFAULT_VALUE) {
            g.writeStringField("s", toHexString(subqueryBitmap));
        }
        g.writeEndObject();
    }

    @FunctionalInterface
    private interface ValueWriter<T> {
        void write(JsonGenerator g, String key, T value) throws IOException;
    }

    public PredicateQuery fromJSON(String json) {
        PredicateQuery query = new PredicateQuery();
        parser.parseJsonQuery(json, query::addFeature, query::addRangeFeature);
        return query;
    }

    public static List<PredicateQuery> parseQueriesFromFile(String queryFile, int maxQueryCount) throws IOException {
        PredicateQuerySerializer serializer = new PredicateQuerySerializer();
        try (BufferedReader reader = new BufferedReader(new FileReader(queryFile), 8 * 1024)) {
            return reader.lines()
                    .limit(maxQueryCount)
                    .map(serializer::fromJSON)
                    .toList();
        }
    }

    private static String toHexString(long subqueryBitMap) {
        return "0x" + Long.toHexString(subqueryBitMap);
    }

}