3f1403f1e5b78784446d1ccd1f5bdc33c15ef99c
[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     @PostConstruct
61     public void loadSdcControllers() {
62         SdcControllersConfiguration sdcControllersConfig = getSdcControllersConfiguration();
63         sdcControllersConfig.getAllDefinedControllers().forEach((k, v) -> {
64             logger.info("Creating controller instance:" + k);
65             SdcSingleController sdcController = new SdcSingleController(clampProp, csarInstaller, v, null);
66             sdcControllersList.add(sdcController);
67         });
68     }
69
70     @Scheduled(fixedRate = 120000)
71     public void checkAllSdcControllers() {
72         logger.info("Checking that all SDC Controllers defined are up and running");
73         for (SdcSingleController controller : sdcControllersList) {
74             try {
75                 if (SdcSingleControllerStatus.STOPPED.equals(controller.getControllerStatus())) {
76                     controller.initSdc();
77                 }
78             } catch (SdcControllerException e) {
79                 logger.error("Exception caught when booting sdc controller", e);
80             }
81         }
82         logger.info("SDC Controllers check completed");
83     }
84
85     @PreDestroy
86     public void killSdcControllers() {
87         sdcControllersList.forEach(e -> {
88             try {
89                 e.closeSdc();
90             } catch (SdcControllerException e1) {
91                 logger.error("Exception caught when stopping sdc controller", e1);
92             }
93         });
94     }
95
96     @Bean(name = "sdcControllersConfiguration")
97     public SdcControllersConfiguration getSdcControllersConfiguration() {
98         return new SdcControllersConfiguration();
99     }
100 }