Fixed minor sonar warnings.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / PCEPMessageToByteEncoder.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.pcep.impl;
9
10 import com.google.common.base.Preconditions;
11 import io.netty.buffer.ByteBuf;
12 import io.netty.buffer.ByteBufUtil;
13 import io.netty.channel.ChannelHandler.Sharable;
14 import io.netty.channel.ChannelHandlerContext;
15 import io.netty.handler.codec.MessageToByteEncoder;
16 import org.opendaylight.protocol.pcep.spi.MessageRegistry;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 /**
22  *
23  */
24 @Sharable
25 public final class PCEPMessageToByteEncoder extends MessageToByteEncoder<Message> {
26
27     private static final Logger LOG = LoggerFactory.getLogger(PCEPMessageToByteEncoder.class);
28
29     private final MessageRegistry registry;
30
31     public PCEPMessageToByteEncoder(final MessageRegistry registry) {
32         this.registry = Preconditions.checkNotNull(registry);
33     }
34
35     @Override
36     protected void encode(final ChannelHandlerContext ctx, final Message msg, final ByteBuf out) {
37         Preconditions.checkNotNull(msg);
38         this.registry.serializeMessage(msg, out);
39         if (LOG.isTraceEnabled()) {
40             LOG.trace("Encoded : {}", ByteBufUtil.hexDump(out));
41         }
42     }
43 }