public class org.bson.io.ByteBufferBsonInput implements org.bson.io.BsonInput
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bson.io.ByteBufferBsonInput
  super_class: java.lang.Object
{
  private static final java.nio.charset.Charset UTF8_CHARSET;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String[] ONE_BYTE_ASCII_STRINGS;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private org.bson.ByteBuf buffer;
    descriptor: Lorg/bson/ByteBuf;
    flags: (0x0002) ACC_PRIVATE

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 34
            ldc "UTF-8"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            putstatic org.bson.io.ByteBufferBsonInput.UTF8_CHARSET:Ljava/nio/charset/Charset;
         1: .line 36
            sipush 128
            anewarray java.lang.String
            putstatic org.bson.io.ByteBufferBsonInput.ONE_BYTE_ASCII_STRINGS:[Ljava/lang/String;
         2: .line 39
            iconst_0
            istore 0 /* b */
        start local 0 // int b
         3: goto 6
         4: .line 40
      StackMap locals: int
      StackMap stack:
            getstatic org.bson.io.ByteBufferBsonInput.ONE_BYTE_ASCII_STRINGS:[Ljava/lang/String;
            iload 0 /* b */
            iload 0 /* b */
            i2c
            invokestatic java.lang.String.valueOf:(C)Ljava/lang/String;
            aastore
         5: .line 39
            iinc 0 /* b */ 1
      StackMap locals:
      StackMap stack:
         6: iload 0 /* b */
            getstatic org.bson.io.ByteBufferBsonInput.ONE_BYTE_ASCII_STRINGS:[Ljava/lang/String;
            arraylength
            if_icmplt 4
        end local 0 // int b
         7: .line 42
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            3    7     0     b  I

  public void <init>(org.bson.ByteBuf);
    descriptor: (Lorg/bson/ByteBuf;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // org.bson.ByteBuf buffer
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_m1
            putfield org.bson.io.ByteBufferBsonInput.mark:I
         2: .line 54
            aload 1 /* buffer */
            ifnonnull 4
         3: .line 55
            new java.lang.IllegalArgumentException
            dup
            ldc "buffer can not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 57
      StackMap locals: org.bson.io.ByteBufferBsonInput org.bson.ByteBuf
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            putfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
         5: .line 58
            aload 1 /* buffer */
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokeinterface org.bson.ByteBuf.order:(Ljava/nio/ByteOrder;)Lorg/bson/ByteBuf;
            pop
         6: .line 59
            return
        end local 1 // org.bson.ByteBuf buffer
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/bson/io/ByteBufferBsonInput;
            0    7     1  buffer  Lorg/bson/ByteBuf;
    MethodParameters:
        Name  Flags
      buffer  final

  public int getPosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 63
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 64
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.position:()I
            ireturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 70
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 71
            aload 0 /* this */
            iconst_1
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 72
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.get:()B
            ireturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public void readBytes(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // byte[] bytes
         0: .line 77
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 78
            aload 0 /* this */
            aload 1 /* bytes */
            arraylength
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 79
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            aload 1 /* bytes */
            invokeinterface org.bson.ByteBuf.get:([B)Lorg/bson/ByteBuf;
            pop
         3: .line 80
            return
        end local 1 // byte[] bytes
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bson/io/ByteBufferBsonInput;
            0    4     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  final

  public void readBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int length
         0: .line 84
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 85
            aload 0 /* this */
            iload 3 /* length */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 86
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            aload 1 /* bytes */
            iload 2 /* offset */
            iload 3 /* length */
            invokeinterface org.bson.ByteBuf.get:([BII)Lorg/bson/ByteBuf;
            pop
         3: .line 87
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/bson/io/ByteBufferBsonInput;
            0    4     1   bytes  [B
            0    4     2  offset  I
            0    4     3  length  I
    MethodParameters:
        Name  Flags
      bytes   final
      offset  final
      length  final

  public long readInt64();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 91
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 92
            aload 0 /* this */
            bipush 8
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 93
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.getLong:()J
            lreturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 98
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 99
            aload 0 /* this */
            bipush 8
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 100
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.getDouble:()D
            dreturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public int readInt32();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 105
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 106
            aload 0 /* this */
            iconst_4
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureAvailable:(I)V
         2: .line 107
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.getInt:()I
            ireturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public org.bson.types.ObjectId readObjectId();
    descriptor: ()Lorg/bson/types/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 112
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 113
            bipush 12
            newarray 8
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         2: .line 114
            aload 0 /* this */
            aload 1 /* bytes */
            invokevirtual org.bson.io.ByteBufferBsonInput.readBytes:([B)V
         3: .line 115
            new org.bson.types.ObjectId
            dup
            aload 1 /* bytes */
            invokespecial org.bson.types.ObjectId.<init>:([B)V
            areturn
        end local 1 // byte[] bytes
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bson/io/ByteBufferBsonInput;
            2    4     1  bytes  [B

  public java.lang.String readString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 120
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 121
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readInt32:()I
            istore 1 /* size */
        start local 1 // int size
         2: .line 122
            iload 1 /* size */
            ifgt 6
         3: .line 123
            new org.bson.BsonSerializationException
            dup
            ldc "While decoding a BSON string found a size that is not a positive number: %d"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 124
            iload 1 /* size */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         5: .line 123
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.BsonSerializationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 126
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            invokevirtual org.bson.io.ByteBufferBsonInput.readString:(I)Ljava/lang/String;
            areturn
        end local 1 // int size
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bson/io/ByteBufferBsonInput;
            2    7     1  size  I

  public java.lang.String readCString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 131
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 134
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.position:()I
            istore 1 /* mark */
        start local 1 // int mark
         2: .line 135
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readUntilNullByte:()V
         3: .line 136
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.position:()I
            iload 1 /* mark */
            isub
            istore 2 /* size */
        start local 2 // int size
         4: .line 137
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            iload 1 /* mark */
            invokeinterface org.bson.ByteBuf.position:(I)Lorg/bson/ByteBuf;
            pop
         5: .line 139
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual org.bson.io.ByteBufferBsonInput.readString:(I)Ljava/lang/String;
            areturn
        end local 2 // int size
        end local 1 // int mark
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/bson/io/ByteBufferBsonInput;
            2    6     1  mark  I
            4    6     2  size  I

  private java.lang.String readString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // int size
         0: .line 143
            iload 1 /* size */
            iconst_2
            if_icmpne 8
         1: .line 144
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readByte:()B
            istore 2 /* asciiByte */
        start local 2 // byte asciiByte
         2: .line 145
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readByte:()B
            istore 3 /* nullByte */
        start local 3 // byte nullByte
         3: .line 146
            iload 3 /* nullByte */
            ifeq 5
         4: .line 147
            new org.bson.BsonSerializationException
            dup
            ldc "Found a BSON string that is not null-terminated"
            invokespecial org.bson.BsonSerializationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 149
      StackMap locals: int int
      StackMap stack:
            iload 2 /* asciiByte */
            ifge 7
         6: .line 150
            getstatic org.bson.io.ByteBufferBsonInput.UTF8_CHARSET:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
            invokevirtual java.nio.charset.CharsetDecoder.replacement:()Ljava/lang/String;
            areturn
         7: .line 152
      StackMap locals:
      StackMap stack:
            getstatic org.bson.io.ByteBufferBsonInput.ONE_BYTE_ASCII_STRINGS:[Ljava/lang/String;
            iload 2 /* asciiByte */
            aaload
            areturn
        end local 3 // byte nullByte
        end local 2 // byte asciiByte
         8: .line 154
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            iconst_1
            isub
            newarray 8
            astore 2 /* bytes */
        start local 2 // byte[] bytes
         9: .line 155
            aload 0 /* this */
            aload 2 /* bytes */
            invokevirtual org.bson.io.ByteBufferBsonInput.readBytes:([B)V
        10: .line 156
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readByte:()B
            istore 3 /* nullByte */
        start local 3 // byte nullByte
        11: .line 157
            iload 3 /* nullByte */
            ifeq 13
        12: .line 158
            new org.bson.BsonSerializationException
            dup
            ldc "Found a BSON string that is not null-terminated"
            invokespecial org.bson.BsonSerializationException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 160
      StackMap locals: byte[] int
      StackMap stack:
            new java.lang.String
            dup
            aload 2 /* bytes */
            getstatic org.bson.io.ByteBufferBsonInput.UTF8_CHARSET:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            areturn
        end local 3 // byte nullByte
        end local 2 // byte[] bytes
        end local 1 // int size
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/bson/io/ByteBufferBsonInput;
            0   14     1       size  I
            2    8     2  asciiByte  B
            3    8     3   nullByte  B
            9   14     2      bytes  [B
           11   14     3   nullByte  B
    MethodParameters:
      Name  Flags
      size  final

  private void readUntilNullByte();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readByte:()B
            ifne 0
         1: .line 170
            return
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public void skipCString();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 174
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 175
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.readUntilNullByte:()V
         2: .line 176
            return
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public void skip(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // int numBytes
         0: .line 180
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 181
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.position:()I
            iload 1 /* numBytes */
            iadd
            invokeinterface org.bson.ByteBuf.position:(I)Lorg/bson/ByteBuf;
            pop
         2: .line 182
            return
        end local 1 // int numBytes
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/bson/io/ByteBufferBsonInput;
            0    3     1  numBytes  I
    MethodParameters:
          Name  Flags
      numBytes  final

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // int readLimit
         0: .line 187
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 188
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.position:()I
            putfield org.bson.io.ByteBufferBsonInput.mark:I
         2: .line 189
            return
        end local 1 // int readLimit
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/bson/io/ByteBufferBsonInput;
            0    3     1  readLimit  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      readLimit  final

  public org.bson.io.BsonInputMark getMark(int);
    descriptor: (I)Lorg/bson/io/BsonInputMark;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // int readLimit
         0: .line 193
            new org.bson.io.ByteBufferBsonInput$1
            dup
            aload 0 /* this */
            invokespecial org.bson.io.ByteBufferBsonInput$1.<init>:(Lorg/bson/io/ByteBufferBsonInput;)V
            areturn
        end local 1 // int readLimit
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/bson/io/ByteBufferBsonInput;
            0    1     1  readLimit  I
    MethodParameters:
           Name  Flags
      readLimit  final

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 206
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 207
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.mark:I
            iconst_m1
            if_icmpne 3
         2: .line 208
            new java.lang.IllegalStateException
            dup
            ldc "Mark not set"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.mark:I
            invokeinterface org.bson.ByteBuf.position:(I)Lorg/bson/ByteBuf;
            pop
         4: .line 211
            return
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bson/io/ByteBufferBsonInput;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public boolean hasRemaining();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 215
            aload 0 /* this */
            invokevirtual org.bson.io.ByteBufferBsonInput.ensureOpen:()V
         1: .line 216
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.hasRemaining:()Z
            ireturn
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/io/ByteBufferBsonInput;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 221
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.release:()V
         1: .line 222
            aload 0 /* this */
            aconst_null
            putfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
         2: .line 223
            return
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.io.ByteBufferBsonInput this
         0: .line 226
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            ifnonnull 2
         1: .line 227
            new java.lang.IllegalStateException
            dup
            ldc "Stream is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 229
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/io/ByteBufferBsonInput;

  private void ensureAvailable(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.bson.io.ByteBufferBsonInput this
        start local 1 // int bytesNeeded
         0: .line 231
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.remaining:()I
            iload 1 /* bytesNeeded */
            if_icmpge 4
         1: .line 232
            new org.bson.BsonSerializationException
            dup
            ldc "While decoding a BSON document %d bytes were required, but only %d remain"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
         2: .line 233
            iload 1 /* bytesNeeded */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.bson.io.ByteBufferBsonInput.buffer:Lorg/bson/ByteBuf;
            invokeinterface org.bson.ByteBuf.remaining:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         3: .line 232
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.bson.BsonSerializationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 235
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int bytesNeeded
        end local 0 // org.bson.io.ByteBufferBsonInput this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/bson/io/ByteBufferBsonInput;
            0    5     1  bytesNeeded  I
    MethodParameters:
             Name  Flags
      bytesNeeded  final
}
SourceFile: "ByteBufferBsonInput.java"
NestMembers:
  org.bson.io.ByteBufferBsonInput$1
InnerClasses:
  org.bson.io.ByteBufferBsonInput$1