Remove reliance on deprecated classes in BGP components
[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 io.netty.buffer.ByteBuf;
11 import io.netty.channel.ChannelHandler.Sharable;
12 import io.netty.channel.ChannelHandlerContext;
13 import io.netty.handler.codec.MessageToByteEncoder;
14
15 import org.opendaylight.protocol.bgp.parser.BGPMessageFactory;
16 import org.opendaylight.yangtools.yang.binding.Notification;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19
20 import com.google.common.base.Preconditions;
21
22 /**
23  *
24  */
25 @Sharable
26 final class BGPMessageToByteEncoder extends MessageToByteEncoder<Notification> {
27         private final static Logger LOG = LoggerFactory.getLogger(BGPMessageToByteEncoder.class);
28         private final BGPMessageFactory factory;
29
30         BGPMessageToByteEncoder(final BGPMessageFactory factory) {
31                 this.factory = Preconditions.checkNotNull(factory);
32         }
33
34         @Override
35         protected void encode(final ChannelHandlerContext ctx, final Notification msg, final ByteBuf out) throws Exception {
36                 LOG.debug("Sent to encode : {}", msg);
37                 out.writeBytes(this.factory.put(msg));
38         }
39 }