Merge "YANG Model update for A1 Adapter"
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / performancemanager / impl / PerformanceManagerImpl.java
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.performancemanager.impl;
19
20 import org.eclipse.jdt.annotation.Nullable;
21 import org.onap.ccsdk.features.sdnr.wt.common.configuration.ConfigurationFileRepresentation;
22 import org.onap.ccsdk.features.sdnr.wt.devicemanager.DeviceManagerService;
23 import org.onap.ccsdk.features.sdnr.wt.devicemanager.base.onfcore.ONFCoreNetworkElementRepresentation;
24 import org.onap.ccsdk.features.sdnr.wt.devicemanager.performancemanager.impl.config.PmConfig;
25 import org.onap.ccsdk.features.sdnr.wt.devicemanager.performancemanager.impl.database.service.MicrowaveHistoricalPerformanceWriterService;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 public class PerformanceManagerImpl implements DeviceManagerService, AutoCloseable {
30
31     private static final Logger LOG = LoggerFactory.getLogger(PerformanceManagerImpl.class);
32
33     private @Nullable PerformanceManagerTask task;
34
35     public PerformanceManagerImpl(long seconds, MicrowaveHistoricalPerformanceWriterService databaseService, ConfigurationFileRepresentation config) {
36
37         LOG.info("Construct {}", PerformanceManagerImpl.class.getSimpleName());
38
39         this.task = null;
40         PmConfig configurationPM = new PmConfig(config);
41         LOG.info("Performance manager configuration: {}", configurationPM);
42
43         if (!configurationPM.isPerformanceManagerEnabled()) {
44             LOG.info("Don't start performance manager");
45
46         } else {
47             LOG.info("{} Seconds", seconds);
48             if (MicrowaveHistoricalPerformanceWriterService.isAvailable(databaseService)) {
49
50                 LOG.info("Start of PM task");
51                 task = new PerformanceManagerTask(seconds, databaseService);
52                 task.start();
53                 LOG.info("PM task scheduled");
54
55             } else {
56                 LOG.info("Database not available. Do not start PM task");
57             }
58         }
59
60         LOG.info("Construct end {}", PerformanceManagerImpl.class.getSimpleName());
61     }
62
63     @Override
64     public void close() {
65         LOG.info("Close {}", PerformanceManagerImpl.class.getSimpleName());
66         if (task != null) {
67             task.stop();
68         }
69     }
70
71     public void registration(String mountPointNodeName, ONFCoreNetworkElementRepresentation ne) {
72         LOG.debug("Register {}",mountPointNodeName);
73         if (task != null) {
74             task.registration(mountPointNodeName, ne);
75         }
76     }
77
78     public void deRegistration(String mountPointNodeName) {
79         LOG.debug("Deregister {}",mountPointNodeName);
80         if (task != null) {
81             task.deRegistration(mountPointNodeName);
82         }
83     }
84
85 }