Rework parser infrastructure to support partial message processing
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPClassTypeObjectParser.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 org.opendaylight.protocol.pcep.PCEPDeserializerException;
11 import org.opendaylight.protocol.pcep.PCEPErrors;
12 import org.opendaylight.protocol.pcep.UnknownObject;
13 import org.opendaylight.protocol.pcep.spi.TlvHandlerRegistry;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassType;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.classtype.object.ClassTypeBuilder;
19
20 import com.google.common.primitives.UnsignedBytes;
21
22 /**
23  * Parser for {@link ClassType}
24  */
25 public class PCEPClassTypeObjectParser extends AbstractObjectWithTlvsParser<ClassTypeBuilder> {
26
27         public static final int CLASS = 22;
28
29         public static final int TYPE = 1;
30
31         /**
32          * Length of Class Type field in bits.
33          */
34         private static final int CT_F_LENGTH = 3;
35
36         /**
37          * Reserved field bit length.
38          */
39         private static final int RESERVED = 29;
40
41         /**
42          * Size of the object in bytes.
43          */
44         private static final int SIZE = (RESERVED + CT_F_LENGTH) / 8;
45
46         public PCEPClassTypeObjectParser(final TlvHandlerRegistry tlvReg) {
47                 super(tlvReg);
48         }
49
50         @Override
51         public Object parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException {
52                 if (bytes == null) {
53                         throw new IllegalArgumentException("Byte array is mandatory.");
54                 }
55                 if (bytes.length != SIZE) {
56                         throw new PCEPDeserializerException("Size of byte array doesn't match defined size. Expected: " + SIZE + "; Passed: "
57                                         + bytes.length);
58                 }
59                 if (!header.isProcessingRule()) {
60                         //LOG.debug("Processed bit not set on CLASS TYPE OBJECT, ignoring it");
61                         return null;
62                 }
63                 final ClassTypeBuilder builder = new ClassTypeBuilder();
64
65                 builder.setIgnore(header.isIgnore());
66                 builder.setProcessingRule(header.isProcessingRule());
67
68                 final short ct = (short) UnsignedBytes.toInt(bytes[SIZE - 1]);
69                 builder.setClassType(new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ClassType(ct));
70
71                 if (ct < 0 || ct > 8) {
72                         // LOG.info("Invalid class type {}", ct);
73                         return new UnknownObject(PCEPErrors.INVALID_CT);
74                 }
75                 return builder.build();
76         }
77
78         @Override
79         public void addTlv(final ClassTypeBuilder builder, final Tlv tlv) {
80                 // No tlvs defined
81         }
82
83         @Override
84         public byte[] serializeObject(final Object object) {
85                 if (!(object instanceof ClassType)) {
86                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed ClasstypeObject.");
87                 }
88                 final byte[] retBytes = new byte[SIZE];
89                 retBytes[SIZE - 1] = UnsignedBytes.checkedCast(((ClassType) object).getClassType().getValue());
90                 return retBytes;
91         }
92
93         @Override
94         public int getObjectType() {
95                 return TYPE;
96         }
97
98         @Override
99         public int getObjectClass() {
100                 return CLASS;
101         }
102 }