blob: 7c46eeda9fb355fc4f7cfff3c3a9b095fa129338 [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.schema.registries;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import javax.naming.NamingException;
import org.apache.directory.shared.ldap.schema.DITContentRule;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A plain old java object implementation of an DITContentRuleRegistry.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class DefaultDitContentRuleRegistry implements DITContentRuleRegistry
{
/** static class logger */
private static final Logger LOG = LoggerFactory.getLogger( DefaultDitContentRuleRegistry.class );
/** maps an OID to an DITContentRule */
private final Map<String,DITContentRule> byOid;
/** the registry used to resolve names to OIDs */
private final OidRegistry oidRegistry;
// ------------------------------------------------------------------------
// C O N S T R U C T O R S
// ------------------------------------------------------------------------
/**
* Creates an empty DefaultDitContentRuleRegistry.
*
* @param oidRegistry used by this registry for OID to name resolution of
* dependencies and to automatically register and unregister it's aliases and OIDs
*/
public DefaultDitContentRuleRegistry( OidRegistry oidRegistry )
{
this.byOid = new HashMap<String,DITContentRule>();
this.oidRegistry = oidRegistry;
}
// ------------------------------------------------------------------------
// Service Methods
// ------------------------------------------------------------------------
public void register( DITContentRule dITContentRule ) throws NamingException
{
if ( byOid.containsKey( dITContentRule.getOid() ) )
{
throw new NamingException( "dITContentRule w/ OID " + dITContentRule.getOid()
+ " has already been registered!" );
}
oidRegistry.register( dITContentRule.getName(), dITContentRule.getOid() );
byOid.put( dITContentRule.getOid(), dITContentRule );
if ( LOG.isDebugEnabled() )
{
LOG.debug( "registed dITContentRule: " + dITContentRule );
}
}
public DITContentRule lookup( String id ) throws NamingException
{
id = oidRegistry.getOid( id );
if ( !byOid.containsKey( id ) )
{
throw new NamingException( "dITContentRule w/ OID " + id + " not registered!" );
}
DITContentRule dITContentRule = byOid.get( id );
if ( LOG.isDebugEnabled() )
{
LOG.debug( "lookup with id '" + id + "' of dITContentRule: " + dITContentRule );
}
return dITContentRule;
}
public boolean hasDITContentRule( String id )
{
if ( oidRegistry.hasOid( id ) )
{
try
{
return byOid.containsKey( oidRegistry.getOid( id ) );
}
catch ( NamingException e )
{
return false;
}
}
return false;
}
public String getSchemaName( String id ) throws NamingException
{
id = oidRegistry.getOid( id );
DITContentRule dcr = byOid.get( id );
if ( dcr != null )
{
return dcr.getSchema();
}
throw new NamingException( "OID " + id + " not found in oid to " + "DITContentRule map!" );
}
public Iterator<DITContentRule> iterator()
{
return byOid.values().iterator();
}
public void unregister( String numericOid ) throws NamingException
{
if ( ! Character.isDigit( numericOid.charAt( 0 ) ) )
{
throw new NamingException( "Looks like the arg is not a numeric OID" );
}
byOid.remove( numericOid );
}
}