Merge "Use transaction chain in SalNodeWriter"
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / sal / NetconfDeviceNotificationService.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.sal.connect.netconf.sal;
10
11 import com.google.common.collect.HashMultimap;
12 import com.google.common.collect.Lists;
13 import com.google.common.collect.Multimap;
14 import java.util.Collection;
15 import javax.annotation.Nonnull;
16 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
17 import org.opendaylight.controller.md.sal.dom.api.DOMNotificationListener;
18 import org.opendaylight.controller.md.sal.dom.api.DOMNotificationService;
19 import org.opendaylight.yangtools.concepts.ListenerRegistration;
20 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
21
22 public class NetconfDeviceNotificationService implements DOMNotificationService {
23
24     private final Multimap<SchemaPath, DOMNotificationListener> listeners = HashMultimap.create();
25
26     // Notification publish is very simple and hijacks the thread of the caller
27     // TODO shouldnt we reuse the implementation for notification router from sal-broker-impl ?
28     public synchronized void publishNotification(final DOMNotification notification) {
29         for (final DOMNotificationListener domNotificationListener : listeners.get(notification.getType())) {
30             domNotificationListener.onNotification(notification);
31         }
32     }
33
34     @Override
35     public synchronized <T extends DOMNotificationListener> ListenerRegistration<T> registerNotificationListener(@Nonnull final T listener, @Nonnull final Collection<SchemaPath> types) {
36         for (final SchemaPath type : types) {
37             listeners.put(type, listener);
38         }
39
40         return new ListenerRegistration<T>() {
41             @Override
42             public void close() {
43                 for (final SchemaPath type : types) {
44                     listeners.remove(type, listener);
45                 }
46             }
47
48             @Override
49             public T getInstance() {
50                 return listener;
51             }
52         };
53     }
54
55     @Override
56     public synchronized <T extends DOMNotificationListener> ListenerRegistration<T> registerNotificationListener(@Nonnull final T listener, final SchemaPath... types) {
57         return registerNotificationListener(listener, Lists.newArrayList(types));
58     }
59 }