10944c5c272d8f4db90f113e7bf323352c0195c0
[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 static java.util.Objects.requireNonNull;
11
12 import io.netty.channel.ChannelHandler;
13 import io.netty.channel.ChannelOutboundHandler;
14
15 import org.opendaylight.protocol.pcep.spi.MessageRegistry;
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 = requireNonNull(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[] { new PCEPMessageHeaderDecoder(), new PCEPByteToMessageDecoder(this.registry), };
35     }
36 }