aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/clamp/clds/util/drawing/ClampGraphBuilder.java
blob: 8e3b06a468586a780f9000b120379500bad03b20 (plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*-
 * ============LICENSE_START=======================================================
 * ONAP CLAMP
 * ================================================================================
 * Copyright (C) 2019 Nokia. All rights
 *                             reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END============================================
 * Modifications copyright (c) 2019 AT&T
 * ===================================================================
 *
 */

package org.onap.clamp.clds.util.drawing;

import java.util.HashSet;
import java.util.Set;
import org.onap.clamp.loop.template.LoopElementModel;
import org.onap.clamp.policy.microservice.MicroServicePolicy;
import org.onap.clamp.policy.operational.OperationalPolicy;

public class ClampGraphBuilder {
    private Set<OperationalPolicy> policies = new HashSet<>();
    private String collector;
    private Set<MicroServicePolicy> microServices = new HashSet<>();
    private Set<LoopElementModel> loopElementModels = new HashSet<>();
    private final Painter painter;

    public ClampGraphBuilder(Painter painter) {
        this.painter = painter;
    }

    public ClampGraphBuilder collector(String collector) {
        this.collector = collector;
        return this;
    }

    public ClampGraphBuilder addPolicy(OperationalPolicy policy) {
        this.policies.add(policy);
        return this;
    }

    public ClampGraphBuilder addAllPolicies(Set<OperationalPolicy> policies) {
        this.policies.addAll(policies);
        return this;
    }

    public ClampGraphBuilder addMicroService(MicroServicePolicy ms) {
        microServices.add(ms);
        return this;
    }

    public ClampGraphBuilder addAllMicroServices(Set<MicroServicePolicy> msList) {
        microServices.addAll(msList);
        return this;
    }

    /**
     * This method adds all loop element specified in input to the current structure.
     *
     * @param loopElementModels A set of LoopElementModels
     * @return Return the current ClampGraphBuilder
     */
    public ClampGraphBuilder addAllLoopElementModels(Set<LoopElementModel> loopElementModels) {
        for (LoopElementModel elem : loopElementModels) {
            this.addLoopElementModel(elem);
        }
        return this;
    }

    /**
     * This method adds one loop element specified in input to the current structure.
     *
     * @param loopElementModel A LoopElementModels
     * @return Return the current ClampGraphBuilder
     */
    public ClampGraphBuilder addLoopElementModel(LoopElementModel loopElementModel) {
        if (LoopElementModel.MICRO_SERVICE_TYPE.equals(loopElementModel.getLoopElementType())) {
            microServices.add(new MicroServicePolicy(loopElementModel.getName(),
                    loopElementModel.getPolicyModels().first(), false, loopElementModel));
        } else if (LoopElementModel.OPERATIONAL_POLICY_TYPE.equals(loopElementModel.getLoopElementType())) {
            policies.add(new OperationalPolicy(loopElementModel.getName(), null, null,
                    loopElementModel.getPolicyModels().first(), loopElementModel));
        }
        return this;
    }

    /**
     * Build the SVG.
     *
     * @return Clamp graph (SVG)
     */
    public ClampGraph build() {
        return new ClampGraph(painter.doPaint(collector, microServices, policies));
    }
}