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

zio.http.netty.HybridContentLengthHandler.scala Maven / Gradle / Ivy

package zio.http.netty

import io.netty.channel._
import io.netty.handler.codec.http.HttpUtil.getContentLength
import io.netty.handler.codec.http._
import io.netty.handler.stream.ChunkedWriteHandler

private[netty] class HybridContentLengthHandler(maxAggregatedLength: Int) extends ChannelInboundHandlerAdapter {
  var maxLength                                                        = maxAggregatedLength
  override def channelRead(ctx: ChannelHandlerContext, msg: Any): Unit = {
    msg match {
      case httpMessage: HttpMessage =>
        val contentLength = getContentLength(httpMessage, -1L)
        if (contentLength > maxAggregatedLength) {
          if (ctx.pipeline().get(classOf[HttpObjectAggregator]) != null) {
            ctx.pipeline().replace(classOf[HttpObjectAggregator], Names.ChunkedWriteHandler, new ChunkedWriteHandler())
          }
        } else {
          if (ctx.pipeline().get(classOf[ChunkedWriteHandler]) != null) {
            ctx
              .pipeline()
              .replace(classOf[ChunkedWriteHandler], Names.HttpObjectAggregator, new HttpObjectAggregator(maxLength))
          }
        }
      case _                        => // Ignore non-HTTP messages
    }
    ctx.fireChannelRead(msg): Unit
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy