View Javadoc
1   /*
2    * Copyright 2014 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License, version 2.0 (the
5    * "License"); you may not use this file except in compliance with the License. You may obtain a
6    * copy of the License at:
7    *
8    * https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software distributed under the License
11   * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package io.netty.example.http2.helloworld.server;
16  
17  import io.netty.channel.ChannelHandlerContext;
18  import io.netty.handler.codec.http.HttpObjectAggregator;
19  import io.netty.handler.codec.http.HttpServerCodec;
20  import io.netty.handler.ssl.ApplicationProtocolNames;
21  import io.netty.handler.ssl.ApplicationProtocolNegotiationHandler;
22  
23  /**
24   * Negotiates with the browser if HTTP2 or HTTP is going to be used. Once decided, the Netty
25   * pipeline is setup with the correct handlers for the selected protocol.
26   */
27  public class Http2OrHttpHandler extends ApplicationProtocolNegotiationHandler {
28  
29      private static final int MAX_CONTENT_LENGTH = 1024 * 100;
30  
31      protected Http2OrHttpHandler() {
32          super(ApplicationProtocolNames.HTTP_1_1);
33      }
34  
35      @Override
36      protected void configurePipeline(ChannelHandlerContext ctx, String protocol) throws Exception {
37          if (ApplicationProtocolNames.HTTP_2.equals(protocol)) {
38              ctx.pipeline().addLast(new HelloWorldHttp2HandlerBuilder().build());
39              return;
40          }
41  
42          if (ApplicationProtocolNames.HTTP_1_1.equals(protocol)) {
43              ctx.pipeline().addLast(new HttpServerCodec(),
44                                     new HttpObjectAggregator(MAX_CONTENT_LENGTH),
45                                     new HelloWorldHttp1Handler("ALPN Negotiation"));
46              return;
47          }
48  
49          throw new IllegalStateException("unknown protocol: " + protocol);
50      }
51  }