aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/parser/ConvertParsedRanking.java
blob: 77a10862f9c5e7a2e6edfec83a6cd23dc58eb8c1 (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
131
132
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.parser;

import com.yahoo.schema.RankProfile;
import com.yahoo.schema.RankProfileRegistry;
import com.yahoo.schema.Schema;
import com.yahoo.schema.document.RankType;

import java.util.List;

/**
 * Helper for converting ParsedRankProfile etc to RankProfile with settings
 *
 * @author arnej27959
 */
public class ConvertParsedRanking {

    private final RankProfileRegistry rankProfileRegistry;

    // for unit test
    ConvertParsedRanking() {
        this(new RankProfileRegistry());
    }

    public ConvertParsedRanking(RankProfileRegistry rankProfileRegistry) {
        this.rankProfileRegistry = rankProfileRegistry;
    }

    private RankProfile makeRankProfile(Schema schema, String name) {
        if (name.equals("default")) {
            return rankProfileRegistry.get(schema, "default");
        }
        return new RankProfile(name, schema, rankProfileRegistry);
    }

    void convertRankProfile(Schema schema, ParsedRankProfile parsed) {
        RankProfile profile = makeRankProfile(schema, parsed.name());
        for (String name : parsed.getInherited())
            profile.inherit(name);

        parsed.isStrict().ifPresent(value -> profile.setStrict(value));
        parsed.isUseSignificanceModel().ifPresent(value -> profile.setUseSignificanceModel(value));

        for (var constant : parsed.getConstants().values())
            profile.add(constant);

        for (var onnxModel : parsed.getOnnxModels())
            profile.add(onnxModel);

        for (var input : parsed.getInputs().entrySet())
            profile.addInput(input.getKey(), input.getValue());

        for (var func : parsed.getFunctions()) {
            String name = func.name();
            List<String> parameters = func.getParameters();
            String expression = func.getExpression();
            boolean inline = func.getInline();
            profile.addFunction(name, parameters, expression, inline);
        }

        parsed.getRankScoreDropLimit().ifPresent
            (value -> profile.setRankScoreDropLimit(value));
        parsed.getTermwiseLimit().ifPresent
            (value -> profile.setTermwiseLimit(value));
        parsed.getPostFilterThreshold().ifPresent
                (value -> profile.setPostFilterThreshold(value));
        parsed.getApproximateThreshold().ifPresent
                (value -> profile.setApproximateThreshold(value));
        parsed.getTargetHitsMaxAdjustmentFactor().ifPresent
                (value -> profile.setTargetHitsMaxAdjustmentFactor(value));
        parsed.getKeepRankCount().ifPresent
            (value -> profile.setKeepRankCount(value));
        parsed.getMinHitsPerThread().ifPresent
            (value -> profile.setMinHitsPerThread(value));
        parsed.getNumSearchPartitions().ifPresent
            (value -> profile.setNumSearchPartitions(value));
        parsed.getNumThreadsPerSearch().ifPresent
            (value -> profile.setNumThreadsPerSearch(value));
        parsed.getReRankCount().ifPresent
            (value -> profile.setRerankCount(value));

        parsed.getMatchPhaseSettings().ifPresent
            (value -> profile.setMatchPhaseSettings(value));

        parsed.getFirstPhaseExpression().ifPresent
            (value -> profile.setFirstPhaseRanking(value));
        parsed.getSecondPhaseExpression().ifPresent
            (value -> profile.setSecondPhaseRanking(value));

        parsed.getGlobalPhaseExpression().ifPresent
            (value -> profile.setGlobalPhaseRanking(value));
        parsed.getGlobalPhaseRerankCount().ifPresent
            (value -> profile.setGlobalPhaseRerankCount(value));

        for (var value : parsed.getMatchFeatures()) {
            profile.addMatchFeatures(value);
        }
        for (var value : parsed.getRankFeatures()) {
            profile.addRankFeatures(value);
        }
        for (var value : parsed.getSummaryFeatures()) {
            profile.addSummaryFeatures(value);
        }

        parsed.getInheritedMatchFeatures().ifPresent
            (value -> profile.setInheritedMatchFeatures(value));
        parsed.getInheritedSummaryFeatures().ifPresent
            (value -> profile.setInheritedSummaryFeatures(value));
        if (parsed.getIgnoreDefaultRankFeatures()) {
            profile.setIgnoreDefaultRankFeatures(true);
        }

        for (var mutateOp : parsed.getMutateOperations()) {
            profile.addMutateOperation(mutateOp);
        }
        parsed.getFieldsWithRankFilter().forEach
            ((fieldName, isFilter) -> profile.addRankSetting(fieldName, RankProfile.RankSetting.Type.PREFERBITVECTOR, isFilter));

        parsed.getFieldsWithRankWeight().forEach
            ((fieldName, weight) -> profile.addRankSetting(fieldName, RankProfile.RankSetting.Type.WEIGHT, weight));

        parsed.getFieldsWithRankType().forEach
            ((fieldName, rankType) -> profile.addRankSetting(fieldName, RankProfile.RankSetting.Type.RANKTYPE, RankType.fromString(rankType)));

        parsed.getRankProperties().forEach
            ((key, values) -> {for (String value : values) profile.addRankProperty(key, value);});

        // always?
        rankProfileRegistry.add(profile);
    }

}