aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/significance/impl/DefaultSignificanceModelRegistry.java
blob: 1be1d3f13b5285e04416b2421ef78804ed417290 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.significance.impl;

import com.yahoo.component.annotation.Inject;
import com.yahoo.language.Language;
import com.yahoo.language.significance.SignificanceModel;
import com.yahoo.language.significance.SignificanceModelRegistry;
import com.yahoo.search.significance.config.SignificanceConfig;

import java.nio.file.Path;
import java.util.EnumMap;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
import java.util.function.Supplier;

import static com.yahoo.yolean.Exceptions.uncheck;
/**
 * Default implementation of {@link SignificanceModelRegistry}.
 * This implementation loads models lazily and caches them.
 *
 * @author MariusArhaug
 */
public class DefaultSignificanceModelRegistry implements SignificanceModelRegistry {

    private final Map<Language, SignificanceModel> models;
    @Inject
    public DefaultSignificanceModelRegistry(SignificanceConfig cfg) { this(new Builder(cfg)); }
    private DefaultSignificanceModelRegistry(Builder b) {
        this.models = new EnumMap<>(Language.class);
        b.models.forEach((language, path) -> {
            models.put(language,
                    uncheck(() -> new DefaultSignificanceModel(path)));
        });
    }

    public DefaultSignificanceModelRegistry(HashMap<Language, Path> map) {
        this.models = new EnumMap<>(Language.class);
        map.forEach((language, path) -> {
            models.put(language,
                    uncheck(() -> new DefaultSignificanceModel(path)));
        });
    }


    @Override
    public Optional<SignificanceModel> getModel(Language language) {
        if (!models.containsKey(language))
        {
            return Optional.empty();
        }
        return Optional.of(models.get(language));
    }


    public static final class Builder {
        private final Map<Language, Path> models = new EnumMap<>(Language.class);

        public Builder() {}
        public Builder(SignificanceConfig cfg) {
            for (var model : cfg.model()) {
                addModel(Language.fromLanguageTag(model.language()), model.path());
            }
        }

        public Builder addModel(Language lang, Path path) { models.put(lang, path); return this; }
        public DefaultSignificanceModelRegistry build() { return new DefaultSignificanceModelRegistry(this); }
    }

}