public class io.dropwizard.jetty.BiDiGzipHandler extends org.eclipse.jetty.server.handler.gzip.GzipHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.jetty.BiDiGzipHandler
  super_class: org.eclipse.jetty.server.handler.gzip.GzipHandler
{
  private static final java.lang.ThreadLocal<java.util.zip.Inflater> localInflater;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Ljava/util/zip/Inflater;>;

  private int inputBufferSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean inflateNoWrap;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 33
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            putstatic io.dropwizard.jetty.BiDiGzipHandler.localInflater:Ljava/lang/ThreadLocal;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
         0: .line 31
            aload 0 /* this */
            invokespecial org.eclipse.jetty.server.handler.gzip.GzipHandler.<init>:()V
         1: .line 38
            aload 0 /* this */
            sipush 8192
            putfield io.dropwizard.jetty.BiDiGzipHandler.inputBufferSize:I
         2: .line 44
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.jetty.BiDiGzipHandler.inflateNoWrap:Z
         3: .line 31
            return
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/dropwizard/jetty/BiDiGzipHandler;

  public boolean isInflateNoWrap();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
         0: .line 47
            aload 0 /* this */
            getfield io.dropwizard.jetty.BiDiGzipHandler.inflateNoWrap:Z
            ireturn
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/jetty/BiDiGzipHandler;

  public void setInflateNoWrap(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // boolean inflateNoWrap
         0: .line 51
            aload 0 /* this */
            iload 1 /* inflateNoWrap */
            putfield io.dropwizard.jetty.BiDiGzipHandler.inflateNoWrap:Z
         1: .line 52
            return
        end local 1 // boolean inflateNoWrap
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    2     1  inflateNoWrap  Z
    MethodParameters:
               Name  Flags
      inflateNoWrap  

  public void setInputBufferSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // int inputBufferSize
         0: .line 55
            aload 0 /* this */
            iload 1 /* inputBufferSize */
            putfield io.dropwizard.jetty.BiDiGzipHandler.inputBufferSize:I
         1: .line 56
            return
        end local 1 // int inputBufferSize
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    2     1  inputBufferSize  I
    MethodParameters:
                 Name  Flags
      inputBufferSize  

  public void handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse);
    descriptor: (Ljava/lang/String;Lorg/eclipse/jetty/server/Request;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // java.lang.String target
        start local 2 // org.eclipse.jetty.server.Request baseRequest
        start local 3 // javax.servlet.http.HttpServletRequest request
        start local 4 // javax.servlet.http.HttpServletResponse response
         0: .line 61
            aload 3 /* request */
            getstatic org.eclipse.jetty.http.HttpHeader.CONTENT_ENCODING:Lorg/eclipse/jetty/http/HttpHeader;
            invokevirtual org.eclipse.jetty.http.HttpHeader.asString:()Ljava/lang/String;
            invokeinterface javax.servlet.http.HttpServletRequest.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            astore 5 /* encoding */
        start local 5 // java.lang.String encoding
         1: .line 62
            ldc "gzip"
            aload 5 /* encoding */
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         2: .line 63
            aload 0 /* this */
            aload 1 /* target */
            aload 2 /* baseRequest */
            aload 0 /* this */
            aload 0 /* this */
            aload 3 /* request */
            invokevirtual io.dropwizard.jetty.BiDiGzipHandler.removeContentHeaders:(Ljavax/servlet/http/HttpServletRequest;)Ljavax/servlet/http/HttpServletRequest;
            invokevirtual io.dropwizard.jetty.BiDiGzipHandler.wrapGzippedRequest:(Ljavax/servlet/http/HttpServletRequest;)Lio/dropwizard/jetty/BiDiGzipHandler$WrappedServletRequest;
            aload 4 /* response */
            invokespecial org.eclipse.jetty.server.handler.gzip.GzipHandler.handle:(Ljava/lang/String;Lorg/eclipse/jetty/server/Request;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V
         3: .line 64
            goto 8
      StackMap locals: java.lang.String
      StackMap stack:
         4: ldc "deflate"
            aload 5 /* encoding */
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 7
         5: .line 65
            aload 0 /* this */
            aload 1 /* target */
            aload 2 /* baseRequest */
            aload 0 /* this */
            aload 0 /* this */
            aload 3 /* request */
            invokevirtual io.dropwizard.jetty.BiDiGzipHandler.removeContentHeaders:(Ljavax/servlet/http/HttpServletRequest;)Ljavax/servlet/http/HttpServletRequest;
            invokevirtual io.dropwizard.jetty.BiDiGzipHandler.wrapDeflatedRequest:(Ljavax/servlet/http/HttpServletRequest;)Lio/dropwizard/jetty/BiDiGzipHandler$WrappedServletRequest;
            aload 4 /* response */
            invokespecial org.eclipse.jetty.server.handler.gzip.GzipHandler.handle:(Ljava/lang/String;Lorg/eclipse/jetty/server/Request;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V
         6: .line 66
            goto 8
         7: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* target */
            aload 2 /* baseRequest */
            aload 3 /* request */
            aload 4 /* response */
            invokespecial org.eclipse.jetty.server.handler.gzip.GzipHandler.handle:(Ljava/lang/String;Lorg/eclipse/jetty/server/Request;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V
         8: .line 69
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.lang.String encoding
        end local 4 // javax.servlet.http.HttpServletResponse response
        end local 3 // javax.servlet.http.HttpServletRequest request
        end local 2 // org.eclipse.jetty.server.Request baseRequest
        end local 1 // java.lang.String target
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    9     1       target  Ljava/lang/String;
            0    9     2  baseRequest  Lorg/eclipse/jetty/server/Request;
            0    9     3      request  Ljavax/servlet/http/HttpServletRequest;
            0    9     4     response  Ljavax/servlet/http/HttpServletResponse;
            1    9     5     encoding  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException, javax.servlet.ServletException
    MethodParameters:
             Name  Flags
      target       
      baseRequest  
      request      
      response     

  private java.util.zip.Inflater buildInflater();
    descriptor: ()Ljava/util/zip/Inflater;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
         0: .line 72
            getstatic io.dropwizard.jetty.BiDiGzipHandler.localInflater:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast java.util.zip.Inflater
            astore 1 /* inflater */
        start local 1 // java.util.zip.Inflater inflater
         1: .line 73
            aload 1 /* inflater */
            ifnull 5
         2: .line 76
            getstatic io.dropwizard.jetty.BiDiGzipHandler.localInflater:Ljava/lang/ThreadLocal;
            aconst_null
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         3: .line 79
            aload 1 /* inflater */
            invokevirtual java.util.zip.Inflater.reset:()V
         4: .line 80
            aload 1 /* inflater */
            areturn
         5: .line 82
      StackMap locals: java.util.zip.Inflater
      StackMap stack:
            new java.util.zip.Inflater
            dup
            aload 0 /* this */
            getfield io.dropwizard.jetty.BiDiGzipHandler.inflateNoWrap:Z
            invokespecial java.util.zip.Inflater.<init>:(Z)V
            areturn
        end local 1 // java.util.zip.Inflater inflater
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/dropwizard/jetty/BiDiGzipHandler;
            1    6     1  inflater  Ljava/util/zip/Inflater;

  private io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest wrapDeflatedRequest(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)Lio/dropwizard/jetty/BiDiGzipHandler$WrappedServletRequest;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 87
            aload 0 /* this */
            invokevirtual io.dropwizard.jetty.BiDiGzipHandler.buildInflater:()Ljava/util/zip/Inflater;
            astore 2 /* inflater */
        start local 2 // java.util.zip.Inflater inflater
         1: .line 89
            new io.dropwizard.jetty.BiDiGzipHandler$1
            dup
            aload 0 /* this */
            aload 1 /* request */
            invokeinterface javax.servlet.http.HttpServletRequest.getInputStream:()Ljavax/servlet/ServletInputStream;
            aload 2 /* inflater */
            aload 0 /* this */
            getfield io.dropwizard.jetty.BiDiGzipHandler.inputBufferSize:I
            aload 2 /* inflater */
            invokespecial io.dropwizard.jetty.BiDiGzipHandler$1.<init>:(Lio/dropwizard/jetty/BiDiGzipHandler;Ljava/io/InputStream;Ljava/util/zip/Inflater;ILjava/util/zip/Inflater;)V
            astore 3 /* input */
        start local 3 // java.util.zip.InflaterInputStream input
         2: .line 96
            new io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest
            dup
            aload 1 /* request */
            new io.dropwizard.jetty.ZipExceptionHandlingInputStream
            dup
            aload 3 /* input */
            ldc "deflate"
            invokespecial io.dropwizard.jetty.ZipExceptionHandlingInputStream.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
            invokespecial io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest.<init>:(Ljavax/servlet/http/HttpServletRequest;Ljava/io/InputStream;)V
         3: areturn
        end local 3 // java.util.zip.InflaterInputStream input
         4: .line 97
      StackMap locals: io.dropwizard.jetty.BiDiGzipHandler javax.servlet.http.HttpServletRequest java.util.zip.Inflater
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
         5: .line 98
            ldc "deflate"
            aload 3 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 3 // java.io.IOException e
        end local 2 // java.util.zip.Inflater inflater
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    6     1   request  Ljavax/servlet/http/HttpServletRequest;
            1    6     2  inflater  Ljava/util/zip/Inflater;
            2    4     3     input  Ljava/util/zip/InflaterInputStream;
            5    6     3         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      request  

  private io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest wrapGzippedRequest(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)Lio/dropwizard/jetty/BiDiGzipHandler$WrappedServletRequest;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 104
            new java.util.zip.GZIPInputStream
            dup
            aload 1 /* request */
            invokeinterface javax.servlet.http.HttpServletRequest.getInputStream:()Ljavax/servlet/ServletInputStream;
            aload 0 /* this */
            getfield io.dropwizard.jetty.BiDiGzipHandler.inputBufferSize:I
            invokespecial java.util.zip.GZIPInputStream.<init>:(Ljava/io/InputStream;I)V
            astore 2 /* input */
        start local 2 // java.util.zip.GZIPInputStream input
         1: .line 105
            new io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest
            dup
            aload 1 /* request */
            new io.dropwizard.jetty.ZipExceptionHandlingInputStream
            dup
            aload 2 /* input */
            ldc "gzip"
            invokespecial io.dropwizard.jetty.ZipExceptionHandlingInputStream.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
            invokespecial io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest.<init>:(Ljavax/servlet/http/HttpServletRequest;Ljava/io/InputStream;)V
         2: areturn
        end local 2 // java.util.zip.GZIPInputStream input
         3: .line 106
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* e */
        start local 2 // java.io.IOException e
         4: .line 107
            ldc "gzip"
            aload 2 /* e */
            invokestatic io.dropwizard.jetty.ZipExceptionHandlingInputStream.handleException:(Ljava/lang/String;Ljava/io/IOException;)Lorg/eclipse/jetty/http/BadMessageException;
            athrow
        end local 2 // java.io.IOException e
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    5     1  request  Ljavax/servlet/http/HttpServletRequest;
            1    3     2    input  Ljava/util/zip/GZIPInputStream;
            4    5     2        e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      request  

  private javax.servlet.http.HttpServletRequest removeContentHeaders(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)Ljavax/servlet/http/HttpServletRequest;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.dropwizard.jetty.BiDiGzipHandler this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 114
            new io.dropwizard.jetty.BiDiGzipHandler$RemoveHttpHeadersWrapper
            dup
            aload 1 /* request */
            invokedynamic compare()Ljava/util/Comparator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)I
                  java/lang/String.compareToIgnoreCase(Ljava/lang/String;)I (5)
                  (Ljava/lang/String;Ljava/lang/String;)I
            invokestatic com.google.common.collect.ImmutableSortedSet.orderedBy:(Ljava/util/Comparator;)Lcom/google/common/collect/ImmutableSortedSet$Builder;
         1: .line 115
            getstatic org.eclipse.jetty.http.HttpHeader.CONTENT_ENCODING:Lorg/eclipse/jetty/http/HttpHeader;
            invokevirtual org.eclipse.jetty.http.HttpHeader.asString:()Ljava/lang/String;
            invokevirtual com.google.common.collect.ImmutableSortedSet$Builder.add:(Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSortedSet$Builder;
         2: .line 116
            getstatic org.eclipse.jetty.http.HttpHeader.CONTENT_LENGTH:Lorg/eclipse/jetty/http/HttpHeader;
            invokevirtual org.eclipse.jetty.http.HttpHeader.asString:()Ljava/lang/String;
            invokevirtual com.google.common.collect.ImmutableSortedSet$Builder.add:(Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSortedSet$Builder;
         3: .line 117
            invokevirtual com.google.common.collect.ImmutableSortedSet$Builder.build:()Lcom/google/common/collect/ImmutableSortedSet;
         4: .line 114
            invokespecial io.dropwizard.jetty.BiDiGzipHandler$RemoveHttpHeadersWrapper.<init>:(Ljavax/servlet/http/HttpServletRequest;Lcom/google/common/collect/ImmutableSortedSet;)V
            areturn
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // io.dropwizard.jetty.BiDiGzipHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/dropwizard/jetty/BiDiGzipHandler;
            0    5     1  request  Ljavax/servlet/http/HttpServletRequest;
    MethodParameters:
         Name  Flags
      request  final
}
SourceFile: "BiDiGzipHandler.java"
NestMembers:
  io.dropwizard.jetty.BiDiGzipHandler$1  io.dropwizard.jetty.BiDiGzipHandler$RemoveHttpHeadersWrapper  io.dropwizard.jetty.BiDiGzipHandler$WrappedServletInputStream  io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest
InnerClasses:
  public final Builder = com.google.common.collect.ImmutableSortedSet$Builder of com.google.common.collect.ImmutableSortedSet
  io.dropwizard.jetty.BiDiGzipHandler$1
  private RemoveHttpHeadersWrapper = io.dropwizard.jetty.BiDiGzipHandler$RemoveHttpHeadersWrapper of io.dropwizard.jetty.BiDiGzipHandler
  private WrappedServletInputStream = io.dropwizard.jetty.BiDiGzipHandler$WrappedServletInputStream of io.dropwizard.jetty.BiDiGzipHandler
  private WrappedServletRequest = io.dropwizard.jetty.BiDiGzipHandler$WrappedServletRequest of io.dropwizard.jetty.BiDiGzipHandler
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles