X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FDelayedListenerRegistration.java;h=18d23aa0cd95fb2270d46ebd3a24b30814bbf959;hp=8eb595df03856decab3259ddfaa13a9fc96fd670;hb=ec870dee9bacb971f11bc747b69e84ac37f5d746;hpb=a54ec60368110d22794602343c934902f6833c65 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DelayedListenerRegistration.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DelayedListenerRegistration.java index 8eb595df03..18d23aa0cd 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DelayedListenerRegistration.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DelayedListenerRegistration.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015 Brocade Communications 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, @@ -7,49 +7,48 @@ */ package org.opendaylight.controller.cluster.datastore; -import org.opendaylight.controller.cluster.datastore.messages.RegisterChangeListener; -import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeListener; +import akka.actor.ActorRef; +import java.util.EventListener; +import javax.annotation.concurrent.GuardedBy; +import org.opendaylight.controller.cluster.datastore.messages.ListenerRegistrationMessage; import org.opendaylight.yangtools.concepts.ListenerRegistration; -import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; -import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; -final class DelayedListenerRegistration implements - ListenerRegistration>> { +abstract class DelayedListenerRegistration + implements ListenerRegistration { + private final M registrationMessage; + private final ActorRef registrationActor; - private volatile boolean closed; + @GuardedBy("this") + private boolean closed; - private final RegisterChangeListener registerChangeListener; - - private volatile ListenerRegistration>> delegate; - - DelayedListenerRegistration(final RegisterChangeListener registerChangeListener) { - this.registerChangeListener = registerChangeListener; - } - - void setDelegate( final ListenerRegistration>> registration) { - this.delegate = registration; + protected DelayedListenerRegistration(M registrationMessage, ActorRef registrationActor) { + this.registrationMessage = registrationMessage; + this.registrationActor = registrationActor; } - boolean isClosed() { - return closed; + M getRegistrationMessage() { + return registrationMessage; } - RegisterChangeListener getRegisterChangeListener() { - return registerChangeListener; + synchronized void createDelegate(final AbstractDataListenerSupport support) { + if (!closed) { + support.doRegistration(registrationMessage, registrationActor); + } } @Override - public AsyncDataChangeListener> getInstance() { - return delegate != null ? delegate.getInstance() : null; + public L getInstance() { + // ObjectRegistration annotates this method as @Nonnull but we could return null if the delegate is not set yet. + // In reality, we do not and should not ever call this method on DelayedListenerRegistration instances anyway + // but, since we have to provide an implementation to satisfy the interface, we throw + // UnsupportedOperationException to honor the API contract of not returning null and to avoid a FindBugs error + // for possibly returning null. + throw new UnsupportedOperationException( + "getInstance should not be called on this instance since it could be null"); } @Override - public void close() { + public synchronized void close() { closed = true; - if(delegate != null) { - delegate.close(); - } } -} \ No newline at end of file +}