/** * Copyright (c) 2014 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.sal.binding.impl; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.Set; import org.opendaylight.yangtools.yang.binding.Notification; import com.google.common.base.Predicate; import com.google.common.collect.ImmutableMultimap; import com.google.common.collect.Iterables; import com.google.common.collect.Multimap; /** * An immutable view of the current generation of listeners. */ final class ListenerMapGeneration { private final Multimap, NotificationListenerRegistration> listeners; ListenerMapGeneration() { listeners = ImmutableMultimap.of(); } ListenerMapGeneration(final Multimap, NotificationListenerRegistration> listeners) { this.listeners = ImmutableMultimap.copyOf(listeners); } /** * Current listeners. Exposed for creating the next generation. * * @return Current type-to-listener map. */ Multimap, NotificationListenerRegistration> getListeners() { return listeners; } private static Iterable> getNotificationTypes(final Notification notification) { final Class[] ifaces = notification.getClass().getInterfaces(); return Iterables.filter(Arrays.asList(ifaces), new Predicate>() { @Override public boolean apply(final Class input) { if (Notification.class.equals(input)) { return false; } return Notification.class.isAssignableFrom(input); } }); } /** * Look up the listeners which need to see this notification delivered. * * @param notification Notification object * @return Iterable of listeners, may be null * * FIXME: improve such that it always returns non-null. */ public Iterable> listenersFor(final Notification notification) { final Set> ret = new HashSet<>(); for (final Class type : getNotificationTypes(notification)) { final Collection> l = listeners.get((Class) type); if (l != null) { ret.addAll(l); } } return ret; } public Iterable> getKnownTypes() { return listeners.keySet(); } }