Search in sources :

Example 11 with SearchResultDone

use of org.apache.directory.api.ldap.model.message.SearchResultDone in project directory-ldap-api by apache.

the class SearchCursorImpl method next.

/**
 * {@inheritDoc}
 */
@Override
public boolean next() throws LdapException, CursorException {
    if (done) {
        return false;
    }
    try {
        if (future.isCancelled()) {
            response = null;
            done = true;
            return false;
        }
        response = future.get(timeout, timeUnit);
    } catch (Exception e) {
        LdapException ldapException = new LdapException(LdapNetworkConnection.NO_RESPONSE_ERROR, e);
        // Send an abandon request
        if (!future.isCancelled()) {
            future.cancel(true);
        }
        // close the cursor
        try {
            close(ldapException);
        } catch (IOException ioe) {
            throw new LdapException(ioe.getMessage(), ioe);
        }
        throw ldapException;
    }
    if (response == null) {
        future.cancel(true);
        throw new LdapConnectionTimeOutException(LdapNetworkConnection.TIME_OUT_ERROR);
    }
    done = response instanceof SearchResultDone;
    if (done) {
        searchDoneResp = (SearchResultDone) response;
        response = null;
    }
    return !done;
}
Also used : SearchResultDone(org.apache.directory.api.ldap.model.message.SearchResultDone) IOException(java.io.IOException) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) IOException(java.io.IOException) LdapConnectionTimeOutException(org.apache.directory.ldap.client.api.exception.LdapConnectionTimeOutException) CursorException(org.apache.directory.api.ldap.model.cursor.CursorException) InvalidCursorPositionException(org.apache.directory.api.ldap.model.cursor.InvalidCursorPositionException) LdapReferralException(org.apache.directory.api.ldap.model.exception.LdapReferralException) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) LdapConnectionTimeOutException(org.apache.directory.ldap.client.api.exception.LdapConnectionTimeOutException)

Example 12 with SearchResultDone

use of org.apache.directory.api.ldap.model.message.SearchResultDone in project directory-ldap-api by apache.

the class MessageDecorator method getDecorator.

/**
 * Gets the decorator associated with a given message
 *
 * @param codec The LdapApiService to use
 * @param decoratedMessage The message to decorate
 * @return The decorator instance
 */
public static MessageDecorator<? extends Message> getDecorator(LdapApiService codec, Message decoratedMessage) {
    if (decoratedMessage instanceof MessageDecorator) {
        return (MessageDecorator<?>) decoratedMessage;
    }
    MessageDecorator<?> decorator;
    switch(decoratedMessage.getType()) {
        case ABANDON_REQUEST:
            decorator = new AbandonRequestDecorator(codec, (AbandonRequest) decoratedMessage);
            break;
        case ADD_REQUEST:
            decorator = new AddRequestDecorator(codec, (AddRequest) decoratedMessage);
            break;
        case ADD_RESPONSE:
            decorator = new AddResponseDecorator(codec, (AddResponse) decoratedMessage);
            break;
        case BIND_REQUEST:
            decorator = new BindRequestDecorator(codec, (BindRequest) decoratedMessage);
            break;
        case BIND_RESPONSE:
            decorator = new BindResponseDecorator(codec, (BindResponse) decoratedMessage);
            break;
        case COMPARE_REQUEST:
            decorator = new CompareRequestDecorator(codec, (CompareRequest) decoratedMessage);
            break;
        case COMPARE_RESPONSE:
            decorator = new CompareResponseDecorator(codec, (CompareResponse) decoratedMessage);
            break;
        case DEL_REQUEST:
            decorator = new DeleteRequestDecorator(codec, (DeleteRequest) decoratedMessage);
            break;
        case DEL_RESPONSE:
            decorator = new DeleteResponseDecorator(codec, (DeleteResponse) decoratedMessage);
            break;
        case EXTENDED_REQUEST:
            decorator = codec.decorate((ExtendedRequest) decoratedMessage);
            break;
        case EXTENDED_RESPONSE:
            decorator = codec.decorate((ExtendedResponse) decoratedMessage);
            break;
        case INTERMEDIATE_RESPONSE:
            decorator = new IntermediateResponseDecorator(codec, (IntermediateResponse) decoratedMessage);
            break;
        case MODIFY_REQUEST:
            decorator = new ModifyRequestDecorator(codec, (ModifyRequest) decoratedMessage);
            break;
        case MODIFY_RESPONSE:
            decorator = new ModifyResponseDecorator(codec, (ModifyResponse) decoratedMessage);
            break;
        case MODIFYDN_REQUEST:
            decorator = new ModifyDnRequestDecorator(codec, (ModifyDnRequest) decoratedMessage);
            break;
        case MODIFYDN_RESPONSE:
            decorator = new ModifyDnResponseDecorator(codec, (ModifyDnResponse) decoratedMessage);
            break;
        case SEARCH_REQUEST:
            decorator = new SearchRequestDecorator(codec, (SearchRequest) decoratedMessage);
            break;
        case SEARCH_RESULT_DONE:
            decorator = new SearchResultDoneDecorator(codec, (SearchResultDone) decoratedMessage);
            break;
        case SEARCH_RESULT_ENTRY:
            decorator = new SearchResultEntryDecorator(codec, (SearchResultEntry) decoratedMessage);
            break;
        case SEARCH_RESULT_REFERENCE:
            decorator = new SearchResultReferenceDecorator(codec, (SearchResultReference) decoratedMessage);
            break;
        case UNBIND_REQUEST:
            decorator = new UnbindRequestDecorator(codec, (UnbindRequest) decoratedMessage);
            break;
        default:
            return null;
    }
    Map<String, Control> controls = decoratedMessage.getControls();
    if (controls != null) {
        for (Control control : controls.values()) {
            decorator.addControl(control);
        }
    }
    return decorator;
}
Also used : ModifyRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator) SearchRequest(org.apache.directory.api.ldap.model.message.SearchRequest) DeleteRequestDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator) SearchResultEntryDecorator(org.apache.directory.api.ldap.codec.decorators.SearchResultEntryDecorator) AbandonRequest(org.apache.directory.api.ldap.model.message.AbandonRequest) BindRequest(org.apache.directory.api.ldap.model.message.BindRequest) DeleteResponseDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteResponseDecorator) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) BindResponseDecorator(org.apache.directory.api.ldap.codec.decorators.BindResponseDecorator) BindResponse(org.apache.directory.api.ldap.model.message.BindResponse) ModifyRequest(org.apache.directory.api.ldap.model.message.ModifyRequest) AbandonRequestDecorator(org.apache.directory.api.ldap.codec.decorators.AbandonRequestDecorator) AddResponseDecorator(org.apache.directory.api.ldap.codec.decorators.AddResponseDecorator) AddRequest(org.apache.directory.api.ldap.model.message.AddRequest) IntermediateResponseDecorator(org.apache.directory.api.ldap.codec.decorators.IntermediateResponseDecorator) IntermediateResponse(org.apache.directory.api.ldap.model.message.IntermediateResponse) Control(org.apache.directory.api.ldap.model.message.Control) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) UnbindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator) CompareRequestDecorator(org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ModifyDnResponse(org.apache.directory.api.ldap.model.message.ModifyDnResponse) SearchResultReferenceDecorator(org.apache.directory.api.ldap.codec.decorators.SearchResultReferenceDecorator) ModifyResponse(org.apache.directory.api.ldap.model.message.ModifyResponse) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest) CompareResponse(org.apache.directory.api.ldap.model.message.CompareResponse) SearchResultDone(org.apache.directory.api.ldap.model.message.SearchResultDone) ModifyDnRequest(org.apache.directory.api.ldap.model.message.ModifyDnRequest) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) CompareResponseDecorator(org.apache.directory.api.ldap.codec.decorators.CompareResponseDecorator) CompareRequest(org.apache.directory.api.ldap.model.message.CompareRequest) DeleteResponse(org.apache.directory.api.ldap.model.message.DeleteResponse) ModifyResponseDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyResponseDecorator) ModifyDnResponseDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnResponseDecorator) ExtendedResponse(org.apache.directory.api.ldap.model.message.ExtendedResponse) ExtendedRequest(org.apache.directory.api.ldap.model.message.ExtendedRequest) SearchResultDoneDecorator(org.apache.directory.api.ldap.codec.decorators.SearchResultDoneDecorator) AddRequestDecorator(org.apache.directory.api.ldap.codec.decorators.AddRequestDecorator) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) SearchResultEntry(org.apache.directory.api.ldap.model.message.SearchResultEntry)

Example 13 with SearchResultDone

use of org.apache.directory.api.ldap.model.message.SearchResultDone in project directory-ldap-api by apache.

the class EntryCursorImpl method next.

/**
 * {@inheritDoc}
 */
@Override
public boolean next() throws LdapException, CursorException {
    if (!searchCursor.next()) {
        return false;
    }
    try {
        do {
            response = searchCursor.get();
            if (response == null) {
                throw new LdapException(LdapNetworkConnection.TIME_OUT_ERROR);
            }
            messageId = response.getMessageId();
            if (response instanceof SearchResultEntry) {
                return true;
            }
            if (response instanceof SearchResultReference) {
                return true;
            }
        } while (!(response instanceof SearchResultDone));
        return false;
    } catch (Exception e) {
        LdapException ldapException = new LdapException(LdapNetworkConnection.NO_RESPONSE_ERROR);
        ldapException.initCause(e);
        // close the cursor
        try {
            close(ldapException);
        } catch (IOException ioe) {
            throw new LdapException(ioe.getMessage(), ioe);
        }
        throw ldapException;
    }
}
Also used : SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) SearchResultDone(org.apache.directory.api.ldap.model.message.SearchResultDone) IOException(java.io.IOException) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) CursorLdapReferralException(org.apache.directory.api.ldap.model.cursor.CursorLdapReferralException) IOException(java.io.IOException) CursorException(org.apache.directory.api.ldap.model.cursor.CursorException) InvalidCursorPositionException(org.apache.directory.api.ldap.model.cursor.InvalidCursorPositionException) LdapReferralException(org.apache.directory.api.ldap.model.exception.LdapReferralException) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) SearchResultEntry(org.apache.directory.api.ldap.model.message.SearchResultEntry)

Example 14 with SearchResultDone

use of org.apache.directory.api.ldap.model.message.SearchResultDone in project directory-ldap-api by apache.

the class SearchResultDoneTest method testResponseWithMatchedDNAttribute.

/**
 * Test parsing of a response with MatchedDN attribute
 */
@Test
public void testResponseWithMatchedDNAttribute() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultDoneTest.class.getResource("response_with_matchedDN_attribute.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultDone searchResultDone = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getSearchResultDone();
    LdapResult ldapResult = searchResultDone.getLdapResult();
    assertTrue(ldapResult.getMatchedDn().equals("cn=Bob Rush,ou=Dev,dc=Example,dc=COM"));
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) LdapResult(org.apache.directory.api.ldap.model.message.LdapResult) SearchResultDone(org.apache.directory.api.ldap.model.message.SearchResultDone) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 15 with SearchResultDone

use of org.apache.directory.api.ldap.model.message.SearchResultDone in project directory-ldap-api by apache.

the class SearchResultDoneTest method testResponseWithResultCode.

/**
 * Test parsing of a response with Result Code
 */
@Test
public void testResponseWithResultCode() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultDoneTest.class.getResource("response_with_result_code.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultDone searchResultDone = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getSearchResultDone();
    LdapResult ldapResult = searchResultDone.getLdapResult();
    assertEquals(ResultCodeEnum.PROTOCOL_ERROR, ldapResult.getResultCode());
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) LdapResult(org.apache.directory.api.ldap.model.message.LdapResult) SearchResultDone(org.apache.directory.api.ldap.model.message.SearchResultDone) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Aggregations

SearchResultDone (org.apache.directory.api.ldap.model.message.SearchResultDone)21 Test (org.junit.Test)16 AbstractResponseTest (org.apache.directory.api.dsmlv2.AbstractResponseTest)13 Dsmlv2ResponseParser (org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser)13 SearchResponse (org.apache.directory.api.dsmlv2.response.SearchResponse)13 LdapURLEncodingException (org.apache.directory.api.ldap.model.exception.LdapURLEncodingException)13 LdapResult (org.apache.directory.api.ldap.model.message.LdapResult)8 Control (org.apache.directory.api.ldap.model.message.Control)6 DsmlControl (org.apache.directory.api.dsmlv2.DsmlControl)4 SearchResultDoneDecorator (org.apache.directory.api.ldap.codec.decorators.SearchResultDoneDecorator)4 SearchResultEntry (org.apache.directory.api.ldap.model.message.SearchResultEntry)4 SearchResultReference (org.apache.directory.api.ldap.model.message.SearchResultReference)4 ByteBuffer (java.nio.ByteBuffer)3 DecoderException (org.apache.directory.api.asn1.DecoderException)3 EncoderException (org.apache.directory.api.asn1.EncoderException)3 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)3 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)3 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)3 IOException (java.io.IOException)2 AddResponse (org.apache.directory.api.ldap.model.message.AddResponse)2