fd9ed2afae63957734d030b63836fb534edc0984
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.onap.ccsdk.features.sdnr.wt.devicemanager.oran.impl.dom;
19
20 import org.onap.ccsdk.features.sdnr.wt.common.configuration.ConfigurationFileRepresentation;
21 import org.onap.ccsdk.features.sdnr.wt.common.database.HtDatabaseClient;
22 import org.onap.ccsdk.features.sdnr.wt.devicemanager.ne.factory.FactoryRegistration;
23 import org.onap.ccsdk.features.sdnr.wt.devicemanager.oran.config.ORanDMConfig;
24 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.NetconfNetworkElementService;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 public class DeviceManagerORanImpl implements AutoCloseable {
29
30     private static final Logger LOG = LoggerFactory.getLogger(DeviceManagerORanImpl.class);
31     private static final String APPLICATION_NAME = "DeviceManagerORan";
32     private static final String CONFIGURATIONFILE = "etc/devicemanager-oran.properties";
33
34
35     private NetconfNetworkElementService netconfNetworkElementService;
36
37     private HtDatabaseClient htDatabaseClient;
38     private Boolean devicemanagerInitializationOk = false;
39     private FactoryRegistration<ORanNetworkElementFactory> resORan;
40     private ORanDMConfig oranSupervisionConfig;
41
42     // Blueprint begin
43     public DeviceManagerORanImpl() {
44         LOG.info("Creating provider for {}", APPLICATION_NAME);
45         resORan = null;
46     }
47
48     public void setNetconfNetworkElementService(NetconfNetworkElementService netconfNetworkElementService) {
49         this.netconfNetworkElementService = netconfNetworkElementService;
50     }
51
52     public void init() throws Exception {
53
54         LOG.info("Session Initiated start {}", APPLICATION_NAME);
55
56         ConfigurationFileRepresentation configFileRepresentation =
57                 new ConfigurationFileRepresentation(CONFIGURATIONFILE);
58
59         oranSupervisionConfig = new ORanDMConfig(configFileRepresentation);
60         resORan = netconfNetworkElementService.registerBindingNetworkElementFactory(new ORanNetworkElementFactory(configFileRepresentation, oranSupervisionConfig));
61
62         netconfNetworkElementService.writeToEventLog(APPLICATION_NAME, "startup", "done");
63         this.devicemanagerInitializationOk = true;
64
65         LOG.info("Session Initiated end. Initialization done {}", devicemanagerInitializationOk);
66     }
67     // Blueprint end
68
69     @Override
70     public void close() throws Exception {
71         LOG.info("closing ...");
72         close(htDatabaseClient);
73         close(resORan);
74         LOG.info("closing done");
75     }
76
77     /**
78      * Used to close all Services, that should support AutoCloseable Pattern
79      *
80      * @param toClose
81      * @throws Exception
82      */
83     private void close(AutoCloseable... toCloseList) {
84         for (AutoCloseable element : toCloseList) {
85             if (element != null) {
86                 try {
87                     element.close();
88                 } catch (Exception e) {
89                     LOG.warn("Fail during close: ", e);
90                 }
91             }
92         }
93     }
94 }