Bug 611 - BGP Update message serialization
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / ClusterIdAttributeParser.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.bgp.parser.impl.message.update;
9
10 import com.google.common.collect.Lists;
11
12 import io.netty.buffer.ByteBuf;
13
14 import java.util.List;
15
16 import org.opendaylight.protocol.bgp.parser.spi.AttributeParser;
17 import org.opendaylight.protocol.bgp.parser.spi.AttributeSerializer;
18 import org.opendaylight.protocol.concepts.Ipv4Util;
19 import org.opendaylight.protocol.util.ByteArray;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.update.PathAttributesBuilder;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.ClusterIdentifier;
22 import org.opendaylight.yangtools.yang.binding.DataObject;
23
24 public final class ClusterIdAttributeParser implements AttributeParser, AttributeSerializer {
25
26     public static final int TYPE = 10;
27
28     private static final int CLUSTER_LENGTH = 4;
29
30     @Override
31     public void parseAttribute(final ByteBuf buffer, final PathAttributesBuilder builder) {
32         final List<ClusterIdentifier> list = Lists.newArrayList();
33         while (buffer.isReadable()) {
34             list.add(new ClusterIdentifier(Ipv4Util.addressForBytes(ByteArray.readBytes(buffer, CLUSTER_LENGTH))));
35         }
36         builder.setClusterId(list);
37     }
38
39     @Override
40     public void serializeAttribute(DataObject attribute, ByteBuf byteAggregator) {
41         //TODO implement this
42     }
43 }