Add ByteBufUtils
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / extended / communities / OpaqueEcHandler.java
1 /*
2  * Copyright (c) 2015 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.extended.communities;
10
11 import com.google.common.base.Preconditions;
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.protocol.bgp.parser.BGPDocumentedException;
14 import org.opendaylight.protocol.bgp.parser.BGPParsingException;
15 import org.opendaylight.protocol.bgp.parser.spi.extended.community.AbstractOpaqueExtendedCommunity;
16 import org.opendaylight.protocol.util.ByteArray;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.extended.community.ExtendedCommunity;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.extended.community.extended.community.OpaqueExtendedCommunityCase;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.extended.community.extended.community.OpaqueExtendedCommunityCaseBuilder;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.extended.community.extended.community.opaque.extended.community._case.OpaqueExtendedCommunity;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.extended.community.extended.community.opaque.extended.community._case.OpaqueExtendedCommunityBuilder;
22
23 public final class OpaqueEcHandler extends AbstractOpaqueExtendedCommunity {
24
25     private static final int SUBTYPE = 0;
26
27     @Override
28     public ExtendedCommunity parseExtendedCommunity(final ByteBuf buffer)
29             throws BGPDocumentedException, BGPParsingException {
30         return new OpaqueExtendedCommunityCaseBuilder().setOpaqueExtendedCommunity(
31                 new OpaqueExtendedCommunityBuilder()
32                     .setValue(ByteArray.readAllBytes(buffer))
33                     .build()).build();
34     }
35
36     @Override
37     public void serializeExtendedCommunity(final ExtendedCommunity extendedCommunity, final ByteBuf byteAggregator) {
38         Preconditions.checkArgument(extendedCommunity instanceof OpaqueExtendedCommunityCase,
39                 "The extended community %s is not OpaqueExtendedCommunityCase type.",
40                 extendedCommunity);
41         final OpaqueExtendedCommunity opaqueExtendedCommunity
42                 = ((OpaqueExtendedCommunityCase) extendedCommunity).getOpaqueExtendedCommunity();
43         byteAggregator.writeBytes(opaqueExtendedCommunity.getValue());
44     }
45
46     @Override
47     public int getSubType() {
48         return SUBTYPE;
49     }
50
51 }