aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/search/searchchain/SourceGroupRegistry.java
blob: ac20c73980c8060dbdbe368954d96450ddc1090d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.container.search.searchchain;

import com.yahoo.component.ComponentId;
import com.yahoo.component.ComponentSpecification;
import com.yahoo.component.chain.model.ComponentAdaptor;
import com.yahoo.component.provider.ComponentRegistry;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;


/**
 * Owns all the source groups in the search chains model.
 * @author Tony Vaagenes
 */
class SourceGroupRegistry {
    private final ComponentRegistry<ComponentAdaptor<SourceGroup>> sourceGroups
            = new ComponentRegistry<>();

    private void add(Source source) {
        getGroup(source.getComponentId()).add(source);
    }

    private SourceGroup getGroup(ComponentId sourceId) {
        ComponentAdaptor<SourceGroup> group =
                sourceGroups.getComponent(sourceId);
        if (group == null) {
            group = new ComponentAdaptor<>(sourceId,
                    new SourceGroup(sourceId));
            sourceGroups.register(group.getId(), group);
        }
        return group.model;
    }

    void addSources(Provider provider) {
        for (Source source : provider.getSources()) {
            add(source);
        }
    }

    public Collection<SourceGroup> groups() {
        List<SourceGroup> result = new ArrayList<>();
        for (ComponentAdaptor<SourceGroup> group :
                sourceGroups.allComponents()) {
            result.add(group.model);
        }
        return result;
    }

    public SourceGroup getComponent(ComponentSpecification spec) {
        ComponentAdaptor<SourceGroup> result = sourceGroups.getComponent(spec);
        return (result != null)?
                result.model :
                null;
    }
}