Fix checkstyle issue
[clamp.git] / src / main / java / org / onap / clamp / clds / config / spring / SdcControllerConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T 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.config.spring;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import java.util.ArrayList;
30 import java.util.List;
31
32 import javax.annotation.PostConstruct;
33 import javax.annotation.PreDestroy;
34
35 import org.onap.clamp.clds.config.ClampProperties;
36 import org.onap.clamp.clds.config.sdc.SdcControllersConfiguration;
37 import org.onap.clamp.clds.exception.sdc.controller.SdcControllerException;
38 import org.onap.clamp.clds.sdc.controller.SdcSingleController;
39 import org.onap.clamp.clds.sdc.controller.SdcSingleControllerStatus;
40 import org.onap.clamp.loop.CsarInstaller;
41 import org.springframework.beans.factory.annotation.Autowired;
42 import org.springframework.beans.factory.annotation.Qualifier;
43 import org.springframework.context.annotation.Bean;
44 import org.springframework.context.annotation.ComponentScan;
45 import org.springframework.context.annotation.Configuration;
46 import org.springframework.context.annotation.Profile;
47 import org.springframework.scheduling.annotation.Scheduled;
48
49 @Configuration
50 @ComponentScan(basePackages = { "org.onap.clamp.loop", "org.onap.clamp.clds.config" })
51 @Profile("clamp-sdc-controller-new")
52 public class SdcControllerConfiguration {
53
54     private static final EELFLogger logger = EELFManager.getInstance().getLogger(SdcControllerConfiguration.class);
55     private List<SdcSingleController> sdcControllersList = new ArrayList<>();
56     private final ClampProperties clampProp;
57     private final CsarInstaller csarInstaller;
58
59     @Autowired
60     public SdcControllerConfiguration(ClampProperties clampProp,
61             @Qualifier("csarInstaller") CsarInstaller csarInstaller) {
62         this.clampProp = clampProp;
63         this.csarInstaller = csarInstaller;
64     }
65
66     /**
67      * Loads SDC controller configuration.
68      */
69     @PostConstruct
70     public void loadSdcControllers() {
71         SdcControllersConfiguration sdcControllersConfig = getSdcControllersConfiguration();
72         sdcControllersConfig.getAllDefinedControllers().forEach((key, value) -> {
73             logger.info("Creating controller instance:" + key);
74             SdcSingleController sdcController = new SdcSingleController(clampProp, csarInstaller, value, null);
75             sdcControllersList.add(sdcController);
76         });
77     }
78
79     /**
80      * Checks whether all SDC controllers defined are up and running.
81      */
82     @Scheduled(fixedRate = 120000)
83     public void checkAllSdcControllers() {
84         logger.info("Checking that all SDC Controllers defined are up and running");
85         for (SdcSingleController controller : sdcControllersList) {
86             try {
87                 if (SdcSingleControllerStatus.STOPPED.equals(controller.getControllerStatus())) {
88                     controller.initSdc();
89                 }
90             } catch (SdcControllerException e) {
91                 logger.error("Exception caught when booting sdc controller", e);
92             }
93         }
94         logger.info("SDC Controllers check completed");
95     }
96
97     /**
98      * Closes all SDC Controller and the SDC Client.
99      */
100     @PreDestroy
101     public void killSdcControllers() {
102         sdcControllersList.forEach(e -> {
103             try {
104                 e.closeSdc();
105             } catch (SdcControllerException e1) {
106                 logger.error("Exception caught when stopping sdc controller", e1);
107             }
108         });
109     }
110
111     @Bean(name = "sdcControllersConfiguration")
112     public SdcControllersConfiguration getSdcControllersConfiguration() {
113         return new SdcControllersConfiguration();
114     }
115 }