blob: 96c51b265e1b9455000ffe182362c209ff71a172 [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.polygene.runtime.association;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Member;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.stream.Stream;
import org.apache.polygene.api.association.AssociationDescriptor;
import org.apache.polygene.api.association.ManyAssociation;
import org.apache.polygene.api.common.QualifiedName;
import org.apache.polygene.api.util.HierarchicalVisitor;
import org.apache.polygene.api.util.VisitableHierarchy;
import org.apache.polygene.runtime.unitofwork.ModuleUnitOfWork;
import org.apache.polygene.runtime.value.ValueStateInstance;
import org.apache.polygene.spi.entity.EntityState;
/**
* Model for ManyAssociations.
*/
public final class ManyAssociationsModel
implements VisitableHierarchy<ManyAssociationsModel, ManyAssociationModel>
{
private final Map<AccessibleObject, ManyAssociationModel> mapAccessorAssociationModel = new LinkedHashMap<>();
private final Map<QualifiedName, ManyAssociationModel> mapNameAssociationModel = new LinkedHashMap<>();
public ManyAssociationsModel()
{
}
public Stream<ManyAssociationModel> manyAssociations()
{
return mapAccessorAssociationModel.values().stream();
}
public void addManyAssociation( ManyAssociationModel model )
{
mapAccessorAssociationModel.put( model.accessor(), model );
mapNameAssociationModel.put( model.qualifiedName(), model );
}
@Override
public <ThrowableType extends Throwable> boolean accept( HierarchicalVisitor<? super ManyAssociationsModel, ? super ManyAssociationModel, ThrowableType> visitor )
throws ThrowableType
{
if( visitor.visitEnter( this ) )
{
for( ManyAssociationModel associationModel : mapAccessorAssociationModel.values() )
{
if( !associationModel.accept( visitor ) )
{
break;
}
}
}
return visitor.visitLeave( this );
}
public <T> ManyAssociation<T> newInstance( AccessibleObject accessor,
EntityState entityState,
ModuleUnitOfWork uow )
{
return mapAccessorAssociationModel.get( accessor ).newInstance( uow, entityState );
}
public ManyAssociationModel getManyAssociation( AccessibleObject accessor )
throws IllegalArgumentException
{
ManyAssociationModel manyAssociationModel = mapAccessorAssociationModel.get( accessor );
if( manyAssociationModel == null )
{
throw new IllegalArgumentException( "No many-association found with name:" + ( (Member) accessor ).getName() );
}
return manyAssociationModel;
}
public AssociationDescriptor getManyAssociationByName( String name )
throws IllegalArgumentException
{
for( ManyAssociationModel associationModel : mapAccessorAssociationModel.values() )
{
if( associationModel.qualifiedName().name().equals( name ) )
{
return associationModel;
}
}
throw new IllegalArgumentException( "No many-association found with name:" + name );
}
public AssociationDescriptor getManyAssociationByQualifiedName( QualifiedName name )
throws IllegalArgumentException
{
ManyAssociationModel associationModel = mapNameAssociationModel.get( name );
if( associationModel != null )
{
return associationModel;
}
throw new IllegalArgumentException( "No many-association found with qualified name:" + name );
}
public boolean hasAssociation( QualifiedName name )
{
return mapNameAssociationModel.containsKey( name );
}
public void checkConstraints( ValueStateInstance state )
{
for( ManyAssociationModel manyAssociationModel : mapAccessorAssociationModel.values() )
{
AccessibleObject accessor = manyAssociationModel.accessor();
ManyAssociationInstance<?> instance = state.manyAssociationFor( accessor );
manyAssociationModel.checkAssociationConstraints( instance );
}
}
}