1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
96
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
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
163 return expression.replace("$$", "$");
164 }
165
166 MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
167
168 if ("localRepository".equals(expression)) {
169 value = session.getLocalRepository();
170 } else if ("session".equals(expression)) {
171 value = session;
172 } else if (expression.startsWith("session")) {
173 try {
174 int pathSeparator = expression.indexOf('/');
175
176 if (pathSeparator > 0) {
177 String pathExpression = expression.substring(1, pathSeparator);
178 value = ReflectionValueExtractor.evaluate(pathExpression, session);
179 value = value + expression.substring(pathSeparator);
180 } else {
181 value = ReflectionValueExtractor.evaluate(expression.substring(1), session);
182 }
183 } catch (Exception e) {
184
185 throw new ExpressionEvaluationException(
186 "Error evaluating plugin parameter expression: " + expression, e);
187 }
188 } else if ("reactorProjects".equals(expression)) {
189 value = session.getProjects();
190 } else if ("project".equals(expression)) {
191 value = project;
192 } else if ("executedProject".equals(expression)) {
193 value = project.getExecutionProject();
194 } else if (expression.startsWith("project") || expression.startsWith("pom")) {
195 try {
196 int pathSeparator = expression.indexOf('/');
197
198 if (pathSeparator > 0) {
199 String pathExpression = expression.substring(0, pathSeparator);
200 value = ReflectionValueExtractor.evaluate(pathExpression, project);
201 value = value + expression.substring(pathSeparator);
202 } else {
203 value = ReflectionValueExtractor.evaluate(expression.substring(1), project);
204 }
205 } catch (Exception e) {
206
207 throw new ExpressionEvaluationException(
208 "Error evaluating plugin parameter expression: " + expression, e);
209 }
210 } else if (expression.equals("repositorySystemSession")) {
211 value = session.getRepositorySession();
212 } else if (expression.equals("mojo") || expression.equals("mojoExecution")) {
213 value = mojoExecution;
214 } else if (expression.startsWith("mojo")) {
215 try {
216 int pathSeparator = expression.indexOf('/');
217
218 if (pathSeparator > 0) {
219 String pathExpression = expression.substring(1, pathSeparator);
220 value = ReflectionValueExtractor.evaluate(pathExpression, mojoExecution);
221 value = value + expression.substring(pathSeparator);
222 } else {
223 value = ReflectionValueExtractor.evaluate(expression.substring(1), mojoExecution);
224 }
225 } catch (Exception e) {
226
227 throw new ExpressionEvaluationException(
228 "Error evaluating plugin parameter expression: " + expression, e);
229 }
230 } else if (expression.equals("plugin")) {
231 value = mojoDescriptor.getPluginDescriptor();
232 } else if (expression.startsWith("plugin")) {
233 try {
234 int pathSeparator = expression.indexOf('/');
235
236 PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
237
238 if (pathSeparator > 0) {
239 String pathExpression = expression.substring(1, pathSeparator);
240 value = ReflectionValueExtractor.evaluate(pathExpression, pluginDescriptor);
241 value = value + expression.substring(pathSeparator);
242 } else {
243 value = ReflectionValueExtractor.evaluate(expression.substring(1), pluginDescriptor);
244 }
245 } catch (Exception e) {
246 throw new ExpressionEvaluationException(
247 "Error evaluating plugin parameter expression: " + expression, e);
248 }
249 } else if ("settings".equals(expression)) {
250 value = session.getSettings();
251 } else if (expression.startsWith("settings")) {
252 try {
253 int pathSeparator = expression.indexOf('/');
254
255 if (pathSeparator > 0) {
256 String pathExpression = expression.substring(1, pathSeparator);
257 value = ReflectionValueExtractor.evaluate(pathExpression, session.getSettings());
258 value = value + expression.substring(pathSeparator);
259 } else {
260 value = ReflectionValueExtractor.evaluate(expression.substring(1), session.getSettings());
261 }
262 } catch (Exception e) {
263
264 throw new ExpressionEvaluationException(
265 "Error evaluating plugin parameter expression: " + expression, e);
266 }
267 } else if ("basedir".equals(expression)) {
268 value = basedir;
269 } else if (expression.startsWith("basedir")) {
270 int pathSeparator = expression.indexOf('/');
271
272 if (pathSeparator > 0) {
273 value = basedir + expression.substring(pathSeparator);
274 }
275 }
276
277
278
279
280
281
282
283
284
285 if (value != null && type != null && !(value instanceof String) && !isTypeCompatible(type, value)) {
286 value = null;
287 }
288
289 if (value == null) {
290
291
292 if (properties != null) {
293
294
295
296
297
298 value = properties.getProperty(expression);
299 }
300
301 if ((value == null) && ((project != null) && (project.getProperties() != null))) {
302 value = project.getProperties().getProperty(expression);
303 }
304 }
305
306 if (value instanceof String) {
307
308
309 String val = (String) value;
310
311 int exprStartDelimiter = val.indexOf("${");
312
313 if (exprStartDelimiter >= 0) {
314 if (exprStartDelimiter > 0) {
315 value = val.substring(0, exprStartDelimiter) + evaluate(val.substring(exprStartDelimiter));
316 } else {
317 value = evaluate(val.substring(exprStartDelimiter));
318 }
319 }
320 }
321
322 return value;
323 }
324
325 private static boolean isTypeCompatible(Class<?> type, Object value) {
326 if (type.isInstance(value)) {
327 return true;
328 }
329
330 return ((type.isPrimitive() || type.getName().startsWith("java.lang."))
331 && value.getClass().getName().startsWith("java.lang."));
332 }
333
334 private String stripTokens(String expr) {
335 if (expr.startsWith("${") && (expr.indexOf('}') == expr.length() - 1)) {
336 expr = expr.substring(2, expr.length() - 1);
337 }
338 return expr;
339 }
340
341 @Override
342 public File alignToBaseDirectory(File file) {
343
344
345 if (file != null) {
346 if (file.isAbsolute()) {
347
348 } else if (file.getPath().startsWith(File.separator)) {
349
350 file = file.getAbsoluteFile();
351 } else {
352
353 file = new File(new File(basedir, file.getPath()).toURI().normalize()).getAbsoluteFile();
354 }
355 }
356 return file;
357 }
358 }