c72976732e99506b18966ee388565a49d77c1e61
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk feature sdnr wt
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights 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  */
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.interfaces;
23
24 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
25 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
26 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.AirInterface20Listener;
27 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.AttributeValueChangedNotification;
28 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectCreationNotification;
29 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ObjectDeletionNotification;
30 import org.opendaylight.yang.gen.v1.urn.onf.yang.air._interface._2._0.rev200121.ProblemNotification;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.EventlogBuilder;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.SourceType;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 public class Onf14AirInterfaceNotificationListener implements AirInterface20Listener {
37
38     private static final Logger log = LoggerFactory.getLogger(Onf14AirInterfaceNotificationListener.class);
39
40     private final NetconfAccessor netconfAccessor;
41     private final DeviceManagerServiceProvider serviceProvider;
42
43     public Onf14AirInterfaceNotificationListener(NetconfAccessor netconfAccessor,
44             DeviceManagerServiceProvider serviceProvider) {
45         this.netconfAccessor = netconfAccessor;
46         this.serviceProvider = serviceProvider;
47     }
48
49     @Override
50     public void onObjectDeletionNotification(ObjectDeletionNotification notification) {
51         log.debug("Got event of type :: {}", ObjectDeletionNotification.class.getSimpleName());
52
53         EventlogBuilder eventlogBuilder = new EventlogBuilder();
54         eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName("")
55                 .setCounter(notification.getCounter()).setNewValue("deleted")
56                 .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
57                 .setTimestamp(notification.getTimestamp());
58         serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
59         serviceProvider.getNotificationService().deletionNotification(netconfAccessor.getNodeId(),
60                 notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
61
62         log.debug("onObjectDeletionNotification log entry written");
63     }
64
65     @Override
66     public void onProblemNotification(ProblemNotification notification) {
67         log.debug("Got event of type :: {}", ProblemNotification.class.getSimpleName());
68
69         serviceProvider.getFaultService().faultNotification(netconfAccessor.getNodeId(), notification.getCounter(),
70                 notification.getTimestamp(), notification.getObjectIdRef().getValue(), notification.getProblem(),
71                 Onf14AirInterface.mapSeverity(notification.getSeverity()));
72
73     }
74
75     @Override
76     public void onAttributeValueChangedNotification(AttributeValueChangedNotification notification) {
77         log.debug("Got event of type :: {}", AttributeValueChangedNotification.class.getSimpleName());
78
79         EventlogBuilder eventlogBuilder = new EventlogBuilder();
80         eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue())
81                 .setAttributeName(notification.getAttributeName()).setCounter(notification.getCounter())
82                 .setNewValue(notification.getNewValue()).setObjectId(notification.getObjectIdRef().getValue())
83                 .setSourceType(SourceType.Netconf).setTimestamp(notification.getTimestamp());
84         serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
85         serviceProvider.getNotificationService().eventNotification(eventlogBuilder.build());
86
87         log.debug("onAttributeValueChangedNotification log entry written");
88     }
89
90     @Override
91     public void onObjectCreationNotification(ObjectCreationNotification notification) {
92         log.debug("Got event of type :: {}", ObjectCreationNotification.class.getSimpleName());
93
94         EventlogBuilder eventlogBuilder = new EventlogBuilder();
95         eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue()).setAttributeName(notification.getObjectType())
96                 .setCounter(notification.getCounter()).setNewValue("created")
97                 .setObjectId(notification.getObjectIdRef().getValue()).setSourceType(SourceType.Netconf)
98                 .setTimestamp(notification.getTimestamp());
99         serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
100         serviceProvider.getNotificationService().creationNotification(netconfAccessor.getNodeId(),
101                 notification.getCounter(), notification.getTimestamp(), notification.getObjectIdRef().getValue());
102
103         log.debug("onObjectCreationNotification log entry written");
104     }
105
106 }