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