Removed duplicated code from stateful07.
[bgpcep.git] / pcep / ietf-stateful07 / src / main / java / org / opendaylight / protocol / pcep / ietf / initiated00 / CInitiated00StatefulCapabilityTlvParser.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.ietf.initiated00;
9
10 import java.util.BitSet;
11
12 import org.opendaylight.protocol.pcep.ietf.stateful07.Stateful07StatefulCapabilityTlvParser;
13 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
14 import org.opendaylight.protocol.util.ByteArray;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.initiated.rev131126.Stateful1;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.initiated.rev131126.Stateful1Builder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.ietf.stateful.rev131222.stateful.capability.tlv.Stateful;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.ietf.stateful.rev131222.stateful.capability.tlv.StatefulBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
20
21 /**
22  * Parser for {@link Stateful}
23  */
24 public final class CInitiated00StatefulCapabilityTlvParser extends Stateful07StatefulCapabilityTlvParser {
25
26         private static final int I_FLAG_OFFSET = 29;
27
28         @Override
29         public Stateful parseTlv(final byte[] buffer) throws PCEPDeserializerException {
30                 if (buffer == null || buffer.length == 0) {
31                         throw new IllegalArgumentException("Value bytes array is mandatory. Can't be null or empty.");
32                 }
33                 if (buffer.length < FLAGS_F_LENGTH) {
34                         throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.length + "; Expected: >= "
35                                         + FLAGS_F_LENGTH + ".");
36                 }
37                 final BitSet flags = ByteArray.bytesToBitSet(ByteArray.subByte(buffer, 0, FLAGS_F_LENGTH));
38
39                 final StatefulBuilder sb = new StatefulBuilder();
40                 sb.setLspUpdateCapability(flags.get(U_FLAG_OFFSET));
41
42                 if (flags.get(I_FLAG_OFFSET)) {
43                         sb.addAugmentation(Stateful1.class, new Stateful1Builder().setInitiation(Boolean.TRUE).build());
44                 }
45                 return sb.build();
46         }
47
48         @Override
49         public byte[] serializeTlv(final Tlv tlv) {
50                 if (tlv == null) {
51                         throw new IllegalArgumentException("StatefulCapabilityTlv is mandatory.");
52                 }
53                 final Stateful sct = (Stateful) tlv;
54
55                 final BitSet flags = new BitSet(FLAGS_F_LENGTH * Byte.SIZE);
56
57                 final Stateful1 sfi = sct.getAugmentation(Stateful1.class);
58                 if (sfi != null) {
59                         flags.set(I_FLAG_OFFSET, sfi.isInitiation());
60                 }
61                 flags.set(U_FLAG_OFFSET, sct.isLspUpdateCapability());
62                 return ByteArray.bitSetToBytes(flags, FLAGS_F_LENGTH);
63         }
64 }