Add properties to model
[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  * ===================================================================
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
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.sdc.SdcControllersConfiguration;
36 import org.onap.clamp.clds.config.sdc.SdcSingleControllerConfiguration;
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.installer.CsarInstaller;
40 import org.onap.clamp.clds.sdc.controller.installer.CsarInstallerImpl;
41 import org.springframework.beans.factory.annotation.Qualifier;
42 import org.springframework.context.annotation.Bean;
43 import org.springframework.context.annotation.Configuration;
44 import org.springframework.context.annotation.Profile;
45
46 @Configuration
47 @Profile("clamp-sdc-controller")
48 public class CldsSdcControllerConfiguration {
49
50     private static final EELFLogger logger = EELFManager.getInstance().getLogger(CldsSdcControllerConfiguration.class);
51     private List<SdcSingleController> sdcControllersList = new ArrayList<>();
52
53     @PostConstruct
54     public void loadSdcControllers(
55             @Qualifier("sdcControllersConfiguration") SdcControllersConfiguration sdcControllersConfig) {
56         sdcControllersConfig.getAllDefinedControllers().forEach((k, v) -> {
57             SdcSingleController sdcController = getSdcSingleController(v);
58             try {
59                 sdcController.initSdc();
60             } catch (SdcControllerException e) {
61                 logger.error("Exception caught during initialization of sdc controller", e);
62             }
63             sdcControllersList.add(getSdcSingleController(v));
64         });
65     }
66
67     @PreDestroy
68     public void killSdcControllers() {
69         sdcControllersList.forEach(e -> {
70             try {
71                 e.closeSdc();
72             } catch (SdcControllerException e1) {
73                 logger.error("Exception caught during initialization of sdc controller", e);
74             }
75         });
76     }
77
78     @Bean(name = "csarInstaller")
79     public CsarInstaller getCsarInstaller() {
80         return new CsarInstallerImpl();
81     }
82
83     @Bean(name = "sdcSingleController")
84     public SdcSingleController getSdcSingleController(SdcSingleControllerConfiguration sdcControllerConfig) {
85         return new SdcSingleController(sdcControllerConfig, true);
86     }
87
88     @Bean(name = "sdcControllersConfiguration")
89     public SdcControllersConfiguration getSdcControllersConfiguration() {
90         return new SdcControllersConfiguration();
91     }
92 }