[Jiemamy-notify:2773] commit [3697] ReflectionFactoryとそれに関する定義やユーティリティを追加。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 10月 4日 (日) 15:54:41 JST


Revision: 3697
          http://sourceforge.jp/projects/jiemamy/svn/view?view=rev&revision=3697
Author:   ashigeru
Date:     2009-10-04 15:54:41 +0900 (Sun, 04 Oct 2009)

Log Message:
-----------
ReflectionFactoryとそれに関する定義やユーティリティを追加。

Modified Paths:
--------------
    leto/factory-enhancer/branches/interface-enhancer-20091004/pom.xml

Added Paths:
-----------
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/Factory.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactory.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtil.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateClass.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateConstructor.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactoryTest.java
    leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtilTest.java

Modified: leto/factory-enhancer/branches/interface-enhancer-20091004/pom.xml
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/pom.xml	2009-10-04 06:47:53 UTC (rev 3696)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/pom.xml	2009-10-04 06:54:41 UTC (rev 3697)
@@ -11,7 +11,7 @@
   <groupId>org.jiemamy</groupId>
   <artifactId>factory-enhancer</artifactId>
   <name>Factory Enhancer</name>
-  <version>0.1.1-SNAPSHOT</version>
+  <version>0.2.0-SNAPSHOT</version>
   <url>http://report.jiemamy.org/factory-enhancer</url>
   <ciManagement>
     <system>hudson</system>

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/Factory.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/Factory.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/Factory.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2009/10/04
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed 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.jiemamy.utils.enhancer;
+
+import java.lang.reflect.InvocationTargetException;
+
+/**
+ * 特定の型のオブジェクトを生成するファクトリ。
+ * @version 0.2.0
+ * @since 0.2.0
+ * @author Suguru ARAKAWA (Gluegent, Inc.)
+ * @param <T> 生成するインスタンスの型
+ */
+public interface Factory<T> {
+	
+	/**
+	 * このファクトリが生成するオブジェクトのクラスを返す。
+	 * @return このファクトリが生成するオブジェクトのクラス
+	 */
+	Class<T> getTargetClass();
+	
+	/**
+	 * 指定の引数を利用して、このファクトリが生成可能なオブジェクトを生成して返す。
+	 * @param arguments オブジェクトの生成に利用する引数の一覧
+	 * @return 生成したオブジェクト
+	 * @throws IllegalArgumentException 指定された引数がオブジェクトの生成に適さない場合
+	 * @throws InvocationTargetException オブジェクトの生成中に例外が発生した場合
+	 */
+	T newInstance(Object... arguments) throws InvocationTargetException;
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/Factory.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactory.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactory.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactory.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,123 @@
+/*
+ * Copyright 2009 the Seasar Foundation and the Others.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.findConstructor;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.toParameterTypes;
+
+import java.lang.reflect.Constructor;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Modifier;
+import java.text.MessageFormat;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+import org.jiemamy.utils.enhancer.Factory;
+
+/**
+ * Reflection APIを利用してオブジェクトを生成するファクトリの実装。
+ * @version 0.2.0
+ * @since 0.2.0
+ * @author Suguru ARAKAWA (Gluegent, Inc.)
+ * @param <T> 生成するオブジェクトの型
+ */
+public class ReflectionFactory<T> implements Factory<T> {
+	
+	private Class<T> targetClass;
+	
+
+	/**
+	 * インスタンスを生成する。
+	 * <p>
+	 * 対象のクラスは、次のようなクラスでなければならない。
+	 * </p>
+	 * <ul>
+	 * <li> 通常の具象クラスである(インターフェース、列挙、抽象クラスではない) </li>
+	 * <li> パッケージメンバである(トップレベルクラス) </li>
+	 * <li> {@code public}で宣言されている </li>
+	 * </ul>
+	 * @param targetClass ファクトリが生成するインスタンスのクラス
+	 * @throws IllegalArgumentException 引数のクラスが不正である場合
+	 */
+	public ReflectionFactory(Class<T> targetClass) {
+		if (targetClass == null) {
+			throw new IllegalArgumentException("targetClass is null"); //$NON-NLS-1$
+		}
+		if (ReflectionUtil.isNormalClass(targetClass) == false) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"{0} is not a normal class",
+					targetClass));
+		}
+		if (Modifier.isAbstract(targetClass.getModifiers())) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"{0} is not a concrete class",
+					targetClass));
+		}
+		if (ReflectionUtil.isPackageMember(targetClass) == false) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"{0} is not a package member",
+					targetClass));
+		}
+		if (Modifier.isPublic(targetClass.getModifiers()) == false) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"{0} is not public",
+					targetClass));
+		}
+		this.targetClass = targetClass;
+	}
+	
+	public Class<T> getTargetClass() {
+		return targetClass;
+	}
+	
+	public T newInstance(Object... arguments) throws InvocationTargetException {
+		if (arguments == null) {
+			throw new IllegalArgumentException("arguments is null"); //$NON-NLS-1$
+		}
+		List<Constructor<T>> constructors = new ArrayList<Constructor<T>>();
+		for (Constructor<?> ctor : targetClass.getConstructors()) {
+			@SuppressWarnings("unchecked")
+			Constructor<T> tCtor = (Constructor<T>) ctor;
+			constructors.add(tCtor);
+		}
+		List<Class<?>> parameterTypes = toParameterTypes(arguments);
+		Collection<Constructor<T>> targets =
+				findConstructor(constructors, parameterTypes);
+		if (targets.isEmpty()) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"No applicable constructors in {0} for {1}",
+					targetClass.getName(),
+					parameterTypes));
+		}
+		if (targets.size() >= 2) {
+			throw new IllegalArgumentException(MessageFormat.format(
+					"Ambiguous target constructors ({0}) for {1}",
+					targets,
+					parameterTypes));
+		}
+		Constructor<T> target = targets.iterator().next();
+		try {
+			return target.newInstance(arguments);
+		} catch (IllegalAccessException e) {
+			// may not occur
+			throw new AssertionError(e);
+		} catch (InstantiationException e) {
+			// may not occur
+			throw new AssertionError(e);
+		}
+	}
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactory.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtil.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtil.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtil.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,515 @@
+/*
+ * Copyright 2009 the Seasar Foundation and the Others.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Member;
+import java.lang.reflect.Method;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * リフレクションに関するユーティリティ群。
+ * @version $Date$
+ * @author Suguru ARAKAWA (Gluegent, Inc.)
+ * @version 0.2.0
+ * @since 0.2.0
+ */
+public class ReflectionUtil {
+	
+	private static final Map<Class<?>, Class<?>> BOXING;
+	static {
+		Map<Class<?>, Class<?>> map = new HashMap<Class<?>, Class<?>>();
+		map.put(Integer.TYPE, Integer.class);
+		map.put(Long.TYPE, Long.class);
+		map.put(Float.TYPE, Float.class);
+		map.put(Double.TYPE, Double.class);
+		map.put(Short.TYPE, Short.class);
+		map.put(Byte.TYPE, Byte.class);
+		map.put(Character.TYPE, Character.class);
+		map.put(Boolean.TYPE, Boolean.class);
+		BOXING = Collections.unmodifiableMap(map);
+	}
+	
+
+	/**
+	 * インスタンス生成の禁止。
+	 */
+	private ReflectionUtil() {
+		throw new AssertionError();
+	}
+	
+	/**
+	 * 指定のオブジェクトが、列挙やインターフェース等でない通常のクラスを表現する場合のみ{@code true}を返す。
+	 * @param aClass 対象のクラスオブジェクト
+	 * @return 通常のクラスを表現する場合に{@code true}
+	 * @throws IllegalArgumentException 引数に{@code null}が指定された場合
+	 */
+	public static boolean isNormalClass(Class<?> aClass) {
+		if (aClass == null) {
+			throw new IllegalArgumentException("aClass is null"); //$NON-NLS-1$
+		}
+		return aClass.isPrimitive() == false
+				&& aClass.isArray() == false
+				&& aClass.isInterface() == false
+				&& aClass.isEnum() == false;
+	}
+	
+	/**
+	 * 指定のクラスがパッケージメンバ(トップレベルクラス)である場合のみ{@code true}を返す。
+	 * @param aClass 対象のクラスオブジェクト
+	 * @return 指定のクラスがパッケージメンバである場合に{@code true}
+	 * @throws IllegalArgumentException 引数に{@code null}が指定された場合
+	 */
+	public static boolean isPackageMember(Class<?> aClass) {
+		if (aClass == null) {
+			throw new IllegalArgumentException("aClass is null"); //$NON-NLS-1$
+		}
+		return aClass.isPrimitive() == false
+				&& aClass.isArray() == false
+				&& aClass.isMemberClass() == false
+				&& aClass.isLocalClass() == false
+				&& aClass.isAnonymousClass() == false;
+	}
+	
+	/**
+	 * 引数の一覧をそのクラスの一覧に変換して返す。
+	 * <p>
+	 * 引数の要素に{@code null}が指定された場合、対応する結果のクラスも{@code null}となる。
+	 * このクラスが提供するほかのメソッドでは、クラスに{@code null}が指定された場合に
+	 * {@code null}型を表現するため、このメソッドの実行結果をそのまま利用できる。
+	 * </p>
+	 * @param arguments 実引数の一覧
+	 * @return 対応する型引数の一覧
+	 * @throws IllegalArgumentException 引数に{@code null}が指定された場合
+	 */
+	public static List<Class<?>> toParameterTypes(Object... arguments) {
+		if (arguments == null) {
+			throw new IllegalArgumentException("arguments is null"); //$NON-NLS-1$
+		}
+		List<Class<?>> results = new ArrayList<Class<?>>(arguments.length);
+		for (Object argument : arguments) {
+			if (argument != null) {
+				results.add(argument.getClass());
+			} else {
+				results.add(null);
+			}
+		}
+		return results;
+	}
+	
+	/**
+	 * 指定の名前と実引数の型で適用可能なコンストラクタを、指定の一覧の中から検出して返す。
+	 * <p>
+	 * 複数のメソッドが同時に適用可能である場合、その中から最大限に限定的であるものを計算して返す。
+	 * ただし、その結果が単一のコンストラクタとなるとは限らない。
+	 * </p>
+	 * @param <T> それぞれのコンストラクタが生成するインスタンスの型
+	 * @param constructors 候補のコンストラクタ一覧
+	 * @param argumentTypes 起動時に利用する実引数の型一覧、この要素に{@code null}が
+	 *     含まれる場合、それは{@code null}型を表現する
+	 * @return 適用可能なコンストラクタのうち限定的であるもの、発見できない場合は空のリスト
+	 * @throws IllegalArgumentException 引数に{@code null}が含まれる場合
+	 */
+	public static <T>Collection<Constructor<T>> findConstructor(
+			Collection<Constructor<T>> constructors,
+			List<Class<?>> argumentTypes) {
+		if (constructors == null) {
+			throw new IllegalArgumentException("constructors is null"); //$NON-NLS-1$
+		}
+		if (argumentTypes == null) {
+			throw new IllegalArgumentException("argumentTypes is null"); //$NON-NLS-1$
+		}
+		
+		Class<?>[] argTypeArray = argumentTypes.toArray(
+			new Class<?>[argumentTypes.size()]);
+		
+		List<Executable<Constructor<T>>> results =
+				findPotentiallyApplicables(constructors, argTypeArray);
+		
+		filterApplicables(results, argTypeArray);
+		filterMaximallySpecifics(results);
+		return unpack(results);
+	}
+	
+	/**
+	 * 指定の名前と実引数の型で適用可能なメソッドを、指定の一覧の中から検出して返す。
+	 * <p>
+	 * 複数のメソッドが同時に適用可能である場合、その中から最大限に限定的であるものを計算して返す。
+	 * ただし、その結果が単一のメソッドとなるとは限らない。
+	 * </p>
+	 * @param methods 候補のメソッド一覧
+	 * @param name 起動するメソッドの名前
+	 * @param argumentTypes 起動時に利用する実引数の型一覧、この要素に{@code null}が
+	 *     含まれる場合、それは{@code null}型を表現する
+	 * @return 適用可能なメソッドのうち限定的であるもの、発見できない場合は空のリスト
+	 * @throws IllegalArgumentException 引数に{@code null}が含まれる場合
+	 */
+	public static Collection<Method> findMethod(
+			Collection<Method> methods,
+			String name,
+			List<Class<?>> argumentTypes) {
+		if (methods == null) {
+			throw new IllegalArgumentException("methods is null"); //$NON-NLS-1$
+		}
+		if (name == null) {
+			throw new IllegalArgumentException("name is null"); //$NON-NLS-1$
+		}
+		if (argumentTypes == null) {
+			throw new IllegalArgumentException("argumentTypes is null"); //$NON-NLS-1$
+		}
+		
+		Class<?>[] argTypeArray = argumentTypes.toArray(
+			new Class<?>[argumentTypes.size()]);
+		
+		LinkedList<Executable<Method>> results =
+				findPotentiallyApplicables(methods, name, argTypeArray);
+		
+		filterApplicables(results, argTypeArray);
+		filterMaximallySpecifics(results);
+		return unpack(results);
+	}
+	
+	private static <T extends Member>List<T> unpack(List<Executable<T>> packed) {
+		assert packed != null;
+		List<T> results = new ArrayList<T>();
+		for (Executable<T> exec : packed) {
+			results.add(exec.target);
+		}
+		return results;
+	}
+	
+	/**
+	 * メソッドの一覧から、潜在的に適用可能な起動候補の一覧を返す。
+	 * <p>
+	 * 潜在的に適用可能とは、名前、および実引数の数と仮引数の数が一致することを指す。
+	 * </p>
+	 * @param candidates 起動候補の一覧
+	 * @param name 起動するメソッドの名前
+	 * @param argumentTypes 実引数型の一覧
+	 * @return 潜在的に適用可能な起動候補の一覧
+	 */
+	private static LinkedList<Executable<Method>> findPotentiallyApplicables(
+			Collection<Method> candidates,
+			String name,
+			Class<?>[] argumentTypes) {
+		assert candidates != null;
+		assert name != null;
+		assert argumentTypes != null;
+		LinkedList<Executable<Method>> results =
+				new LinkedList<Executable<Method>>();
+		for (Method m : candidates) {
+			// 名前が一致すること
+			if (m.getName().equals(name) == false) {
+				continue;
+			}
+			// 実引数と仮引数の個数が一致すること
+			Class<?>[] paramTypes = m.getParameterTypes();
+			if (paramTypes.length != argumentTypes.length) {
+				continue;
+			}
+			results.add(new Executable<Method>(m, paramTypes));
+		}
+		return results;
+	}
+	
+	/**
+	 * コンストラクタの一覧から、潜在的に適用可能な起動候補の一覧を返す。
+	 * <p>
+	 * 潜在的に適用可能とは、実引数の数と仮引数の数が一致することを指す。
+	 * </p>
+	 * @param <T> コンストラクタが対象とするインスタンスの種類
+	 * @param candidates 起動候補の一覧
+	 * @param argumentTypes 実引数型の一覧
+	 * @return 潜在的に適用可能な起動候補の一覧
+	 */
+	private static <T>LinkedList<Executable<Constructor<T>>> findPotentiallyApplicables(
+			Collection<Constructor<T>> candidates,
+			Class<?>[] argumentTypes) {
+		assert candidates != null;
+		assert argumentTypes != null;
+		LinkedList<Executable<Constructor<T>>> results =
+				new LinkedList<Executable<Constructor<T>>>();
+		for (Constructor<T> c : candidates) {
+			// 実引数と仮引数の個数が一致すること
+			Class<?>[] parameterTypes = c.getParameterTypes();
+			if (argumentTypes.length != parameterTypes.length) {
+				continue;
+			}
+			// 引数を適用できるコンストラクタがひとつとは限らないので全部列挙
+			results.add(new Executable<Constructor<T>>(c, parameterTypes));
+		}
+		return results;
+	}
+	
+	/**
+	 * 起動対象の候補の中から、指定の実引数を適用できないものを除外する。
+	 * @param <T> 起動候補の種類
+	 * @param candidates 対象の起動候補
+	 * @param argumentTypes 実引数型の一覧
+	 */
+	private static <T extends Member>void filterApplicables(
+			Collection<Executable<T>> candidates,
+			Class<?>[] argumentTypes) {
+		assert candidates != null;
+		assert argumentTypes != null;
+		for (Iterator<Executable<T>> iter = candidates.iterator(); iter
+			.hasNext();) {
+			Executable<T> exec = iter.next();
+			// 実引数を仮引数に適用できること
+			if (isApplicable(argumentTypes, exec.parameterTypes) == false) {
+				iter.remove();
+			}
+		}
+	}
+	
+	/**
+	 * 実引数の型を仮引数の型に適用できる場合のみ{@code true}を返す。
+	 * <p>
+	 * これは、実引数と仮引数の個数が一致し、それぞれの実引数の型が
+	 * 対応する仮引数の型のサブタイプであることを検査する。
+	 * </p>
+	 * @param argumentTypes 実引数の型一覧
+	 * @param parameterTypes 仮引数の型一覧
+	 * @return 実引数の型を仮引数の型に適用できる場合に{@code true}
+	 */
+	private static boolean isApplicable(
+			Class<?>[] argumentTypes,
+			Class<?>[] parameterTypes) {
+		assert argumentTypes != null;
+		assert parameterTypes != null;
+		// 引数の個数が一致していないと失敗
+		if (argumentTypes.length != parameterTypes.length) {
+			return false;
+		}
+		// ひとつでも適用できない実引数があれば失敗
+		for (int i = 0; i < argumentTypes.length; i++) {
+			if (isApplicable(argumentTypes[i], parameterTypes[i]) == false) {
+				return false;
+			}
+		}
+		return true;
+	}
+	
+	/**
+	 * 指定の型を持つ実引数を、指定の型を持つ仮引数に適用できる場合のみ{@code true}を返す。
+	 * <p>
+	 * 実引数、仮引数のいずれか一方<em>のみ</em>がプリミティブ型を表現する場合、
+	 * その型を対応するラッパー形に変換した後、
+	 * </p>
+	 * @param argumentType 実引数の型
+	 * @param parameterType 仮引数の型
+	 * @return 実引数を駆り引数に適用できる場合のみ{@code true}
+	 */
+	private static boolean isApplicable(Class<?> argumentType, Class<?> parameterType) {
+		// 引数型がnullやvoidであることはありえない
+		assert parameterType != null;
+		assert parameterType != void.class;
+		
+		// SomeType v = null; は常にOK
+		if (isNullType(argumentType)) {
+			return true;
+		}
+		// Class.isAssignbleFrom(Class) で簡易検査
+		if (parameterType.isAssignableFrom(argumentType)) {
+			return true;
+		}
+		
+		boolean primitiveArgument = argumentType.isPrimitive();
+		boolean primitiveParameter = parameterType.isPrimitive();
+		if (primitiveArgument && primitiveParameter == false) {
+			Class<?> boxed = BOXING.get(argumentType);
+			assert boxed != null;
+			return isApplicable(boxed, parameterType);
+		}
+		if (primitiveParameter && primitiveArgument == false) {
+			Class<?> boxed = BOXING.get(parameterType);
+			assert boxed != null;
+			return isApplicable(argumentType, boxed);
+		}
+		
+		return false;
+	}
+	
+	/**
+	 * 指定の値が{@code null}型を表現する場合にのみ{@code true}を返す。
+	 * @param aClass 対象の値
+	 * @return 指定の値が{@code null}型を表現する場合にのみ{@code true}
+	 */
+	private static boolean isNullType(Class<?> aClass) {
+		return aClass == null;
+	}
+	
+	/**
+	 * 起動候補から最大限に限定的でないものを除外する。
+	 * @param <T> 起動候補の種類
+	 * @param candidates 対象の起動候補
+	 */
+	private static <T extends Member>void filterMaximallySpecifics(
+			List<Executable<T>> candidates) {
+		assert candidates != null;
+		
+		// 引数リストのテーブルを作る
+		Class<?>[][] table = new Class<?>[candidates.size()][];
+		for (int i = 0; i < table.length; i++) {
+			table[i] = candidates.get(i).parameterTypes;
+		}
+		
+		for (int i = 0; i < table.length; i++) {
+			if (table[i] == null) {
+				continue; // less applicableですでに候補から外れてる
+			}
+			// ms[i]のほうがms[j]よりもmore applicableなら、ms[j]を候補から消す
+			// 本来は「厳密に限定的」である必要があるが、ここでは省略
+			// FIXME for f(.., int, ..), f(.., Integer, ..)
+			for (int j = 0; j < table.length; j++) {
+				if (i == j) {
+					continue; // 自分自身はスルー
+				}
+				if (table[j] == null) {
+					continue; // less applicableですでに候補から外れてる
+				}
+				if (isMoreSpecific(table[i], table[j])) {
+					table[j] = null; // less applicable は除去
+				}
+			}
+		}
+		
+		// 限定的でないものを除外
+		int index = 0;
+		for (Iterator<Executable<T>> iter = candidates.iterator(); iter.hasNext();) {
+			iter.next();
+			if (table[index] == null) {
+				iter.remove();
+			}
+			index++;
+		}
+	}
+	
+	/**
+	 * 第1引数に含まれるクラスの一覧が、第2引数に含まれるクラスの一覧よりも限定的である場合に
+	 * {@code true}を返す。
+	 * <p>
+	 * クラスの列{@code a}がクラスの列{@code b}よりも限定的であるとは、
+	 * 次の条件をすべて満たす場合に限られる。
+	 * </p>
+	 * <ul>
+	 * <li> すべての{@code i}において、{@code a[i] <: b[i]}である </li>
+	 * <li> {@code a[i] < b[i]}であるような{@code i}が1つ以上存在する </li>
+	 * </ul>
+	 * <p>
+	 * このとき、{@code a}, {@code b}の要素数は同一でなければならない。
+	 * また、いずれかの配列に含まれる{@code null}は、{@code null}型を表現するものとする。
+	 * </p>
+	 * @param a 限定的であることが検査される型の一覧
+	 * @param b 限定的であることを検査する型の一覧
+	 * @return {@code a}が{@code b}よりも限定的である場合に{@code true}
+	 */
+	private static boolean isMoreSpecific(Class<?>[] a, Class<?>[] b) {
+		assert a != null;
+		assert b != null;
+		assert a.length == b.length;
+		boolean result = false;
+		for (int i = 0; i < a.length; i++) {
+			if (a[i] == b[i]) {
+				// 同じ型なら次の引数で判定
+			} else if (isMoreSpecific(a[i], b[i])) {
+				// a[i]とb[i]が違う型で、a[i]をb[i]に適用できると、aのほうが限定的になる可能性がある
+				result = true;
+			} else {
+				// それ以外では、aとbは関係ない型なので、aはbよりも限定的とはいえない
+				return false;
+			}
+		}
+		return result;
+	}
+	
+	/**
+	 * {@code a}が{@code b}よりも限定的である場合にのみ{@code true}を返す。
+	 * <p>
+	 * このメソッドはプリミティブ型の取り扱いが{@link #isApplicable(Class, Class)}と多少異なる。
+	 * ボクシング変換が利用されるのは{@code a}のみで、{@code b}には適用されない。
+	 * </p>
+	 * <ul>
+	 * <li> {@code a <: b} </li>
+	 * <li> {@code boxing(a) <: b} </li>
+	 * </ul>
+	 * @param a 比較される型
+	 * @param b 比較する型
+	 * @return {@code a}が{@code b}よりも限定的である場合に{@code true}
+	 */
+	private static boolean isMoreSpecific(Class<?> a, Class<?> b) {
+		assert a != null;
+		assert b != null;
+		// Class.isAssignbleFrom(Class) で簡易検査
+		if (b.isAssignableFrom(a)) {
+			return true;
+		}
+		if (a.isPrimitive()) {
+			Class<?> aBoxed = BOXING.get(a);
+			assert aBoxed != null;
+			return b.isAssignableFrom(aBoxed);
+		}
+		return false;
+	}
+	
+
+	/**
+	 * 任意の起動候補を表す。
+	 * <p>
+	 * {@link Method}と{@link Constructor}を同時に取り扱うための型。
+	 * </p>
+	 * @version $Date$
+	 * @author Suguru ARAKAWA
+	 * @param <T> 内包するメンバ
+	 */
+	private static final class Executable<T extends Member> {
+		
+		/**
+		 * 実行対象のオブジェクト。
+		 */
+		final T target;
+		
+		/**
+		 * 引数の型一覧。
+		 */
+		final Class<?>[] parameterTypes;
+		
+
+		/**
+		 * インスタンスを生成する。
+		 * @param target 実行対象
+		 * @param parameterTypes 引数リスト
+		 */
+		Executable(T target, Class<?>[] parameterTypes) {
+			assert target != null;
+			assert parameterTypes != null;
+			this.target = target;
+			this.parameterTypes = parameterTypes;
+		}
+		
+		@Override
+		public String toString() {
+			return target.toString();
+		}
+	}
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/main/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtil.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateClass.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateClass.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateClass.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2009/10/04
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+/**
+ * パッケージプライベートクラス。
+ * @version $Id$
+ * @author Suguru ARAKAWA
+ */
+class PackagePrivateClass {
+	// no members
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateClass.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateConstructor.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateConstructor.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateConstructor.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2009/10/04
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+/**
+ * パッケージプライベートコンストラクタをもつクラス。
+ * @version $Id$
+ * @author Suguru ARAKAWA
+ */
+public class PackagePrivateConstructor {
+	
+	/**
+	 * インスタンスを生成する。
+	 */
+	PackagePrivateConstructor() {
+		return;
+	}
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/PackagePrivateConstructor.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactoryTest.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactoryTest.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactoryTest.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,163 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2009/10/04
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.assertThat;
+
+import java.text.DateFormat;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Test;
+
+/**
+ * Test for {@link ReflectionFactory}.
+ * @version $Id$
+ * @author Suguru ARAKAWA
+ */
+public class ReflectionFactoryTest {
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test
+	public void testReflectionFactory() {
+		ReflectionFactory<String> factory = new ReflectionFactory<String>(String.class);
+		assertThat(factory.getTargetClass(), is((Object) String.class));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_Interface() {
+		factory(Runnable.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_Enum() {
+		factory(TimeUnit.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_AbstractClass() {
+		factory(DateFormat.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_MemberClass() {
+		factory(java.awt.geom.Point2D.Float.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_LocalClass() {
+		class Local {
+			// no members
+		}
+		factory(Local.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_AnonymousClass() {
+		Object o = new Object() {
+			// no members
+		};
+		factory(o.getClass());
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#ReflectionFactory(java.lang.Class)}.
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testReflectionFactory_PackagePrivate() {
+		factory(PackagePrivateClass.class);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#newInstance(java.lang.Object[])}.
+	 * @throws Exception if occur
+	 */
+	@Test
+	public void testNewInstance() throws Exception {
+		ReflectionFactory<String> factory = factory(String.class);
+		assertThat(factory.newInstance(), is(""));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#newInstance(java.lang.Object[])}.
+	 * @throws Exception if occur
+	 */
+	@Test
+	public void testNewInstance_Arguments() throws Exception {
+		ReflectionFactory<String> factory = factory(String.class);
+		assertThat(factory.newInstance("Hello, world!"), is("Hello, world!"));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#newInstance(java.lang.Object[])}.
+	 * @throws Exception if occur
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testNewInstance_NotFound() throws Exception {
+		ReflectionFactory<Integer> factory = factory(Integer.class);
+		factory.newInstance(100L);
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#newInstance(java.lang.Object[])}.
+	 * @throws Exception if occur
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testNewInstance_Ambiguous() throws Exception {
+		ReflectionFactory<String> factory = factory(String.class);
+		factory.newInstance(new Object[] {
+			null
+		});
+	}
+	
+	/**
+	 * Test method for {@link ReflectionFactory#newInstance(java.lang.Object[])}.
+	 * @throws Exception if occur
+	 */
+	@Test(expected = IllegalArgumentException.class)
+	public void testNewInstance_NotPublic() throws Exception {
+		ReflectionFactory<PackagePrivateConstructor> factory =
+				factory(PackagePrivateConstructor.class);
+		factory.newInstance();
+	}
+	
+	private <T>ReflectionFactory<T> factory(Class<T> aClass) {
+		return new ReflectionFactory<T>(aClass);
+	}
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionFactoryTest.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native

Added: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtilTest.java
===================================================================
--- leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtilTest.java	                        (rev 0)
+++ leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtilTest.java	2009-10-04 06:54:41 UTC (rev 3697)
@@ -0,0 +1,260 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2009/10/04
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed 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.jiemamy.utils.enhancer.reflection;
+
+import static org.hamcrest.Matchers.greaterThan;
+import static org.hamcrest.Matchers.is;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.findConstructor;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.findMethod;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.isNormalClass;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.isPackageMember;
+import static org.jiemamy.utils.enhancer.reflection.ReflectionUtil.toParameterTypes;
+import static org.junit.Assert.assertThat;
+
+import java.io.PrintWriter;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Method;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Test;
+
+/**
+ * Test for {@link ReflectionUtil}.
+ * @version $Id$
+ * @author Suguru ARAKAWA
+ */
+public class ReflectionUtilTest {
+	
+	/**
+	 * Test method for {@link ReflectionUtil#isNormalClass(java.lang.Class)}.
+	 */
+	@Test
+	public void testIsNormalClass() {
+		assertThat(isNormalClass(Object.class), is(true));
+		assertThat(isNormalClass(List.class), is(false));
+		assertThat(isNormalClass(TimeUnit.class), is(false));
+		assertThat(isNormalClass(Override.class), is(false));
+		assertThat(isNormalClass(Object[].class), is(false));
+		assertThat(isNormalClass(int.class), is(false));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#isPackageMember(java.lang.Class)}.
+	 */
+	@Test
+	public void testIsPackageMember() {
+		class Local {
+			// no members
+		}
+		Object anonymousObject = new Object() {
+			// no members
+		};
+		
+		Class<?> local = Local.class;
+		Class<?> anonymous = anonymousObject.getClass();
+		
+		assertThat(isPackageMember(Object.class), is(true));
+		assertThat(isPackageMember(List.class), is(true));
+		assertThat(isPackageMember(TimeUnit.class), is(true));
+		assertThat(isPackageMember(Override.class), is(true));
+		
+		assertThat(isPackageMember(Map.Entry.class), is(false));
+		assertThat(isPackageMember(local), is(false));
+		assertThat(isPackageMember(anonymous), is(false));
+		assertThat(isPackageMember(int.class), is(false));
+		assertThat(isPackageMember(String[].class), is(false));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#toParameterTypes(java.lang.Object[])}.
+	 */
+	@Test
+	public void testToParameterTypes_Empty() {
+		assertThat(toParameterTypes(),
+				is(classes()));
+		assertThat(toParameterTypes(1),
+				is(classes(Integer.class)));
+		assertThat(toParameterTypes("Hello"),
+				is(classes(String.class)));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#toParameterTypes(java.lang.Object[])}.
+	 */
+	@Test
+	public void testToParameterTypes_Type() {
+		assertThat(toParameterTypes(1),
+				is(classes(Integer.class)));
+		assertThat(toParameterTypes("Hello"),
+				is(classes(String.class)));
+		assertThat(toParameterTypes(new Object[] {
+			new String[0]
+		}), is(classes(String[].class)));
+		assertThat(toParameterTypes(new Object[] {
+			null
+		}), is(classes(new Class<?>[] {
+			null
+		})));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#toParameterTypes(java.lang.Object[])}.
+	 */
+	@Test
+	public void testToParameterTypes_Many() {
+		assertThat(toParameterTypes("Hello", 1, new ArrayList<Object>(), null),
+				is(classes(String.class, Integer.class, ArrayList.class, null)));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_nameIdentified() {
+		Collection<Method> methods = findMethod(
+				methods(Object.class), "hashCode", classes());
+		assertJust(methods, method(Object.class, "hashCode"));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_overloadWithSinglePotentially() {
+		Collection<Method> methods = findMethod(
+				methods(Object.class), "wait", classes());
+		assertJust(methods, method(Object.class, "wait"));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_overloadWithMultiPotentially() {
+		Collection<Method> methods = findMethod(
+				methods(String.class), "valueOf", classes(char[].class));
+		assertJust(methods, method(String.class, "valueOf", char[].class));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_overloadWithPrimitive() {
+		Collection<Method> methods = findMethod(
+				methods(String.class), "valueOf", classes(int.class));
+		assertJust(methods, method(String.class, "valueOf", int.class));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_overloadWithWrapper() {
+		Collection<Method> methods = findMethod(
+				methods(String.class), "valueOf", classes(Integer.class));
+		
+		// Java言語仕様との差異
+		// 通常はサブタイピング変換が優先されるが、現在の仕様ではプリミティブが常に勝つ
+		assertJust(methods, method(String.class, "valueOf", int.class));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findMethod(java.util.Collection, java.lang.String, java.util.List)}.
+	 */
+	@Test
+	public void testFindMethod_overloadWithAmbiguous() {
+		Collection<Method> methods = findMethod(
+				methods(PrintWriter.class), "print",
+				classes(new Class<?>[] {
+			null
+		}));
+		
+		// PrintWriter.valueOf(null) -> char[] / String / ...
+		// 現在の仕様ではほぼすべてのメソッドが合致するはず
+		assertThat(methods.size(), greaterThan(1));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findConstructor(java.util.Collection, java.util.List)}.
+	 */
+	@Test
+	public void testFindConstructor_WithSinglePotentially() {
+		Collection<Constructor<String>> ctors = findConstructor(
+				ctors(String.class), classes());
+		
+		assertJust(ctors, ctor(String.class));
+	}
+	
+	/**
+	 * Test method for {@link ReflectionUtil#findConstructor(java.util.Collection, java.util.List)}.
+	 */
+	@Test
+	public void testFindConstructor_MultiPotentially() {
+		Collection<Constructor<Integer>> ctors = findConstructor(
+				ctors(Integer.class), classes(String.class));
+		
+		assertJust(ctors, ctor(Integer.class, String.class));
+	}
+	
+	private static List<Method> methods(Class<?> aClass) {
+		return Arrays.asList(aClass.getMethods());
+	}
+	
+	private static <T>List<Constructor<T>> ctors(Class<T> aClass) {
+		List<Constructor<T>> results = new ArrayList<Constructor<T>>();
+		for (Constructor<?> c : aClass.getConstructors()) {
+			@SuppressWarnings("unchecked")
+			Constructor<T> assume = (Constructor<T>) c;
+			results.add(assume);
+		}
+		return results;
+	}
+	
+	private List<Class<?>> classes(Class<?>... classes) {
+		return Arrays.asList(classes);
+	}
+	
+	private void assertJust(Collection<?> candidates, Object just) {
+		assertThat(candidates.toString(), candidates.size(), is(1));
+		assertThat(new ArrayList<Object>(candidates),
+				is((Object) Arrays.asList(just)));
+	}
+	
+	private <T>Constructor<T> ctor(Class<T> declaring, Class<?>... parameters) {
+		try {
+			return declaring.getDeclaredConstructor(parameters);
+		} catch (Exception e) {
+			throw new AssertionError(e);
+		}
+	}
+	
+	private Method method(Class<?> declaring, String name, Class<?>... parameters) {
+		try {
+			return declaring.getDeclaredMethod(name, parameters);
+		} catch (Exception e) {
+			throw new AssertionError(e);
+		}
+	}
+}


Property changes on: leto/factory-enhancer/branches/interface-enhancer-20091004/src/test/java/org/jiemamy/utils/enhancer/reflection/ReflectionUtilTest.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Date Author Id Revision HeadURL
Added: svn:eol-style
   + native




Jiemamy-notify メーリングリストの案内
Back to archive index