/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.md.sal.binding.impl; import com.google.common.collect.ImmutableMap; import com.google.common.reflect.TypeToken; import java.lang.reflect.Method; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.opendaylight.controller.md.sal.dom.api.DOMNotification; import org.opendaylight.controller.md.sal.dom.api.DOMNotificationListener; import org.opendaylight.mdsal.binding.dom.adapter.invoke.NotificationListenerInvoker; import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer; import org.opendaylight.mdsal.binding.spec.reflect.BindingReflections; import org.opendaylight.yangtools.yang.binding.Notification; import org.opendaylight.yangtools.yang.binding.NotificationListener; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.SchemaPath; @Deprecated class BindingDOMNotificationListenerAdapter implements DOMNotificationListener { private final BindingNormalizedNodeSerializer codec; private final NotificationListener delegate; private final Map invokers; BindingDOMNotificationListenerAdapter(final BindingNormalizedNodeSerializer codec, final NotificationListener delegate) { this.codec = codec; this.delegate = delegate; this.invokers = createInvokerMapFor(delegate.getClass()); } @Override public void onNotification(final DOMNotification notification) { final Notification baNotification = deserialize(notification); final QName notificationQName = notification.getType().getLastComponent(); getInvoker(notification.getType()).invokeNotification(delegate, notificationQName, baNotification); } private Notification deserialize(final DOMNotification notification) { if (notification instanceof LazySerializedDOMNotification) { return ((LazySerializedDOMNotification) notification).getBindingData(); } return codec.fromNormalizedNodeNotification(notification.getType(), notification.getBody()); } private NotificationListenerInvoker getInvoker(final SchemaPath type) { return invokers.get(type); } protected Set getSupportedNotifications() { return invokers.keySet(); } public static Map createInvokerMapFor( final Class implClz) { final Map builder = new HashMap<>(); for (final TypeToken ifaceToken : TypeToken.of(implClz).getTypes().interfaces()) { Class iface = ifaceToken.getRawType(); if (NotificationListener.class.isAssignableFrom(iface) && BindingReflections.isBindingClass(iface)) { @SuppressWarnings("unchecked") final Class listenerType = (Class) iface; final NotificationListenerInvoker invoker = NotificationListenerInvoker.from(listenerType); for (final SchemaPath path : getNotificationTypes(listenerType)) { builder.put(path, invoker); } } } return ImmutableMap.copyOf(builder); } private static Set getNotificationTypes(final Class type) { // TODO: Investigate possibility and performance impact if we cache this or expose // it from NotificationListenerInvoker final Set ret = new HashSet<>(); for (final Method method : type.getMethods()) { if (BindingReflections.isNotificationCallback(method)) { final Class notification = method.getParameterTypes()[0]; final QName name = BindingReflections.findQName(notification); ret.add(SchemaPath.create(true, name)); } } return ret; } }