Migrate to use yangtools' ByteBufUtils
[bgpcep.git] / bmp / bmp-parser-impl / src / main / java / org / opendaylight / protocol / bmp / parser / tlv / StatType003TlvHandler.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 package org.opendaylight.protocol.bmp.parser.tlv;
9
10 import com.google.common.base.Preconditions;
11 import io.netty.buffer.ByteBuf;
12 import org.opendaylight.protocol.bmp.spi.parser.BmpDeserializationException;
13 import org.opendaylight.protocol.bmp.spi.parser.BmpTlvParser;
14 import org.opendaylight.protocol.bmp.spi.parser.BmpTlvSerializer;
15 import org.opendaylight.protocol.bmp.spi.parser.TlvUtil;
16 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter32;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev180329.Tlv;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev180329.stat.tlvs.InvalidatedClusterListLoopTlv;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev180329.stat.tlvs.InvalidatedClusterListLoopTlvBuilder;
20 import org.opendaylight.yangtools.yang.common.netty.ByteBufUtils;
21
22 public class StatType003TlvHandler implements BmpTlvParser, BmpTlvSerializer {
23     public static final int TYPE = 3;
24
25     @Override
26     public void serializeTlv(final Tlv tlv, final ByteBuf output) {
27         Preconditions.checkArgument(tlv instanceof InvalidatedClusterListLoopTlv,
28                 "InvalidatedClusterListLoopTlv is mandatory.");
29         TlvUtil.formatTlvCounter32(TYPE, ((InvalidatedClusterListLoopTlv) tlv).getCount(), output);
30     }
31
32     @Override
33     public Tlv parseTlv(final ByteBuf buffer) throws BmpDeserializationException {
34         if (buffer == null) {
35             return null;
36         }
37         return new InvalidatedClusterListLoopTlvBuilder()
38                 .setCount(new Counter32(ByteBufUtils.readUint32(buffer)))
39                 .build();
40     }
41 }