aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/TemplateBuilder.java
blob: 2827a9eb0054c24250e2d3934ced047d6224484d (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
71
72
73
74
75
76
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.template;

import com.yahoo.vespa.hosted.node.admin.task.util.text.Cursor;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @author hakonhall
 */
class TemplateBuilder {
    /** The top-level section list in this template. */
    private final SectionList sectionList;
    private final List<Section> allSections = new ArrayList<>();
    private final Map<String, VariableSection> sampleVariables = new HashMap<>();
    private final Map<String, IfSection> sampleIfSections = new HashMap<>();
    private final Map<String, ListSection> lists = new HashMap<>();

    TemplateBuilder(Cursor start) {
        this.sectionList = new SectionList(start, this);
    }

    SectionList topLevelSectionList() { return sectionList; }

    void addLiteralSection(LiteralSection section) {
        allSections.add(section);
    }

    void addVariableSection(VariableSection section) {
        // It's OK if the same name is used in an if-directive (as long as the value is boolean,
        // determined when set on a template).

        ListSection existing = lists.get(section.name());
        if (existing != null)
            throw new NameAlreadyExistsTemplateException(section.name(), existing, section);

        sampleVariables.put(section.name(), section);
        allSections.add(section);
    }

    void addIfSection(IfSection section) {
        // It's OK if the same name is used in a variable section (as long as the value is boolean,
        // determined when set on a template).

        ListSection list = lists.get(section.name());
        if (list != null)
            throw new NameAlreadyExistsTemplateException(section.name(), list, section);

        sampleIfSections.put(section.name(), section);
        allSections.add(section);
    }

    void addListSection(ListSection section) {
        VariableSection variableSection = sampleVariables.get(section.name());
        if (variableSection != null)
            throw new NameAlreadyExistsTemplateException(section.name(), variableSection, section);

        IfSection ifSection = sampleIfSections.get(section.name());
        if (ifSection != null)
            throw new NameAlreadyExistsTemplateException(section.name(), ifSection, section);

        ListSection previous = lists.put(section.name(), section);
        if (previous != null)
            throw new NameAlreadyExistsTemplateException(section.name(), previous, section);
        allSections.add(section);
    }

    Template build() {
        var template = new Template(sectionList.range(), sectionList.sections(), lists);
        allSections.forEach(section -> section.setTemplate(template));
        return template;
    }
}