Coverage Report - org.kuali.rice.kns.uif.service.impl.ExpressionEvaluatorServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
ExpressionEvaluatorServiceImpl
0%
0/72
0%
0/38
4.833
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 1.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 6  
  * or agreed to in writing, software distributed under the License is
 7  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 8  
  * KIND, either express or implied. See the License for the specific language
 9  
  * governing permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.rice.kns.uif.service.impl;
 12  
 
 13  
 import java.beans.PropertyDescriptor;
 14  
 import java.util.List;
 15  
 import java.util.Map;
 16  
 import java.util.Map.Entry;
 17  
 
 18  
 import org.apache.commons.lang.StringUtils;
 19  
 import org.kuali.rice.kns.uif.UifConstants;
 20  
 import org.kuali.rice.kns.uif.core.Component;
 21  
 import org.kuali.rice.kns.uif.core.PropertyReplacer;
 22  
 import org.kuali.rice.kns.uif.layout.LayoutManager;
 23  
 import org.kuali.rice.kns.uif.service.ExpressionEvaluatorService;
 24  
 import org.kuali.rice.kns.uif.util.ObjectPropertyUtils;
 25  
 import org.springframework.expression.EvaluationException;
 26  
 import org.springframework.expression.Expression;
 27  
 import org.springframework.expression.ExpressionParser;
 28  
 import org.springframework.expression.common.TemplateParserContext;
 29  
 import org.springframework.expression.spel.standard.SpelExpressionParser;
 30  
 import org.springframework.expression.spel.support.StandardEvaluationContext;
 31  
 
 32  
 /**
 33  
  * Evaluates expression language statements using the Spring EL engine TODO:
 34  
  * Look into using Rice KRMS for evaluation
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  */
 38  0
 public class ExpressionEvaluatorServiceImpl implements ExpressionEvaluatorService {
 39  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger
 40  
             .getLogger(ExpressionEvaluatorServiceImpl.class);
 41  
 
 42  
     /**
 43  
      * @see org.kuali.rice.kns.uif.service.ExpressionEvaluatorService#evaluateObjectProperties(java.lang.Object,
 44  
      *      java.lang.Object, java.util.Map)
 45  
      */
 46  
     public void evaluateObjectProperties(Object object, Object contextObject, Map<String, Object> evaluationParameters) {
 47  0
         evaluatePropertyReplacers(object, contextObject, evaluationParameters);
 48  0
         visitPropertiesAndEvaluateExpressions(object, contextObject, evaluationParameters);
 49  0
     }
 50  
 
 51  
     /**
 52  
      * @see org.kuali.rice.kns.uif.service.ExpressionEvaluatorService#evaluateExpressionTemplate(java.lang.Object,
 53  
      *      java.util.Map, java.lang.String)
 54  
      */
 55  
     public String evaluateExpressionTemplate(Object contextObject, Map<String, Object> evaluationParameters,
 56  
             String expressionTemplate) {
 57  0
         StandardEvaluationContext context = new StandardEvaluationContext(contextObject);
 58  0
         context.setVariables(evaluationParameters);
 59  
 
 60  0
         ExpressionParser parser = new SpelExpressionParser();
 61  
 
 62  0
         Expression expression = null;
 63  0
         if (StringUtils.contains(expressionTemplate, UifConstants.EL_PLACEHOLDER_PREFIX)) {
 64  0
             expression = parser.parseExpression(expressionTemplate, new TemplateParserContext(
 65  
                     UifConstants.EL_PLACEHOLDER_PREFIX, UifConstants.EL_PLACEHOLDER_SUFFIX));
 66  
         }
 67  
         else {
 68  0
             expression = parser.parseExpression(expressionTemplate);
 69  
         }
 70  
 
 71  0
         String result = null;
 72  
         try {
 73  0
             result = expression.getValue(context, String.class);
 74  
         }
 75  0
         catch (EvaluationException e) {
 76  0
             LOG.error("Exception evaluating expression: " + expressionTemplate);
 77  0
             throw new RuntimeException("Exception evaluating expression: " + expressionTemplate, e);
 78  0
         }
 79  
 
 80  0
         return result;
 81  
     }
 82  
 
 83  
     /**
 84  
      * @see org.kuali.rice.kns.uif.service.ExpressionEvaluatorService#evaluateExpression(java.lang.Object,
 85  
      *      java.util.Map, java.lang.String)
 86  
      */
 87  
     public Object evaluateExpression(Object contextObject, Map<String, Object> evaluationParameters,
 88  
             String expressionStr) {
 89  0
         StandardEvaluationContext context = new StandardEvaluationContext(contextObject);
 90  0
         context.setVariables(evaluationParameters);
 91  
 
 92  0
         ExpressionParser parser = new SpelExpressionParser();
 93  0
         Expression expression = parser.parseExpression(expressionStr);
 94  
 
 95  0
         Object result = null;
 96  
         try {
 97  0
             result = expression.getValue(context);
 98  
         }
 99  0
         catch (EvaluationException e) {
 100  0
             LOG.error("Exception evaluating expression: " + expressionStr);
 101  0
             throw new RuntimeException("Exception evaluating expression: " + expressionStr, e);
 102  0
         }
 103  
 
 104  0
         return result;
 105  
     }
 106  
 
 107  
     protected void evaluatePropertyReplacers(Object object, Object contextObject,
 108  
             Map<String, Object> evaluationParameters) {
 109  0
         List<PropertyReplacer> replacers = null;
 110  0
         if (Component.class.isAssignableFrom(object.getClass())) {
 111  0
             replacers = ((Component) object).getPropertyReplacers();
 112  
         }
 113  0
         else if (LayoutManager.class.isAssignableFrom(object.getClass())) {
 114  0
             replacers = ((LayoutManager) object).getPropertyReplacers();
 115  
         }
 116  
 
 117  0
         for (PropertyReplacer propertyReplacer : replacers) {
 118  0
             String conditionEvaluation = evaluateExpressionTemplate(contextObject, evaluationParameters,
 119  
                     propertyReplacer.getCondition());
 120  0
             boolean conditionSuccess = Boolean.parseBoolean(conditionEvaluation);
 121  0
             if (conditionSuccess) {
 122  0
                 ObjectPropertyUtils.setPropertyValue(object, propertyReplacer.getPropertyName(),
 123  
                         propertyReplacer.getReplacement());
 124  
             }
 125  0
         }
 126  0
     }
 127  
 
 128  
     protected void visitPropertiesAndEvaluateExpressions(Object object, Object contextObject,
 129  
             Map<String, Object> evaluationParameters) {
 130  
         // iterate through object properties and check for expressions
 131  0
         PropertyDescriptor[] propertyDescriptors = ObjectPropertyUtils.getPropertyDescriptors(object);
 132  0
         for (int i = 0; i < propertyDescriptors.length; i++) {
 133  0
             PropertyDescriptor descriptor = propertyDescriptors[i];
 134  
 
 135  0
             if (descriptor.getWriteMethod() == null) {
 136  0
                 continue;
 137  
             }
 138  
 
 139  0
             String propertyName = descriptor.getName();
 140  0
             if (String.class.isAssignableFrom(descriptor.getPropertyType())) {
 141  0
                 String propertyValue = ObjectPropertyUtils.getPropertyValue(object, propertyName);
 142  
 
 143  0
                 if (StringUtils.isNotBlank(propertyValue)
 144  
                         && (containsElPlaceholder(propertyValue) || StringUtils.startsWith(propertyName,
 145  
                                 UifConstants.EL_CONDITIONAL_PROPERTY_PREFIX))) {
 146  
 
 147  
                     // evaluate any expressions and reset property value
 148  0
                     propertyValue = evaluateExpressionTemplate(contextObject, evaluationParameters, propertyValue);
 149  
 
 150  0
                     String propertyNameToSet = propertyName;
 151  0
                     if (StringUtils.startsWith(propertyName, UifConstants.EL_CONDITIONAL_PROPERTY_PREFIX)) {
 152  
                         // get the target property by convention
 153  0
                         propertyNameToSet = StringUtils.removeStart(propertyName,
 154  
                                 UifConstants.EL_CONDITIONAL_PROPERTY_PREFIX);
 155  0
                         propertyNameToSet = StringUtils.substring(propertyNameToSet, 0, 1).toLowerCase()
 156  
                                 + StringUtils.substring(propertyNameToSet, 1, propertyNameToSet.length());
 157  
                     }
 158  
 
 159  0
                     ObjectPropertyUtils.setPropertyValue(object, propertyNameToSet, propertyValue);
 160  
                 }
 161  0
             }
 162  0
             else if (Map.class.isAssignableFrom(descriptor.getPropertyType())) {
 163  0
                 Map<Object, Object> propertyValue = ObjectPropertyUtils.getPropertyValue(object, propertyName);
 164  
 
 165  0
                 if (propertyValue != null) {
 166  0
                     for (Entry<Object, Object> entry : propertyValue.entrySet()) {
 167  0
                         if ((entry.getValue() != null) && String.class.isAssignableFrom(entry.getValue().getClass())
 168  
                                 && containsElPlaceholder((String) entry.getValue())) {
 169  0
                             String entryValue = evaluateExpressionTemplate(contextObject, evaluationParameters,
 170  
                                     (String) entry.getValue());
 171  0
                             propertyValue.put(entry.getKey(), entryValue);
 172  0
                         }
 173  
                     }
 174  
                 }
 175  
             }
 176  
         }
 177  0
     }
 178  
 
 179  
     protected boolean containsElPlaceholder(String value) {
 180  0
         boolean containsElPlaceholder = false;
 181  
 
 182  0
         String elPlaceholder = StringUtils.substringBetween(value, UifConstants.EL_PLACEHOLDER_PREFIX,
 183  
                 UifConstants.EL_PLACEHOLDER_SUFFIX);
 184  0
         if (elPlaceholder != null) {
 185  0
             containsElPlaceholder = true;
 186  
         }
 187  
 
 188  0
         return containsElPlaceholder;
 189  
     }
 190  
 
 191  
 }