Bump versions to 0.21.8-SNAPSHOT
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPHandlerFactory.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.bgp.rib.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import io.netty.channel.ChannelHandler;
13 import io.netty.channel.ChannelOutboundHandler;
14 import org.opendaylight.protocol.bgp.parser.spi.MessageRegistry;
15
16 /**
17  * BGP specific factory for protocol inbound/outbound handlers.
18  */
19 public class BGPHandlerFactory {
20     private final ChannelOutboundHandler encoder;
21     private final MessageRegistry registry;
22
23     public BGPHandlerFactory(final MessageRegistry registry) {
24         this.registry = requireNonNull(registry);
25         this.encoder = new BGPMessageToByteEncoder(registry);
26     }
27
28     public ChannelHandler[] getEncoders() {
29         return new ChannelHandler[] { this.encoder, };
30     }
31
32     public ChannelHandler[] getDecoders() {
33         return new ChannelHandler[] {
34             BGPMessageHeaderDecoder.getBGPMessageHeaderDecoder(),
35             new BGPByteToMessageDecoder(this.registry),
36         };
37     }
38 }