Add Honeynode emulator for device221
[transportpce.git] / tests / honeynode221 / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / AbstractChannelInitializer.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
9 package org.opendaylight.netconf.nettyutil;
10
11 import io.netty.channel.Channel;
12 import io.netty.util.concurrent.Promise;
13 import org.opendaylight.netconf.api.NetconfSession;
14 import org.opendaylight.netconf.nettyutil.handler.FramingMechanismHandlerFactory;
15 import org.opendaylight.netconf.nettyutil.handler.NetconfEOMAggregator;
16 import org.opendaylight.netconf.nettyutil.handler.NetconfHelloMessageToXMLEncoder;
17 import org.opendaylight.netconf.nettyutil.handler.NetconfXMLToHelloMessageDecoder;
18 import org.opendaylight.netconf.util.messages.FramingMechanism;
19
20 public abstract class AbstractChannelInitializer<S extends NetconfSession> {
21
22     public static final String NETCONF_MESSAGE_DECODER = "netconfMessageDecoder";
23     public static final String NETCONF_MESSAGE_AGGREGATOR = "aggregator";
24     public static final String NETCONF_MESSAGE_ENCODER = "netconfMessageEncoder";
25     public static final String NETCONF_MESSAGE_FRAME_ENCODER = "frameEncoder";
26     public static final String NETCONF_SESSION_NEGOTIATOR = "negotiator";
27
28     public void initialize(Channel ch, Promise<S> promise) {
29         ch.pipeline().addLast(NETCONF_MESSAGE_AGGREGATOR, new NetconfEOMAggregator());
30         initializeMessageDecoder(ch);
31         ch.pipeline().addLast(NETCONF_MESSAGE_FRAME_ENCODER,
32                 FramingMechanismHandlerFactory.createHandler(FramingMechanism.EOM));
33         initializeMessageEncoder(ch);
34
35         initializeSessionNegotiator(ch, promise);
36     }
37
38     protected void initializeMessageEncoder(Channel ch) {
39         // Special encoding handler for hello message to include additional header if available,
40         // it is thrown away after successful negotiation
41         ch.pipeline().addLast(NETCONF_MESSAGE_ENCODER, new NetconfHelloMessageToXMLEncoder());
42     }
43
44     protected void initializeMessageDecoder(Channel ch) {
45         // Special decoding handler for hello message to parse additional header if available,
46         // it is thrown away after successful negotiation
47         ch.pipeline().addLast(NETCONF_MESSAGE_DECODER, new NetconfXMLToHelloMessageDecoder());
48     }
49
50     /**
51      * Insert session negotiator into the pipeline. It must be inserted after message decoder
52      * identified by {@link AbstractChannelInitializer#NETCONF_MESSAGE_DECODER}, (or any other custom decoder processor)
53      */
54     protected abstract void initializeSessionNegotiator(Channel ch, Promise<S> promise);
55
56 }