BUG-47 : switched subobjects to generated source code.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPMetricObjectParser.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 java.util.BitSet;
11
12 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
13 import org.opendaylight.protocol.pcep.PCEPDocumentedException;
14 import org.opendaylight.protocol.pcep.impl.message.AbstractObjectWithTlvsParser;
15 import org.opendaylight.protocol.pcep.spi.TlvHandlerRegistry;
16 import org.opendaylight.protocol.util.ByteArray;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ieee754.rev130819.Float32;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.MetricObject;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.pcreq.message.pcreq.message.svec.Metric;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.pcreq.message.pcreq.message.svec.MetricBuilder;
24
25 /**
26  * Parser for {@link org.opendaylight.protocol.pcep.object.PCEPMetricObject PCEPMetricObject}
27  */
28 public class PCEPMetricObjectParser extends AbstractObjectWithTlvsParser<MetricBuilder> {
29
30         public static final int CLASS = 6;
31
32         public static final int TYPE = 1;
33
34         /*
35          * lengths of fields in bytes
36          */
37         private static final int FLAGS_F_LENGTH = 1;
38         private static final int TYPE_F_LENGTH = 1;
39         private static final int METRIC_VALUE_F_LENGTH = 4;
40
41         /*
42          * offsets of fields in bytes
43          */
44         public static final int FLAGS_F_OFFSET = 2;
45         public static final int TYPE_F_OFFSET = FLAGS_F_OFFSET + FLAGS_F_LENGTH;
46         public static final int METRIC_VALUE_F_OFFSET = TYPE_F_OFFSET + TYPE_F_LENGTH;
47
48         /*
49          * flags offsets inside flags field in bits
50          */
51         private static final int C_FLAG_OFFSET = 6;
52         private static final int B_FLAG_OFFSET = 7;
53
54         public static final int SIZE = METRIC_VALUE_F_OFFSET + METRIC_VALUE_F_LENGTH;
55
56         public PCEPMetricObjectParser(final TlvHandlerRegistry tlvReg) {
57                 super(tlvReg);
58         }
59
60         @Override
61         public MetricObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException,
62         PCEPDocumentedException {
63                 if (bytes == null || bytes.length == 0) {
64                         throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
65                 }
66                 if (bytes.length != SIZE) {
67                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.length + "; Expected: " + SIZE + ".");
68                 }
69                 final byte[] flagBytes = { bytes[FLAGS_F_OFFSET] };
70                 final BitSet flags = ByteArray.bytesToBitSet(flagBytes);
71
72                 final MetricBuilder builder = new MetricBuilder();
73
74                 builder.setIgnore(header.isIgnore());
75                 builder.setProcessingRule(header.isProcessingRule());
76
77                 builder.setBound(flags.get(B_FLAG_OFFSET));
78                 builder.setComputed(flags.get(C_FLAG_OFFSET));
79                 builder.setMetricType((short) (bytes[TYPE_F_OFFSET] & 0xFF));
80                 builder.setValue(new Float32(ByteArray.subByte(bytes, METRIC_VALUE_F_OFFSET, METRIC_VALUE_F_LENGTH)));
81
82                 return builder.build();
83         }
84
85         @Override
86         public void addTlv(final MetricBuilder builder, final Tlv tlv) {
87                 // No tlvs defined
88         }
89
90         @Override
91         public byte[] serializeObject(final Object object) {
92                 if (!(object instanceof MetricObject)) {
93                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed MetricObject.");
94                 }
95
96                 final MetricObject mObj = (MetricObject) object;
97
98                 final byte[] retBytes = new byte[SIZE];
99                 final BitSet flags = new BitSet(FLAGS_F_LENGTH * Byte.SIZE);
100                 flags.set(C_FLAG_OFFSET, ((Metric) mObj).isComputed());
101                 flags.set(B_FLAG_OFFSET, mObj.isBound());
102
103                 ByteArray.copyWhole(ByteArray.bitSetToBytes(flags, FLAGS_F_LENGTH), retBytes, FLAGS_F_OFFSET);
104
105                 System.arraycopy(mObj.getValue().getValue(), 0, retBytes, METRIC_VALUE_F_OFFSET, METRIC_VALUE_F_LENGTH);
106
107                 return retBytes;
108         }
109
110         @Override
111         public int getObjectType() {
112                 return TYPE;
113         }
114
115         @Override
116         public int getObjectClass() {
117                 return CLASS;
118         }
119 }