Migrate to use yangtools' ByteBufUtils
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / tlv / OFListTlvParser.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.pcep.parser.tlv;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11 import static org.opendaylight.protocol.util.ByteBufWriteUtil.writeUnsignedShort;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.Unpooled;
15 import java.util.ArrayList;
16 import java.util.List;
17 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
18 import org.opendaylight.protocol.pcep.spi.TlvParser;
19 import org.opendaylight.protocol.pcep.spi.TlvSerializer;
20 import org.opendaylight.protocol.pcep.spi.TlvUtil;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.OfId;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Tlv;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.list.tlv.OfList;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.list.tlv.OfListBuilder;
25 import org.opendaylight.yangtools.yang.common.netty.ByteBufUtils;
26
27 /**
28  * Parser for {@link OfList}.
29  */
30 public class OFListTlvParser implements TlvParser, TlvSerializer {
31     public static final int TYPE = 4;
32
33     private static final int OF_CODE_ELEMENT_LENGTH = 2;
34
35     @Override
36     public OfList parseTlv(final ByteBuf buffer) throws PCEPDeserializerException {
37         if (buffer == null) {
38             return null;
39         }
40         if (buffer.readableBytes() % OF_CODE_ELEMENT_LENGTH != 0) {
41             throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.readableBytes()
42                 + ".");
43         }
44         final List<OfId> ofCodes = new ArrayList<>();
45         while (buffer.isReadable()) {
46             ofCodes.add(new OfId(ByteBufUtils.readUint16(buffer)));
47         }
48         return new OfListBuilder().setCodes(ofCodes).build();
49     }
50
51     @Override
52     public void serializeTlv(final Tlv tlv, final ByteBuf buffer) {
53         checkArgument(tlv instanceof OfList, "OFListTlv is mandatory.");
54         final OfList oft = (OfList) tlv;
55         final ByteBuf body = Unpooled.buffer();
56         final List<OfId> ofCodes = oft.getCodes();
57         for (OfId id : ofCodes) {
58             writeUnsignedShort(id.getValue(), body);
59         }
60         TlvUtil.formatTlv(TYPE, body, buffer);
61     }
62 }