View Javadoc
1   package org.apache.maven.plugins.enforcer;
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 org.apache.maven.enforcer.rule.api.EnforcerRuleException;
23  import org.apache.maven.enforcer.rule.api.EnforcerRuleHelper;
24  import org.apache.maven.plugin.logging.Log;
25  import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
26  import org.codehaus.plexus.util.StringUtils;
27  
28  import bsh.EvalError;
29  import bsh.Interpreter;
30  
31  /**
32   * Rule for Maven Enforcer using Beanshell to evaluate a conditional expression.
33   *
34   * @author hugonnem
35   */
36  public class EvaluateBeanshell
37      extends AbstractNonCacheableEnforcerRule
38  {
39  
40      /** Beanshell interpreter. */
41      private static final ThreadLocal<Interpreter> INTERPRETER = new ThreadLocal<Interpreter>()
42      {
43          @Override
44          protected Interpreter initialValue()
45          {
46              return new Interpreter();
47          }
48      };
49  
50      /** The condition to be evaluated.
51       *  
52       * @see {@link #setCondition(String)}
53       * @see {@link #getCondition()}
54       * */
55      private String condition;
56  
57      public final void setCondition( String condition )
58      {
59          this.condition = condition;
60      }
61      
62      public final String getCondition()
63      {
64          return condition;
65      }
66  
67      @Override
68      public void execute( EnforcerRuleHelper helper )
69          throws EnforcerRuleException
70      {
71          Log log = helper.getLog();
72  
73          try
74          {
75              log.debug( "Echo condition : " + this.condition );
76              // Evaluate condition within Plexus Container
77              String script = (String) helper.evaluate( this.condition );
78              log.debug( "Echo script : " + script );
79              if ( !evaluateCondition( script, log ) )
80              {
81                  String message = getMessage();
82                  if ( StringUtils.isEmpty( message ) )
83                  {
84                      message = "The expression \"" + condition + "\" is not true.";
85                  }
86                  throw new EnforcerRuleException( message );
87              }
88          }
89          catch ( ExpressionEvaluationException e )
90          {
91              throw new EnforcerRuleException( "Unable to evaluate an expression '" + condition + "'", e );
92          }
93      }
94  
95      /**
96       * Evaluate expression using Beanshell.
97       *
98       * @param script the expression to be evaluated
99       * @param log the logger
100      * @return boolean the evaluation of the expression
101      * @throws EnforcerRuleException if the script could not be evaluated
102      */
103     protected boolean evaluateCondition( String script, Log log )
104         throws EnforcerRuleException
105     {
106         Boolean evaluation;
107         try
108         {
109             evaluation = (Boolean) INTERPRETER.get().eval( script );
110             log.debug( "Echo evaluating : " + evaluation );
111         }
112         catch ( EvalError ex )
113         {
114             throw new EnforcerRuleException( "Couldn't evaluate condition: " + script, ex );
115         }
116         return evaluation.booleanValue();
117     }
118 }