BUG-113: convert PCEP to use activators
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / pojo / SimpleLabelHandlerRegistry.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.spi.pojo;
9
10 import org.opendaylight.protocol.concepts.HandlerRegistry;
11 import org.opendaylight.protocol.pcep.spi.LabelHandlerRegistry;
12 import org.opendaylight.protocol.pcep.spi.LabelParser;
13 import org.opendaylight.protocol.pcep.spi.LabelSerializer;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.CLabel;
15 import org.opendaylight.yangtools.yang.binding.DataContainer;
16
17 import com.google.common.base.Preconditions;
18
19 public class SimpleLabelHandlerRegistry implements LabelHandlerRegistry {
20         private final HandlerRegistry<DataContainer, LabelParser, LabelSerializer> handlers = new HandlerRegistry<>();
21
22         public AutoCloseable registerLabelParser(final int cType, final LabelParser parser) {
23                 Preconditions.checkArgument(cType >= 0 && cType <= 255);
24                 return handlers.registerParser(cType, parser);
25         }
26
27         public AutoCloseable registerLabelSerializer(final Class<? extends CLabel> labelClass, final LabelSerializer serializer) {
28                 return handlers.registerSerializer(labelClass, serializer);
29         }
30
31         @Override
32         public LabelParser getLabelParser(final int cType) {
33                 Preconditions.checkArgument(cType >= 0 && cType <= 255);
34                 return handlers.getParser(cType);
35         }
36
37         @Override
38         public LabelSerializer getLabelSerializer(final CLabel label) {
39                 return handlers.getSerializer(label.getImplementedInterface());
40         }
41 }