org.opendaylight.protocol.bgp.rib.impl.BGPMessageToByteEncoder.java Source code

Java tutorial

Introduction

Here is the source code for org.opendaylight.protocol.bgp.rib.impl.BGPMessageToByteEncoder.java

Source

/*
 * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.protocol.bgp.rib.impl;

import com.google.common.base.Preconditions;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.channel.ChannelHandler.Sharable;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
import org.opendaylight.protocol.bgp.parser.spi.MessageRegistry;
import org.opendaylight.yangtools.yang.binding.Notification;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 *
 */
@Sharable
final class BGPMessageToByteEncoder extends MessageToByteEncoder<Notification> {
    private static final Logger LOG = LoggerFactory.getLogger(BGPMessageToByteEncoder.class);
    private final MessageRegistry registry;

    BGPMessageToByteEncoder(final MessageRegistry registry) {
        this.registry = Preconditions.checkNotNull(registry);
    }

    @Override
    protected void encode(final ChannelHandlerContext ctx, final Notification msg, final ByteBuf out) {
        LOG.trace("Encoding message: {}", msg);
        this.registry.serializeMessage(msg, out);
        if (LOG.isTraceEnabled()) {
            LOG.trace("Encoded message: {}", ByteBufUtil.hexDump(out));
        }
        LOG.debug("Message sent to output: {}", msg);
    }
}