X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2FAbstractNetconfSessionNegotiator.java;h=a89a0561e0c7d647f71671b3a173b354cccc6c1c;hb=13989ad519493c007b91c002cf55136536ea535e;hp=171d8d2cdff1b69d6337dc7ff5f3e6aeddcc6ca1;hpb=5314b2909e2122a211741372dd6514c09bdd393a;p=netconf.git diff --git a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/AbstractNetconfSessionNegotiator.java b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/AbstractNetconfSessionNegotiator.java index 171d8d2cdf..a89a0561e0 100644 --- a/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/AbstractNetconfSessionNegotiator.java +++ b/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/AbstractNetconfSessionNegotiator.java @@ -10,20 +10,17 @@ package org.opendaylight.netconf.nettyutil; import static com.google.common.base.Preconditions.checkState; import static java.util.Objects.requireNonNull; -import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import io.netty.channel.Channel; -import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelHandler; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.handler.ssl.SslHandler; import io.netty.util.Timeout; import io.netty.util.Timer; -import io.netty.util.TimerTask; -import io.netty.util.concurrent.GenericFutureListener; import io.netty.util.concurrent.Promise; import java.util.Optional; import java.util.concurrent.TimeUnit; +import org.checkerframework.checker.lock.qual.GuardedBy; import org.opendaylight.netconf.api.NetconfDocumentedException; import org.opendaylight.netconf.api.NetconfMessage; import org.opendaylight.netconf.api.NetconfSessionListener; @@ -44,6 +41,12 @@ import org.w3c.dom.NodeList; public abstract class AbstractNetconfSessionNegotiator

, L extends NetconfSessionListener> extends ChannelInboundHandlerAdapter implements NetconfSessionNegotiator { + /** + * Possible states for Finite State Machine. + */ + protected enum State { + IDLE, OPEN_WAIT, FAILED, ESTABLISHED + } private static final Logger LOG = LoggerFactory.getLogger(AbstractNetconfSessionNegotiator.class); @@ -52,20 +55,15 @@ public abstract class AbstractNetconfSessionNegotiator

promise; private final L sessionListener; - private Timeout timeout; + private final Timer timer; - /** - * Possible states for Finite State Machine. - */ - protected enum State { - IDLE, OPEN_WAIT, FAILED, ESTABLISHED - } + private Timeout timeoutTask; + @GuardedBy("this") private State state = State.IDLE; - private final Timer timer; - private final long connectionTimeoutMillis; protected AbstractNetconfSessionNegotiator(final P sessionPreferences, final Promise promise, final Channel channel, final Timer timer, @@ -104,7 +102,7 @@ public abstract class AbstractNetconfSessionNegotiator

) future -> { - if (future.isSuccess()) { - LOG.debug("Channel {} closed: success", future.channel()); - } else { - LOG.warn("Channel {} closed: fail", future.channel()); - } - }); - } - } else if (channel.isOpen()) { - channel.pipeline().remove(NAME_OF_EXCEPTION_HANDLER); - } - } - } + timeoutTask = this.timer.newTimeout(this::timeoutExpired, connectionTimeoutMillis, TimeUnit.MILLISECONDS); + } - private boolean isPromiseFinished() { - return promise.isDone() || promise.isCancelled(); + private synchronized void timeoutExpired(final Timeout timeout) { + if (state != State.ESTABLISHED) { + LOG.debug("Connection timeout after {}, session backed by channel {} is in state {}", timeout, channel, + state); + + // Do not fail negotiation if promise is done or canceled + // It would result in setting result of the promise second time and that throws exception + if (!promise.isDone() && !promise.isCancelled()) { + LOG.warn("Netconf session backed by channel {} was not established after {}", channel, + connectionTimeoutMillis); + changeState(State.FAILED); + + channel.close().addListener(future -> { + if (future.isSuccess()) { + LOG.debug("Channel {} closed: success", channel); + } else { + LOG.warn("Channel {} closed: fail", channel); + } + }); } - - }, connectionTimeoutMillis, TimeUnit.MILLISECONDS); + } else if (channel.isOpen()) { + channel.pipeline().remove(NAME_OF_EXCEPTION_HANDLER); + } } - @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD", - justification = "https://github.com/spotbugs/spotbugs/issues/811") private void cancelTimeout() { - if (timeout != null) { - timeout.cancel(); + if (timeoutTask != null) { + timeoutTask.cancel(); } } @@ -275,6 +261,7 @@ public abstract class AbstractNetconfSessionNegotiator