class org.h2.store.fs.FileSplit extends org.h2.store.fs.FileBase
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.h2.store.fs.FileSplit
  super_class: org.h2.store.fs.FileBase
{
  private final org.h2.store.fs.FilePathSplit file;
    descriptor: Lorg/h2/store/fs/FilePathSplit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String mode;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long maxLength;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.nio.channels.FileChannel[] list;
    descriptor: [Ljava/nio/channels/FileChannel;
    flags: (0x0002) ACC_PRIVATE

  private long filePointer;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long length;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(org.h2.store.fs.FilePathSplit, java.lang.String, java.nio.channels.FileChannel[], long, long);
    descriptor: (Lorg/h2/store/fs/FilePathSplit;Ljava/lang/String;[Ljava/nio/channels/FileChannel;JJ)V
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=6
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // org.h2.store.fs.FilePathSplit file
        start local 2 // java.lang.String mode
        start local 3 // java.nio.channels.FileChannel[] list
        start local 4 // long length
        start local 6 // long maxLength
         0: .line 256
            aload 0 /* this */
            invokespecial org.h2.store.fs.FileBase.<init>:()V
         1: .line 258
            aload 0 /* this */
            aload 1 /* file */
            putfield org.h2.store.fs.FileSplit.file:Lorg/h2/store/fs/FilePathSplit;
         2: .line 259
            aload 0 /* this */
            aload 2 /* mode */
            putfield org.h2.store.fs.FileSplit.mode:Ljava/lang/String;
         3: .line 260
            aload 0 /* this */
            aload 3 /* list */
            putfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
         4: .line 261
            aload 0 /* this */
            lload 4 /* length */
            putfield org.h2.store.fs.FileSplit.length:J
         5: .line 262
            aload 0 /* this */
            lload 6 /* maxLength */
            putfield org.h2.store.fs.FileSplit.maxLength:J
         6: .line 263
            return
        end local 6 // long maxLength
        end local 4 // long length
        end local 3 // java.nio.channels.FileChannel[] list
        end local 2 // java.lang.String mode
        end local 1 // org.h2.store.fs.FilePathSplit file
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/h2/store/fs/FileSplit;
            0    7     1       file  Lorg/h2/store/fs/FilePathSplit;
            0    7     2       mode  Ljava/lang/String;
            0    7     3       list  [Ljava/nio/channels/FileChannel;
            0    7     4     length  J
            0    7     6  maxLength  J
    MethodParameters:
           Name  Flags
      file       
      mode       
      list       
      length     
      maxLength  

  public void implCloseChannel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.h2.store.fs.FileSplit this
         0: .line 267
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: org.h2.store.fs.FileSplit top int int java.nio.channels.FileChannel[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* c */
        start local 1 // java.nio.channels.FileChannel c
         2: .line 268
            aload 1 /* c */
            invokevirtual java.nio.channels.FileChannel.close:()V
        end local 1 // java.nio.channels.FileChannel c
         3: .line 267
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 270
            return
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/store/fs/FileSplit;
            2    3     1     c  Ljava/nio/channels/FileChannel;
    Exceptions:
      throws java.io.IOException

  public long position();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.store.fs.FileSplit this
         0: .line 274
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            lreturn
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/fs/FileSplit;

  public long size();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.store.fs.FileSplit this
         0: .line 279
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lreturn
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/fs/FileSplit;

  public synchronized int read(java.nio.ByteBuffer, long);
    descriptor: (Ljava/nio/ByteBuffer;J)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // java.nio.ByteBuffer dst
        start local 2 // long position
         0: .line 285
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
         1: .line 286
            iload 4 /* len */
            ifne 3
         2: .line 287
            iconst_0
            ireturn
         3: .line 289
      StackMap locals: int
      StackMap stack:
            iload 4 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lload 2 /* position */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 4 /* len */
         4: .line 290
            iload 4 /* len */
            ifgt 6
         5: .line 291
            iconst_m1
            ireturn
         6: .line 293
      StackMap locals:
      StackMap stack:
            lload 2 /* position */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lstore 5 /* offset */
        start local 5 // long offset
         7: .line 294
            iload 4 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lload 5 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 4 /* len */
         8: .line 295
            aload 0 /* this */
            lload 2 /* position */
            invokevirtual org.h2.store.fs.FileSplit.getFileChannel:(J)Ljava/nio/channels/FileChannel;
            astore 7 /* channel */
        start local 7 // java.nio.channels.FileChannel channel
         9: .line 296
            aload 7 /* channel */
            aload 1 /* dst */
            lload 5 /* offset */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;J)I
            ireturn
        end local 7 // java.nio.channels.FileChannel channel
        end local 5 // long offset
        end local 4 // int len
        end local 2 // long position
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/h2/store/fs/FileSplit;
            0   10     1       dst  Ljava/nio/ByteBuffer;
            0   10     2  position  J
            1   10     4       len  I
            7   10     5    offset  J
            9   10     7   channel  Ljava/nio/channels/FileChannel;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      dst       
      position  

  public int read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 301
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 302
            iload 2 /* len */
            ifne 3
         2: .line 303
            iconst_0
            ireturn
         3: .line 305
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 2 /* len */
         4: .line 306
            iload 2 /* len */
            ifgt 6
         5: .line 307
            iconst_m1
            ireturn
         6: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lstore 3 /* offset */
        start local 3 // long offset
         7: .line 310
            iload 2 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lload 3 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 2 /* len */
         8: .line 311
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            invokevirtual org.h2.store.fs.FileSplit.getFileChannel:(J)Ljava/nio/channels/FileChannel;
            astore 5 /* channel */
        start local 5 // java.nio.channels.FileChannel channel
         9: .line 312
            aload 5 /* channel */
            lload 3 /* offset */
            invokevirtual java.nio.channels.FileChannel.position:(J)Ljava/nio/channels/FileChannel;
            pop
        10: .line 313
            aload 5 /* channel */
            aload 1 /* dst */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;)I
            istore 2 /* len */
        11: .line 314
            aload 0 /* this */
            dup
            getfield org.h2.store.fs.FileSplit.filePointer:J
            iload 2 /* len */
            i2l
            ladd
            putfield org.h2.store.fs.FileSplit.filePointer:J
        12: .line 315
            iload 2 /* len */
            ireturn
        end local 5 // java.nio.channels.FileChannel channel
        end local 3 // long offset
        end local 2 // int len
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/h2/store/fs/FileSplit;
            0   13     1      dst  Ljava/nio/ByteBuffer;
            1   13     2      len  I
            7   13     3   offset  J
            9   13     5  channel  Ljava/nio/channels/FileChannel;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dst   

  public java.nio.channels.FileChannel position(long);
    descriptor: (J)Ljava/nio/channels/FileChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // long pos
         0: .line 320
            aload 0 /* this */
            lload 1 /* pos */
            putfield org.h2.store.fs.FileSplit.filePointer:J
         1: .line 321
            aload 0 /* this */
            areturn
        end local 1 // long pos
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/store/fs/FileSplit;
            0    2     1   pos  J
    MethodParameters:
      Name  Flags
      pos   

  private java.nio.channels.FileChannel getFileChannel(long);
    descriptor: (J)Ljava/nio/channels/FileChannel;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // long position
         0: .line 325
            lload 1 /* position */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ldiv
            l2i
            istore 3 /* id */
        start local 3 // int id
         1: .line 326
            goto 8
         2: .line 327
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            arraylength
            istore 4 /* i */
        start local 4 // int i
         3: .line 328
            iload 4 /* i */
            iconst_1
            iadd
            anewarray java.nio.channels.FileChannel
            astore 5 /* newList */
        start local 5 // java.nio.channels.FileChannel[] newList
         4: .line 329
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iconst_0
            aload 5 /* newList */
            iconst_0
            iload 4 /* i */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 330
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.file:Lorg/h2/store/fs/FilePathSplit;
            iload 4 /* i */
            invokevirtual org.h2.store.fs.FilePathSplit.getBase:(I)Lorg/h2/store/fs/FilePath;
            astore 6 /* f */
        start local 6 // org.h2.store.fs.FilePath f
         6: .line 331
            aload 5 /* newList */
            iload 4 /* i */
            aload 6 /* f */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.mode:Ljava/lang/String;
            invokevirtual org.h2.store.fs.FilePath.open:(Ljava/lang/String;)Ljava/nio/channels/FileChannel;
            aastore
         7: .line 332
            aload 0 /* this */
            aload 5 /* newList */
            putfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
        end local 6 // org.h2.store.fs.FilePath f
        end local 5 // java.nio.channels.FileChannel[] newList
        end local 4 // int i
         8: .line 326
      StackMap locals:
      StackMap stack:
            iload 3 /* id */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            arraylength
            if_icmpge 2
         9: .line 334
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iload 3 /* id */
            aaload
            areturn
        end local 3 // int id
        end local 1 // long position
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/h2/store/fs/FileSplit;
            0   10     1  position  J
            1   10     3        id  I
            3    8     4         i  I
            4    8     5   newList  [Ljava/nio/channels/FileChannel;
            6    8     6         f  Lorg/h2/store/fs/FilePath;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      position  

  public java.nio.channels.FileChannel truncate(long);
    descriptor: (J)Ljava/nio/channels/FileChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // long newLength
         0: .line 339
            lload 1 /* newLength */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lcmp
            iflt 2
         1: .line 340
            aload 0 /* this */
            areturn
         2: .line 342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            lload 1 /* newLength */
            invokestatic java.lang.Math.min:(JJ)J
            putfield org.h2.store.fs.FileSplit.filePointer:J
         3: .line 343
            iconst_1
            lload 1 /* newLength */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ldiv
            l2i
            iadd
            istore 3 /* newFileCount */
        start local 3 // int newFileCount
         4: .line 344
            iload 3 /* newFileCount */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            arraylength
            if_icmpge 18
         5: .line 346
            iload 3 /* newFileCount */
            anewarray java.nio.channels.FileChannel
            astore 4 /* newList */
        start local 4 // java.nio.channels.FileChannel[] newList
         6: .line 348
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            arraylength
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         7: goto 15
         8: .line 350
      StackMap locals: int java.nio.channels.FileChannel[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iload 5 /* i */
            aaload
            lconst_0
            invokevirtual java.nio.channels.FileChannel.truncate:(J)Ljava/nio/channels/FileChannel;
            pop
         9: .line 351
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iload 5 /* i */
            aaload
            invokevirtual java.nio.channels.FileChannel.close:()V
        10: .line 353
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.file:Lorg/h2/store/fs/FilePathSplit;
            iload 5 /* i */
            invokevirtual org.h2.store.fs.FilePathSplit.getBase:(I)Lorg/h2/store/fs/FilePath;
            invokevirtual org.h2.store.fs.FilePath.delete:()V
        11: .line 354
            goto 14
      StackMap locals:
      StackMap stack: org.h2.message.DbException
        12: astore 6 /* e */
        start local 6 // org.h2.message.DbException e
        13: .line 355
            aload 6 /* e */
            invokestatic org.h2.message.DbException.convertToIOException:(Ljava/lang/Throwable;)Ljava/io/IOException;
            athrow
        end local 6 // org.h2.message.DbException e
        14: .line 348
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            iload 3 /* newFileCount */
            if_icmpge 8
        end local 5 // int i
        16: .line 358
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iconst_0
            aload 4 /* newList */
            iconst_0
            aload 4 /* newList */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 359
            aload 0 /* this */
            aload 4 /* newList */
            putfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
        end local 4 // java.nio.channels.FileChannel[] newList
        18: .line 361
      StackMap locals:
      StackMap stack:
            lload 1 /* newLength */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            iload 3 /* newFileCount */
            iconst_1
            isub
            i2l
            lmul
            lsub
            lstore 4 /* size */
        start local 4 // long size
        19: .line 362
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            arraylength
            iconst_1
            isub
            aaload
            lload 4 /* size */
            invokevirtual java.nio.channels.FileChannel.truncate:(J)Ljava/nio/channels/FileChannel;
            pop
        20: .line 363
            aload 0 /* this */
            lload 1 /* newLength */
            putfield org.h2.store.fs.FileSplit.length:J
        21: .line 364
            aload 0 /* this */
            areturn
        end local 4 // long size
        end local 3 // int newFileCount
        end local 1 // long newLength
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/h2/store/fs/FileSplit;
            0   22     1     newLength  J
            4   22     3  newFileCount  I
            6   18     4       newList  [Ljava/nio/channels/FileChannel;
            7   16     5             i  I
           13   14     6             e  Lorg/h2/message/DbException;
           19   22     4          size  J
      Exception table:
        from    to  target  type
          10    11      12  Class org.h2.message.DbException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      newLength  

  public void force(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // boolean metaData
         0: .line 369
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: org.h2.store.fs.FileSplit int top int int java.nio.channels.FileChannel[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* c */
        start local 2 // java.nio.channels.FileChannel c
         2: .line 370
            aload 2 /* c */
            iload 1 /* metaData */
            invokevirtual java.nio.channels.FileChannel.force:(Z)V
        end local 2 // java.nio.channels.FileChannel c
         3: .line 369
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 372
            return
        end local 1 // boolean metaData
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/h2/store/fs/FileSplit;
            0    6     1  metaData  Z
            2    3     2         c  Ljava/nio/channels/FileChannel;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      metaData  

  public int write(java.nio.ByteBuffer, long);
    descriptor: (Ljava/nio/ByteBuffer;J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=3
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // long position
         0: .line 376
            lload 2 /* position */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lcmp
            iflt 10
            lload 2 /* position */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lcmp
            ifle 10
         1: .line 378
            lload 2 /* position */
            lstore 4 /* oldFilePointer */
        start local 4 // long oldFilePointer
         2: .line 379
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lsub
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ladd
            lstore 6 /* x */
        start local 6 // long x
         3: .line 380
            goto 9
         4: .line 381
      StackMap locals: long long
      StackMap stack:
            lload 6 /* x */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lcmp
            ifle 7
         5: .line 383
            aload 0 /* this */
            lload 6 /* x */
            lconst_1
            lsub
            invokevirtual org.h2.store.fs.FileSplit.position:(J)Ljava/nio/channels/FileChannel;
            pop
         6: .line 384
            aload 0 /* this */
            iconst_1
            newarray 8
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokevirtual org.h2.store.fs.FileSplit.write:(Ljava/nio/ByteBuffer;)I
            pop
         7: .line 386
      StackMap locals:
      StackMap stack:
            lload 4 /* oldFilePointer */
            lstore 2 /* position */
         8: .line 380
            lload 6 /* x */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ladd
            lstore 6 /* x */
      StackMap locals:
      StackMap stack:
         9: lload 6 /* x */
            lload 2 /* position */
            lcmp
            iflt 4
        end local 6 // long x
        end local 4 // long oldFilePointer
        10: .line 389
      StackMap locals:
      StackMap stack:
            lload 2 /* position */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lstore 4 /* offset */
        start local 4 // long offset
        11: .line 390
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 6 /* len */
        start local 6 // int len
        12: .line 391
            aload 0 /* this */
            lload 2 /* position */
            invokevirtual org.h2.store.fs.FileSplit.getFileChannel:(J)Ljava/nio/channels/FileChannel;
            astore 7 /* channel */
        start local 7 // java.nio.channels.FileChannel channel
        13: .line 392
            iload 6 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lload 4 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 8 /* l */
        start local 8 // int l
        14: .line 393
            iload 8 /* l */
            iload 6 /* len */
            if_icmpne 17
        15: .line 394
            aload 7 /* channel */
            aload 1 /* src */
            lload 4 /* offset */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            istore 8 /* l */
        16: .line 395
            goto 21
        17: .line 396
      StackMap locals: org.h2.store.fs.FileSplit java.nio.ByteBuffer long long int java.nio.channels.FileChannel int
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 9 /* oldLimit */
        start local 9 // int oldLimit
        18: .line 397
            aload 1 /* src */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 8 /* l */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        19: .line 398
            aload 7 /* channel */
            aload 1 /* src */
            lload 4 /* offset */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            istore 8 /* l */
        20: .line 399
            aload 1 /* src */
            iload 9 /* oldLimit */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        end local 9 // int oldLimit
        21: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lload 2 /* position */
            iload 8 /* l */
            i2l
            ladd
            invokestatic java.lang.Math.max:(JJ)J
            putfield org.h2.store.fs.FileSplit.length:J
        22: .line 402
            iload 8 /* l */
            ireturn
        end local 8 // int l
        end local 7 // java.nio.channels.FileChannel channel
        end local 6 // int len
        end local 4 // long offset
        end local 2 // long position
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   23     0            this  Lorg/h2/store/fs/FileSplit;
            0   23     1             src  Ljava/nio/ByteBuffer;
            0   23     2        position  J
            2   10     4  oldFilePointer  J
            3   10     6               x  J
           11   23     4          offset  J
           12   23     6             len  I
           13   23     7         channel  Ljava/nio/channels/FileChannel;
           14   23     8               l  I
           18   21     9        oldLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      src       
      position  

  public int write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // java.nio.ByteBuffer src
         0: .line 407
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lcmp
            iflt 10
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lcmp
            ifle 10
         1: .line 409
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            lstore 2 /* oldFilePointer */
        start local 2 // long oldFilePointer
         2: .line 410
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lsub
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ladd
            lstore 4 /* x */
        start local 4 // long x
         3: .line 411
            goto 9
         4: .line 412
      StackMap locals: long long
      StackMap stack:
            lload 4 /* x */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            lcmp
            ifle 7
         5: .line 414
            aload 0 /* this */
            lload 4 /* x */
            lconst_1
            lsub
            invokevirtual org.h2.store.fs.FileSplit.position:(J)Ljava/nio/channels/FileChannel;
            pop
         6: .line 415
            aload 0 /* this */
            iconst_1
            newarray 8
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokevirtual org.h2.store.fs.FileSplit.write:(Ljava/nio/ByteBuffer;)I
            pop
         7: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* oldFilePointer */
            putfield org.h2.store.fs.FileSplit.filePointer:J
         8: .line 411
            lload 4 /* x */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            ladd
            lstore 4 /* x */
      StackMap locals:
      StackMap stack:
         9: lload 4 /* x */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            lcmp
            iflt 4
        end local 4 // long x
        end local 2 // long oldFilePointer
        10: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lrem
            lstore 2 /* offset */
        start local 2 // long offset
        11: .line 421
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
        12: .line 422
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            invokevirtual org.h2.store.fs.FileSplit.getFileChannel:(J)Ljava/nio/channels/FileChannel;
            astore 5 /* channel */
        start local 5 // java.nio.channels.FileChannel channel
        13: .line 423
            aload 5 /* channel */
            lload 2 /* offset */
            invokevirtual java.nio.channels.FileChannel.position:(J)Ljava/nio/channels/FileChannel;
            pop
        14: .line 424
            iload 4 /* len */
            i2l
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.maxLength:J
            lload 2 /* offset */
            lsub
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 6 /* l */
        start local 6 // int l
        15: .line 425
            iload 6 /* l */
            iload 4 /* len */
            if_icmpne 18
        16: .line 426
            aload 5 /* channel */
            aload 1 /* src */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;)I
            istore 6 /* l */
        17: .line 427
            goto 22
        18: .line 428
      StackMap locals: org.h2.store.fs.FileSplit java.nio.ByteBuffer long int java.nio.channels.FileChannel int
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 7 /* oldLimit */
        start local 7 // int oldLimit
        19: .line 429
            aload 1 /* src */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 6 /* l */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        20: .line 430
            aload 5 /* channel */
            aload 1 /* src */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;)I
            istore 6 /* l */
        21: .line 431
            aload 1 /* src */
            iload 7 /* oldLimit */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        end local 7 // int oldLimit
        22: .line 433
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.store.fs.FileSplit.filePointer:J
            iload 6 /* l */
            i2l
            ladd
            putfield org.h2.store.fs.FileSplit.filePointer:J
        23: .line 434
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.length:J
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.filePointer:J
            invokestatic java.lang.Math.max:(JJ)J
            putfield org.h2.store.fs.FileSplit.length:J
        24: .line 435
            iload 6 /* l */
            ireturn
        end local 6 // int l
        end local 5 // java.nio.channels.FileChannel channel
        end local 4 // int len
        end local 2 // long offset
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   25     0            this  Lorg/h2/store/fs/FileSplit;
            0   25     1             src  Ljava/nio/ByteBuffer;
            2   10     2  oldFilePointer  J
            3   10     4               x  J
           11   25     2          offset  J
           12   25     4             len  I
           13   25     5         channel  Ljava/nio/channels/FileChannel;
           15   25     6               l  I
           19   22     7        oldLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      src   

  public synchronized java.nio.channels.FileLock tryLock(long, long, boolean);
    descriptor: (JJZ)Ljava/nio/channels/FileLock;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.h2.store.fs.FileSplit this
        start local 1 // long position
        start local 3 // long size
        start local 5 // boolean shared
         0: .line 441
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.list:[Ljava/nio/channels/FileChannel;
            iconst_0
            aaload
            lload 1 /* position */
            lload 3 /* size */
            iload 5 /* shared */
            invokevirtual java.nio.channels.FileChannel.tryLock:(JJZ)Ljava/nio/channels/FileLock;
            areturn
        end local 5 // boolean shared
        end local 3 // long size
        end local 1 // long position
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/h2/store/fs/FileSplit;
            0    1     1  position  J
            0    1     3      size  J
            0    1     5    shared  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      position  
      size      
      shared    

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.store.fs.FileSplit this
         0: .line 446
            aload 0 /* this */
            getfield org.h2.store.fs.FileSplit.file:Lorg/h2/store/fs/FilePathSplit;
            invokevirtual org.h2.store.fs.FilePathSplit.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.store.fs.FileSplit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/fs/FileSplit;

  public java.nio.channels.SeekableByteChannel position(long);
    descriptor: (J)Ljava/nio/channels/SeekableByteChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.h2.store.fs.FileSplit.position:(J)Ljava/nio/channels/FileChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.SeekableByteChannel truncate(long);
    descriptor: (J)Ljava/nio/channels/SeekableByteChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.h2.store.fs.FileSplit.truncate:(J)Ljava/nio/channels/FileChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "FilePathSplit.java"