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

import com.yahoo.component.chain.dependencies.Dependencies;
import com.yahoo.component.chain.model.ChainedComponentModel;
import com.yahoo.container.core.ChainsConfig;

import java.util.Set;

import static com.yahoo.container.core.ChainsConfig.Components;

/**
 * @author Tony Vaagenes
 * @author gjoranv
 *
 * Generates config for all the chained components.
 */
class ChainedComponentConfigGenerator {

    public static void generate(ChainsConfig.Builder builder, Set<? extends ChainedComponent> components) {
         for (ChainedComponent<ChainedComponentModel> component : components) {
             builder.components(getComponent(component));
         }
     }

    private static Components.Builder getComponent(ChainedComponent<ChainedComponentModel> component) {
        return new Components.Builder()
                .id(component.getGlobalComponentId().stringValue())
                .dependencies(getDependencies(component));
    }

    private static Components.Dependencies.Builder getDependencies(ChainedComponent<ChainedComponentModel> component) {
        Dependencies dependencies = component.model.dependencies;
        return new Components.Dependencies.Builder()
                .provides(dependencies.provides())
                .before(dependencies.before())
                .after(dependencies.after());
    }

}