001/*
002 *  Licensed to the Apache Software Foundation (ASF) under one
003 *  or more contributor license agreements.  See the NOTICE file
004 *  distributed with this work for additional information
005 *  regarding copyright ownership.  The ASF licenses this file
006 *  to you under the Apache License, Version 2.0 (the
007 *  "License"); you may not use this file except in compliance
008 *  with the License.  You may obtain a copy of the License at
009 *
010 *    http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *  Unless required by applicable law or agreed to in writing,
013 *  software distributed under the License is distributed on an
014 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *  KIND, either express or implied.  See the License for the
016 *  specific language governing permissions and limitations
017 *  under the License.
018 *
019 */
020package org.apache.directory.api.ldap.model.schema.registries.helper;
021
022
023import java.util.List;
024
025import org.apache.directory.api.ldap.model.exception.LdapException;
026import org.apache.directory.api.ldap.model.schema.NameForm;
027import org.apache.directory.api.ldap.model.schema.ObjectClass;
028import org.apache.directory.api.ldap.model.schema.registries.AttributeTypeRegistry;
029import org.apache.directory.api.ldap.model.schema.registries.Registries;
030
031
032/**
033 * An helper class used to store all the methods associated with an NameForm
034 * in relation with the Registries and SchemaManager.
035 * 
036 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
037 */
038public class NameFormHelper
039{
040    /**
041     * Inject the NameForm into the registries, updating the references to
042     * other SchemaObject
043     *
044     * @param nameForm The NameForm to add to the Registries
045     * @param errors The errors we got while adding the NameForm to the Registries
046     * @param registries The Registries
047     * @exception If the addition failed
048     */
049    public static void addToRegistries( NameForm nameForm, List<Throwable> errors, Registries registries )
050        throws LdapException
051    {
052        if ( registries != null )
053        {
054            try
055            {
056                nameForm.unlock();
057
058                AttributeTypeRegistry atRegistry = registries.getAttributeTypeRegistry();
059
060                ObjectClass structuralObjectClass = registries.getObjectClassRegistry().lookup(
061                    nameForm.getStructuralObjectClassOid() );
062                nameForm.setStructuralObjectClass( structuralObjectClass );
063
064                nameForm.getMayAttributeTypes().clear();
065
066                for ( String oid : nameForm.getMayAttributeTypeOids() )
067                {
068                    nameForm.getMayAttributeTypes().add( atRegistry.lookup( oid ) );
069                }
070
071                nameForm.getMustAttributeTypes().clear();
072
073                for ( String oid : nameForm.getMustAttributeTypeOids() )
074                {
075                    nameForm.getMustAttributeTypes().add( atRegistry.lookup( oid ) );
076                }
077            }
078            finally
079            {
080                nameForm.lock();
081            }
082        }
083    }
084}