BUG-612 : switched PCEP RRO subobject serializers to ByteBuf
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / TlvUtil.java
1 /*
2  * Copyright (c) 2014 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.spi;
9
10 import io.netty.buffer.ByteBuf;
11
12 public final class TlvUtil {
13
14     private static final int HEADER_SIZE = 4;
15
16     protected static final int PADDED_TO = 4;
17
18     private TlvUtil() {
19         throw new UnsupportedOperationException("Utility class should not be instantiated");
20     }
21
22     public static void formatTlv(final int type,final ByteBuf body, final ByteBuf out) {
23         out.writeShort(type);
24         out.writeShort(body.writerIndex());
25         out.writeBytes(body);
26         out.writeZero(AbstractObjectWithTlvsParser.getPadding(HEADER_SIZE + body.writerIndex(), PADDED_TO));
27     }
28 }