2 * Copyright 2008 the original author or authors.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.wamblee.system.adapters;
18 import java.util.ArrayList;
19 import java.util.List;
21 import org.wamblee.system.core.DefaultRequiredInterface;
22 import org.wamblee.system.core.RequiredInterface;
23 import org.wamblee.system.core.Scope;
26 * Represents parameter values for a method or constructor and allows for the configuration
27 * of how these values are retrieved.
29 * @author Erik Brakkee
31 public class ParameterValues {
32 private String[] _names;
33 private Class[] _types;
34 private ValueProvider[] _values;
37 * Constructs the configuration. By default no constructor is selected and
38 * one of {@link #select(Class...)} or
39 * {@link #greedy()} must be called.
40 * @param aClass Class to construct.
42 public ParameterValues(Class[] aTypes) {
43 _names = new String[aTypes.length];
44 for (int i = 0; i < aTypes.length; i++) {
45 _names[i] = "arg" + i;
52 * Constructs the configuration. By default no constructor is selected and
53 * one of {@link #select(Class...)} or
54 * {@link #greedy()} must be called.
55 * @param aNames Names of the arguments.
56 * @param aClass Class to construct.
58 public ParameterValues(String[] aNames, Class[] aTypes) {
59 assert aNames.length == aTypes.length;
66 * The types of the parameter values.
69 public Class[] getTypes() {
74 * Sets argument i to be optional, meaning that null is allowed to be passed in.
75 * @param aArg Argument to set.
77 public ParameterValues setOptional(int aArg) {
78 _values[aArg] = new RequiredInterfaceProvider(new DefaultRequiredInterface(
79 "arg" + aArg, _types[aArg], true));
84 * Sets the argument i to a fixed value.
85 * @param aArg Argument to set.
86 * @param aValue Value.
88 public ParameterValues setValue(int aArg, Object aValue) {
89 _values[aArg] = new FixedValueProvider(aValue);
96 private void resetValues() {
97 _values = new ValueProvider[_types.length];
98 for (int i = 0; i < _values.length; i++) {
99 _values[i] = new RequiredInterfaceProvider(new DefaultRequiredInterface(
100 _names[i], _types[i]));
105 * Gets the required interfaces to provide values that are not provided
107 * @return Required interfaces.
109 public List<RequiredInterface> getRequiredInterfaces() {
110 List<RequiredInterface> result = new ArrayList<RequiredInterface>();
111 for (ValueProvider provider: _values) {
112 if ( provider instanceof RequiredInterfaceProvider) {
113 result.add( ((RequiredInterfaceProvider)provider).getRequiredInterface());
120 * Returns the values to use in the given scope.
121 * @param aScope Scope within which to retrieve the values.
124 public Object[] values(Scope aScope) {
125 Object[] values = new Object[_values.length];
126 for (int i = 0; i < _values.length; i++) {
127 values[i] = _values[i].getValue(aScope);