blob: ef5bad653640aa258b64baf4a079601f0983e60b [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.shared.ldap.jndi;
import java.util.Hashtable;
import javax.naming.AuthenticationException;
import javax.naming.AuthenticationNotSupportedException;
import javax.naming.CommunicationException;
import javax.naming.Context;
import javax.naming.ContextNotEmptyException;
import javax.naming.InvalidNameException;
import javax.naming.Name;
import javax.naming.NameAlreadyBoundException;
import javax.naming.NameNotFoundException;
import javax.naming.NamingException;
import javax.naming.NoPermissionException;
import javax.naming.OperationNotSupportedException;
import javax.naming.PartialResultException;
import javax.naming.ReferralException;
import javax.naming.ServiceUnavailableException;
import javax.naming.TimeLimitExceededException;
import javax.naming.directory.AttributeInUseException;
import javax.naming.directory.InvalidAttributeIdentifierException;
import javax.naming.directory.InvalidAttributeValueException;
import javax.naming.directory.InvalidSearchFilterException;
import javax.naming.directory.NoSuchAttributeException;
import javax.naming.directory.SchemaViolationException;
import javax.naming.ldap.BasicControl;
import org.apache.directory.shared.ldap.codec.controls.ControlImpl;
import org.apache.directory.shared.ldap.exception.LdapAffectMultipleDsaException;
import org.apache.directory.shared.ldap.exception.LdapAliasDereferencingException;
import org.apache.directory.shared.ldap.exception.LdapAliasException;
import org.apache.directory.shared.ldap.exception.LdapAttributeInUseException;
import org.apache.directory.shared.ldap.exception.LdapAuthenticationException;
import org.apache.directory.shared.ldap.exception.LdapAuthenticationNotSupportedException;
import org.apache.directory.shared.ldap.exception.LdapContextNotEmptyException;
import org.apache.directory.shared.ldap.exception.LdapEntryAlreadyExistsException;
import org.apache.directory.shared.ldap.exception.LdapInvalidAttributeTypeException;
import org.apache.directory.shared.ldap.exception.LdapInvalidAttributeValueException;
import org.apache.directory.shared.ldap.exception.LdapInvalidDnException;
import org.apache.directory.shared.ldap.exception.LdapInvalidSearchFilterException;
import org.apache.directory.shared.ldap.exception.LdapLoopDetectedException;
import org.apache.directory.shared.ldap.exception.LdapNoPermissionException;
import org.apache.directory.shared.ldap.exception.LdapNoSuchAttributeException;
import org.apache.directory.shared.ldap.exception.LdapNoSuchObjectException;
import org.apache.directory.shared.ldap.exception.LdapOperationErrorException;
import org.apache.directory.shared.ldap.exception.LdapOtherException;
import org.apache.directory.shared.ldap.exception.LdapPartialResultException;
import org.apache.directory.shared.ldap.exception.LdapProtocolErrorException;
import org.apache.directory.shared.ldap.exception.LdapReferralException;
import org.apache.directory.shared.ldap.exception.LdapSchemaViolationException;
import org.apache.directory.shared.ldap.exception.LdapServiceUnavailableException;
import org.apache.directory.shared.ldap.exception.LdapTimeLimitExceededException;
import org.apache.directory.shared.ldap.exception.LdapUnwillingToPerformException;
import org.apache.directory.shared.ldap.message.control.Control;
import org.apache.directory.shared.ldap.name.DN;
/**
* An utility class to convert back and forth JNDI classes to ADS classes.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class JndiUtils
{
public static javax.naming.ldap.Control toJndiControl( Control control )
{
byte[] value = control.getValue();
javax.naming.ldap.Control jndiControl = new BasicControl( control.getOid(), control.isCritical(), value );
return jndiControl;
}
public static javax.naming.ldap.Control[] toJndiControls( Control... controls )
{
if ( controls != null )
{
javax.naming.ldap.Control[] jndiControls = new javax.naming.ldap.Control[controls.length];
int i = 0;
for ( Control control : controls )
{
jndiControls[i++] = toJndiControl( control );
}
return jndiControls;
}
else
{
return null;
}
}
public static Control fromJndiControl( javax.naming.ldap.Control jndiControl )
{
Control control = new ControlImpl( jndiControl.getID() );
control.setValue( jndiControl.getEncodedValue() );
return control;
}
public static Control[] fromJndiControls( javax.naming.ldap.Control... jndiControls )
{
if ( jndiControls != null )
{
Control[] controls = new Control[jndiControls.length];
int i = 0;
for ( javax.naming.ldap.Control jndiControl : jndiControls )
{
controls[i++] = fromJndiControl( jndiControl );
}
return controls;
}
else
{
return null;
}
}
public static void wrap( Throwable t ) throws NamingException
{
if ( t instanceof NamingException )
{
throw ( NamingException ) t;
}
NamingException ne = null;
if ( t instanceof LdapAffectMultipleDsaException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAliasDereferencingException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAliasException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAttributeInUseException )
{
ne = new AttributeInUseException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAuthenticationException )
{
ne = new AuthenticationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAuthenticationNotSupportedException )
{
ne = new AuthenticationNotSupportedException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapContextNotEmptyException )
{
ne = new ContextNotEmptyException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapEntryAlreadyExistsException )
{
ne = new NameAlreadyBoundException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidAttributeTypeException )
{
ne = new InvalidAttributeIdentifierException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidAttributeValueException )
{
ne = new InvalidAttributeValueException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidDnException )
{
ne = new InvalidNameException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidSearchFilterException )
{
ne = new InvalidSearchFilterException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapLoopDetectedException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoPermissionException )
{
ne = new NoPermissionException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoSuchAttributeException )
{
ne = new NoSuchAttributeException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoSuchObjectException )
{
ne = new NameNotFoundException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapOperationErrorException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapOtherException )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapProtocolErrorException )
{
ne = new CommunicationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapReferralException )
{
ne = new WrappedReferralException( ( LdapReferralException ) t );
}
else if ( t instanceof LdapPartialResultException )
{
ne = new WrappedPartialResultException( ( LdapPartialResultException ) t );
}
else if ( t instanceof LdapSchemaViolationException )
{
ne = new SchemaViolationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapServiceUnavailableException )
{
ne = new ServiceUnavailableException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapTimeLimitExceededException )
{
ne = new TimeLimitExceededException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapUnwillingToPerformException )
{
ne = new OperationNotSupportedException( t.getLocalizedMessage() );
}
else
{
ne = new NamingException( t.getLocalizedMessage() );
}
ne.setRootCause( t );
throw ne;
}
}
// a ReferralException around the LdapReferralException to be used in tests
class WrappedReferralException extends ReferralException
{
private static final long serialVersionUID = 1L;
private LdapReferralException lre;
public WrappedReferralException( LdapReferralException lre )
{
this.lre = lre;
}
@Override
public boolean skipReferral()
{
return lre.skipReferral();
}
@Override
public void retryReferral()
{
lre.retryReferral();
}
@Override
public Object getReferralInfo()
{
return lre.getReferralInfo();
}
@Override
public Context getReferralContext( Hashtable<?, ?> env ) throws NamingException
{
return lre.getReferralContext( env );
}
@Override
public Context getReferralContext() throws NamingException
{
return lre.getReferralContext();
}
@Override
public Name getRemainingName()
{
return DN.toName( lre.getRemainingDn() );
}
@Override
public Object getResolvedObj()
{
return lre.getResolvedObject();
}
@Override
public Name getResolvedName()
{
// TODO Auto-generated method stub
return DN.toName( lre.getResolvedDn() );
}
}
// a PartialResultException around the LdapPartialResultException to be used in tests
class WrappedPartialResultException extends PartialResultException
{
private static final long serialVersionUID = 1L;
private LdapPartialResultException lpre;
public WrappedPartialResultException( LdapPartialResultException lpre )
{
this.lpre = lpre;
}
@Override
public Name getRemainingName()
{
return DN.toName( lpre.getRemainingDn() );
}
@Override
public Object getResolvedObj()
{
return lpre.getResolvedObject();
}
@Override
public Name getResolvedName()
{
return DN.toName( lpre.getResolvedDn() );
}
}