(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / adapters / ClassConfiguration.java
1 /*
2  * Copyright 2008 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.system.adapters;
17
18 import java.lang.reflect.Constructor;
19 import java.util.ArrayList;
20 import java.util.Arrays;
21 import java.util.List;
22
23 import org.wamblee.collections.CollectionFilter;
24 import org.wamblee.conditions.Condition;
25 import org.wamblee.system.core.DefaultProvidedInterface;
26 import org.wamblee.system.core.DefaultRequiredInterface;
27 import org.wamblee.system.core.ProvidedInterface;
28 import org.wamblee.system.core.RequiredInterface;
29 import org.wamblee.system.core.Scope;
30 import org.wamblee.system.core.SystemAssemblyException;
31
32 /**
33  * The class configuration encapsulates the knowledge of how to wrap a class as a component.
34  * 
35  * @author Erik Brakkee
36  *
37  */
38 public class ClassConfiguration {
39
40         private Class _class; 
41         private ConstructorConfiguration _constructorConfig; 
42         
43         /**
44          * Constructs the configuration. By default no constructor is selected and 
45          * one of {@link #select(Class...)} or 
46          * {@link #greedy()} must be called.  
47          * @param aClass Class to construct. 
48          */
49         public ClassConfiguration(Class aClass) {
50                 _class = aClass; 
51                 _constructorConfig = new ConstructorConfiguration(aClass);  
52         }
53         
54         public ConstructorConfiguration getConstructorConfig() {
55                 return _constructorConfig;
56         }
57
58         /**
59          * Creates the object in the given scope. 
60          * @param aScope Scope containing required interfaces for this object. 
61          * @return object. 
62          */
63         public Object create(Scope aScope) {
64                 return _constructorConfig.create(aScope);
65         }
66         
67         public ProvidedInterface[] getProvidedInterfaces() { 
68                 return new ProvidedInterface[] { 
69                         new DefaultProvidedInterface("provided", _class)        
70                 };
71         }
72         
73         public RequiredInterface[] getRequiredInterface() { 
74                 return _constructorConfig.getRequiredInterfaces().toArray(new RequiredInterface[0]);
75         }
76 }