summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/profile/types/ConversionContext.java
blob: e5b9eb1c1cd9f1356baabd56e1fe6c7008887401 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.profile.types;

import com.yahoo.language.Language;
import com.yahoo.language.process.Embedder;
import com.yahoo.search.query.profile.compiled.CompiledQueryProfileRegistry;

import java.util.Map;

/**
 * @author bratseth
 */
public class ConversionContext {

    private final CompiledQueryProfileRegistry registry;
    private final Embedder embedder;
    private final Language language;

    public ConversionContext(CompiledQueryProfileRegistry registry, Embedder embedder, Map<String, String> context) {
        this.registry = registry;
        this.embedder = embedder;
        this.language = context.containsKey("language") ? Language.fromLanguageTag(context.get("language"))
                                                        : Language.UNKNOWN;
    }

    /** Returns the profile registry, or null if none */
    CompiledQueryProfileRegistry getRegistry() {return registry;}

    /** Returns the configured encoder, never null */
    Embedder getEncoder() { return embedder; }

    /** Returns the language, which is never null but may be UNKNOWN */
    Language getLanguage() { return language; }

    /** Returns an empty context */
    public static ConversionContext empty() {
        return new ConversionContext(null, Embedder.throwsOnUse, Map.of());
    }

}