BUG-64 : initial rewrite, MessageRegistry.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / PCEPHandlerFactory.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.impl;
9
10 import io.netty.channel.ChannelHandler;
11 import io.netty.channel.ChannelOutboundHandler;
12
13 import org.opendaylight.protocol.pcep.spi.MessageRegistry;
14
15 import com.google.common.base.Preconditions;
16
17 /**
18  * PCEP specific factory for protocol inbound/outbound handlers.
19  */
20 public final class PCEPHandlerFactory {
21         private final MessageRegistry registry;
22         private final ChannelOutboundHandler encoder;
23
24         public PCEPHandlerFactory(final MessageRegistry registry) {
25                 this.registry = Preconditions.checkNotNull(registry);
26                 this.encoder = new PCEPMessageToByteEncoder(registry);
27         }
28
29         public ChannelHandler[] getEncoders() {
30                 return new ChannelHandler[] { this.encoder };
31         }
32
33         public ChannelHandler[] getDecoders() {
34                 return new ChannelHandler[] {
35                                 new PCEPMessageHeaderDecoder(),
36                                 new PCEPByteToMessageDecoder(registry),
37                 };
38         }
39 }