public class org.apache.cassandra.io.util.RewindableDataInputStreamPlus extends java.io.FilterInputStream implements org.apache.cassandra.io.util.RewindableDataInput, java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.cassandra.io.util.RewindableDataInputStreamPlus
  super_class: java.io.FilterInputStream
{
  private boolean marked;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  private java.util.concurrent.atomic.AtomicBoolean closed;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  protected int memAvailable;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int diskTailAvailable;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int diskHeadAvailable;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  private final java.io.File spillFile;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int initialMemBufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxMemBufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxDiskBufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile byte[] memBuffer;
    descriptor: [B
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

  private java.io.RandomAccessFile spillBuffer;
    descriptor: Ljava/io/RandomAccessFile;
    flags: (0x0002) ACC_PRIVATE

  private final org.apache.cassandra.io.util.DataInputPlus dataReader;
    descriptor: Lorg/apache/cassandra/io/util/DataInputPlus;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.io.InputStream, int, int, java.io.File, int);
    descriptor: (Ljava/io/InputStream;IILjava/io/File;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // java.io.InputStream in
        start local 2 // int initialMemBufferSize
        start local 3 // int maxMemBufferSize
        start local 4 // java.io.File spillFile
        start local 5 // int maxDiskBufferSize
         0: .line 75
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.FilterInputStream.<init>:(Ljava/io/InputStream;)V
         1: .line 53
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
         2: .line 54
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.exhausted:Z
         3: .line 55
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
         4: .line 57
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         5: .line 58
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
         6: .line 59
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
         7: .line 76
            aload 0 /* this */
            new org.apache.cassandra.io.util.DataInputPlus$DataInputStreamPlus
            dup
            aload 0 /* this */
            invokespecial org.apache.cassandra.io.util.DataInputPlus$DataInputStreamPlus.<init>:(Ljava/io/InputStream;)V
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
         8: .line 77
            aload 0 /* this */
            iload 2 /* initialMemBufferSize */
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.initialMemBufferSize:I
         9: .line 78
            aload 0 /* this */
            iload 3 /* maxMemBufferSize */
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
        10: .line 79
            aload 0 /* this */
            aload 4 /* spillFile */
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
        11: .line 80
            aload 0 /* this */
            iload 5 /* maxDiskBufferSize */
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
        12: .line 81
            return
        end local 5 // int maxDiskBufferSize
        end local 4 // java.io.File spillFile
        end local 3 // int maxMemBufferSize
        end local 2 // int initialMemBufferSize
        end local 1 // java.io.InputStream in
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   13     0                  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   13     1                    in  Ljava/io/InputStream;
            0   13     2  initialMemBufferSize  I
            0   13     3      maxMemBufferSize  I
            0   13     4             spillFile  Ljava/io/File;
            0   13     5     maxDiskBufferSize  I
    MethodParameters:
                      Name  Flags
      in                    
      initialMemBufferSize  
      maxMemBufferSize      
      spillFile             
      maxDiskBufferSize     

  public org.apache.cassandra.io.util.DataPosition mark();
    descriptor: ()Lorg/apache/cassandra/io/util/DataPosition;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 91
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.mark:(I)V
         1: .line 92
            new org.apache.cassandra.io.util.RewindableDataInputStreamPlus$RewindableDataInputPlusMark
            dup
            invokespecial org.apache.cassandra.io.util.RewindableDataInputStreamPlus$RewindableDataInputPlusMark.<init>:()V
            areturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;

  public void reset(org.apache.cassandra.io.util.DataPosition);
    descriptor: (Lorg/apache/cassandra/io/util/DataPosition;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // org.apache.cassandra.io.util.DataPosition mark
         0: .line 102
            aload 0 /* this */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.reset:()V
         1: .line 103
            return
        end local 1 // org.apache.cassandra.io.util.DataPosition mark
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    2     1  mark  Lorg/apache/cassandra/io/util/DataPosition;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      mark  

  public long bytesPastMark(org.apache.cassandra.io.util.DataPosition);
    descriptor: (Lorg/apache/cassandra/io/util/DataPosition;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // org.apache.cassandra.io.util.DataPosition mark
         0: .line 107
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_m1
            if_icmpne 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            isub
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            isub
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus org.apache.cassandra.io.util.DataPosition
      StackMap stack: int int
         2: iadd
            i2l
            lreturn
        end local 1 // org.apache.cassandra.io.util.DataPosition mark
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    3     1  mark  Lorg/apache/cassandra/io/util/DataPosition;
    MethodParameters:
      Name  Flags
      mark  

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 119
            iconst_1
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;

  public synchronized void mark(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // int readlimit
         0: .line 129
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifeq 2
         1: .line 130
            new java.lang.IllegalStateException
            dup
            ldc "Cannot mark already marked stream."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifgt 3
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifgt 3
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 4
         3: .line 133
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Can only mark stream after reading previously marked data."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
         5: .line 136
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         6: .line 137
            aload 0 /* this */
            iconst_m1
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
         7: .line 138
            aload 0 /* this */
            iconst_m1
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
         8: .line 139
            return
        end local 1 // int readlimit
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    9     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 143
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifne 2
         1: .line 144
            new java.io.IOException
            dup
            ldc "Must call mark() before calling reset()."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.exhausted:Z
            ifeq 4
         3: .line 147
            new java.io.IOException
            dup
            ldc "Read more than capacity: %d bytes."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         5: .line 150
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBufferSize:I
         6: .line 152
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_m1
            if_icmpne 10
         7: .line 154
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
         8: .line 155
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
         9: .line 156
            goto 17
        10: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 11
            iconst_0
            goto 12
      StackMap locals:
      StackMap stack:
        11: aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            l2i
      StackMap locals:
      StackMap stack: int
        12: istore 1 /* initialPos */
        start local 1 // int initialPos
        13: .line 160
            iload 1 /* initialPos */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iadd
            istore 2 /* diskMarkpos */
        start local 2 // int diskMarkpos
        14: .line 161
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            iload 2 /* diskMarkpos */
            i2l
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        15: .line 163
            aload 0 /* this */
            iload 2 /* diskMarkpos */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        16: .line 164
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            isub
            iload 2 /* diskMarkpos */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        end local 2 // int diskMarkpos
        end local 1 // int initialPos
        17: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
        18: .line 168
            return
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
           13   17     1   initialPos  I
           14   17     2  diskMarkpos  I
    Exceptions:
      throws java.io.IOException

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 173
            aload 0 /* this */
            invokespecial java.io.FilterInputStream.available:()I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iadd
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iadd
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 178
            aload 0 /* this */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.readOne:()I
            istore 1 /* read */
        start local 1 // int read
         1: .line 179
            iload 1 /* read */
            iconst_m1
            if_icmpne 3
         2: .line 180
            iload 1 /* read */
            ireturn
         3: .line 182
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifeq 8
         4: .line 185
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.isExhausted:(I)Z
            ifeq 7
         5: .line 187
            aload 0 /* this */
            iconst_1
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.exhausted:Z
         6: .line 188
            iload 1 /* read */
            ireturn
         7: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* read */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.writeOne:(I)V
         8: .line 194
      StackMap locals:
      StackMap stack:
            iload 1 /* read */
            ireturn
        end local 1 // int read
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            1    9     1  read  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 199
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.readMulti:([BII)I
            istore 4 /* readBytes */
        start local 4 // int readBytes
         1: .line 200
            iload 4 /* readBytes */
            iconst_m1
            if_icmpne 3
         2: .line 201
            iload 4 /* readBytes */
            ireturn
         3: .line 203
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifeq 8
         4: .line 206
            aload 0 /* this */
            iload 4 /* readBytes */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.isExhausted:(I)Z
            ifeq 7
         5: .line 208
            aload 0 /* this */
            iconst_1
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.exhausted:Z
         6: .line 209
            iload 4 /* readBytes */
            ireturn
         7: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* readBytes */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.writeMulti:([BII)V
         8: .line 215
      StackMap locals:
      StackMap stack:
            iload 4 /* readBytes */
            ireturn
        end local 4 // int readBytes
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    9     1          b  [B
            0    9     2        off  I
            0    9     3        len  I
            1    9     4  readBytes  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  private void maybeCreateDiskBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 220
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            ifnonnull 5
         1: .line 222
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            invokevirtual java.io.File.getParentFile:()Ljava/io/File;
            invokevirtual java.io.File.exists:()Z
            ifne 3
         2: .line 223
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            invokevirtual java.io.File.getParentFile:()Ljava/io/File;
            invokevirtual java.io.File.mkdirs:()Z
            pop
         3: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            invokevirtual java.io.File.createNewFile:()Z
            pop
         4: .line 226
            aload 0 /* this */
            new java.io.RandomAccessFile
            dup
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            ldc "rw"
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
         5: .line 228
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  private int readOne();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 233
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifne 14
         1: .line 235
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifle 5
         2: .line 237
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 238
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iconst_1
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         4: .line 239
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            iload 1 /* pos */
            baload
            sipush 255
            iand
            ireturn
        end local 1 // int pos
         5: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifgt 6
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 14
         6: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* read */
        start local 1 // int read
         7: .line 245
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 9
         8: .line 246
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_1
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            goto 11
         9: .line 247
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 11
        10: .line 248
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iconst_1
            iadd
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        11: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifne 13
        12: .line 250
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        13: .line 251
      StackMap locals:
      StackMap stack:
            iload 1 /* read */
            ireturn
        end local 1 // int read
        14: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.in:Ljava/io/InputStream;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.InputStream
            invokevirtual java.io.InputStream.read:()I
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            3    5     1   pos  I
            7   14     1  read  I
    Exceptions:
      throws java.io.IOException

  private boolean isExhausted(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // int readBytes
         0: .line 260
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.exhausted:Z
            ifne 3
            iload 1 /* readBytes */
            i2l
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            i2l
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_m1
            if_icmpne 1
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            goto 2
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus int
      StackMap stack: long long
         1: aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iadd
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus int
      StackMap stack: long long int
         2: i2l
            ladd
            lcmp
            ifgt 3
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 1 // int readBytes
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    4     1  readBytes  I
    MethodParameters:
           Name  Flags
      readBytes  

  private int readMulti(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 265
            iconst_0
            istore 4 /* readBytes */
        start local 4 // int readBytes
         1: .line 266
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifne 31
         2: .line 268
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifle 11
         3: .line 270
            iload 4 /* readBytes */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iload 3 /* len */
            if_icmpge 4
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            goto 5
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus byte[] int int int
      StackMap stack: int
         4: iload 3 /* len */
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus byte[] int int int
      StackMap stack: int int
         5: iadd
            istore 4 /* readBytes */
         6: .line 271
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            istore 5 /* pos */
        start local 5 // int pos
         7: .line 272
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            iload 5 /* pos */
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* readBytes */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 273
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iload 4 /* readBytes */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         9: .line 274
            iload 2 /* off */
            iload 4 /* readBytes */
            iadd
            istore 2 /* off */
        10: .line 275
            iload 3 /* len */
            iload 4 /* readBytes */
            isub
            istore 3 /* len */
        end local 5 // int pos
        11: .line 277
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 22
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 22
        12: .line 279
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iload 3 /* len */
            if_icmpge 13
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            goto 14
      StackMap locals:
      StackMap stack:
        13: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
        14: istore 5 /* readFromTail */
        start local 5 // int readFromTail
        15: .line 280
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* readFromTail */
            invokevirtual java.io.RandomAccessFile.read:([BII)I
            istore 5 /* readFromTail */
        16: .line 281
            iload 4 /* readBytes */
            iload 5 /* readFromTail */
            iadd
            istore 4 /* readBytes */
        17: .line 282
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iload 5 /* readFromTail */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        18: .line 283
            iload 2 /* off */
            iload 5 /* readFromTail */
            iadd
            istore 2 /* off */
        19: .line 284
            iload 3 /* len */
            iload 5 /* readFromTail */
            isub
            istore 3 /* len */
        20: .line 285
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifne 22
        21: .line 286
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        end local 5 // int readFromTail
        22: .line 288
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 31
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 31
        23: .line 290
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iload 3 /* len */
            if_icmpge 24
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            goto 25
      StackMap locals:
      StackMap stack:
        24: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
        25: istore 5 /* readFromHead */
        start local 5 // int readFromHead
        26: .line 291
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* readFromHead */
            invokevirtual java.io.RandomAccessFile.read:([BII)I
            istore 5 /* readFromHead */
        27: .line 292
            iload 4 /* readBytes */
            iload 5 /* readFromHead */
            iadd
            istore 4 /* readBytes */
        28: .line 293
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iload 5 /* readFromHead */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        29: .line 294
            iload 2 /* off */
            iload 5 /* readFromHead */
            iadd
            istore 2 /* off */
        30: .line 295
            iload 3 /* len */
            iload 5 /* readFromHead */
            isub
            istore 3 /* len */
        end local 5 // int readFromHead
        31: .line 299
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 33
        32: .line 300
            iload 4 /* readBytes */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.in:Ljava/io/InputStream;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.InputStream
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            iadd
            istore 4 /* readBytes */
        33: .line 302
      StackMap locals:
      StackMap stack:
            iload 4 /* readBytes */
            ireturn
        end local 4 // int readBytes
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   34     0          this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   34     1             b  [B
            0   34     2           off  I
            0   34     3           len  I
            1   34     4     readBytes  I
            7   11     5           pos  I
           15   22     5  readFromTail  I
           26   31     5  readFromHead  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  private void writeMulti(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 307
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifle 13
         1: .line 309
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            ifnonnull 3
         2: .line 310
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.initialMemBufferSize:I
            newarray 8
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
         3: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            istore 4 /* pos */
        start local 4 // int pos
         4: .line 312
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iload 3 /* len */
            if_icmpge 5
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            goto 6
      StackMap locals: int
      StackMap stack:
         5: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
         6: istore 5 /* memWritten */
        start local 5 // int memWritten
         7: .line 313
            iload 4 /* pos */
            iload 5 /* memWritten */
            iadd
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            arraylength
            if_icmplt 9
         8: .line 314
            aload 0 /* this */
            iload 4 /* pos */
            iload 5 /* memWritten */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.growMemBuffer:(II)V
         9: .line 315
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            iload 4 /* pos */
            iload 5 /* memWritten */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 316
            iload 2 /* off */
            iload 5 /* memWritten */
            iadd
            istore 2 /* off */
        11: .line 317
            iload 3 /* len */
            iload 5 /* memWritten */
            isub
            istore 3 /* len */
        12: .line 318
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iload 5 /* memWritten */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
        end local 5 // int memWritten
        end local 4 // int pos
        13: .line 321
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 33
        14: .line 323
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_m1
            if_icmpne 18
        15: .line 325
            aload 0 /* this */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maybeCreateDiskBuffer:()V
        16: .line 326
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            l2i
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        17: .line 327
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        18: .line 330
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 28
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 28
        19: .line 332
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iload 3 /* len */
            if_icmpge 20
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            goto 21
      StackMap locals:
      StackMap stack:
        20: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
        21: istore 4 /* diskTailWritten */
        start local 4 // int diskTailWritten
        22: .line 333
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* diskTailWritten */
            invokevirtual java.io.RandomAccessFile.write:([BII)V
        23: .line 334
            iload 2 /* off */
            iload 4 /* diskTailWritten */
            iadd
            istore 2 /* off */
        24: .line 335
            iload 3 /* len */
            iload 4 /* diskTailWritten */
            isub
            istore 3 /* len */
        25: .line 336
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iload 4 /* diskTailWritten */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        26: .line 337
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifne 28
        27: .line 338
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        end local 4 // int diskTailWritten
        28: .line 341
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifle 33
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 33
        29: .line 343
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iload 3 /* len */
            if_icmpge 30
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            goto 31
      StackMap locals:
      StackMap stack:
        30: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
        31: istore 4 /* diskHeadWritten */
        start local 4 // int diskHeadWritten
        32: .line 344
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* diskHeadWritten */
            invokevirtual java.io.RandomAccessFile.write:([BII)V
        end local 4 // int diskHeadWritten
        33: .line 347
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   34     0             this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   34     1                b  [B
            0   34     2              off  I
            0   34     3              len  I
            4   13     4              pos  I
            7   13     5       memWritten  I
           22   28     4  diskTailWritten  I
           32   33     4  diskHeadWritten  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  private void writeOne(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // int value
         0: .line 351
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifle 9
         1: .line 353
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            ifnonnull 3
         2: .line 354
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.initialMemBufferSize:I
            newarray 8
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
         3: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            isub
            istore 2 /* pos */
        start local 2 // int pos
         4: .line 356
            iload 2 /* pos */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            arraylength
            if_icmpne 6
         5: .line 357
            aload 0 /* this */
            iload 2 /* pos */
            iconst_1
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.growMemBuffer:(II)V
         6: .line 358
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            iload 2 /* pos */
            iload 1 /* value */
            i2b
            bastore
         7: .line 359
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            iconst_1
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
         8: .line 360
            return
        end local 2 // int pos
         9: .line 363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_m1
            if_icmpne 13
        10: .line 365
            aload 0 /* this */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maybeCreateDiskBuffer:()V
        11: .line 366
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            l2i
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        12: .line 367
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxDiskBufferSize:I
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        13: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifgt 14
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 22
        14: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            iload 1 /* value */
            invokevirtual java.io.RandomAccessFile.write:(I)V
        15: .line 373
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 17
        16: .line 374
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iconst_1
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            goto 19
        17: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 19
        18: .line 376
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iconst_1
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        19: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifne 21
        20: .line 378
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        21: .line 379
      StackMap locals:
      StackMap stack:
            return
        22: .line 381
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int value
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   23     1  value  I
            4    9     2    pos  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      value  

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
         0: .line 385
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.read:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    1     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  private void growMemBuffer(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // int pos
        start local 2 // int writeSize
         0: .line 390
            iconst_2
            iload 1 /* pos */
            iload 2 /* writeSize */
            iadd
            imul
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.maxMemBufferSize:I
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* newSize */
        start local 3 // int newSize
         1: .line 391
            iload 3 /* newSize */
            newarray 8
            astore 4 /* newBuffer */
        start local 4 // byte[] newBuffer
         2: .line 392
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
            iconst_0
            aload 4 /* newBuffer */
            iconst_0
            iload 1 /* pos */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 393
            aload 0 /* this */
            aload 4 /* newBuffer */
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memBuffer:[B
         4: .line 394
            return
        end local 4 // byte[] newBuffer
        end local 3 // int newSize
        end local 2 // int writeSize
        end local 1 // int pos
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    5     1        pos  I
            0    5     2  writeSize  I
            1    5     3    newSize  I
            2    5     4  newBuffer  [B
    MethodParameters:
           Name  Flags
      pos        
      writeSize  

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // long n
         0: .line 398
            lconst_0
            lstore 3 /* skipped */
        start local 3 // long skipped
         1: .line 400
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.marked:Z
            ifeq 6
         2: .line 403
            goto 4
         3: .line 405
      StackMap locals: long
      StackMap stack:
            lload 3 /* skipped */
            lconst_1
            ladd
            lstore 3 /* skipped */
         4: .line 403
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            dup2
            lconst_1
            lsub
            lstore 1 /* n */
            lconst_0
            lcmp
            ifle 5
            aload 0 /* this */
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.read:()I
            iconst_m1
            if_icmpne 3
         5: .line 407
      StackMap locals:
      StackMap stack:
            lload 3 /* skipped */
            lreturn
         6: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            ifle 12
         7: .line 412
            lload 3 /* skipped */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            i2l
            lload 1 /* n */
            lcmp
            ifge 8
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            i2l
            goto 9
      StackMap locals:
      StackMap stack: long
         8: lload 1 /* n */
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus long long
      StackMap stack: long long
         9: ladd
            lstore 3 /* skipped */
        10: .line 413
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
            i2l
            lload 3 /* skipped */
            lsub
            l2i
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.memAvailable:I
        11: .line 414
            lload 1 /* n */
            lload 3 /* skipped */
            lsub
            lstore 1 /* n */
        12: .line 416
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifle 22
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifle 22
        13: .line 418
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            i2l
            lload 1 /* n */
            lcmp
            ifge 14
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            goto 15
      StackMap locals:
      StackMap stack:
        14: lload 1 /* n */
            l2i
      StackMap locals:
      StackMap stack: int
        15: istore 5 /* skipFromTail */
        start local 5 // int skipFromTail
        16: .line 419
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            iload 5 /* skipFromTail */
            invokevirtual java.io.RandomAccessFile.skipBytes:(I)I
            pop
        17: .line 420
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            iload 5 /* skipFromTail */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
        18: .line 421
            lload 3 /* skipped */
            iload 5 /* skipFromTail */
            i2l
            ladd
            lstore 3 /* skipped */
        19: .line 422
            lload 1 /* n */
            iload 5 /* skipFromTail */
            i2l
            lsub
            lstore 1 /* n */
        20: .line 423
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskTailAvailable:I
            ifne 22
        21: .line 424
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        end local 5 // int skipFromTail
        22: .line 426
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifle 30
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            ifle 30
        23: .line 428
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            i2l
            lload 1 /* n */
            lcmp
            ifge 24
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            goto 25
      StackMap locals:
      StackMap stack:
        24: lload 1 /* n */
            l2i
      StackMap locals:
      StackMap stack: int
        25: istore 5 /* skipFromHead */
        start local 5 // int skipFromHead
        26: .line 429
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.RandomAccessFile
            iload 5 /* skipFromHead */
            invokevirtual java.io.RandomAccessFile.skipBytes:(I)I
            pop
        27: .line 430
            aload 0 /* this */
            dup
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
            iload 5 /* skipFromHead */
            isub
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.diskHeadAvailable:I
        28: .line 431
            lload 3 /* skipped */
            iload 5 /* skipFromHead */
            i2l
            ladd
            lstore 3 /* skipped */
        29: .line 432
            lload 1 /* n */
            iload 5 /* skipFromHead */
            i2l
            lsub
            lstore 1 /* n */
        end local 5 // int skipFromHead
        30: .line 435
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifle 32
        31: .line 436
            lload 3 /* skipped */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.in:Ljava/io/InputStream;
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.getIfNotClosed:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.InputStream
            lload 1 /* n */
            invokevirtual java.io.InputStream.skip:(J)J
            ladd
            lstore 3 /* skipped */
        32: .line 438
      StackMap locals:
      StackMap stack:
            lload 3 /* skipped */
            lreturn
        end local 3 // long skipped
        end local 1 // long n
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   33     0          this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   33     1             n  J
            1   33     3       skipped  J
           16   22     5  skipFromTail  I
           26   30     5  skipFromHead  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  private <T> T getIfNotClosed();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // java.lang.Object in
         0: .line 443
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 2
         1: .line 444
            new java.io.IOException
            dup
            ldc "Stream closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 445
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            areturn
        end local 1 // java.lang.Object in
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    3     1    in  TT;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(TT;)TT;
    MethodParameters:
      Name  Flags
      in    

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 450
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.cassandra.io.util.RewindableDataInputStreamPlus.close:(Z)V
         1: .line 451
            return
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public void close(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // boolean closeUnderlying
         0: .line 455
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 19
         1: .line 457
            aconst_null
            astore 2 /* fail */
        start local 2 // java.lang.Throwable fail
         2: .line 458
            iload 1 /* closeUnderlying */
            ifeq 7
         3: .line 462
            aload 0 /* this */
            invokespecial java.io.FilterInputStream.close:()V
         4: .line 463
            goto 7
         5: .line 464
      StackMap locals: org.apache.cassandra.io.util.RewindableDataInputStreamPlus int java.lang.Throwable
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
         6: .line 466
            aload 2 /* fail */
            aload 3 /* e */
            invokestatic org.apache.cassandra.utils.Throwables.merge:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 2 /* fail */
        end local 3 // java.io.IOException e
         7: .line 471
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            ifnull 13
         8: .line 473
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.close:()V
         9: .line 474
            aload 0 /* this */
            aconst_null
            putfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillBuffer:Ljava/io/RandomAccessFile;
        10: .line 476
            goto 13
      StackMap locals:
      StackMap stack: java.io.IOException
        11: astore 3 /* e */
        start local 3 // java.io.IOException e
        12: .line 478
            aload 2 /* fail */
            aload 3 /* e */
            invokestatic org.apache.cassandra.utils.Throwables.merge:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 2 /* fail */
        end local 3 // java.io.IOException e
        13: .line 482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            invokevirtual java.io.File.exists:()Z
            ifeq 18
        14: .line 484
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.spillFile:Ljava/io/File;
            invokevirtual java.io.File.delete:()Z
            pop
        15: .line 486
            goto 18
        16: .line 487
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* e */
        start local 3 // java.lang.Throwable e
        17: .line 489
            aload 2 /* fail */
            aload 3 /* e */
            invokestatic org.apache.cassandra.utils.Throwables.merge:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 2 /* fail */
        end local 3 // java.lang.Throwable e
        18: .line 491
      StackMap locals:
      StackMap stack:
            aload 2 /* fail */
            ldc Ljava/io/IOException;
            invokestatic org.apache.cassandra.utils.Throwables.maybeFail:(Ljava/lang/Throwable;Ljava/lang/Class;)V
        end local 2 // java.lang.Throwable fail
        19: .line 493
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean closeUnderlying
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   20     0             this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0   20     1  closeUnderlying  Z
            2   19     2             fail  Ljava/lang/Throwable;
            6    7     3                e  Ljava/io/IOException;
           12   13     3                e  Ljava/io/IOException;
           17   18     3                e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.io.IOException
           7    10      11  Class java.io.IOException
          13    15      16  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                 Name  Flags
      closeUnderlying  

  public void readFully(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
         0: .line 499
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            aload 1 /* b */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readFully:([B)V
         1: .line 500
            return
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void readFully(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 504
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readFully:([BII)V
         1: .line 505
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    2     1     b  [B
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int skipBytes(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
        start local 1 // int n
         0: .line 509
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            iload 1 /* n */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.skipBytes:(I)I
            ireturn
        end local 1 // int n
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
            0    1     1     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean readBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 514
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readBoolean:()Z
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 519
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readByte:()B
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public int readUnsignedByte();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 524
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readUnsignedByte:()I
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 529
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readShort:()S
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public int readUnsignedShort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 534
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readUnsignedShort:()I
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 539
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readChar:()C
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 544
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readInt:()I
            ireturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 549
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readLong:()J
            lreturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 554
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readFloat:()F
            freturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 559
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readDouble:()D
            dreturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 564
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readLine:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException

  public java.lang.String readUTF();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
         0: .line 569
            aload 0 /* this */
            getfield org.apache.cassandra.io.util.RewindableDataInputStreamPlus.dataReader:Lorg/apache/cassandra/io/util/DataInputPlus;
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readUTF:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.cassandra.io.util.RewindableDataInputStreamPlus this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/io/util/RewindableDataInputStreamPlus;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "RewindableDataInputStreamPlus.java"
NestMembers:
  org.apache.cassandra.io.util.RewindableDataInputStreamPlus$RewindableDataInputPlusMark
InnerClasses:
  public DataInputStreamPlus = org.apache.cassandra.io.util.DataInputPlus$DataInputStreamPlus of org.apache.cassandra.io.util.DataInputPlus
  protected RewindableDataInputPlusMark = org.apache.cassandra.io.util.RewindableDataInputStreamPlus$RewindableDataInputPlusMark of org.apache.cassandra.io.util.RewindableDataInputStreamPlus