Upgrade ietf-{inet,yang}-types to 2013-07-15
[bgpcep.git] / bgp / bmp-impl / src / main / java / org / opendaylight / protocol / bmp / impl / tlv / StatType002TlvHandler.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.bmp.impl.tlv;
10
11 import com.google.common.base.Preconditions;
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.protocol.bmp.spi.parser.BmpDeserializationException;
14 import org.opendaylight.protocol.bmp.spi.parser.BmpTlvParser;
15 import org.opendaylight.protocol.bmp.spi.parser.BmpTlvSerializer;
16 import org.opendaylight.protocol.bmp.spi.parser.TlvUtil;
17 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter32;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev150512.Tlv;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev150512.stat.tlvs.DuplicateWithdrawsTlv;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.message.rev150512.stat.tlvs.DuplicateWithdrawsTlvBuilder;
21
22 public class StatType002TlvHandler implements BmpTlvParser, BmpTlvSerializer {
23
24     public static final int TYPE = 2;
25
26     @Override
27     public void serializeTlv(final Tlv tlv, final ByteBuf output) {
28         Preconditions.checkArgument(tlv instanceof DuplicateWithdrawsTlv, "DuplicateWithdrawsTlv is mandatory.");
29         TlvUtil.formatTlvCounter32(TYPE, ((DuplicateWithdrawsTlv) 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 DuplicateWithdrawsTlvBuilder().setCount(new Counter32(buffer.readUnsignedInt())).build();
38     }
39
40 }