Coverage Report - org.apache.maven.surefire.util.ReflectionUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
ReflectionUtils
0%
0/71
0%
0/8
4.429
 
 1  
 package org.apache.maven.surefire.util;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *     http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import java.lang.reflect.Constructor;
 23  
 import java.lang.reflect.InvocationTargetException;
 24  
 import java.lang.reflect.Method;
 25  
 
 26  
 /**
 27  
  * @author Kristian Rosenvold
 28  
  */
 29  0
 public class ReflectionUtils
 30  
 {
 31  0
     private static final Class[] NO_ARGS = new Class[0];
 32  
 
 33  0
     private static final Object[] NO_ARGS_VALUES = new Object[0];
 34  
 
 35  
 
 36  
     public static Method getMethod( Object instance, String methodName, Class[] parameters )
 37  
     {
 38  0
         return getMethod( instance.getClass(), methodName, parameters );
 39  
     }
 40  
 
 41  
     public static Method getMethod( Class clazz, String methodName, Class[] parameters )
 42  
     {
 43  
         try
 44  
         {
 45  0
             return clazz.getMethod( methodName, parameters );
 46  
         }
 47  0
         catch ( NoSuchMethodException e )
 48  
         {
 49  0
             throw new NestedRuntimeException( "When finding method " + methodName, e );
 50  
         }
 51  
     }
 52  
 
 53  
     public static Method tryGetMethod( Class clazz, String methodName, Class[] parameters )
 54  
     {
 55  
         try
 56  
         {
 57  0
             return clazz.getMethod( methodName, parameters );
 58  
         }
 59  0
         catch ( NoSuchMethodException e )
 60  
         {
 61  0
             return null;
 62  
         }
 63  
     }
 64  
 
 65  
 
 66  
     public static Object invokeGetter( Object instance, String methodName )
 67  
     {
 68  0
         final Method method = getMethod( instance, methodName, NO_ARGS );
 69  0
         return invokeMethodWithArray( instance, method, NO_ARGS_VALUES );
 70  
     }
 71  
 
 72  
     public static Constructor getConstructor( Class clazz, Class[] arguments )
 73  
     {
 74  
         try
 75  
         {
 76  0
             return clazz.getConstructor( arguments );
 77  
         }
 78  0
         catch ( NoSuchMethodException e )
 79  
         {
 80  0
             throw new SurefireReflectionException( e );
 81  
         }
 82  
     }
 83  
 
 84  
     public static Object newInstance( Constructor constructor, Object[] params )
 85  
     {
 86  
         try
 87  
         {
 88  0
             return constructor.newInstance( params );
 89  
         }
 90  0
         catch ( InvocationTargetException e )
 91  
         {
 92  0
             throw new SurefireReflectionException( e );
 93  
         }
 94  0
         catch ( InstantiationException e )
 95  
         {
 96  0
             throw new SurefireReflectionException( e );
 97  
         }
 98  0
         catch ( IllegalAccessException e )
 99  
         {
 100  0
             throw new SurefireReflectionException( e );
 101  
         }
 102  
     }
 103  
 
 104  
     public static Object instantiate( ClassLoader classLoader, String classname )
 105  
     {
 106  
         try
 107  
         {
 108  
 
 109  0
             Class clazz = loadClass( classLoader, classname );
 110  0
             return clazz.newInstance();
 111  
         }
 112  0
         catch ( InstantiationException e )
 113  
         {
 114  0
             throw new SurefireReflectionException( e );
 115  
         }
 116  0
         catch ( IllegalAccessException e )
 117  
         {
 118  0
             throw new SurefireReflectionException( e );
 119  
         }
 120  
     }
 121  
 
 122  
     public static Object instantiateOneArg( ClassLoader classLoader, String className, Class param1Class,
 123  
                                             Object param1 )
 124  
     {
 125  
 
 126  
         try
 127  
         {
 128  0
             Class aClass = loadClass( classLoader, className );
 129  0
             Constructor constructor = ReflectionUtils.getConstructor( aClass, new Class[]{ param1Class } );
 130  0
             return constructor.newInstance( new Object[]{ param1 } );
 131  
         }
 132  0
         catch ( InvocationTargetException e )
 133  
         {
 134  0
             throw new SurefireReflectionException( e );
 135  
         }
 136  0
         catch ( InstantiationException e )
 137  
         {
 138  0
             throw new SurefireReflectionException( e );
 139  
         }
 140  0
         catch ( IllegalAccessException e )
 141  
         {
 142  0
             throw new SurefireReflectionException( e );
 143  
         }
 144  
     }
 145  
 
 146  
     public static Object invokeSetter( Object o, String name, Class value1clazz, Object value )
 147  
 
 148  
     {
 149  0
         final Method setter = getMethod( o, name, new Class[]{ value1clazz } );
 150  0
         return invokeSetter( o, setter, value );
 151  
     }
 152  
 
 153  
     public static Object invokeSetter( Object target, Method method, Object value )
 154  
 
 155  
     {
 156  0
         return invokeMethodWithArray( target, method, new Object[]{ value } );
 157  
     }
 158  
 
 159  
     public static Object invokeMethodWithArray( Object target, Method method, Object[] args )
 160  
 
 161  
     {
 162  
         try
 163  
         {
 164  0
             return method.invoke( target, args );
 165  
         }
 166  0
         catch ( IllegalAccessException e )
 167  
         {
 168  0
             throw new SurefireReflectionException( e );
 169  
         }
 170  0
         catch ( InvocationTargetException e )
 171  
         {
 172  0
             throw new SurefireReflectionException( e );
 173  
         }
 174  
 
 175  
     }
 176  
 
 177  
     public static Object instantiateObject( String className, Object[] params, ClassLoader classLoader )
 178  
     {
 179  
         try
 180  
         {
 181  0
             Class clazz = loadClass( classLoader, className );
 182  
 
 183  
             Object object;
 184  0
             if ( params != null )
 185  
             {
 186  0
                 Class[] paramTypes = new Class[params.length];
 187  
 
 188  0
                 for ( int j = 0; j < params.length; j++ )
 189  
                 {
 190  0
                     if ( params[j] == null )
 191  
                     {
 192  0
                         paramTypes[j] = String.class;
 193  
                     }
 194  
                     else
 195  
                     {
 196  0
                         paramTypes[j] = params[j].getClass();
 197  
                     }
 198  
                 }
 199  
 
 200  0
                 Constructor constructor = getConstructor( clazz, paramTypes );
 201  
 
 202  0
                 object = newInstance( constructor, params );
 203  0
             }
 204  
             else
 205  
             {
 206  0
                 object = clazz.newInstance();
 207  
             }
 208  0
             return object;
 209  
 
 210  
         }
 211  0
         catch ( IllegalAccessException e )
 212  
         {
 213  0
             throw new SurefireReflectionException( e );
 214  
         }
 215  0
         catch ( InstantiationException e )
 216  
         {
 217  0
             throw new SurefireReflectionException( e );
 218  
         }
 219  
     }
 220  
 
 221  
     public static Class tryLoadClass( ClassLoader classLoader, String className )
 222  
     {
 223  
         try
 224  
         {
 225  0
             return classLoader.loadClass( className );
 226  
         }
 227  0
         catch ( NoClassDefFoundError ignore )
 228  
         {
 229  
         }
 230  0
         catch ( ClassNotFoundException ignore )
 231  
         {
 232  0
         }
 233  0
         return null;
 234  
     }
 235  
 
 236  
     public static Class loadClass( ClassLoader classLoader, String className )
 237  
     {
 238  
         try
 239  
         {
 240  0
             return classLoader.loadClass( className );
 241  
         }
 242  0
         catch ( NoClassDefFoundError e )
 243  
         {
 244  0
             throw new SurefireReflectionException( e );
 245  
         }
 246  0
         catch ( ClassNotFoundException e )
 247  
         {
 248  0
             throw new SurefireReflectionException( e );
 249  
         }
 250  
     }
 251  
 }