final class com.sun.jndi.ldap.LdapRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.jndi.ldap.LdapRequest
  super_class: java.lang.Object
{
  private static final com.sun.jndi.ldap.BerDecoder EOF;
    descriptor: Lcom/sun/jndi/ldap/BerDecoder;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String CLOSE_MSG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "LDAP connection has been closed"

  private static final java.lang.String TIMEOUT_MSG_FMT;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "LDAP response read timed out, timeout used: %d ms."

  com.sun.jndi.ldap.LdapRequest next;
    descriptor: Lcom/sun/jndi/ldap/LdapRequest;
    flags: (0x0000) 

  final int msgId;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  private final java.util.concurrent.BlockingQueue<com.sun.jndi.ldap.BerDecoder> replies;
    descriptor: Ljava/util/concurrent/BlockingQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/BlockingQueue<Lcom/sun/jndi/ldap/BerDecoder;>;

  private volatile boolean cancelled;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile boolean closed;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile boolean completed;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final boolean pauseAfterReceipt;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 37
            new com.sun.jndi.ldap.BerDecoder
            dup
            iconst_0
            newarray 8
            iconst_m1
            iconst_0
            invokespecial com.sun.jndi.ldap.BerDecoder.<init>:([BII)V
            putstatic com.sun.jndi.ldap.LdapRequest.EOF:Lcom/sun/jndi/ldap/BerDecoder;
         1: .line 39
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int, boolean, int);
    descriptor: (IZI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.sun.jndi.ldap.LdapRequest this
        start local 1 // int msgId
        start local 2 // boolean pause
        start local 3 // int replyQueueCapacity
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            iload 1 /* msgId */
            putfield com.sun.jndi.ldap.LdapRequest.msgId:I
         2: .line 52
            aload 0 /* this */
            iload 2 /* pause */
            putfield com.sun.jndi.ldap.LdapRequest.pauseAfterReceipt:Z
         3: .line 53
            iload 3 /* replyQueueCapacity */
            iconst_m1
            if_icmpne 6
         4: .line 54
            aload 0 /* this */
            new java.util.concurrent.LinkedBlockingQueue
            dup
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:()V
            putfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
         5: .line 55
            goto 7
         6: .line 56
      StackMap locals: com.sun.jndi.ldap.LdapRequest int int int
      StackMap stack:
            aload 0 /* this */
            new java.util.concurrent.LinkedBlockingQueue
            dup
            bipush 8
            iload 3 /* replyQueueCapacity */
            imul
            bipush 10
            idiv
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:(I)V
            putfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
         7: .line 58
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int replyQueueCapacity
        end local 2 // boolean pause
        end local 1 // int msgId
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    8     0                this  Lcom/sun/jndi/ldap/LdapRequest;
            0    8     1               msgId  I
            0    8     2               pause  Z
            0    8     3  replyQueueCapacity  I
    MethodParameters:
                    Name  Flags
      msgId               
      pause               
      replyQueueCapacity  

  void cancel();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.LdapRequest this
         0: .line 61
            aload 0 /* this */
            iconst_1
            putfield com.sun.jndi.ldap.LdapRequest.cancelled:Z
         1: .line 62
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            getstatic com.sun.jndi.ldap.LdapRequest.EOF:Lcom/sun/jndi/ldap/BerDecoder;
            invokeinterface java.util.concurrent.BlockingQueue.offer:(Ljava/lang/Object;)Z
            pop
         2: .line 63
            return
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jndi/ldap/LdapRequest;

  synchronized void close();
    descriptor: ()V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.LdapRequest this
         0: .line 66
            aload 0 /* this */
            iconst_1
            putfield com.sun.jndi.ldap.LdapRequest.closed:Z
         1: .line 67
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            getstatic com.sun.jndi.ldap.LdapRequest.EOF:Lcom/sun/jndi/ldap/BerDecoder;
            invokeinterface java.util.concurrent.BlockingQueue.offer:(Ljava/lang/Object;)Z
            pop
         2: .line 68
            return
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jndi/ldap/LdapRequest;

  private boolean isClosed();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.LdapRequest this
         0: .line 71
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.closed:Z
            ifeq 2
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            invokeinterface java.util.concurrent.BlockingQueue.size:()I
            ifeq 1
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            invokeinterface java.util.concurrent.BlockingQueue.peek:()Ljava/lang/Object;
            getstatic com.sun.jndi.ldap.LdapRequest.EOF:Lcom/sun/jndi/ldap/BerDecoder;
            if_acmpne 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jndi/ldap/LdapRequest;

  synchronized boolean addReplyBer(com.sun.jndi.ldap.BerDecoder);
    descriptor: (Lcom/sun/jndi/ldap/BerDecoder;)Z
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.jndi.ldap.LdapRequest this
        start local 1 // com.sun.jndi.ldap.BerDecoder ber
         0: .line 77
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.cancelled:Z
            ifne 1
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.closed:Z
            ifeq 2
         1: .line 78
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 83
      StackMap locals:
      StackMap stack:
            aload 1 /* ber */
            aconst_null
            invokevirtual com.sun.jndi.ldap.BerDecoder.parseSeq:([I)I
            pop
         3: .line 84
            aload 1 /* ber */
            invokevirtual com.sun.jndi.ldap.BerDecoder.parseInt:()I
            pop
         4: .line 85
            aload 0 /* this */
            aload 1 /* ber */
            invokevirtual com.sun.jndi.ldap.BerDecoder.peekByte:()I
            bipush 101
            if_icmpne 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack: com.sun.jndi.ldap.LdapRequest
         5: iconst_0
      StackMap locals: com.sun.jndi.ldap.LdapRequest com.sun.jndi.ldap.BerDecoder
      StackMap stack: com.sun.jndi.ldap.LdapRequest int
         6: putfield com.sun.jndi.ldap.LdapRequest.completed:Z
         7: .line 86
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         8: pop
         9: .line 89
      StackMap locals:
      StackMap stack:
            aload 1 /* ber */
            invokevirtual com.sun.jndi.ldap.BerDecoder.reset:()V
        10: .line 93
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            aload 1 /* ber */
            invokeinterface java.util.concurrent.BlockingQueue.put:(Ljava/lang/Object;)V
        11: .line 94
            goto 13
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        12: pop
        13: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.pauseAfterReceipt:Z
            ireturn
        end local 1 // com.sun.jndi.ldap.BerDecoder ber
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/sun/jndi/ldap/LdapRequest;
            0   14     1   ber  Lcom/sun/jndi/ldap/BerDecoder;
      Exception table:
        from    to  target  type
           2     7       8  Class java.io.IOException
          10    11      12  Class java.lang.InterruptedException
    MethodParameters:
      Name  Flags
      ber   

  com.sun.jndi.ldap.BerDecoder getReplyBer(long);
    descriptor: (J)Lcom/sun/jndi/ldap/BerDecoder;
    flags: (0x0000) 
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // com.sun.jndi.ldap.LdapRequest this
        start local 1 // long millis
         0: .line 111
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.cancelled:Z
            ifeq 4
         1: .line 112
            new javax.naming.CommunicationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Request: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.msgId:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 113
            ldc " cancelled"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 112
            invokespecial javax.naming.CommunicationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jndi.ldap.LdapRequest.isClosed:()Z
            ifeq 6
         5: .line 116
            new javax.naming.NamingException
            dup
            ldc "LDAP connection has been closed"
            invokespecial javax.naming.NamingException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 119
      StackMap locals:
      StackMap stack:
            lload 1 /* millis */
            lconst_0
            lcmp
            ifle 8
         7: .line 120
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            lload 1 /* millis */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokeinterface java.util.concurrent.BlockingQueue.poll:(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
            checkcast com.sun.jndi.ldap.BerDecoder
            goto 9
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.replies:Ljava/util/concurrent/BlockingQueue;
            invokeinterface java.util.concurrent.BlockingQueue.take:()Ljava/lang/Object;
            checkcast com.sun.jndi.ldap.BerDecoder
         9: .line 119
      StackMap locals:
      StackMap stack: com.sun.jndi.ldap.BerDecoder
            astore 3 /* result */
        start local 3 // com.sun.jndi.ldap.BerDecoder result
        10: .line 122
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.cancelled:Z
            ifeq 14
        11: .line 123
            new javax.naming.CommunicationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Request: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.msgId:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        12: .line 124
            ldc " cancelled"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 123
            invokespecial javax.naming.CommunicationException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 128
      StackMap locals: com.sun.jndi.ldap.BerDecoder
      StackMap stack:
            aload 3 /* result */
            ifnonnull 16
        15: .line 129
            new javax.naming.NamingException
            dup
            ldc "LDAP response read timed out, timeout used: %d ms."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            lload 1 /* millis */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial javax.naming.NamingException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 132
      StackMap locals:
      StackMap stack:
            aload 3 /* result */
            getstatic com.sun.jndi.ldap.LdapRequest.EOF:Lcom/sun/jndi/ldap/BerDecoder;
            if_acmpne 18
        17: .line 133
            new javax.naming.NamingException
            dup
            ldc "LDAP connection has been closed"
            invokespecial javax.naming.NamingException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 135
      StackMap locals:
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // com.sun.jndi.ldap.BerDecoder result
        end local 1 // long millis
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lcom/sun/jndi/ldap/LdapRequest;
            0   19     1  millis  J
           10   19     3  result  Lcom/sun/jndi/ldap/BerDecoder;
    Exceptions:
      throws javax.naming.NamingException, java.lang.InterruptedException
    MethodParameters:
        Name  Flags
      millis  

  boolean hasSearchCompleted();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.LdapRequest this
         0: .line 139
            aload 0 /* this */
            getfield com.sun.jndi.ldap.LdapRequest.completed:Z
            ireturn
        end local 0 // com.sun.jndi.ldap.LdapRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/jndi/ldap/LdapRequest;
}
SourceFile: "LdapRequest.java"