blob: 72d47e6041b15e2c7599ae627217846f2dabc0d5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.core.interceptor.context;
import java.util.Set;
import javax.naming.directory.SearchControls;
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.shared.ldap.filter.ExprNode;
import org.apache.directory.shared.ldap.filter.SearchScope;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.InternalSearchRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.schema.AttributeTypeOptions;
/**
* A Search context used for Interceptors. It contains all the informations
* needed for the search operation, and used by all the interceptors
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class SearchOperationContext extends SearchingOperationContext
{
/** The filter */
private ExprNode filter;
/**
* Creates a new instance of SearchOperationContext.
*/
public SearchOperationContext( CoreSession session )
{
super( session );
}
/**
* Creates a new instance of SearchOperationContext.
* @throws Exception
*/
public SearchOperationContext( CoreSession session, InternalSearchRequest searchRequest ) throws Exception
{
super( session );
this.dn = searchRequest.getBase();
this.filter = searchRequest.getFilter();
this.abandoned = searchRequest.isAbandoned();
this.aliasDerefMode = searchRequest.getDerefAliases();
this.requestControls = searchRequest.getControls();
this.scope = searchRequest.getScope();
this.sizeLimit = searchRequest.getSizeLimit();
this.timeLimit = searchRequest.getTimeLimit();
this.noAttributes = searchRequest.getTypesOnly();
setReturningAttributes( searchRequest.getAttributes() );
if ( requestControls.containsKey( ManageDsaITControl.CONTROL_OID ) )
{
ignoreReferral();
}
else
{
throwReferral();
}
}
/**
* Creates a new instance of SearchOperationContext.
*
* @param aliasDerefMode the alias dereferencing mode
* @param dn the dn of the search base
* @param filter the filter AST to use for the search
* @param searchControls the search controls
*/
public SearchOperationContext( CoreSession session, LdapDN dn, AliasDerefMode aliasDerefMode, ExprNode filter,
SearchControls searchControls ) throws Exception
{
super( session, dn, aliasDerefMode, searchControls );
this.filter = filter;
}
/**
* Creates a new instance of SearchOperationContext.
*
* @param session the session this operation is associated with
* @param dn the search base
* @param scope the search scope
* @param filter the filter AST to use for the search
* @param aliasDerefMode the alias dereferencing mode
* @param returningAttributes the attributes to return
*/
public SearchOperationContext( CoreSession session, LdapDN dn, SearchScope scope,
ExprNode filter, AliasDerefMode aliasDerefMode, Set<AttributeTypeOptions> returningAttributes )
{
super( session, dn, aliasDerefMode, returningAttributes );
super.setScope( scope );
this.filter = filter;
}
/**
* Checks whether or not the ManageDsaITControl is present. If not
* present then the filter is modified to force the return of all referral
* entries regardless of whether or not the filter matches the referral
* entry.
*/
public boolean hasManageDsaItControl()
{
return super.hasRequestControl( ManageDsaITControl.CONTROL_OID );
}
/**
* @return The filter
*/
public ExprNode getFilter()
{
return filter;
}
/**
* Set the filter into the context.
*
* @param filter The filter to set
*/
public void setFilter( ExprNode filter )
{
this.filter = filter;
}
/**
* @see Object#toString()
*/
public String toString()
{
return "SearchContext for DN '" + getDn().getUpName() + "', filter :'"
+ filter + "'";
}
/**
* @return the operation name
*/
public String getName()
{
return MessageTypeEnum.SEARCH_REQUEST.name();
}
}