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

import com.yahoo.config.model.ConfigModel;
import com.yahoo.config.model.ConfigModelContext;
import com.yahoo.config.model.ConfigModelRepo;
import com.yahoo.config.model.deploy.DeployState;
import com.yahoo.vespa.model.content.Content;
import com.yahoo.vespa.model.search.SearchCluster;

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


/**
 * A model of a container cluster.
 *
 * TODO: Add type parameter for CLUSTER instead of using wildcard '? extends Container'
 *
 * @author Tony Vaagenes
 */
public class ContainerModel extends ConfigModel {

    private ContainerCluster<? extends Container> containerCluster;

    public ContainerModel(ConfigModelContext context) {
        super(context);
    }

    public void setCluster(ContainerCluster<? extends Container> containerCluster) { this.containerCluster = containerCluster; }

    public ContainerCluster<? extends Container> getCluster() { return containerCluster; }

    @Override
    public void prepare(ConfigModelRepo plugins, DeployState deployState) {
        assert (getCluster() != null) : "Null container cluster!";
        getCluster().prepare(deployState);
    }

    @Override
    public void initialize(ConfigModelRepo configModelRepo) {
        List<SearchCluster> searchClusters = Content.getSearchClusters(configModelRepo);

        Map<String, SearchCluster> searchClustersByName = new TreeMap<>();
        for (SearchCluster c : searchClusters)
            searchClustersByName.put(c.getClusterName(), c);

        getCluster().initialize(searchClustersByName);
    }

    public static Collection<ContainerCluster<?>> containerClusters(ConfigModelRepo models) {
        List<ContainerCluster<?>> containerClusters = new ArrayList<>();

        for (ContainerModel model: models.getModels(ContainerModel.class))
            containerClusters.add(model.getCluster());

        return containerClusters;
    }

}