c5bc357cf939b4b672d01b1a95cb74275dcbd89c
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / XROSubobjectUtil.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.object;
9
10 import com.google.common.primitives.UnsignedBytes;
11
12 public class XROSubobjectUtil {
13
14         private static final int HEADER_SIZE = 2;
15
16         private XROSubobjectUtil() {
17         }
18
19         public static byte[] formatSubobject(final int type, final boolean mandatory, final byte[] value) {
20                 final byte[] bytes = new byte[HEADER_SIZE + value.length];
21                 bytes[0] = (byte) (UnsignedBytes.checkedCast(type) | (mandatory ? 1 << 7 : 0));
22                 bytes[1] = UnsignedBytes.checkedCast(value.length + HEADER_SIZE);
23                 System.arraycopy(value, 0, bytes, HEADER_SIZE, value.length);
24                 return bytes;
25         }
26 }