blob: 50a4256da93f8323d6d93776eb9c74e4156438d2 [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.bootstrap;
import java.lang.reflect.Modifier;
import java.util.List;
import java.util.stream.Stream;
import org.apache.polygene.api.common.InvalidApplicationException;
import org.apache.polygene.api.common.MetaInfo;
import org.apache.polygene.api.common.Visibility;
import org.apache.polygene.api.composite.Composite;
import org.apache.polygene.api.structure.ModuleDescriptor;
import org.apache.polygene.bootstrap.ObjectAssembly;
import org.apache.polygene.runtime.object.ObjectModel;
/**
* Assembly of an Object.
*/
public final class ObjectAssemblyImpl
implements ObjectAssembly
{
private Class<?> objectType;
MetaInfo metaInfo = new MetaInfo();
Visibility visibility = Visibility.module;
public ObjectAssemblyImpl( Class<?> clazz )
{
// best try to find out if the class is a concrete class
if( clazz.isEnum() ||
( !Composite.class.isAssignableFrom( clazz ) && Modifier.isAbstract( clazz.getModifiers() ) ) )
{
throw new IllegalArgumentException( "Declared objects must be concrete classes: " + clazz );
}
this.objectType = clazz;
}
@Override
public Stream<Class<?>> types()
{
return Stream.of( objectType );
}
void addObjectModel( ModuleDescriptor module, List<ObjectModel> objectModels )
{
try
{
ObjectModel objectModel = new ObjectModel( module, objectType, visibility, metaInfo );
objectModels.add( objectModel );
}
catch( Throwable e )
{
throw new InvalidApplicationException( "Could not register " + objectType.getName(), e );
}
}
}