BUG-47 : PCEP migration to generated DTOs.
[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.spi.AbstractObjectParser;
15 import org.opendaylight.protocol.pcep.spi.HandlerRegistry;
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 AbstractObjectParser<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 HandlerRegistry registry) {
57                 super(registry);
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                 if (bytes.length != SIZE)
66                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.length + "; Expected: " + SIZE + ".");
67                 final byte[] flagBytes = { bytes[FLAGS_F_OFFSET] };
68                 final BitSet flags = ByteArray.bytesToBitSet(flagBytes);
69
70                 final MetricBuilder builder = new MetricBuilder();
71
72                 builder.setIgnore(header.isIgnore());
73                 builder.setProcessingRule(header.isProcessingRule());
74
75                 builder.setBound(flags.get(B_FLAG_OFFSET));
76                 builder.setComputed(flags.get(C_FLAG_OFFSET));
77                 builder.setMetricType((short) (bytes[TYPE_F_OFFSET] & 0xFF));
78                 builder.setValue(new Float32(ByteArray.subByte(bytes, METRIC_VALUE_F_OFFSET, METRIC_VALUE_F_LENGTH)));
79
80                 return builder.build();
81         }
82
83         @Override
84         public void addTlv(final MetricBuilder builder, final Tlv tlv) {
85                 // No tlvs defined
86         }
87
88         @Override
89         public byte[] serializeObject(final Object object) {
90                 if (!(object instanceof MetricObject))
91                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed MetricObject.");
92
93                 final MetricObject mObj = (MetricObject) object;
94
95                 final byte[] retBytes = new byte[SIZE];
96                 final BitSet flags = new BitSet(FLAGS_F_LENGTH * Byte.SIZE);
97                 flags.set(C_FLAG_OFFSET, ((Metric) mObj).isComputed());
98                 flags.set(B_FLAG_OFFSET, mObj.isBound());
99
100                 ByteArray.copyWhole(ByteArray.bitSetToBytes(flags, FLAGS_F_LENGTH), retBytes, FLAGS_F_OFFSET);
101
102                 System.arraycopy(mObj.getValue().getValue(), 0, retBytes, METRIC_VALUE_F_OFFSET, METRIC_VALUE_F_LENGTH);
103
104                 return retBytes;
105         }
106
107         @Override
108         public int getObjectType() {
109                 return TYPE;
110         }
111
112         @Override
113         public int getObjectClass() {
114                 return CLASS;
115         }
116 }