89f76f39e5eafed6526388e9305a129d97bf7517
[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.io.IOException;
17 import java.util.List;
18
19 import org.opendaylight.controller.netconf.api.NetconfMessage;
20 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23
24 import com.google.common.annotations.VisibleForTesting;
25 import org.xml.sax.SAXException;
26
27 public final class NetconfXMLToMessageDecoder extends ByteToMessageDecoder {
28     private static final Logger LOG = LoggerFactory.getLogger(NetconfXMLToMessageDecoder.class);
29
30     @Override
31     @VisibleForTesting
32     public void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws IOException, SAXException {
33         if (in.readableBytes() != 0) {
34             LOG.trace("Received to decode: {}", ByteBufUtil.hexDump(in));
35             out.add(new NetconfMessage(XmlUtil.readXmlToDocument(new ByteBufInputStream(in))));
36         } else {
37             LOG.debug("No more content in incoming buffer.");
38         }
39     }
40 }