migrate sdnr features to phosphorus
[ccsdk/features.git] / sdnr / wt / devicemanager-onap / onf14 / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / onf14 / dom / impl / Onf14DomAirInterfaceNotificationListener.java
diff --git a/sdnr/wt/devicemanager-onap/onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/dom/impl/Onf14DomAirInterfaceNotificationListener.java b/sdnr/wt/devicemanager-onap/onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/dom/impl/Onf14DomAirInterfaceNotificationListener.java
new file mode 100644 (file)
index 0000000..f72158e
--- /dev/null
@@ -0,0 +1,168 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : ccsdk feature sdnr wt
+ * ================================================================================
+ * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
+ * All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ *
+ */
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.dom.impl;
+
+import org.eclipse.jdt.annotation.NonNull;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.dom.impl.dataprovider.InternalDataModelSeverity;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.dom.impl.util.Onf14DMDOMUtility;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.dom.impl.util.Onf14DevicemanagerQNames;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
+import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfDomAccessor;
+import org.opendaylight.mdsal.dom.api.DOMNotification;
+import org.opendaylight.mdsal.dom.api.DOMNotificationListener;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.EventlogBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.FaultlogBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.FaultlogEntity;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.SourceType;
+import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
+import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class Onf14DomAirInterfaceNotificationListener implements DOMNotificationListener {
+
+    private static final Logger log = LoggerFactory.getLogger(Onf14DomAirInterfaceNotificationListener.class);
+
+    private final NetconfDomAccessor netconfDomAccessor;
+    private final DeviceManagerServiceProvider serviceProvider;
+
+    public Onf14DomAirInterfaceNotificationListener(NetconfDomAccessor netconfDomAccessor,
+            DeviceManagerServiceProvider serviceProvider) {
+        this.netconfDomAccessor = netconfDomAccessor;
+        this.serviceProvider = serviceProvider;
+    }
+
+    @Override
+    public void onNotification(@NonNull DOMNotification domNotification) {
+        if (domNotification.getType()
+                .equals(Absolute.of(Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION))) {
+            onObjectCreateNotification(domNotification);
+        } else if (domNotification.getType()
+                .equals(Absolute.of(Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION))) {
+            onObjectAVCNotification(domNotification);
+        } else if (domNotification.getType()
+                .equals(Absolute.of(Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION))) {
+            onObjectProblemNotification(domNotification);
+        } else if (domNotification.getType()
+                .equals(Absolute.of(Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION))) {
+            onObjectDeletionNotification(domNotification);
+        }
+    }
+
+    private void onObjectCreateNotification(@NonNull DOMNotification domNotification) {
+
+        ContainerNode cn = domNotification.getBody();
+
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfDomAccessor.getNodeId().getValue())
+                .setAttributeName(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION_OBJECT_TYPE))
+                .setCounter(Integer.parseInt(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION_COUNTER)))
+                .setNewValue("created")
+                .setObjectId(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION_OBJECT_ID_REF))
+                .setSourceType(SourceType.Netconf).setTimestamp(new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION_TIMESTAMP)));
+
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getWebsocketService().sendNotification(domNotification, netconfDomAccessor.getNodeId(),
+                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION,
+                new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_CREATE_NOTIFICATION_TIMESTAMP)));
+        log.debug("onObjectCreationNotification log entry written");
+    }
+
+    private void onObjectAVCNotification(@NonNull DOMNotification domNotification) {
+
+        ContainerNode cn = domNotification.getBody();
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfDomAccessor.getNodeId().getValue())
+                .setAttributeName(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_ATTRIBUTE_NAME))
+                .setCounter(Integer.parseInt(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_COUNTER)))
+                .setNewValue(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_NEW_VALUE))
+                .setObjectId(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_OBJECT_ID_REF))
+                .setSourceType(SourceType.Netconf).setTimestamp(new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_TIMESTAMP)));
+
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getWebsocketService().sendNotification(domNotification, netconfDomAccessor.getNodeId(),
+                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION, new DateAndTime(Onf14DMDOMUtility
+                        .getLeafValue(cn, Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_AVC_NOTIFICATION_TIMESTAMP)));
+        log.debug("onAttributeValueChangedNotification log entry written");
+    }
+
+    private void onObjectProblemNotification(@NonNull DOMNotification domNotification) {
+
+        ContainerNode cn = domNotification.getBody();
+        FaultlogEntity faultAlarm =
+                new FaultlogBuilder()
+                        .setObjectId(Onf14DMDOMUtility.getLeafValue(cn,
+                                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_OBJECT_ID_REF))
+                        .setProblem(Onf14DMDOMUtility.getLeafValue(cn,
+                                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_PROBLEM))
+                        .setSourceType(SourceType.Netconf)
+                        .setTimestamp(new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_TIMESTAMP)))
+                        .setNodeId(this.netconfDomAccessor.getNodeId().getValue())
+                        .setSeverity(InternalDataModelSeverity.mapSeverity(Onf14DMDOMUtility.getLeafValue(cn,
+                                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_SEVERITY)))
+                        .setCounter(Integer.parseInt(Onf14DMDOMUtility.getLeafValue(cn,
+                                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_COUNTER)))
+                        .build();
+
+        serviceProvider.getFaultService().faultNotification(faultAlarm);
+        serviceProvider.getWebsocketService().sendNotification(domNotification, netconfDomAccessor.getNodeId(),
+                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION,
+                new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_PROBLEM_NOTIFICATION_TIMESTAMP)));
+    }
+
+    private void onObjectDeletionNotification(@NonNull DOMNotification domNotification) {
+
+        ContainerNode cn = domNotification.getBody();
+        EventlogBuilder eventlogBuilder = new EventlogBuilder();
+        eventlogBuilder.setNodeId(netconfDomAccessor.getNodeId().getValue()).setAttributeName("")
+                .setCounter(Integer.parseInt(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION_COUNTER)))
+                .setNewValue("deleted")
+                .setObjectId(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION_OBJECT_ID_REF))
+
+                .setSourceType(SourceType.Netconf).setTimestamp(new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION_TIMESTAMP)));
+
+        serviceProvider.getDataProvider().writeEventLog(eventlogBuilder.build());
+        serviceProvider.getWebsocketService().sendNotification(domNotification, netconfDomAccessor.getNodeId(),
+                Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION,
+                new DateAndTime(Onf14DMDOMUtility.getLeafValue(cn,
+                        Onf14DevicemanagerQNames.AIR_INTERFACE_OBJECT_DELETE_NOTIFICATION_TIMESTAMP)));
+
+        log.debug("onObjectDeletionNotification log entry written");
+    }
+
+}