blob: 46b18f1a2e51a0dcd6005a36a2ea63401dca5bdc [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.schema.comparators;
import java.util.Comparator;
import org.apache.directory.shared.i18n.I18n;
import org.apache.directory.shared.ldap.exception.LdapException;
import org.apache.directory.shared.ldap.schema.LdapComparator;
import org.apache.directory.shared.ldap.schema.SchemaManager;
/**
* A serializable wrapper around a Comparator which uses delayed initialization
* of the underlying wrapped comparator which is JIT resolved from a static
* global registry.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SerializableComparator<E> extends LdapComparator<E>
{
private static final long serialVersionUID = 3257566226288162870L;
/** the OID of the matchingRule for this comparator */
private String matchingRuleOid;
/** the transient wrapped comparator */
private transient Comparator<E> wrapped;
/** A reference to the schema manager */
private transient SchemaManager schemaManager;
// ------------------------------------------------------------------------
// C O N T R U C T O R S
// ------------------------------------------------------------------------
public SerializableComparator( String matchingRuleOid )
{
super( matchingRuleOid );
this.matchingRuleOid = matchingRuleOid;
}
// ------------------------------------------------------------------------
// C O M P A R A T O R I M P L E M E N T A T I O N S
// ------------------------------------------------------------------------
/**
* @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
*/
@SuppressWarnings("unchecked")
public int compare( E o1, E o2 )
{
if ( wrapped == null )
{
try
{
wrapped = (Comparator<E>)schemaManager.lookupComparatorRegistry( matchingRuleOid );
}
catch ( LdapException e )
{
throw new RuntimeException( I18n.err( I18n.ERR_04221, matchingRuleOid ) );
}
}
return wrapped.compare( o1, o2 );
}
/**
* @param schemaManager the schemaManager to set
*/
public void setSchemaManager( SchemaManager schemaManager )
{
if ( wrapped == null )
{
try
{
wrapped = (Comparator<E>)schemaManager.lookupComparatorRegistry( matchingRuleOid );
}
catch ( LdapException ne )
{
// Not found : get the default comparator
wrapped = (Comparator<E>)new ComparableComparator<Comparable<E>>( matchingRuleOid );
}
}
((LdapComparator<E>)wrapped).setSchemaManager( schemaManager );
super.setSchemaManager( schemaManager );
}
}