private void update(final UpdatableLDAPRequest request, final LDAPConstraints constraints) {
    final LDAPConstraints c = (constraints == null) ? this.constraints : constraints;

    request.setControls(LDAPControl.toControls(c.getServerControls()));
    request.setResponseTimeoutMillis(c.getTimeLimit());
    request.setFollowReferrals(c.getReferrals());
  }
  private Control[] getControls(final LDAPConstraints c) {
    Control[] controls = null;
    if (c != null) {
      controls = LDAPControl.toControls(c.getServerControls());
    } else if (constraints != null) {
      controls = LDAPControl.toControls(constraints.getServerControls());
    }

    if (controls == null) {
      return new Control[0];
    } else {
      return controls;
    }
  }
 /**
  * Applies <code>LDAPConstraints</code> to the specified <code>LDAPConnection</code>. Implemented
  * to assign <code>timeLimit</code> and <code>referralFollowing</code> constraint values retrieved
  * from the currently assigned {@link LdapConnectionManagerConfig}.
  *
  * @param conn
  */
 protected void applyConstraints(LDAPConnection conn) {
   int timeout = config.getOperationTimeout();
   boolean followReferrals = config.isFollowReferrals();
   if (M_log.isDebugEnabled()) {
     M_log.debug(
         "applyConstraints(): values [timeout = "
             + timeout
             + "][follow referrals = "
             + followReferrals
             + "]");
   }
   LDAPConstraints constraints = new LDAPConstraints();
   constraints.setTimeLimit(timeout);
   constraints.setReferralFollowing(followReferrals);
   conn.setConstraints(constraints);
 }
Example #4
0
  /* package */
  void abandon(LDAPConstraints cons, InterThreadException informUserEx) {
    if (!waitForReply) {
      Debug.trace(Debug.messages, name + "Abandon request ignored");
      return;
    }
    if (Debug.LDAP_DEBUG) {
      Debug.trace(
          Debug.messages,
          name
              + "Abandon request, complete="
              + complete
              + ", bind="
              + (bindprops != null)
              + ", informUser="******", waitForReply="
              + waitForReply);
    }
    acceptReplies = false; // don't listen to anyone
    waitForReply = false; // don't let sleeping threads lie
    if (!complete) {
      try {
        // If a bind, release bind semaphore & wake up waiting threads
        // Must do before writing abandon message, otherwise deadlock
        if (bindprops != null) {
          int id;
          if (conn.isBindSemIdClear()) {
            // Semaphore id for normal operations
            id = msgId;
          } else {
            // Semaphore id for sasl bind
            id = conn.getBindSemId();
            conn.clearBindSemId();
          }
          conn.freeWriteSemaphore(id);
        }

        if (Debug.LDAP_DEBUG) {
          Debug.trace(Debug.messages, name + "Sending abandon request");
        }
        // Create the abandon message, but don't track it.
        LDAPControl[] cont = null;
        if (cons != null) {
          cont = cons.getControls();
        }
        LDAPMessage msg = new LDAPAbandonRequest(msgId, cont);
        // Send abandon message to server
        conn.writeMessage(msg);
      } catch (LDAPException ex) {; // do nothing
      }
      // If not informing user, remove message from agent
      if (informUserEx == null) {
        agent.abandon(msgId, null);
      }
      conn.removeMessage(this);
    }
    // Get rid of all replies queued
    if (informUserEx != null) {
      replies.addElement(new LDAPResponse(informUserEx, conn.getActiveReferral()));
      if (Debug.LDAP_DEBUG) {
        Debug.trace(
            Debug.messages,
            name
                + "Queued exception as LDAPResponse ("
                + replies.size()
                + " in queue):"
                + " following referral="
                + (conn.getActiveReferral() != null)
                + "\n\texception: "
                + informUserEx.getLDAPErrorMessage());
      }
      stopTimer();
      // wake up waiting threads to receive exception
      sleepersAwake();
      // Message will get cleaned up when last response removed from queue
    } else {
      // Wake up any waiting threads, so they can terminate.
      // If informing the user, we wake sleepers after
      // caller queues dummy response with error status
      sleepersAwake();
      cleanup();
    }
    return;
  }