X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fclient%2FNetconfClientSessionNegotiator.java;h=bbd17ce7bac5f18fc8c90b4c209da9da8d85542a;hb=60a15ce528aa431e60e14e6f414486e35fcdb1c6;hp=0b456f447f8ce33be11239ec8901dcffe0a041aa;hpb=d67b5d05f228009204ea6e190a4011aad9f8aa94;p=netconf.git diff --git a/netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java b/netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java index 0b456f447f..bbd17ce7ba 100644 --- a/netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java +++ b/netconf/netconf-client/src/main/java/org/opendaylight/netconf/client/NetconfClientSessionNegotiator.java @@ -5,7 +5,6 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.netconf.client; import com.google.common.base.Strings; @@ -13,8 +12,6 @@ import com.google.common.collect.ImmutableSet; import com.google.common.collect.Interner; import com.google.common.collect.Interners; import io.netty.channel.Channel; -import io.netty.channel.ChannelFuture; -import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.util.Timer; @@ -22,12 +19,12 @@ import io.netty.util.concurrent.Promise; import java.util.Set; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpression; -import org.opendaylight.controller.config.util.xml.XmlUtil; import org.opendaylight.netconf.api.NetconfClientSessionPreferences; import org.opendaylight.netconf.api.NetconfDocumentedException; import org.opendaylight.netconf.api.NetconfMessage; import org.opendaylight.netconf.api.messages.NetconfHelloMessage; import org.opendaylight.netconf.api.xml.XmlNetconfConstants; +import org.opendaylight.netconf.api.xml.XmlUtil; import org.opendaylight.netconf.nettyutil.AbstractChannelInitializer; import org.opendaylight.netconf.nettyutil.AbstractNetconfSessionNegotiator; import org.opendaylight.netconf.nettyutil.handler.exi.NetconfStartExiMessage; @@ -39,9 +36,9 @@ import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.NodeList; -public class NetconfClientSessionNegotiator extends - AbstractNetconfSessionNegotiator { +// Non-final for mocking +class NetconfClientSessionNegotiator + extends AbstractNetconfSessionNegotiator { private static final Logger LOG = LoggerFactory.getLogger(NetconfClientSessionNegotiator.class); private static final XPathExpression SESSION_ID_X_PATH = XMLNetconfUtil @@ -54,13 +51,13 @@ public class NetconfClientSessionNegotiator extends private static final Interner> INTERNER = Interners.newWeakInterner(); - protected NetconfClientSessionNegotiator(final NetconfClientSessionPreferences sessionPreferences, - final Promise promise, - final Channel channel, - final Timer timer, - final NetconfClientSessionListener sessionListener, - final long connectionTimeoutMillis) { - super(sessionPreferences, promise, channel, timer, sessionListener, connectionTimeoutMillis); + private final NetconfMessage startExi; + + NetconfClientSessionNegotiator(final NetconfClientSessionPreferences sessionPreferences, + final Promise promise, final Channel channel, final Timer timer, + final NetconfClientSessionListener sessionListener, final long connectionTimeoutMillis) { + super(sessionPreferences.getHelloMessage(), promise, channel, timer, sessionListener, connectionTimeoutMillis); + startExi = sessionPreferences.getStartExiMessage(); } @SuppressWarnings("checkstyle:IllegalCatch") @@ -71,7 +68,7 @@ public class NetconfClientSessionNegotiator extends try { startNegotiation(); } catch (final Exception e) { - LOG.warn("Unexpected negotiation failure", e); + LOG.warn("Unexpected negotiation failure on channel {}", channel, e); negotiationFailed(e); return; } @@ -81,10 +78,9 @@ public class NetconfClientSessionNegotiator extends // If exi should be used, try to initiate exi communication // Call negotiationSuccessFul after exi negotiation is finished successfully or not - if (shouldUseExi(netconfMessage)) { + if (startExi instanceof NetconfStartExiMessage && shouldUseExi(netconfMessage)) { LOG.debug("Netconf session {} should use exi.", session); - NetconfStartExiMessage startExiMessage = (NetconfStartExiMessage) sessionPreferences.getStartExiMessage(); - tryToInitiateExi(session, startExiMessage); + tryToInitiateExi(session, (NetconfStartExiMessage) startExi); } else { // Exi is not supported, release session immediately LOG.debug("Netconf session {} isn't capable of using exi.", session); @@ -102,23 +98,19 @@ public class NetconfClientSessionNegotiator extends ExiConfirmationInboundHandler.EXI_CONFIRMED_HANDLER, new ExiConfirmationInboundHandler(session, startExiMessage)); - session.sendMessage(startExiMessage).addListener(new ChannelFutureListener() { - @Override - public void operationComplete(final ChannelFuture channelFuture) { - if (!channelFuture.isSuccess()) { - LOG.warn("Failed to send start-exi message {} on session {}", startExiMessage, this, - channelFuture.cause()); - channel.pipeline().remove(ExiConfirmationInboundHandler.EXI_CONFIRMED_HANDLER); - } else { - LOG.trace("Start-exi message {} sent to socket on session {}", startExiMessage, this); - } + session.sendMessage(startExiMessage).addListener(channelFuture -> { + if (!channelFuture.isSuccess()) { + LOG.warn("Failed to send start-exi message {} on session {}", startExiMessage, session, + channelFuture.cause()); + channel.pipeline().remove(ExiConfirmationInboundHandler.EXI_CONFIRMED_HANDLER); + } else { + LOG.trace("Start-exi message {} sent to socket on session {}", startExiMessage, session); } }); } private boolean shouldUseExi(final NetconfHelloMessage helloMsg) { - return containsExi10Capability(helloMsg.getDocument()) - && containsExi10Capability(sessionPreferences.getHelloMessage().getDocument()); + return containsExi10Capability(helloMsg.getDocument()) && containsExi10Capability(localHello().getDocument()); } private static boolean containsExi10Capability(final Document doc) { @@ -141,7 +133,7 @@ public class NetconfClientSessionNegotiator extends } } - return Long.valueOf(textContent); + return Long.parseLong(textContent); } private static String getSessionIdWithXPath(final Document doc, final XPathExpression sessionIdXPath) { @@ -151,7 +143,7 @@ public class NetconfClientSessionNegotiator extends @Override protected NetconfClientSession getSession(final NetconfClientSessionListener sessionListener, final Channel channel, - final NetconfHelloMessage message) throws NetconfDocumentedException { + final NetconfHelloMessage message) { final long sessionId = extractSessionId(message.getDocument()); // Copy here is important: it disconnects the strings from the document