BUG-612 : switched PCEP message parsing to ByteBuf.
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / pojo / SimpleMessageRegistry.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 io.netty.buffer.ByteBuf;
11
12 import java.util.List;
13
14 import org.opendaylight.protocol.concepts.HandlerRegistry;
15 import org.opendaylight.protocol.pcep.spi.MessageParser;
16 import org.opendaylight.protocol.pcep.spi.MessageRegistry;
17 import org.opendaylight.protocol.pcep.spi.MessageSerializer;
18 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
19 import org.opendaylight.protocol.util.Values;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
21 import org.opendaylight.yangtools.yang.binding.DataContainer;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 import com.google.common.base.Preconditions;
26
27 public final class SimpleMessageRegistry implements MessageRegistry {
28
29         private static final Logger LOG = LoggerFactory.getLogger(SimpleMessageRegistry.class);
30
31         private final HandlerRegistry<DataContainer, MessageParser, MessageSerializer> handlers = new HandlerRegistry<>();
32
33         public AutoCloseable registerMessageParser(final int messageType, final MessageParser parser) {
34                 Preconditions.checkArgument(messageType >= 0 && messageType <= Values.UNSIGNED_BYTE_MAX_VALUE);
35                 return this.handlers.registerParser(messageType, parser);
36         }
37
38         public AutoCloseable registerMessageSerializer(final Class<? extends Message> msgClass, final MessageSerializer serializer) {
39                 return this.handlers.registerSerializer(msgClass, serializer);
40         }
41
42         @Override
43         public Message parseMessage(final int messageType, final ByteBuf buffer, final List<Message> errors) throws PCEPDeserializerException {
44                 Preconditions.checkArgument(messageType >= 0 && messageType <= Values.UNSIGNED_BYTE_MAX_VALUE);
45                 final MessageParser parser = this.handlers.getParser(messageType);
46                 if (parser == null) {
47                         LOG.warn("PCEP parser for message type {} is not registered.", messageType);
48                         return null;
49                 }
50                 return parser.parseMessage(buffer, errors);
51         }
52
53         @Override
54         public void serializeMessage(Message message, ByteBuf buffer) {
55                 final MessageSerializer serializer = this.handlers.getSerializer(message.getImplementedInterface());
56                 if (serializer == null) {
57                         LOG.warn("PCEP serializer for message type {} is not registered.", message.getClass());
58                         return;
59                 }
60                 serializer.serializeMessage(message, buffer);
61         }
62 }