658f3b0ac260d2be999735f6605952a5f10ab91c
[bgpcep.git] / rsvp / spi / src / main / java / org / opendaylight / protocol / rsvp / parser / spi / pojo / SimpleXROSubobjectRegistry.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.rsvp.parser.spi.pojo;
10
11 import com.google.common.base.Preconditions;
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.protocol.concepts.HandlerRegistry;
14 import org.opendaylight.protocol.rsvp.parser.spi.RSVPParsingException;
15 import org.opendaylight.protocol.rsvp.parser.spi.XROSubobjectParser;
16 import org.opendaylight.protocol.rsvp.parser.spi.XROSubobjectRegistry;
17 import org.opendaylight.protocol.rsvp.parser.spi.XROSubobjectSerializer;
18 import org.opendaylight.protocol.util.Values;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.basic.explicit.route.subobjects.SubobjectType;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.exclude.route.object.exclude.route.object.SubobjectContainer;
21 import org.opendaylight.yangtools.yang.binding.DataContainer;
22
23 public class SimpleXROSubobjectRegistry implements XROSubobjectRegistry {
24     private final HandlerRegistry<DataContainer, XROSubobjectParser, XROSubobjectSerializer> handlers =
25         new HandlerRegistry<>();
26
27     public AutoCloseable registerSubobjectParser(final int subobjectType, final XROSubobjectParser parser) {
28         Preconditions.checkArgument(subobjectType >= 0 && subobjectType <= Values.UNSIGNED_SHORT_MAX_VALUE);
29         return this.handlers.registerParser(subobjectType, parser);
30     }
31
32     public AutoCloseable registerSubobjectSerializer(final Class<? extends SubobjectType> subobjectClass,
33         final XROSubobjectSerializer serializer) {
34         return this.handlers.registerSerializer(subobjectClass, serializer);
35     }
36
37     @Override
38     public SubobjectContainer parseSubobject(final int type, final ByteBuf buffer, final boolean mandatory)
39         throws RSVPParsingException {
40         Preconditions.checkArgument(type >= 0 && type <= Values.UNSIGNED_SHORT_MAX_VALUE);
41         final XROSubobjectParser parser = this.handlers.getParser(type);
42         if (parser == null) {
43             return null;
44         }
45         return parser.parseSubobject(buffer, mandatory);
46     }
47
48     @Override
49     public void serializeSubobject(final SubobjectContainer subobject, final ByteBuf buffer) {
50         final XROSubobjectSerializer serializer = this.handlers.getSerializer(subobject.getSubobjectType()
51             .getImplementedInterface());
52         if (serializer == null) {
53             return;
54         }
55         serializer.serializeSubobject(subobject, buffer);
56     }
57 }