2 * ============LICENSE_START=======================================================
3 * ONAP : ccsdk features
4 * ================================================================================
5 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.openroadm.impl;
24 import java.util.List;
25 import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.DataProvider;
26 import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.types.NetconfTimeStampImpl;
27 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
28 import org.onap.ccsdk.features.sdnr.wt.websocketmanager.model.WebsocketManagerService;
29 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.IetfNetconfNotificationsListener;
30 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfCapabilityChange;
31 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfConfigChange;
32 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfConfirmedCommit;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionEnd;
34 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionStart;
35 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.netconf.config.change.Edit;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.EventlogBuilder;
37 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
38 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.PathArgument;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
44 * @author Shabnam Sultana
46 * Listener for change notifications
49 public class OpenroadmChangeNotificationListener implements IetfNetconfNotificationsListener {
52 private static final Logger log = LoggerFactory.getLogger(OpenroadmChangeNotificationListener.class);
53 private final NetconfAccessor netconfAccessor;
54 private final DataProvider databaseService;
55 private final WebsocketManagerService notificationServiceService;
59 public OpenroadmChangeNotificationListener(NetconfAccessor netconfAccessor, DataProvider databaseService,
60 WebsocketManagerService notificationService) {
61 this.netconfAccessor = netconfAccessor;
62 this.databaseService = databaseService;
63 this.notificationServiceService = notificationService;
65 // end of constructors
69 public void onNetconfConfirmedCommit(NetconfConfirmedCommit notification) {
70 log.info("onNetconfConfirmedCommit {} ", notification);
71 this.notificationServiceService.sendNotification(notification, this.netconfAccessor.getNodeId().getValue(),
72 NetconfConfirmedCommit.QNAME, NetconfTimeStampImpl.getConverter().getTimeStamp());
76 public void onNetconfSessionStart(NetconfSessionStart notification) {
77 log.info("onNetconfSessionStart {} ", notification);
78 this.notificationServiceService.sendNotification(notification, this.netconfAccessor.getNodeId().getValue(),
79 NetconfSessionStart.QNAME, NetconfTimeStampImpl.getConverter().getTimeStamp());
84 public void onNetconfSessionEnd(NetconfSessionEnd notification) {
85 log.info("onNetconfSessionEnd {}", notification);
86 this.notificationServiceService.sendNotification(notification, this.netconfAccessor.getNodeId().getValue(),
87 NetconfSessionEnd.QNAME, NetconfTimeStampImpl.getConverter().getTimeStamp());
91 public void onNetconfCapabilityChange(NetconfCapabilityChange notification) {
92 log.info("onNetconfCapabilityChange {}", notification);
93 this.notificationServiceService.sendNotification(notification, this.netconfAccessor.getNodeId().getValue(),
94 NetconfCapabilityChange.QNAME, NetconfTimeStampImpl.getConverter().getTimeStamp());
98 public void onNetconfConfigChange(NetconfConfigChange notification) {
99 log.info("onNetconfConfigChange (1) {}", notification);
100 StringBuffer sb = new StringBuffer();
101 List<Edit> editList = notification.nonnullEdit();
102 for (Edit edit : editList) {
103 if (sb.length() > 0) {
108 EventlogBuilder eventlogBuilder = new EventlogBuilder();
110 InstanceIdentifier<?> target = edit.getTarget();
111 if (target != null) {
112 eventlogBuilder.setObjectId(target.toString());
113 log.info("TARGET: {} {}", target.getClass(), target.getTargetType());
114 for (PathArgument pa : target.getPathArguments()) {
115 log.info("PathArgument {}", pa);
118 eventlogBuilder.setNodeId(netconfAccessor.getNodeId().getValue());
119 eventlogBuilder.setNewValue(String.valueOf(edit.getOperation()));
120 databaseService.writeEventLog(eventlogBuilder.build());
122 log.info("onNetconfConfigChange (2) {}", sb);
123 this.notificationServiceService.sendNotification(notification, this.netconfAccessor.getNodeId().getValue(),
124 NetconfConfigChange.QNAME, NetconfTimeStampImpl.getConverter().getTimeStamp());
128 // end of public methods