Moved Ipv4Util and Ipv6Util from concepts to util
[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 import io.netty.buffer.ByteBuf;
12 import io.netty.buffer.Unpooled;
13 import java.util.List;
14 import org.opendaylight.protocol.bgp.parser.AttributeFlags;
15 import org.opendaylight.protocol.bgp.parser.spi.AttributeParser;
16 import org.opendaylight.protocol.bgp.parser.spi.AttributeSerializer;
17 import org.opendaylight.protocol.util.ByteArray;
18 import org.opendaylight.protocol.util.Ipv4Util;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.PathAttributes;
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     public static final int ATTR_LENGTH = 4;
28
29     @Override
30     public void parseAttribute(final ByteBuf buffer, final PathAttributesBuilder builder) {
31         final List<ClusterIdentifier> list = Lists.newArrayList();
32         while (buffer.isReadable()) {
33             list.add(new ClusterIdentifier(Ipv4Util.addressForBytes(ByteArray.readBytes(buffer, ATTR_LENGTH))));
34         }
35         builder.setClusterId(list);
36     }
37
38     @Override
39     public void serializeAttribute(DataObject attribute, ByteBuf byteAggregator) {
40         PathAttributes pathAttributes = (PathAttributes) attribute;
41         if (pathAttributes.getClusterId() == null) {
42             return;
43         }
44         ByteBuf clusterIdBuffer = Unpooled.buffer();
45         for (ClusterIdentifier clusterIdentifier : pathAttributes.getClusterId()) {
46             clusterIdBuffer.writeBytes(Ipv4Util.bytesForAddress(clusterIdentifier));
47         }
48         byteAggregator.writeByte(AttributeFlags.OPTIONAL);
49         byteAggregator.writeByte(TYPE);
50         byteAggregator.writeByte(clusterIdBuffer.writerIndex());
51         byteAggregator.writeBytes(clusterIdBuffer);
52     }
53 }