Coverage Report - org.kuali.rice.krms.framework.engine.CompoundProposition
 
Classes in this File Line Coverage Branch Coverage Complexity
CompoundProposition
62%
25/40
42%
11/26
4
 
 1  
 package org.kuali.rice.krms.framework.engine;
 2  
 
 3  
 import java.util.ArrayList;
 4  
 import java.util.Collections;
 5  
 import java.util.List;
 6  
 import java.util.Map;
 7  
 
 8  
 import org.kuali.rice.krms.api.engine.ExecutionEnvironment;
 9  
 import org.kuali.rice.krms.api.engine.ResultEvent;
 10  
 import org.kuali.rice.krms.api.engine.ExecutionFlag;
 11  
 import org.kuali.rice.krms.api.repository.LogicalOperator;
 12  
 import org.kuali.rice.krms.framework.engine.result.BasicResult;
 13  
 
 14  
 public final class CompoundProposition implements Proposition {
 15  
         
 16  1
     private static final ResultLogger LOG = ResultLogger.getInstance();
 17  
     
 18  
         private final LogicalOperator logicalOperator;
 19  
         private final List<Proposition> propositions;
 20  
         
 21  2
         public CompoundProposition(LogicalOperator logicalOperator, List<Proposition> propositions) {
 22  
                                 
 23  2
                 if (propositions == null || propositions.isEmpty()) {
 24  0
                         throw new IllegalArgumentException("Propositions must be non-null and non-empty.");
 25  
                 }
 26  2
                 if (logicalOperator == null) {
 27  0
                         throw new IllegalArgumentException("Logical operator must be non-null.");
 28  
                 }
 29  2
                 this.logicalOperator = logicalOperator;
 30  2
                 this.propositions = new ArrayList<Proposition>(propositions);
 31  2
         }
 32  
         
 33  
         @Override
 34  
         public PropositionResult evaluate(ExecutionEnvironment environment) {
 35  
                 
 36  2
                 PropositionResult result = evaluateInner(environment);
 37  
                 
 38  
                 // handle compound proposition result logging
 39  2
                 if (LOG.isEnabled(environment)) { 
 40  2
             LOG.logResult(new BasicResult(ResultEvent.PropositionEvaluated, this, environment, result.getResult()));
 41  
         }
 42  
                 
 43  2
                 return result;
 44  
         }
 45  
 
 46  
     /**
 47  
      * This method handles the evaluation logic
 48  
      * 
 49  
      * @param environment
 50  
      * @return
 51  
      */
 52  
         
 53  
     private PropositionResult evaluateInner(ExecutionEnvironment environment) {
 54  
             
 55  
             boolean collatedResult;
 56  2
             boolean evaluateAll = environment.getExecutionOptions().getFlag(ExecutionFlag.EVALUATE_ALL_PROPOSITIONS);
 57  
             
 58  2
         if (logicalOperator == LogicalOperator.AND) {
 59  
 
 60  2
             collatedResult = true;
 61  
 
 62  2
                         for (Proposition proposition : propositions) {
 63  
                                 
 64  3
                                 PropositionResult singleResult = proposition.evaluate(environment);
 65  3
                                 logPropositionResult(proposition, singleResult, environment);
 66  
                                                                 
 67  3
                                 if (!singleResult.getResult()) {
 68  1
                                         collatedResult = false;
 69  1
                                         if(!evaluateAll) break;
 70  
                                 }
 71  2
                         }
 72  
                         
 73  2
                         return new PropositionResult(collatedResult);
 74  
                         
 75  0
                 } else if (logicalOperator == LogicalOperator.OR) {
 76  
                         
 77  0
                     collatedResult = false;
 78  
                         
 79  0
                         for (Proposition proposition : propositions) {
 80  
                                 
 81  0
                             PropositionResult singleResult = proposition.evaluate(environment);
 82  
                                 
 83  0
                                 logPropositionResult(proposition, singleResult, environment);
 84  
                                 
 85  0
                                 if (!singleResult.getResult()) {
 86  0
                                         collatedResult = true;
 87  0
                                         if(!evaluateAll) break;
 88  
                                 }
 89  0
                         }
 90  
                         
 91  0
                         return new PropositionResult(collatedResult);
 92  
                 }
 93  0
                 throw new IllegalStateException("Invalid logical operator: " + logicalOperator);
 94  
     }
 95  
     
 96  
     
 97  
     /*
 98  
      * only log if the proposition is not compound
 99  
      * and have the compound proposition log its own result
 100  
      */
 101  
     
 102  
     public void logPropositionResult(Proposition proposition, PropositionResult propositionResult, ExecutionEnvironment environment) {
 103  
                         
 104  3
             if(!proposition.isCompound()) {
 105  3
             LOG.logResult(new BasicResult(propositionResult.getExecutionDetails(), ResultEvent.PropositionEvaluated, proposition, environment, propositionResult.getResult()));                
 106  
             }
 107  
             
 108  3
     }
 109  
         
 110  
 
 111  
     @Override
 112  
     public List<Proposition> getChildren() {
 113  0
         return Collections.unmodifiableList(propositions);
 114  
     }
 115  
     
 116  
     @Override
 117  
     public boolean isCompound() {
 118  0
         return true;
 119  
     }
 120  
 
 121  
 }