58c35513e2cf83f5c4d885e92cbf37d3c9c6145c
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPMessageToByteEncoder.java
1 /*
2  * Copyright (c) 2013 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.protocol.bgp.rib.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import io.netty.buffer.ByteBuf;
13 import io.netty.buffer.ByteBufUtil;
14 import io.netty.channel.ChannelHandler.Sharable;
15 import io.netty.channel.ChannelHandlerContext;
16 import io.netty.handler.codec.MessageToByteEncoder;
17 import org.opendaylight.protocol.bgp.parser.spi.MessageRegistry;
18 import org.opendaylight.yangtools.yang.binding.Notification;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 /**
23  *
24  */
25 @Sharable
26 final class BGPMessageToByteEncoder extends MessageToByteEncoder<Notification> {
27     private static final Logger LOG = LoggerFactory.getLogger(BGPMessageToByteEncoder.class);
28     private final MessageRegistry registry;
29
30     BGPMessageToByteEncoder(final MessageRegistry registry) {
31         this.registry = requireNonNull(registry);
32     }
33
34     @Override
35     protected void encode(final ChannelHandlerContext ctx, final Notification msg, final ByteBuf out) {
36         LOG.trace("Encoding message: {}", msg);
37         this.registry.serializeMessage(msg, out);
38         if (LOG.isTraceEnabled()) {
39             LOG.trace("Encoded message: {}", ByteBufUtil.hexDump(out));
40         }
41         LOG.debug("Message sent to output: {}", msg);
42     }
43 }