/* * 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.pcep.impl; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandler.Sharable; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.MessageToByteEncoder; import org.opendaylight.protocol.pcep.spi.MessageRegistry; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.base.Preconditions; /** * */ @Sharable public final class PCEPMessageToByteEncoder extends MessageToByteEncoder { private static final Logger LOG = LoggerFactory.getLogger(PCEPMessageToByteEncoder.class); private final MessageRegistry registry; public PCEPMessageToByteEncoder(final MessageRegistry registry) { this.registry = Preconditions.checkNotNull(registry); } @Override protected void encode(final ChannelHandlerContext ctx, final Message msg, final ByteBuf out) { Preconditions.checkNotNull(msg); this.registry.serializeMessage(msg, out); LOG.debug("Encoded : {}", msg); } }