View Javadoc
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.maven.plugin;
20  
21  import java.io.File;
22  import java.util.Properties;
23  
24  import org.apache.maven.execution.MavenSession;
25  import org.apache.maven.plugin.descriptor.MojoDescriptor;
26  import org.apache.maven.plugin.descriptor.PluginDescriptor;
27  import org.apache.maven.project.MavenProject;
28  import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
29  import org.codehaus.plexus.component.configurator.expression.TypeAwareExpressionEvaluator;
30  import org.codehaus.plexus.util.introspection.ReflectionValueExtractor;
31  
32  /**
33   * Evaluator for plugin parameters expressions. Content surrounded by <code>${</code> and <code>}</code> is evaluated.
34   * Recognized values are:
35   * <table border="1">
36   * <caption>Expression matrix</caption>
37   * <tr><th>expression</th>                     <th></th>               <th>evaluation result</th></tr>
38   * <tr><td><code>session</code></td>           <td></td>               <td>the actual {@link MavenSession}</td></tr>
39   * <tr><td><code>session.*</code></td>         <td>(since Maven 3)</td><td></td></tr>
40   * <tr><td><code>localRepository</code></td>   <td></td>
41   *                                             <td>{@link MavenSession#getLocalRepository()}</td></tr>
42   * <tr><td><code>reactorProjects</code></td>   <td></td>               <td>{@link MavenSession#getProjects()}</td></tr>
43   * <tr><td><code>repositorySystemSession</code></td><td> (since Maven 3)</td>
44   *                                             <td>{@link MavenSession#getRepositorySession()}</td></tr>
45   * <tr><td><code>project</code></td>           <td></td>
46   *                                             <td>{@link MavenSession#getCurrentProject()}</td></tr>
47   * <tr><td><code>project.*</code></td>         <td></td>               <td></td></tr>
48   * <tr><td><code>pom.*</code></td>             <td>(since Maven 3)</td><td>same as <code>project.*</code></td></tr>
49   * <tr><td><code>executedProject</code></td>   <td></td>
50   *                                             <td>{@link MavenProject#getExecutionProject()}</td></tr>
51   * <tr><td><code>settings</code></td>          <td></td>               <td>{@link MavenSession#getSettings()}</td></tr>
52   * <tr><td><code>settings.*</code></td>        <td></td>               <td></td></tr>
53   * <tr><td><code>basedir</code></td>           <td></td>
54   *                                             <td>{@link MavenSession#getExecutionRootDirectory()} or
55   *                                                 <code>System.getProperty( "user.dir" )</code> if null</td></tr>
56   * <tr><td><code>mojoExecution</code></td>     <td></td>               <td>the actual {@link MojoExecution}</td></tr>
57   * <tr><td><code>mojo</code></td>              <td>(since Maven 3)</td><td>same as <code>mojoExecution</code></td></tr>
58   * <tr><td><code>mojo.*</code></td>            <td>(since Maven 3)</td><td></td></tr>
59   * <tr><td><code>plugin</code></td>            <td>(since Maven 3)</td>
60   *                             <td>{@link MojoExecution#getMojoDescriptor()}.{@link MojoDescriptor#getPluginDescriptor()
61   *                                 getPluginDescriptor()}</td></tr>
62   * <tr><td><code>plugin.*</code></td>          <td></td>               <td></td></tr>
63   * <tr><td><code>*</code></td>                 <td></td>               <td>user properties</td></tr>
64   * <tr><td><code>*</code></td>                 <td></td>               <td>project properties</td></tr>
65   * <tr><td><code>*</code></td>                 <td></td>               <td>system properties</td></tr>
66   * </table>
67   * <i>Notice:</i> <code>reports</code> was supported in Maven 2.x but was removed in Maven 3
68   *
69   * @author Jason van Zyl
70   * @see MavenSession
71   * @see MojoExecution
72   */
73  public class PluginParameterExpressionEvaluator implements TypeAwareExpressionEvaluator {
74      private MavenSession session;
75  
76      private MojoExecution mojoExecution;
77  
78      private MavenProject project;
79  
80      private String basedir;
81  
82      private Properties properties;
83  
84      public PluginParameterExpressionEvaluator(MavenSession session) {
85          this(session, null);
86      }
87  
88      public PluginParameterExpressionEvaluator(MavenSession session, MojoExecution mojoExecution) {
89          this.session = session;
90          this.mojoExecution = mojoExecution;
91          this.properties = new Properties();
92          this.project = session.getCurrentProject();
93  
94          //
95          // Maven4: We may want to evaluate how this is used but we add these separate as the
96          // getExecutionProperties is deprecated in MavenSession.
97          //
98          this.properties.putAll(session.getUserProperties());
99          this.properties.putAll(session.getSystemProperties());
100 
101         String basedir = null;
102 
103         if (project != null) {
104             File projectFile = project.getBasedir();
105 
106             // this should always be the case for non-super POM instances...
107             if (projectFile != null) {
108                 basedir = projectFile.getAbsolutePath();
109             }
110         }
111 
112         if (basedir == null) {
113             basedir = session.getExecutionRootDirectory();
114         }
115 
116         if (basedir == null) {
117             basedir = System.getProperty("user.dir");
118         }
119 
120         this.basedir = basedir;
121     }
122 
123     @Override
124     public Object evaluate(String expr) throws ExpressionEvaluationException {
125         return evaluate(expr, null);
126     }
127 
128     @Override
129     @SuppressWarnings("checkstyle:methodlength")
130     public Object evaluate(String expr, Class<?> type) throws ExpressionEvaluationException {
131         Object value = null;
132 
133         if (expr == null) {
134             return null;
135         }
136 
137         String expression = stripTokens(expr);
138         if (expression.equals(expr)) {
139             int index = expr.indexOf("${");
140             if (index >= 0) {
141                 int lastIndex = expr.indexOf('}', index);
142                 if (lastIndex >= 0) {
143                     String retVal = expr.substring(0, index);
144 
145                     if ((index > 0) && (expr.charAt(index - 1) == '$')) {
146                         retVal += expr.substring(index + 1, lastIndex + 1);
147                     } else {
148                         Object subResult = evaluate(expr.substring(index, lastIndex + 1));
149 
150                         if (subResult != null) {
151                             retVal += subResult;
152                         } else {
153                             retVal += "$" + expr.substring(index + 1, lastIndex + 1);
154                         }
155                     }
156 
157                     retVal += evaluate(expr.substring(lastIndex + 1));
158                     return retVal;
159                 }
160             }
161 
162             // Was not an expression
163             if (expression.contains("$$")) {
164                 return expression.replaceAll("\\$\\$", "\\$");
165             } else {
166                 return expression;
167             }
168         }
169 
170         MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
171 
172         if ("localRepository".equals(expression)) {
173             value = session.getLocalRepository();
174         } else if ("session".equals(expression)) {
175             value = session;
176         } else if (expression.startsWith("session")) {
177             try {
178                 int pathSeparator = expression.indexOf('/');
179 
180                 if (pathSeparator > 0) {
181                     String pathExpression = expression.substring(1, pathSeparator);
182                     value = ReflectionValueExtractor.evaluate(pathExpression, session);
183                     value = value + expression.substring(pathSeparator);
184                 } else {
185                     value = ReflectionValueExtractor.evaluate(expression.substring(1), session);
186                 }
187             } catch (Exception e) {
188                 // TODO don't catch exception
189                 throw new ExpressionEvaluationException(
190                         "Error evaluating plugin parameter expression: " + expression, e);
191             }
192         } else if ("reactorProjects".equals(expression)) {
193             value = session.getProjects();
194         } else if ("project".equals(expression)) {
195             value = project;
196         } else if ("executedProject".equals(expression)) {
197             value = project.getExecutionProject();
198         } else if (expression.startsWith("project") || expression.startsWith("pom")) {
199             try {
200                 int pathSeparator = expression.indexOf('/');
201 
202                 if (pathSeparator > 0) {
203                     String pathExpression = expression.substring(0, pathSeparator);
204                     value = ReflectionValueExtractor.evaluate(pathExpression, project);
205                     value = value + expression.substring(pathSeparator);
206                 } else {
207                     value = ReflectionValueExtractor.evaluate(expression.substring(1), project);
208                 }
209             } catch (Exception e) {
210                 // TODO don't catch exception
211                 throw new ExpressionEvaluationException(
212                         "Error evaluating plugin parameter expression: " + expression, e);
213             }
214         } else if (expression.equals("repositorySystemSession")) {
215             value = session.getRepositorySession();
216         } else if (expression.equals("mojo") || expression.equals("mojoExecution")) {
217             value = mojoExecution;
218         } else if (expression.startsWith("mojo")) {
219             try {
220                 int pathSeparator = expression.indexOf('/');
221 
222                 if (pathSeparator > 0) {
223                     String pathExpression = expression.substring(1, pathSeparator);
224                     value = ReflectionValueExtractor.evaluate(pathExpression, mojoExecution);
225                     value = value + expression.substring(pathSeparator);
226                 } else {
227                     value = ReflectionValueExtractor.evaluate(expression.substring(1), mojoExecution);
228                 }
229             } catch (Exception e) {
230                 // TODO don't catch exception
231                 throw new ExpressionEvaluationException(
232                         "Error evaluating plugin parameter expression: " + expression, e);
233             }
234         } else if (expression.equals("plugin")) {
235             value = mojoDescriptor.getPluginDescriptor();
236         } else if (expression.startsWith("plugin")) {
237             try {
238                 int pathSeparator = expression.indexOf('/');
239 
240                 PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
241 
242                 if (pathSeparator > 0) {
243                     String pathExpression = expression.substring(1, pathSeparator);
244                     value = ReflectionValueExtractor.evaluate(pathExpression, pluginDescriptor);
245                     value = value + expression.substring(pathSeparator);
246                 } else {
247                     value = ReflectionValueExtractor.evaluate(expression.substring(1), pluginDescriptor);
248                 }
249             } catch (Exception e) {
250                 throw new ExpressionEvaluationException(
251                         "Error evaluating plugin parameter expression: " + expression, e);
252             }
253         } else if ("settings".equals(expression)) {
254             value = session.getSettings();
255         } else if (expression.startsWith("settings")) {
256             try {
257                 int pathSeparator = expression.indexOf('/');
258 
259                 if (pathSeparator > 0) {
260                     String pathExpression = expression.substring(1, pathSeparator);
261                     value = ReflectionValueExtractor.evaluate(pathExpression, session.getSettings());
262                     value = value + expression.substring(pathSeparator);
263                 } else {
264                     value = ReflectionValueExtractor.evaluate(expression.substring(1), session.getSettings());
265                 }
266             } catch (Exception e) {
267                 // TODO don't catch exception
268                 throw new ExpressionEvaluationException(
269                         "Error evaluating plugin parameter expression: " + expression, e);
270             }
271         } else if ("basedir".equals(expression)) {
272             value = basedir;
273         } else if (expression.startsWith("basedir")) {
274             int pathSeparator = expression.indexOf('/');
275 
276             if (pathSeparator > 0) {
277                 value = basedir + expression.substring(pathSeparator);
278             }
279         }
280 
281         /*
282          * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
283          * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
284          * unintentionally use such a magic expression for an ordinary property. So here we check whether we
285          * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
286          * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
287          * expression from properties only.
288          */
289         if (value != null && type != null && !(value instanceof String) && !isTypeCompatible(type, value)) {
290             value = null;
291         }
292 
293         if (value == null) {
294             // The CLI should win for defining properties
295 
296             if (properties != null) {
297                 // We will attempt to get nab a property as a way to specify a parameter
298                 // to a plugin. My particular case here is allowing the surefire plugin
299                 // to run a single test so I want to specify that class on the cli as
300                 // a parameter.
301 
302                 value = properties.getProperty(expression);
303             }
304 
305             if ((value == null) && ((project != null) && (project.getProperties() != null))) {
306                 value = project.getProperties().getProperty(expression);
307             }
308         }
309 
310         if (value instanceof String) {
311             // TODO without #, this could just be an evaluate call...
312 
313             String val = (String) value;
314 
315             int exprStartDelimiter = val.indexOf("${");
316 
317             if (exprStartDelimiter >= 0) {
318                 if (exprStartDelimiter > 0) {
319                     value = val.substring(0, exprStartDelimiter) + evaluate(val.substring(exprStartDelimiter));
320                 } else {
321                     value = evaluate(val.substring(exprStartDelimiter));
322                 }
323             }
324         }
325 
326         return value;
327     }
328 
329     private static boolean isTypeCompatible(Class<?> type, Object value) {
330         if (type.isInstance(value)) {
331             return true;
332         }
333         // likely Boolean -> boolean, Short -> int etc. conversions, it's not the problem case we try to avoid
334         return ((type.isPrimitive() || type.getName().startsWith("java.lang."))
335                 && value.getClass().getName().startsWith("java.lang."));
336     }
337 
338     private String stripTokens(String expr) {
339         if (expr.startsWith("${") && (expr.indexOf('}') == expr.length() - 1)) {
340             expr = expr.substring(2, expr.length() - 1);
341         }
342         return expr;
343     }
344 
345     @Override
346     public File alignToBaseDirectory(File file) {
347         // TODO Copied from the DefaultInterpolator. We likely want to resurrect the PathTranslator or at least a
348         // similar component for re-usage
349         if (file != null) {
350             if (file.isAbsolute()) {
351                 // path was already absolute, just normalize file separator and we're done
352             } else if (file.getPath().startsWith(File.separator)) {
353                 // drive-relative Windows path, don't align with project directory but with drive root
354                 file = file.getAbsoluteFile();
355             } else {
356                 // an ordinary relative path, align with project directory
357                 file = new File(new File(basedir, file.getPath()).toURI().normalize()).getAbsoluteFile();
358             }
359         }
360         return file;
361     }
362 }