2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.md.sal.dom.broker.impl;
10 import com.google.common.base.Preconditions;
11 import com.google.common.util.concurrent.ListenableFuture;
12 import com.google.common.util.concurrent.SettableFuture;
13 import com.lmax.disruptor.EventFactory;
14 import java.util.Collection;
15 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
16 import org.opendaylight.controller.md.sal.dom.api.DOMNotificationListener;
17 import org.opendaylight.yangtools.concepts.ListenerRegistration;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
22 * A single notification event in the disruptor ringbuffer. These objects are reused,
23 * so they do have mutable state.
25 final class DOMNotificationRouterEvent {
26 private static final Logger LOG = LoggerFactory.getLogger(DOMNotificationRouterEvent.class);
27 public static final EventFactory<DOMNotificationRouterEvent> FACTORY = DOMNotificationRouterEvent::new;
29 private Collection<ListenerRegistration<? extends DOMNotificationListener>> subscribers;
30 private DOMNotification notification;
31 private SettableFuture<Void> future;
33 private DOMNotificationRouterEvent() {
34 // Hidden on purpose, initialized in initialize()
37 @SuppressWarnings("checkstyle:hiddenField")
38 ListenableFuture<Void> initialize(final DOMNotification notification,
39 final Collection<ListenerRegistration<? extends DOMNotificationListener>>
41 this.notification = Preconditions.checkNotNull(notification);
42 this.subscribers = Preconditions.checkNotNull(subscribers);
43 this.future = SettableFuture.create();
47 void deliverNotification() {
48 LOG.trace("Start delivery of notification {}", notification);
49 for (ListenerRegistration<? extends DOMNotificationListener> r : subscribers) {
50 final DOMNotificationListener listener = r.getInstance();
51 if (listener != null) {
52 LOG.trace("Notifying listener {}", listener);
53 listener.onNotification(notification);
54 LOG.trace("Listener notification completed");
57 LOG.trace("Delivery completed");