X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fmessages%2FNetconfMessageFactory.java;h=526708ab580238e34ba26a1c70a1d89289571ca6;hb=c541f7868e6e2d654b8080b5426bb12a39bddf11;hp=f7a2eb54cbb6117e62a804f76869b79fca9c1803;hpb=397cc9012f67596848019ca7874f3a303523b7e6;p=controller.git diff --git a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/messages/NetconfMessageFactory.java b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/messages/NetconfMessageFactory.java index f7a2eb54cb..526708ab58 100644 --- a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/messages/NetconfMessageFactory.java +++ b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/messages/NetconfMessageFactory.java @@ -8,11 +8,12 @@ package org.opendaylight.controller.netconf.util.messages; -import com.google.common.base.Charsets; -import com.google.common.base.Optional; -import io.netty.buffer.Unpooled; -import io.netty.channel.ChannelHandler; -import io.netty.handler.codec.DelimiterBasedFrameDecoder; +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.nio.ByteBuffer; +import java.util.Arrays; +import java.util.List; + import org.opendaylight.controller.netconf.api.NetconfDeserializerException; import org.opendaylight.controller.netconf.api.NetconfMessage; import org.opendaylight.controller.netconf.util.xml.XmlUtil; @@ -26,11 +27,9 @@ import org.w3c.dom.Comment; import org.w3c.dom.Document; import org.xml.sax.SAXException; -import java.io.ByteArrayInputStream; -import java.io.IOException; -import java.nio.ByteBuffer; -import java.util.Arrays; -import java.util.List; +import com.google.common.base.Charsets; +import com.google.common.base.Optional; +import com.google.common.collect.Lists; /** * NetconfMessageFactory for (de)serializing DOM documents. @@ -39,14 +38,6 @@ public final class NetconfMessageFactory implements ProtocolMessageFactory clientId; public NetconfMessageFactory() { @@ -57,84 +48,90 @@ public final class NetconfMessageFactory implements ProtocolMessageFactory -1) { + byte[] additionalHeaderBytes = Arrays.copyOfRange(bytes, 0, endOfAuthHeader + 2); + additionalHeader = additionalHeaderToString(additionalHeaderBytes); bytes = Arrays.copyOfRange(bytes, endOfAuthHeader + 2, bytes.length); } } - NetconfMessage message = null; + NetconfMessage message; try { Document doc = XmlUtil.readXmlToDocument(new ByteArrayInputStream(bytes)); - message = new NetconfMessage(doc); + message = new NetconfMessage(doc, additionalHeader); } catch (final SAXException | IOException | IllegalStateException e) { throw new NetconfDeserializerException("Could not parse message from " + new String(bytes), e); } return message; } + private int getAdditionalHeaderEndIndex(byte[] bytes) { + for (String possibleEnd : Lists.newArrayList("]\n", "]\r\n")) { + int idx = ByteArray.findByteSequence(bytes, possibleEnd.getBytes(Charsets.UTF_8)); + + if (idx != -1) { + return idx; + } + } + + return -1; + } + + private boolean startsWithAdditionalHeader(byte[] bytes) { + List possibleStarts = Lists.newArrayList("[", "\r\n[", "\n["); + for (String possibleStart : possibleStarts) { + int i = 0; + for (byte b : possibleStart.getBytes(Charsets.UTF_8)) { + if(bytes[i]!=b) + break; + + return true; + } + } + + return false; + }; + + private void logMessage(byte[] bytes) { + String s = Charsets.UTF_8.decode(ByteBuffer.wrap(bytes)).toString(); + logger.debug("Parsing message \n{}", s); + } + + private String additionalHeaderToString(byte[] bytes) { + return Charsets.UTF_8.decode(ByteBuffer.wrap(bytes)).toString(); + } + @Override public byte[] put(NetconfMessage netconfMessage) { if (clientId.isPresent()) { Comment comment = netconfMessage.getDocument().createComment("clientId:" + clientId.get()); netconfMessage.getDocument().appendChild(comment); } - byte[] bytes = (this.framing == FramingMechanism.EOM) ? this.putEOM(netconfMessage) : this - .putChunked(netconfMessage); + ByteBuffer msgBytes; + if(netconfMessage.getAdditionalHeader().isPresent()) { + String header = netconfMessage.getAdditionalHeader().get(); + logger.trace("Header of netconf message parsed \n{}", header); + msgBytes = Charsets.UTF_8.encode(header + xmlToString(netconfMessage.getDocument())); + } else { + msgBytes = Charsets.UTF_8.encode(xmlToString(netconfMessage.getDocument())); + } String content = xmlToString(netconfMessage.getDocument()); logger.trace("Putting message \n{}", content); - return bytes; - } - - private byte[] putEOM(NetconfMessage msg) { - // create byte buffer from the String XML - // all Netconf messages are encoded using UTF-8 - final ByteBuffer msgBytes = Charsets.UTF_8.encode(xmlToString(msg.getDocument())); - final ByteBuffer result = ByteBuffer.allocate(msgBytes.limit() + endOfMessage.length); - result.put(msgBytes); - // put end of message - result.put(endOfMessage); - return result.array(); - } - - private byte[] putChunked(NetconfMessage msg) { - final ByteBuffer msgBytes = Charsets.UTF_8.encode(xmlToString(msg.getDocument())); - final NetconfMessageHeader h = new NetconfMessageHeader(); - if (msgBytes.limit() > MAX_CHUNK_SIZE) - logger.warn("Netconf message too long, should be split."); - h.setLength(msgBytes.limit()); - final byte[] headerBytes = h.toBytes(); - final ByteBuffer result = ByteBuffer.allocate(headerBytes.length + msgBytes.limit() + endOfChunk.length); - result.put(headerBytes); - result.put(msgBytes); - result.put(endOfChunk); - return result.array(); + byte[] b = new byte[msgBytes.limit()]; + msgBytes.get(b); + return b; } private String xmlToString(Document doc) { return XmlUtil.toString(doc, false); } - - /** - * For Hello message the framing is always EOM, but the framing mechanism - * may change. - * - * @param fm - * new framing mechanism - */ - public void setFramingMechanism(final FramingMechanism fm) { - logger.debug("Framing mechanism changed to {}", fm); - this.framing = fm; - } }