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