BUG-47 : unfinished PCEP migration to generated DTOs.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPGlobalConstraintsObjectParser.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.pcep.types.rev131005.GcObject;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.pcreq.message.pcreq.message.svec.GcBuilder;
20
21 /**
22  * Parser for {@link GcObject}
23  */
24 public class PCEPGlobalConstraintsObjectParser extends AbstractObjectParser<GcBuilder> {
25
26         public static final int CLASS = 24;
27
28         public static final int TYPE = 1;
29
30         private final static int MAX_HOP_F_LENGTH = 1;
31         private final static int MAX_UTIL_F_LENGTH = 1;
32         private final static int MIN_UTIL_F_LENGTH = 1;
33         private final static int OVER_BOOKING_FACTOR_F_LENGTH = 1;
34
35         private final static int MAX_HOP_F_OFFSET = 0;
36         private final static int MAX_UTIL_F_OFFSET = MAX_HOP_F_OFFSET + MAX_HOP_F_LENGTH;
37         private final static int MIN_UTIL_F_OFFSET = MAX_UTIL_F_OFFSET + MAX_UTIL_F_LENGTH;
38         private final static int OVER_BOOKING_FACTOR_F_OFFSET = MIN_UTIL_F_OFFSET + MIN_UTIL_F_LENGTH;
39
40         private final static int TLVS_OFFSET = OVER_BOOKING_FACTOR_F_OFFSET + OVER_BOOKING_FACTOR_F_LENGTH;
41
42         public PCEPGlobalConstraintsObjectParser(final HandlerRegistry registry) {
43                 super(registry);
44         }
45
46         @Override
47         public GcObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException, PCEPDocumentedException {
48                 if (bytes == null || bytes.length == 0)
49                         throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
50
51                 final GcBuilder builder = new GcBuilder();
52
53                 parseTlvs(builder, ByteArray.cutBytes(bytes, TLVS_OFFSET));
54
55                 builder.setIgnore(header.isIgnore());
56                 builder.setProcessingRule(header.isProcessingRule());
57
58                 builder.setMaxHop((short) (bytes[MAX_HOP_F_OFFSET] & 0xFF));
59                 builder.setMinUtilization((short) (bytes[MIN_UTIL_F_OFFSET] & 0xFF));
60                 builder.setMaxUtilization((short) (bytes[MAX_UTIL_F_OFFSET] & 0xFF));
61                 builder.setOverBookingFactor((short) (bytes[OVER_BOOKING_FACTOR_F_OFFSET] & 0xFF));
62
63                 return builder.build();
64         }
65
66         @Override
67         public void addTlv(final GcBuilder builder, final Tlv tlv) {
68                 // No tlvs defined
69         }
70
71         @Override
72         public byte[] serializeObject(final Object object) {
73                 if (!(object instanceof GcObject))
74                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed GcObject.");
75
76                 final GcObject specObj = (GcObject) object;
77
78                 // final byte[] tlvs = PCEPTlvParser.put(specObj.getTlvs());
79                 final byte[] retBytes = new byte[TLVS_OFFSET + 0];
80
81                 retBytes[MAX_HOP_F_OFFSET] = specObj.getMaxHop().byteValue();
82                 retBytes[MAX_UTIL_F_OFFSET] = specObj.getMaxUtilization().byteValue();
83                 retBytes[MIN_UTIL_F_OFFSET] = specObj.getMinUtilization().byteValue();
84                 retBytes[OVER_BOOKING_FACTOR_F_OFFSET] = specObj.getOverBookingFactor().byteValue();
85
86                 // ByteArray.copyWhole(tlvs, retBytes, TLVS_OFFSET);
87
88                 return retBytes;
89         }
90
91         @Override
92         public int getObjectType() {
93                 return TYPE;
94         }
95
96         @Override
97         public int getObjectClass() {
98                 return CLASS;
99         }
100 }