Merge "Untangle the XML/Hello message decoders"
[controller.git] / opendaylight / netconf / netconf-util / src / main / java / org / opendaylight / controller / netconf / util / handler / NetconfXMLToMessageDecoder.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.util.handler;
9
10 import io.netty.buffer.ByteBuf;
11 import io.netty.buffer.ByteBufInputStream;
12 import io.netty.buffer.ByteBufUtil;
13 import io.netty.channel.ChannelHandlerContext;
14 import io.netty.handler.codec.ByteToMessageDecoder;
15
16 import java.util.List;
17
18 import org.opendaylight.controller.netconf.api.NetconfMessage;
19 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 import com.google.common.annotations.VisibleForTesting;
24
25 public final class NetconfXMLToMessageDecoder extends ByteToMessageDecoder {
26     private static final Logger LOG = LoggerFactory.getLogger(NetconfXMLToMessageDecoder.class);
27
28     @Override
29     @VisibleForTesting
30     public void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
31         if (in.readableBytes() != 0) {
32             LOG.trace("Received to decode: {}", ByteBufUtil.hexDump(in));
33             out.add(new NetconfMessage(XmlUtil.readXmlToDocument(new ByteBufInputStream(in))));
34         } else {
35             LOG.debug("No more content in incoming buffer.");
36         }
37     }
38 }