Updated registration of Binding Aware notification listeners. 73/73/1
authorTony Tkacik <ttkacik@cisco.com>
Mon, 25 Mar 2013 15:50:06 +0000 (16:50 +0100)
committerTony Tkacik <ttkacik@cisco.com>
Mon, 25 Mar 2013 15:50:06 +0000 (16:50 +0100)
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/BindingBrokerImpl.java
opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/BrokerUtils.java [new file with mode: 0644]
opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationInvoker.java
opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationModule.java
opendaylight/sal/yang-prototype/sal/sal-core-api/src/main/java/org/opendaylight/controller/sal/core/api/notify/NotificationProviderService.java

index 4cc23b4bbf6e0e492587c8847ad62b843ae7b72f..2209f84cac7ca86b29da96487dd1b45329daca5d 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2013 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.HashMap;
diff --git a/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/BrokerUtils.java b/opendaylight/sal/yang-prototype/sal/sal-binding-broker-impl/src/main/java/org/opendaylight/controller/sal/binding/impl/BrokerUtils.java
new file mode 100644 (file)
index 0000000..e174559
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2013 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.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+public class BrokerUtils {
+    private BrokerUtils() {
+        
+    }
+    
+    
+    public static <K,V> void addToMap(Map<Class<? extends K>, List<V>> map, Class<? extends K> key, V value) {
+        List<V> list = map.get(key);
+        if (list == null) {
+            list = new ArrayList<V>();
+            map.put(key, list);
+        }
+        list.add(value);
+    }
+
+    public static <K,V> void removeFromMap(Map<Class<? extends K>, List<V>> map, Class<? extends K> key,
+            V value) {
+        List<V> list = map.get(key);
+        if (list == null) {
+            return;
+        }
+        list.remove(value);
+        if (list.isEmpty()) {
+            map.remove(key);
+        }
+    }
+}
index 810a0cbd3031fd70b0f5c2947c33865c8051b20a..640089affb49b5b4d207e554a017dfe59d7c58ee 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2013 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 org.opendaylight.controller.sal.binding.spi.MappingProvider.MappingExtension;
index 189c58555fbb562337335bac30a77c469b0b2461..f029a2f9f4bdcb3ec872338b0a56323c5511dd43 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * Copyright (c) 2013 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.Collection;
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
@@ -17,7 +23,7 @@ import org.opendaylight.controller.sal.binding.spi.SALBindingModule;
 import org.opendaylight.controller.sal.binding.spi.Mapper;
 import org.opendaylight.controller.sal.binding.spi.MappingProvider;
 import org.opendaylight.controller.sal.binding.spi.MappingProvider.MappingExtensionFactory;
-import org.opendaylight.controller.sal.core.api.Provider;
+
 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
 import org.opendaylight.controller.yang.binding.DataObject;
 import org.opendaylight.controller.yang.binding.Notification;
@@ -35,7 +41,10 @@ public class NotificationModule implements SALBindingModule {
     private MappingProvider mappingProvider;
 
     private Map<Class<? extends Notification>, List<NotificationListener>> listeners = new HashMap<Class<? extends Notification>, List<NotificationListener>>();
-    private static Logger log = LoggerFactory.getLogger(NotificationModule.class);
+    private Set<QName> biNotifications = new HashSet<QName>();
+    private static final Logger log = LoggerFactory
+            .getLogger(NotificationModule.class);
+    private final BindingIndependentListener biListener = new BindingIndependentListener();
 
     @Override
     public Set<Class<? extends BindingAwareService>> getProvidedServices() {
@@ -150,6 +159,31 @@ public class NotificationModule implements SALBindingModule {
         biNotifyService.sendNotification(domNotification);
     }
 
+    private void addBAListener(Class<? extends Notification> notificationType,
+            NotificationListener listener) {
+
+        BrokerUtils.addToMap(listeners, notificationType, listener);
+        Mapper<? extends Notification> mapper = mappingProvider
+                .getMapper(notificationType);
+        QName biType = mapper.getQName();
+        if (false == biNotifications.contains(biType)) {
+            // The listener is not registered for binding independent
+            // notification
+            biNotifications.add(biType);
+
+            if (biNotifyService != null) {
+                biNotifyService.addNotificationListener(biType, biListener);
+            }
+        }
+
+    }
+
+    private void removeBAListener(
+            Class<? extends Notification> notificationType,
+            NotificationListener listener) {
+        BrokerUtils.removeFromMap(listeners, notificationType, listener);
+    }
+
     private class NotificationSession implements NotificationService {
         private final ConsumerSession session;
 
@@ -163,16 +197,20 @@ public class NotificationModule implements SALBindingModule {
         public void addNotificationListener(
                 Class<? extends Notification> notificationType,
                 NotificationListener listener) {
-            // TODO Implement this method
-            throw new UnsupportedOperationException("Not implemented");
+
+            NotificationModule.this.addBAListener(notificationType, listener);
+            BrokerUtils.addToMap(sessionListeners, notificationType, listener);
+
         }
 
         @Override
         public void removeNotificationListener(
                 Class<? extends Notification> notificationType,
                 NotificationListener listener) {
-            // TODO Implement this method
-            throw new UnsupportedOperationException("Not implemented");
+            BrokerUtils.removeFromMap(sessionListeners, notificationType,
+                    listener);
+            NotificationModule.this
+                    .removeBAListener(notificationType, listener);
         }
 
     }
@@ -190,41 +228,47 @@ public class NotificationModule implements SALBindingModule {
         }
 
     }
-    
-    private class BindingIndependentListener implements org.opendaylight.controller.sal.core.api.notify.NotificationListener {
+
+    private class BindingIndependentListener
+            implements
+            org.opendaylight.controller.sal.core.api.notify.NotificationListener {
 
         @Override
         public Set<QName> getSupportedNotifications() {
-            return Collections.emptySet();
+            return biNotifications;
         }
 
         @Override
         public void onNotification(CompositeNode notification) {
-            NotificationModule.this.onBindingIndependentNotification(notification);
+            NotificationModule.this
+                    .onBindingIndependentNotification(notification);
         }
-        
+
     }
 
     private void onBindingIndependentNotification(CompositeNode biNotification) {
         QName biType = biNotification.getNodeType();
-        
+
         Mapper<DataObject> mapper = mappingProvider.getMapper(biType);
-        if(mapper == null) {
+        if (mapper == null) {
             log.info("Received notification does not have a binding defined.");
             return;
         }
         Class<DataObject> type = mapper.getDataObjectClass();
-        
+
         // We check if the received QName / type is really Notification
-        if(Notification.class.isAssignableFrom(type)) {
-            Notification notification = (Notification) mapper.objectFromDom(biNotification);
+        if (Notification.class.isAssignableFrom(type)) {
+            Notification notification = (Notification) mapper
+                    .objectFromDom(biNotification);
             notifyBindingAware(notification);
         } else {
-            // The generated type for this QName does not inherits from notification
-            // something went wrong - generated APIs and/or provider sending notification
+            // The generated type for this QName does not inherits from
+            // notification something went wrong - generated APIs and/or 
+            // provider sending notification
             // which was incorectly described in the YANG schema.
-            log.error("Received notification "+  biType +" is not binded as notification");
+            log.error("Received notification " + biType
+                    + " is not binded as notification");
         }
-        
+
     }
 }
index 9367645d4cb7c1b68c2777c033d2a528a8b1742e..6f7e740cdf6fd5300179b84091e3fddcb57d1c20 100644 (file)
@@ -8,7 +8,6 @@
 package org.opendaylight.controller.sal.core.api.notify;\r
 \r
 import org.opendaylight.controller.sal.core.api.Broker;\r
-import org.opendaylight.controller.sal.core.api.BrokerService;\r
 import org.opendaylight.controller.sal.core.api.Provider;\r
 import org.opendaylight.controller.yang.data.api.CompositeNode;\r
 \r
@@ -30,7 +29,7 @@ import org.opendaylight.controller.yang.data.api.CompositeNode;
  * \r
  * \r
  */\r
-public interface NotificationProviderService extends BrokerService {\r
+public interface NotificationProviderService extends NotificationService {\r
 \r
     /**\r
      * Publishes a notification.\r