X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fclient%2FTransmitQueue.java;h=6f283f549cbdbdf50c75d99397fd650a2b709897;hb=b5db7d0971de9d84289bc4e46ed7aad1f014a41a;hp=28902d28ba2142f59af6dbc055a4933c2eb76b3a;hpb=28551609a31799a43d3017ba0681e198f5136d70;p=controller.git diff --git a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/TransmitQueue.java b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/TransmitQueue.java index 28902d28ba..6f283f549c 100644 --- a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/TransmitQueue.java +++ b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/TransmitQueue.java @@ -11,9 +11,9 @@ import akka.actor.ActorRef; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; import com.google.common.base.Verify; -import com.google.common.collect.Iterables; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import java.util.ArrayDeque; +import java.util.Collection; import java.util.Deque; import java.util.Iterator; import java.util.Optional; @@ -106,8 +106,20 @@ abstract class TransmitQueue { tracker = new AveragingProgressTracker(targetDepth); } - final Iterable asIterable() { - return Iterables.concat(inflight, pending); + /** + * Drain the contents of the connection into a list. This will leave the queue empty and allow further entries + * to be added to it during replay. When we set the successor all entries enqueued between when this methods + * returns and the successor is set will be replayed to the successor. + * + * @return Collection of entries present in the queue. + */ + final Collection drain() { + final Collection ret = new ArrayDeque<>(inflight.size() + pending.size()); + ret.addAll(inflight); + ret.addAll(pending); + inflight.clear(); + pending.clear(); + return ret; } final long ticksStalling(final long now) { @@ -162,7 +174,7 @@ abstract class TransmitQueue { } private void transmitEntry(final ConnectionEntry entry, final long now) { - LOG.debug("Queue {} transmitting entry {}", entry); + LOG.debug("Queue {} transmitting entry {}", this, entry); // We are not thread-safe and are supposed to be externally-guarded, // hence send-before-record should be fine. // This needs to be revisited if the external guards are lowered. @@ -176,6 +188,7 @@ abstract class TransmitQueue { */ final long enqueue(final ConnectionEntry entry, final long now) { if (successor != null) { + // This call will pay the enqueuing price, hence the caller does not have to successor.forwardEntry(entry, now); return 0; } @@ -232,13 +245,32 @@ abstract class TransmitQueue { poisonQueue(pending, cause); } - final void setForwarder(final ReconnectForwarder forwarder) { - Verify.verify(successor == null, "Successor {} already set on connection {}", successor, this); - Verify.verify(inflight.isEmpty(), "In-flight requests after replay: %s", inflight); - Verify.verify(pending.isEmpty(), "Pending requests after replay: %s", pending); - + final void setForwarder(final ReconnectForwarder forwarder, final long now) { + Verify.verify(successor == null, "Successor %s already set on connection %s", successor, this); successor = Preconditions.checkNotNull(forwarder); - LOG.debug("Connection {} superseded by {}", this, successor); + LOG.debug("Connection {} superseded by {}, splicing queue", this, successor); + + /* + * We need to account for entries which have been added between the time drain() was called and this method + * is invoked. Since the old connection is visible during replay and some entries may have completed on the + * replay thread, there was an avenue for this to happen. + */ + int count = 0; + ConnectionEntry entry = inflight.poll(); + while (entry != null) { + successor.replayEntry(entry, now); + entry = inflight.poll(); + count++; + } + + entry = pending.poll(); + while (entry != null) { + successor.replayEntry(entry, now); + entry = pending.poll(); + count++; + } + + LOG.debug("Connection {} queue spliced {} messages", this, count); } final void remove(final long now) {