Code clean up
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AsPathSegmentParser.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
9 package org.opendaylight.protocol.bgp.parser.impl.message.update;
10
11 import static org.opendaylight.protocol.bgp.parser.impl.message.update.AsPathSegmentParser.SegmentType.AS_SEQUENCE;
12 import static org.opendaylight.protocol.bgp.parser.impl.message.update.AsPathSegmentParser.SegmentType.AS_SET;
13 import io.netty.buffer.ByteBuf;
14 import java.util.ArrayList;
15 import java.util.Collections;
16 import java.util.List;
17 import org.opendaylight.protocol.util.ReferenceCache;
18 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber;
19
20 /**
21  * Representation of one AS Path Segment. It is, in fact, a TLV, but the length field is representing the count of AS
22  * Numbers in the collection (in its value). If the segment is of type AS_SEQUENCE, the collection is a List, if AS_SET,
23  * the collection is a Set.
24  */
25 public final class AsPathSegmentParser {
26
27     public static final int AS_NUMBER_LENGTH = 4;
28
29     /**
30      * Possible types of AS Path segments.
31      */
32     public enum SegmentType {
33         AS_SEQUENCE, AS_SET
34     }
35
36     private AsPathSegmentParser() {
37         throw new UnsupportedOperationException();
38     }
39
40     static int serializeType(final SegmentType type) {
41         switch (type) {
42         case AS_SET:
43             return 1;
44         case AS_SEQUENCE:
45             return 2;
46         default:
47             return 0;
48         }
49     }
50
51     static SegmentType parseType(final int type) {
52         switch (type) {
53         case 1:
54             return AS_SET;
55         case 2:
56             return AS_SEQUENCE;
57         default:
58             return null;
59         }
60     }
61
62     static List<AsNumber> parseAsSegment(final ReferenceCache refCache, final int count, final ByteBuf buffer) {
63         final List<AsNumber> coll = new ArrayList<>(count);
64         for (int i = 0; i < count; i++) {
65             coll.add(refCache.getSharedReference(new AsNumber(buffer.readUnsignedInt())));
66         }
67         return (coll.isEmpty()) ? Collections.emptyList() : coll;
68     }
69
70     static void serializeAsList(final List<AsNumber> asList, final SegmentType type, final ByteBuf byteAggregator) {
71         if (asList == null) {
72             return;
73         }
74         byteAggregator.writeByte(serializeType(type));
75         byteAggregator.writeByte(asList.size());
76         for (final AsNumber asNumber : asList) {
77             byteAggregator.writeInt( asNumber.getValue().intValue());
78         }
79     }
80 }