Clean pcep/base-parser code
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / PCEPObjectiveFunctionObjectParser.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.object;
9
10 import static org.opendaylight.protocol.util.ByteBufWriteUtil.writeUnsignedShort;
11
12 import com.google.common.base.Preconditions;
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.Unpooled;
15 import java.util.List;
16 import org.opendaylight.protocol.pcep.spi.AbstractObjectWithTlvsParser;
17 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
18 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
19 import org.opendaylight.protocol.pcep.spi.TlvRegistry;
20 import org.opendaylight.protocol.pcep.spi.VendorInformationTlvRegistry;
21 import org.opendaylight.protocol.util.ByteBufUtils;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.OfId;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.Of;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.OfBuilder;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.of.Tlvs;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.of.TlvsBuilder;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.vendor.information.tlvs.VendorInformationTlv;
30 import org.opendaylight.yangtools.yang.common.Uint16;
31
32 /**
33  * Parser for {@link Of}.
34  */
35 public final class PCEPObjectiveFunctionObjectParser extends AbstractObjectWithTlvsParser<TlvsBuilder> {
36
37     private static final int CLASS = 21;
38     private static final int TYPE = 1;
39     private static final int RESERVED = 2;
40
41     public PCEPObjectiveFunctionObjectParser(final TlvRegistry tlvReg, final VendorInformationTlvRegistry viTlvReg) {
42         super(tlvReg, viTlvReg, CLASS, TYPE);
43     }
44
45     @Override
46     public Of parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
47         Preconditions.checkArgument(bytes != null && bytes.isReadable(),
48             "Array of bytes is mandatory. Can't be null or empty.");
49         final Uint16 ofId = ByteBufUtils.readUint16(bytes);
50         bytes.readBytes(RESERVED);
51         final TlvsBuilder tlvsBuilder = new TlvsBuilder();
52         parseTlvs(tlvsBuilder, bytes.slice());
53         final OfBuilder builder = new OfBuilder()
54                 .setIgnore(header.isIgnore())
55                 .setProcessingRule(header.isProcessingRule())
56                 .setCode(new OfId(ofId))
57                 .setTlvs(tlvsBuilder.build());
58         return builder.build();
59     }
60
61     @Override
62     public void serializeObject(final Object object, final ByteBuf buffer) {
63         Preconditions.checkArgument(object instanceof Of,
64             "Wrong instance of PCEPObject. Passed %s. Needed OfObject.", object.getClass());
65         final Of specObj = (Of) object;
66         final ByteBuf body = Unpooled.buffer();
67         Preconditions.checkArgument(specObj.getCode() != null, "Code is mandatory");
68         writeUnsignedShort(specObj.getCode().getValue(), body);
69         body.writeZero(RESERVED);
70         serializeTlvs(specObj.getTlvs(), body);
71         ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
72     }
73
74     public void serializeTlvs(final Tlvs tlvs, final ByteBuf body) {
75         if (tlvs == null) {
76             return;
77         }
78         serializeVendorInformationTlvs(tlvs.getVendorInformationTlv(), body);
79     }
80
81     @Override
82     protected void addVendorInformationTlvs(final TlvsBuilder builder, final List<VendorInformationTlv> tlvs) {
83         if (!tlvs.isEmpty()) {
84             builder.setVendorInformationTlv(tlvs);
85         }
86     }
87 }