Fixed Checkstyle issues
[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
24 package org.onap.clamp.clds.sdc.controller.installer;
25
26 import java.util.LinkedList;
27 import java.util.List;
28 import java.util.Set;
29 import java.util.stream.Collectors;
30
31 import org.springframework.stereotype.Component;
32
33 @Component
34 public class ChainGenerator {
35
36     ChainGenerator() {
37     }
38
39     public List<MicroService> getChainOfMicroServices(Set<MicroService> input) {
40         LinkedList<MicroService> returnList = new LinkedList<>();
41         if (preValidate(input)) {
42             LinkedList<MicroService> theList = new LinkedList<>();
43             for (MicroService ms : input) {
44                 insertNodeTemplateIntoChain(ms, theList);
45             }
46             if (postValidate(theList)) {
47                 returnList = theList;
48             }
49         }
50         return returnList;
51     }
52
53     private boolean preValidate(Set<MicroService> input) {
54         List<MicroService> noInputs = input.stream().filter(ms -> "".equals(ms.getInputFrom()))
55             .collect(Collectors.toList());
56         return noInputs.size() == 1;
57     }
58
59     private boolean postValidate(LinkedList<MicroService> microServices) {
60         for (int i = 1; i < microServices.size() - 1; i++) {
61             MicroService prev = microServices.get(i - 1);
62             MicroService current = microServices.get(i);
63             if (!current.getInputFrom().equals(prev.getName())) {
64                 return false;
65             }
66         }
67         return true;
68     }
69
70     private void insertNodeTemplateIntoChain(MicroService microServicetoInsert,
71         LinkedList<MicroService> chainOfMicroServices) {
72         int insertIndex = 0;
73         for (int i = 0; i < chainOfMicroServices.size(); i++) {
74             MicroService current = chainOfMicroServices.get(i);
75             if (microServicetoInsert.getName().equals(current.getInputFrom())) {
76                 insertIndex = i;
77                 break;
78             } else if (current.getName().equals(microServicetoInsert.getInputFrom())) {
79                 insertIndex = i + 1;
80                 break;
81             }
82         }
83         chainOfMicroServices.add(insertIndex, microServicetoInsert);
84     }
85 }