78669c2b87ba4b7c576d2f8afd68047932ff9952
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / subobject / EROPathKeySubobjectParser.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 java.util.Arrays;
11
12 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
13 import org.opendaylight.protocol.pcep.spi.EROSubobjectParser;
14 import org.opendaylight.protocol.pcep.spi.EROSubobjectSerializer;
15 import org.opendaylight.protocol.util.ByteArray;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.PathKey;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.PceId;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.Subobjects;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.SubobjectsBuilder;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobjects.subobject.type.PathKeyBuilder;
21
22 /**
23  * Parser for {@link PathKey}
24  */
25 public class EROPathKeySubobjectParser implements EROSubobjectParser, EROSubobjectSerializer {
26
27         public static final int TYPE = 64;
28
29         public static final int TYPE128 = 65;
30
31         private static final int PK_F_LENGTH = 2;
32         private static final int PCE_ID_F_LENGTH = 4;
33
34         private static final int PCE128_ID_F_LENGTH = 16;
35
36         private static final int PK_F_OFFSET = 0;
37         private static final int PCE_ID_F_OFFSET = PK_F_OFFSET + PK_F_LENGTH;
38
39         private static final int CONTENT_LENGTH = PCE_ID_F_OFFSET + PCE_ID_F_LENGTH;
40         private static final int CONTENT128_LENGTH = PCE_ID_F_OFFSET + PCE128_ID_F_LENGTH;
41
42         @Override
43         public Subobjects parseSubobject(final byte[] buffer, final boolean loose) throws PCEPDeserializerException {
44                 if (buffer == null || buffer.length == 0) {
45                         throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
46                 }
47                 byte[] pceId = null;
48                 if (buffer.length == CONTENT_LENGTH) {
49                         pceId = Arrays.copyOfRange(buffer, PCE_ID_F_OFFSET, CONTENT_LENGTH);
50                 } else if (buffer.length == CONTENT128_LENGTH) {
51                         pceId = Arrays.copyOfRange(buffer, PCE_ID_F_OFFSET, CONTENT128_LENGTH);
52                 } else {
53                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.length + "; Expected: >"
54                                         + CONTENT_LENGTH + ".");
55                 }
56                 final int pathKey = ByteArray.bytesToShort(Arrays.copyOfRange(buffer, PK_F_OFFSET, PCE_ID_F_OFFSET));
57                 final SubobjectsBuilder builder = new SubobjectsBuilder();
58                 builder.setLoose(loose);
59                 final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobjects.subobject.type.path.key.PathKeyBuilder pBuilder = new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobjects.subobject.type.path.key.PathKeyBuilder();
60                 pBuilder.setPceId(new PceId(pceId));
61                 pBuilder.setPathKey(new PathKey(pathKey));
62                 builder.setSubobjectType(new PathKeyBuilder().setPathKey(pBuilder.build()).build());
63                 return builder.build();
64         }
65
66         @Override
67         public byte[] serializeSubobject(final Subobjects subobject) {
68                 final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobjects.subobject.type.PathKey pk = (org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobjects.subobject.type.PathKey) subobject.getSubobjectType();
69                 final int pathKey = pk.getPathKey().getPathKey().getValue();
70                 final byte[] pceId = pk.getPathKey().getPceId().getBinary();
71                 final byte[] retBytes = new byte[PK_F_LENGTH + pceId.length];
72                 System.arraycopy(ByteArray.shortToBytes((short) pathKey), 0, retBytes, PK_F_OFFSET, PK_F_LENGTH);
73                 System.arraycopy(pceId, 0, retBytes, PCE_ID_F_OFFSET, pceId.length);
74                 return retBytes;
75         }
76
77         @Override
78         public int getType() {
79                 return TYPE;
80         }
81
82         public int getType128() {
83                 return TYPE128;
84         }
85 }