BUG-47 : unfinished PCEP migration to generated DTOs.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPLoadBalancingObjectParser.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.PCEPDocumentedException;
12 import org.opendaylight.protocol.pcep.spi.AbstractObjectParser;
13 import org.opendaylight.protocol.pcep.spi.HandlerRegistry;
14 import org.opendaylight.protocol.util.ByteArray;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ieee754.rev130819.Float32;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.LoadBalancingObject;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.pcreq.message.pcreq.message.requests.segment.computation.p2p.LoadBalancingBuilder;
21
22 /**
23  * Parser for {@link org.opendaylight.protocol.pcep.object.PCEPLoadBalancingObject PCEPLoadBalancingObject}
24  */
25 public class PCEPLoadBalancingObjectParser extends AbstractObjectParser<LoadBalancingBuilder> {
26
27         public static final int CLASS = 14;
28
29         public static final int TYPE = 1;
30
31         public static final int FLAGS_F_LENGTH = 1;
32         public static final int MAX_LSP_F_LENGTH = 1;
33         public static final int MIN_BAND_F_LENGTH = 4;
34
35         public static final int FLAGS_F_OFFSET = 2;
36         public static final int MAX_LSP_F_OFFSET = FLAGS_F_OFFSET + FLAGS_F_LENGTH;
37         public static final int MIN_BAND_F_OFFSET = MAX_LSP_F_OFFSET + MAX_LSP_F_LENGTH;
38
39         public static final int SIZE = MIN_BAND_F_OFFSET + MIN_BAND_F_LENGTH;
40
41         public PCEPLoadBalancingObjectParser(final HandlerRegistry registry) {
42                 super(registry);
43         }
44
45         @Override
46         public LoadBalancingObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException,
47                         PCEPDocumentedException {
48                 if (bytes == null || bytes.length == 0)
49                         throw new IllegalArgumentException("Byte array is mandatory. Can't be null or empty.");
50
51                 if (bytes.length != SIZE)
52                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.length + "; Expected: " + SIZE + ".");
53
54                 final LoadBalancingBuilder builder = new LoadBalancingBuilder();
55
56                 builder.setIgnore(header.isIgnore());
57                 builder.setProcessingRule(header.isProcessingRule());
58
59                 builder.setMaxLsp((short) (bytes[MAX_LSP_F_OFFSET] & 0xFF));
60                 builder.setMinBandwidth(new Float32(ByteArray.subByte(bytes, MIN_BAND_F_OFFSET, MIN_BAND_F_LENGTH)));
61
62                 return builder.build();
63         }
64
65         @Override
66         public void addTlv(final LoadBalancingBuilder builder, final Tlv tlv) {
67                 // No tlvs defined
68         }
69
70         @Override
71         public byte[] serializeObject(final Object object) {
72                 if (!(object instanceof LoadBalancingObject))
73                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
74                                         + ". Needed LoadBalancingObject.");
75
76                 final LoadBalancingObject specObj = (LoadBalancingObject) object;
77
78                 final byte[] retBytes = new byte[SIZE];
79
80                 retBytes[MAX_LSP_F_OFFSET] = ByteArray.shortToBytes(specObj.getMaxLsp())[1];
81                 ByteArray.copyWhole(specObj.getMinBandwidth().getValue(), retBytes, MIN_BAND_F_OFFSET);
82
83                 return retBytes;
84         }
85
86         @Override
87         public int getObjectType() {
88                 return TYPE;
89         }
90
91         @Override
92         public int getObjectClass() {
93                 return CLASS;
94         }
95 }