Add new revision for pcep types model
[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     public static final int HEADER_SIZE = 4;
15
16     public static final int PADDED_TO = 4;
17
18     private TlvUtil() {
19         throw new UnsupportedOperationException();
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(getPadding(HEADER_SIZE + body.writerIndex(), PADDED_TO));
27     }
28
29     public static int getPadding(final int length, final int padding) {
30         return (padding - (length % padding)) % padding;
31     }
32 }