Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / pojo / SimpleVendorInformationTlvRegistry.java
1 /*
2  * Copyright (c) 2014 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.spi.pojo;
9
10 import com.google.common.primitives.Ints;
11 import io.netty.buffer.ByteBuf;
12 import java.util.Optional;
13 import org.opendaylight.protocol.concepts.HandlerRegistry;
14 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
15 import org.opendaylight.protocol.pcep.spi.TlvParser;
16 import org.opendaylight.protocol.pcep.spi.TlvSerializer;
17 import org.opendaylight.protocol.pcep.spi.VendorInformationTlvRegistry;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.iana.rev130816.EnterpriseNumber;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.vendor.information.EnterpriseSpecificInformation;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.vendor.information.tlvs.VendorInformationTlv;
21 import org.opendaylight.yangtools.yang.binding.DataContainer;
22
23 public class SimpleVendorInformationTlvRegistry implements VendorInformationTlvRegistry {
24
25     private final HandlerRegistry<DataContainer, TlvParser, TlvSerializer> handlers = new HandlerRegistry<>();
26
27     public AutoCloseable registerVendorInformationTlvParser(final EnterpriseNumber enterpriseNumber,
28             final TlvParser parser) {
29         return this.handlers.registerParser(Ints.checkedCast(enterpriseNumber.getValue()), parser);
30     }
31
32     public AutoCloseable registerVendorInformationTlvSerializer(
33             final Class<? extends EnterpriseSpecificInformation> esInformationClass, final TlvSerializer serializer) {
34         return this.handlers.registerSerializer(esInformationClass, serializer);
35     }
36
37     @Override
38     public Optional<VendorInformationTlv> parseVendorInformationTlv(final EnterpriseNumber enterpriseNumber,
39             final ByteBuf buffer) throws PCEPDeserializerException {
40         final TlvParser parser = this.handlers.getParser(Ints.checkedCast(enterpriseNumber.getValue()));
41         if (parser == null) {
42             return Optional.empty();
43         }
44         return Optional.of((VendorInformationTlv) parser.parseTlv(buffer));
45     }
46
47     @Override
48     public void serializeVendorInformationTlv(final VendorInformationTlv viTlv, final ByteBuf buffer) {
49         final TlvSerializer serializer = this.handlers.getSerializer(
50             viTlv.getEnterpriseSpecificInformation().getImplementedInterface());
51         if (serializer == null) {
52             return;
53         }
54         serializer.serializeTlv(viTlv, buffer);
55     }
56 }