All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.http.HttpServerChannelInitializer Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.http;

import static io.netty.handler.codec.http.HttpObjectDecoder.DEFAULT_MAX_CHUNK_SIZE;

import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.socket.SocketChannel;
import io.netty.handler.codec.http.HttpServerCodec;
import io.netty.handler.codec.http.cors.CorsConfig;
import io.netty.handler.codec.http.cors.CorsHandler;
import io.netty.handler.ssl.SslContext;
import io.netty.handler.traffic.ChannelTrafficShapingHandler;
import io.netty.handler.traffic.GlobalTrafficShapingHandler;

public class HttpServerChannelInitializer extends ChannelInitializer {

    private final HttpServer httpServer;
    private final SslContext sslCtx;
    private final GlobalTrafficShapingHandler globalTrafficHandler;
    private final int maxInitialLineLength;
    private final int maxHeaderSize;

    public HttpServerChannelInitializer(HttpServer httpServer, SslContext sslCtx,
            GlobalTrafficShapingHandler globalTrafficHandler) {
        this.httpServer = httpServer;
        this.sslCtx = sslCtx;
        this.globalTrafficHandler = globalTrafficHandler;
        maxInitialLineLength = httpServer.getConfig().getInt("maxInitialLineLength");
        maxHeaderSize = httpServer.getConfig().getInt("maxHeaderSize");
    }

    @Override
    public void initChannel(SocketChannel ch) {
        ChannelPipeline pipeline = ch.pipeline();
        pipeline.addLast(globalTrafficHandler);
        if (sslCtx != null) {
            pipeline.addLast(sslCtx.newHandler(ch.alloc()));
        }

        pipeline.addLast(new ChannelTrafficShapingHandler(5000));
        pipeline.addLast(new HttpServerCodec(maxInitialLineLength, maxHeaderSize, DEFAULT_MAX_CHUNK_SIZE));

        CorsConfig corsConfig = httpServer.getCorsConfig();
        if (corsConfig != null) {
            pipeline.addLast(new CorsHandler(corsConfig));
        }

        // this has to be the last handler in the pipeline
        pipeline.addLast(new HttpRequestHandler(httpServer));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy