Add svg support
[clamp.git] / src / main / java / org / onap / clamp / clds / sdc / controller / installer / ChainGenerator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 Nokia Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23 package org.onap.clamp.clds.sdc.controller.installer;
24
25 import java.util.LinkedList;
26 import java.util.List;
27 import java.util.Set;
28 import java.util.stream.Collectors;
29
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class ChainGenerator {
34
35     ChainGenerator() {
36     }
37
38     public List<MicroService> getChainOfMicroServices(Set<MicroService> input) {
39         LinkedList<MicroService> returnList = new LinkedList<>();
40         if (preValidate(input)) {
41             LinkedList<MicroService> theList = new LinkedList<>();
42             for (MicroService ms : input) {
43                 insertNodeTemplateIntoChain(ms, theList);
44             }
45             if (postValidate(theList)) {
46                 returnList = theList;
47             }
48         }
49         return returnList;
50     }
51
52     private boolean preValidate(Set<MicroService> input) {
53         List<MicroService> noInputs = input.stream().filter(ms -> "".equals(ms.getInputFrom()))
54             .collect(Collectors.toList());
55         return noInputs.size() == 1;
56     }
57
58     private boolean postValidate(LinkedList<MicroService> microServices) {
59         for (int i = 1; i < microServices.size() - 1; i++) {
60             MicroService prev = microServices.get(i - 1);
61             MicroService current = microServices.get(i);
62             if (!current.getInputFrom().equals(prev.getName())) {
63                 return false;
64             }
65         }
66         return true;
67     }
68
69     private void insertNodeTemplateIntoChain(MicroService microServicetoInsert,
70         LinkedList<MicroService> chainOfMicroServices) {
71         int insertIndex = 0;
72         for (int i = 0; i < chainOfMicroServices.size(); i++) {
73             MicroService current = chainOfMicroServices.get(i);
74             if (microServicetoInsert.getName().equals(current.getInputFrom())) {
75                 insertIndex = i;
76                 break;
77             } else if (current.getName().equals(microServicetoInsert.getInputFrom())) {
78                 insertIndex = i + 1;
79                 break;
80             }
81         }
82         chainOfMicroServices.add(insertIndex, microServicetoInsert);
83     }
84 }