Merge "Fixed imports."
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / subobject / EROAsNumberSubobjectParser.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.subobject;
9
10 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
11 import org.opendaylight.protocol.pcep.spi.SubobjectParser;
12 import org.opendaylight.protocol.pcep.spi.SubobjectSerializer;
13 import org.opendaylight.protocol.util.ByteArray;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.AsNumberSubobject;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.CSubobject;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.AsNumberBuilder;
18
19 /**
20  * Parser for {@link AsNumberSubobject}
21  */
22
23 public class EROAsNumberSubobjectParser implements SubobjectParser, SubobjectSerializer {
24
25         public static final int TYPE = 32;
26
27         public static final int AS_NUMBER_LENGTH = 4;
28
29         public static final int AS_NUMBER_OFFSET = 0;
30
31         public static final int CONTENT_LENGTH = AS_NUMBER_LENGTH + AS_NUMBER_OFFSET;
32
33         @Override
34         public AsNumberSubobject parseSubobject(final byte[] buffer) throws PCEPDeserializerException {
35                 if (buffer == null || buffer.length == 0) {
36                         throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
37                 }
38                 if (buffer.length != CONTENT_LENGTH) {
39                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.length + "; Expected: "
40                                         + CONTENT_LENGTH + ".");
41                 }
42
43                 return new AsNumberBuilder().setAsNumber(new AsNumber(ByteArray.bytesToLong(buffer))).build();
44         }
45
46         @Override
47         public byte[] serializeSubobject(final CSubobject subobject) {
48                 if (!(subobject instanceof AsNumberSubobject)) {
49                         throw new IllegalArgumentException("Unknown subobject instance. Passed " + subobject.getClass()
50                                         + ". Needed AsNumberSubobject.");
51                 }
52
53                 final byte[] retBytes = new byte[CONTENT_LENGTH];
54
55                 System.arraycopy(ByteArray.longToBytes(((AsNumberSubobject) subobject).getAsNumber().getValue()), Long.SIZE / Byte.SIZE
56                                 - AS_NUMBER_LENGTH, retBytes, AS_NUMBER_OFFSET, AS_NUMBER_LENGTH);
57
58                 return retBytes;
59         }
60
61         @Override
62         public int getType() {
63                 return TYPE;
64         }
65 }