Coverage Report - org.apache.myfaces.el.PropertyResolverImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyResolverImpl
0%
0/53
0%
0/48
3.1
PropertyResolverImpl$1
0%
0/2
N/A
3.1
PropertyResolverImpl$2
0%
0/4
N/A
3.1
PropertyResolverImpl$3
0%
0/2
N/A
3.1
PropertyResolverImpl$4
0%
0/2
N/A
3.1
PropertyResolverImpl$ResolverInvoker
0%
0/5
N/A
3.1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.myfaces.el;
 20  
 
 21  
 import java.lang.reflect.Array;
 22  
 import java.util.List;
 23  
 
 24  
 import javax.el.ELContext;
 25  
 import javax.el.ELException;
 26  
 import javax.el.ELResolver;
 27  
 import javax.faces.context.FacesContext;
 28  
 import javax.faces.el.EvaluationException;
 29  
 import javax.faces.el.PropertyNotFoundException;
 30  
 import javax.faces.el.PropertyResolver;
 31  
 
 32  
 /**
 33  
  * @author Manfred Geiler (latest modification by $Author$)
 34  
  * @author Anton Koinov
 35  
  * @version $Revision$ $Date$
 36  
  */
 37  
 @SuppressWarnings("deprecation")
 38  0
 public final class PropertyResolverImpl extends PropertyResolver
 39  
 {
 40  
     // ~ Public PropertyResolver Methods
 41  
     // ----------------------------------------
 42  
 
 43  
     @Override
 44  
     public Object getValue(final Object base, final Object property) throws EvaluationException,
 45  
         PropertyNotFoundException
 46  
     {
 47  0
         if (base == null)
 48  
         {
 49  0
             return null;
 50  
         }
 51  0
         if (property == null)
 52  
         {
 53  0
             return null;
 54  
         }
 55  0
         return invokeResolver(new ResolverInvoker<Object>(base, property)
 56  0
         {
 57  
             @Override
 58  
             public Object invoke(ELResolver resolver, ELContext context)
 59  
             {
 60  0
                 return getELResolver().getValue(getELContext(), base, property);
 61  
             }
 62  
         });
 63  
     }
 64  
 
 65  
     @Override
 66  
     public Object getValue(final Object base, final int index) throws EvaluationException, PropertyNotFoundException
 67  
     {
 68  0
         return getValue(base, Integer.valueOf(index));
 69  
     }
 70  
 
 71  
     @Override
 72  
     public void setValue(final Object base, final Object property, final Object newValue) throws EvaluationException,
 73  
         PropertyNotFoundException
 74  
     {
 75  0
         if (base == null || property == null || isReadOnly (base, property))
 76  
         {
 77  0
             throw new PropertyNotFoundException();
 78  
         }
 79  
 
 80  0
         invokeResolver(new ResolverInvoker<Object>(base, property)
 81  0
         {
 82  
             @Override
 83  
             public Object invoke(ELResolver resolver, ELContext context)
 84  
             {
 85  0
                 resolver.setValue(context, base, property, newValue);
 86  0
                 return null;
 87  
             }
 88  
 
 89  
             @Override
 90  
             String getMessage()
 91  
             {
 92  0
                 return super.getMessage() + " newValue: '" + newValue + "'";
 93  
             }
 94  
         });
 95  0
     }
 96  
 
 97  
     @Override
 98  
     public void setValue(Object base, int index, Object newValue) throws EvaluationException, PropertyNotFoundException
 99  
     {
 100  0
         if (base == null)
 101  
         {
 102  0
             throw new PropertyNotFoundException();
 103  
         }
 104  
 
 105  0
         Class baseType = base.getClass();
 106  0
         if (base instanceof Object[])
 107  
         {
 108  0
             if (index < 0 || index >= ((Object[])base).length)
 109  
             {
 110  0
                 throw new PropertyNotFoundException();
 111  
             }
 112  0
             setValue(base, Integer.valueOf(index), newValue);
 113  
         }
 114  0
         else if (base instanceof List)
 115  
         {
 116  0
             if (index < 0 || index >= ((List<?>)base).size())
 117  
             {
 118  0
                 throw new PropertyNotFoundException();
 119  
             }
 120  0
             setValue(base, Integer.valueOf(index), newValue);
 121  
         }
 122  0
         else if (baseType.isArray())
 123  
         {
 124  0
             if (index < 0 || index >= Array.getLength(base))
 125  
             {
 126  0
                 throw new PropertyNotFoundException();
 127  
             }
 128  0
             Array.set(base, index, getFacesContext().getApplication().
 129  
                 getExpressionFactory().coerceToType(newValue, baseType.getComponentType()));
 130  
         }
 131  
         else
 132  
         {
 133  0
             setValue(base, Integer.valueOf(index), newValue);
 134  
         }
 135  
 
 136  0
     }
 137  
 
 138  
     @Override
 139  
     public boolean isReadOnly(final Object base, final Object property)
 140  
     {
 141  0
         return invokeResolver(new ResolverInvoker<Boolean>(base, property)
 142  0
         {
 143  
             @Override
 144  
             public Boolean invoke(ELResolver resolver, ELContext context)
 145  
             {
 146  0
                 return Boolean.valueOf(getELResolver().isReadOnly(getELContext(), base, property));
 147  
             }
 148  
         });
 149  
     }
 150  
 
 151  
     @Override
 152  
     public boolean isReadOnly(final Object base, final int index)
 153  
     {
 154  0
         return isReadOnly(base, Integer.valueOf(index));
 155  
     }
 156  
 
 157  
     @Override
 158  
     public Class getType(final Object base, final Object property)
 159  
     {
 160  0
         if (base == null || property == null)
 161  
         {
 162  0
             throw new PropertyNotFoundException();
 163  
         }
 164  
 
 165  0
         return invokeResolver(new ResolverInvoker<Class<?>>(base, property)
 166  0
         {
 167  
             @Override
 168  
             public Class<?> invoke(final ELResolver resolver, final ELContext context)
 169  
             {
 170  0
                 return resolver.getType(context, base, property);
 171  
             }
 172  
         });
 173  
     }
 174  
 
 175  
     @Override
 176  
     public Class getType(Object base, int index)
 177  
     {
 178  0
         if (base == null)
 179  
         {
 180  0
             throw new PropertyNotFoundException();
 181  
         }
 182  
 
 183  0
         if (base instanceof Object[])
 184  
         {
 185  0
             if (index < 0 || index >= ((Object[])base).length)
 186  
             {
 187  0
                 throw new PropertyNotFoundException();
 188  
             }
 189  
         }
 190  0
         else if (base instanceof List)
 191  
         {
 192  0
             if (index < 0 || index >= ((List<?>)base).size())
 193  
             {
 194  0
                 throw new PropertyNotFoundException();
 195  
             }
 196  
         }
 197  
 
 198  0
         return getType(base, Integer.valueOf(index));
 199  
     }
 200  
 
 201  
     // ~ Internal Helper Methods
 202  
     // ------------------------------------------------
 203  
 
 204  
     ELContext getELContext()
 205  
     {
 206  0
         return getFacesContext().getELContext();
 207  
     }
 208  
 
 209  
     ELResolver getELResolver()
 210  
     {
 211  0
         return getFacesContext().getApplication().getELResolver();
 212  
     }
 213  
 
 214  
     FacesContext getFacesContext()
 215  
     {
 216  0
         return FacesContext.getCurrentInstance();
 217  
     }
 218  
 
 219  
     <T> T invokeResolver(ResolverInvoker<T> invoker) throws EvaluationException, PropertyNotFoundException
 220  
     {
 221  
         try
 222  
         {
 223  0
             return invoker.invoke(getELResolver(), getELContext());
 224  
         }
 225  0
         catch (javax.el.PropertyNotFoundException e)
 226  
         {
 227  0
             throw new PropertyNotFoundException("property not found: " + invoker.getMessage() + ": " + e.getMessage(),
 228  
                 e);
 229  
         }
 230  0
         catch (ELException e)
 231  
         {
 232  0
             throw new EvaluationException("exception: " + invoker.getMessage() + ": " + e.getMessage(), e);
 233  
         }
 234  0
         catch (RuntimeException e)
 235  
         {
 236  0
             throw new RuntimeException("runtime exception: " + invoker.getMessage() + ": " + e.getMessage(), e);
 237  
         }
 238  
     }
 239  
 
 240  0
     abstract static class ResolverInvoker<T>
 241  
     {
 242  
         private final Object _base;
 243  
         private final Object _property;
 244  
 
 245  
         ResolverInvoker(final Object base, final Object property)
 246  0
         {
 247  0
             _base = base;
 248  0
             _property = property;
 249  0
         }
 250  
 
 251  
         abstract T invoke(ELResolver resolver, ELContext context);
 252  
 
 253  
         String getMessage()
 254  
         {
 255  0
             return "base: '" + _base + "' property/index: '" + _property + "'";
 256  
         }
 257  
     }
 258  
 }