1 | |
package org.apache.maven.plugin.ant; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
import java.io.ByteArrayInputStream; |
23 | |
import java.io.File; |
24 | |
import java.io.IOException; |
25 | |
import java.text.DateFormat; |
26 | |
import java.util.ArrayList; |
27 | |
import java.util.Date; |
28 | |
import java.util.HashMap; |
29 | |
import java.util.Iterator; |
30 | |
import java.util.List; |
31 | |
import java.util.Locale; |
32 | |
import java.util.Map; |
33 | |
|
34 | |
import javax.xml.parsers.DocumentBuilderFactory; |
35 | |
|
36 | |
import org.apache.maven.artifact.Artifact; |
37 | |
import org.apache.maven.model.Plugin; |
38 | |
import org.apache.maven.model.ReportPlugin; |
39 | |
import org.apache.maven.project.MavenProject; |
40 | |
import org.apache.xpath.XPathAPI; |
41 | |
import org.codehaus.plexus.util.PathTool; |
42 | |
import org.codehaus.plexus.util.StringUtils; |
43 | |
import org.codehaus.plexus.util.xml.XMLWriter; |
44 | |
import org.codehaus.plexus.util.xml.XmlWriterUtil; |
45 | |
import org.w3c.dom.Document; |
46 | |
import org.w3c.dom.Node; |
47 | |
import org.w3c.dom.NodeList; |
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | 0 | public class AntBuildWriterUtil |
56 | |
{ |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
public static List removeEmptyCompileSourceRoots( List compileSourceRoots ) |
62 | |
{ |
63 | 54 | List newCompileSourceRootsList = new ArrayList(); |
64 | 54 | if ( compileSourceRoots != null ) |
65 | |
{ |
66 | |
|
67 | 54 | for ( Iterator i = compileSourceRoots.iterator(); i.hasNext(); ) |
68 | |
{ |
69 | 54 | String srcDir = (String) i.next(); |
70 | 54 | if ( new File( srcDir ).exists() ) |
71 | |
{ |
72 | 0 | newCompileSourceRootsList.add( srcDir ); |
73 | |
} |
74 | |
} |
75 | |
} |
76 | |
|
77 | 54 | return newCompileSourceRootsList; |
78 | |
} |
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
public static void writeIncludesExcludes( XMLWriter writer, List includes, List excludes ) |
88 | |
{ |
89 | 45 | if ( includes != null ) |
90 | |
{ |
91 | 45 | for ( Iterator i = includes.iterator(); i.hasNext(); ) |
92 | |
{ |
93 | 0 | String include = (String) i.next(); |
94 | 0 | writer.startElement( "include" ); |
95 | 0 | writer.addAttribute( "name", include ); |
96 | 0 | writer.endElement(); |
97 | |
} |
98 | |
} |
99 | 45 | if ( excludes != null ) |
100 | |
{ |
101 | 45 | for ( Iterator i = excludes.iterator(); i.hasNext(); ) |
102 | |
{ |
103 | 0 | String exclude = (String) i.next(); |
104 | 0 | writer.startElement( "exclude" ); |
105 | 0 | writer.addAttribute( "name", exclude ); |
106 | 0 | writer.endElement(); |
107 | |
} |
108 | |
} |
109 | 45 | } |
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
|
115 | |
|
116 | |
public static void writeHeader( XMLWriter writer ) |
117 | |
{ |
118 | 27 | writeAntVersionHeader( writer ); |
119 | |
|
120 | 27 | XmlWriterUtil.writeCommentLineBreak( writer ); |
121 | 27 | XmlWriterUtil.writeComment( writer, StringUtils.repeat( "=", 21 ) + " - DO NOT EDIT THIS FILE! - " |
122 | |
+ StringUtils.repeat( "=", 21 ) ); |
123 | 27 | XmlWriterUtil.writeCommentLineBreak( writer ); |
124 | 27 | XmlWriterUtil.writeComment( writer, " " ); |
125 | 27 | XmlWriterUtil.writeComment( writer, "Any modifications will be overwritten." ); |
126 | 27 | XmlWriterUtil.writeComment( writer, " " ); |
127 | 27 | DateFormat dateFormat = DateFormat.getDateTimeInstance( DateFormat.SHORT, DateFormat.SHORT, Locale.US ); |
128 | 27 | XmlWriterUtil.writeComment( writer, "Generated by Maven Ant Plugin on " |
129 | |
+ dateFormat.format( new Date( System.currentTimeMillis() ) ) ); |
130 | 27 | XmlWriterUtil.writeComment( writer, "See: http://maven.apache.org/plugins/maven-ant-plugin/" ); |
131 | 27 | XmlWriterUtil.writeComment( writer, " " ); |
132 | 27 | XmlWriterUtil.writeCommentLineBreak( writer ); |
133 | |
|
134 | 27 | XmlWriterUtil.writeLineBreak( writer ); |
135 | 27 | } |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
public static void writeAntVersionHeader( XMLWriter writer ) |
143 | |
{ |
144 | 27 | XmlWriterUtil.writeCommentText( writer, "Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.", 0 ); |
145 | 27 | } |
146 | |
|
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
|
155 | |
public static void writeAntTask( XMLWriter writer, MavenProject project, String moduleSubPath, String tasks ) |
156 | |
{ |
157 | 0 | writer.startElement( "ant" ); |
158 | 0 | writer.addAttribute( "antfile", "build.xml" ); |
159 | 0 | writer.addAttribute( "dir", toRelative( project.getBasedir(), moduleSubPath ) ); |
160 | 0 | writer.addAttribute( "target", tasks ); |
161 | 0 | writer.endElement(); |
162 | 0 | } |
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | |
|
172 | |
public static void writeJavadocTask( XMLWriter writer, MavenProject project, ArtifactResolverWrapper wrapper ) |
173 | |
throws IOException |
174 | |
{ |
175 | 27 | List sources = new ArrayList(); |
176 | 27 | for ( Iterator it = project.getCompileSourceRoots().iterator(); it.hasNext(); ) |
177 | |
{ |
178 | 27 | String source = (String) it.next(); |
179 | |
|
180 | 27 | if ( new File( source ).exists() ) |
181 | |
{ |
182 | 0 | sources.add( source ); |
183 | |
} |
184 | |
} |
185 | |
|
186 | |
|
187 | 27 | if ( sources.size() == 0 ) |
188 | |
{ |
189 | 27 | return; |
190 | |
} |
191 | |
|
192 | 0 | writer.startElement( "javadoc" ); |
193 | 0 | String sourcepath = getMavenJavadocPluginBasicOption( project, "sourcepath", null ); |
194 | 0 | if ( sourcepath == null ) |
195 | |
{ |
196 | 0 | StringBuffer sb = new StringBuffer(); |
197 | 0 | String[] compileSourceRoots = (String[]) sources.toArray( new String[0] ); |
198 | 0 | for ( int i = 0; i < compileSourceRoots.length; i++ ) |
199 | |
{ |
200 | 0 | sb.append( "${maven.build.srcDir." ).append( i ).append( "}" ); |
201 | |
|
202 | 0 | if ( i < ( compileSourceRoots.length - 1 ) ) |
203 | |
{ |
204 | 0 | sb.append( File.pathSeparatorChar ); |
205 | |
} |
206 | |
} |
207 | 0 | writer.addAttribute( "sourcepath", sb.toString() ); |
208 | 0 | addWrapAttribute( writer, "javadoc", "packagenames", "*", 3 ); |
209 | |
} |
210 | |
else |
211 | |
{ |
212 | 0 | writer.addAttribute( "sourcepath", sourcepath ); |
213 | |
} |
214 | 0 | addWrapAttribute( writer, "javadoc", "destdir", |
215 | |
getMavenJavadocPluginBasicOption( project, "destdir", |
216 | |
"${maven.reporting.outputDirectory}/apidocs" ), 3 ); |
217 | 0 | addWrapAttribute( writer, "javadoc", "extdirs", getMavenJavadocPluginBasicOption( project, "extdirs", null ), 3 ); |
218 | |
|
219 | 0 | addWrapAttribute( writer, "javadoc", "overview", getMavenJavadocPluginBasicOption( project, "overview", null ), |
220 | |
3 ); |
221 | 0 | addWrapAttribute( writer, "javadoc", "access", |
222 | |
getMavenJavadocPluginBasicOption( project, "show", "protected" ), 3 ); |
223 | 0 | addWrapAttribute( writer, "javadoc", "old", getMavenJavadocPluginBasicOption( project, "old", "false" ), 3 ); |
224 | 0 | addWrapAttribute( writer, "javadoc", "verbose", |
225 | |
getMavenJavadocPluginBasicOption( project, "verbose", "false" ), 3 ); |
226 | 0 | addWrapAttribute( writer, "javadoc", "locale", getMavenJavadocPluginBasicOption( project, "locale", null ), 3 ); |
227 | 0 | addWrapAttribute( writer, "javadoc", "encoding", getMavenJavadocPluginBasicOption( project, "encoding", null ), |
228 | |
3 ); |
229 | 0 | addWrapAttribute( writer, "javadoc", "version", getMavenJavadocPluginBasicOption( project, "version", "true" ), |
230 | |
3 ); |
231 | 0 | addWrapAttribute( writer, "javadoc", "use", getMavenJavadocPluginBasicOption( project, "use", "true" ), 3 ); |
232 | 0 | addWrapAttribute( writer, "javadoc", "author", getMavenJavadocPluginBasicOption( project, "author", "true" ), 3 ); |
233 | 0 | addWrapAttribute( writer, "javadoc", "splitindex", getMavenJavadocPluginBasicOption( project, "splitindex", |
234 | |
"false" ), 3 ); |
235 | 0 | addWrapAttribute( writer, "javadoc", "windowtitle", getMavenJavadocPluginBasicOption( project, "windowtitle", |
236 | |
null ), 3 ); |
237 | 0 | addWrapAttribute( writer, "javadoc", "nodeprecated", getMavenJavadocPluginBasicOption( project, "nodeprecated", |
238 | |
"false" ), 3 ); |
239 | 0 | addWrapAttribute( writer, "javadoc", "nodeprecatedlist", getMavenJavadocPluginBasicOption( project, |
240 | |
"nodeprecatedlist", |
241 | |
"false" ), 3 ); |
242 | 0 | addWrapAttribute( writer, "javadoc", "notree", getMavenJavadocPluginBasicOption( project, "notree", "false" ), |
243 | |
3 ); |
244 | 0 | addWrapAttribute( writer, "javadoc", "noindex", |
245 | |
getMavenJavadocPluginBasicOption( project, "noindex", "false" ), 3 ); |
246 | 0 | addWrapAttribute( writer, "javadoc", "nohelp", getMavenJavadocPluginBasicOption( project, "nohelp", "false" ), |
247 | |
3 ); |
248 | 0 | addWrapAttribute( writer, "javadoc", "nonavbar", |
249 | |
getMavenJavadocPluginBasicOption( project, "nonavbar", "false" ), 3 ); |
250 | 0 | addWrapAttribute( writer, "javadoc", "serialwarn", getMavenJavadocPluginBasicOption( project, "serialwarn", |
251 | |
"false" ), 3 ); |
252 | 0 | addWrapAttribute( writer, "javadoc", "helpfile", getMavenJavadocPluginBasicOption( project, "helpfile", null ), |
253 | |
3 ); |
254 | 0 | addWrapAttribute( writer, "javadoc", "stylesheetfile", |
255 | |
getMavenJavadocPluginBasicOption( project, "stylesheetfile", null ), 3 ); |
256 | 0 | addWrapAttribute( writer, "javadoc", "charset", getMavenJavadocPluginBasicOption( project, "charset", |
257 | |
"ISO-8859-1" ), 3 ); |
258 | 0 | addWrapAttribute( writer, "javadoc", "docencoding", getMavenJavadocPluginBasicOption( project, "docencoding", |
259 | |
null ), 3 ); |
260 | 0 | addWrapAttribute( writer, "javadoc", "excludepackagenames", |
261 | |
getMavenJavadocPluginBasicOption( project, "excludepackagenames", null ), 3 ); |
262 | 0 | addWrapAttribute( writer, "javadoc", "source", getMavenJavadocPluginBasicOption( project, "source", null ), 3 ); |
263 | 0 | addWrapAttribute( writer, "javadoc", "linksource", getMavenJavadocPluginBasicOption( project, "linksource", |
264 | |
"false" ), 3 ); |
265 | 0 | addWrapAttribute( writer, "javadoc", "breakiterator", getMavenJavadocPluginBasicOption( project, |
266 | |
"breakiterator", |
267 | |
"false" ), 3 ); |
268 | 0 | addWrapAttribute( writer, "javadoc", "noqualifier", getMavenJavadocPluginBasicOption( project, "noqualifier", |
269 | |
null ), 3 ); |
270 | |
|
271 | 0 | addWrapAttribute( writer, "javadoc", "maxmemory", |
272 | |
getMavenJavadocPluginBasicOption( project, "maxmemory", null ), 3 ); |
273 | 0 | addWrapAttribute( writer, "javadoc", "additionalparam", getMavenJavadocPluginBasicOption( project, |
274 | |
"additionalparam", |
275 | |
null ), 3 ); |
276 | |
|
277 | |
|
278 | 0 | String doctitle = getMavenJavadocPluginBasicOption( project, "doctitle", null ); |
279 | 0 | if ( doctitle != null ) |
280 | |
{ |
281 | 0 | writer.startElement( "doctitle" ); |
282 | 0 | writer.writeText( "<![CDATA[" + doctitle + "]]>" ); |
283 | 0 | writer.endElement(); |
284 | |
} |
285 | 0 | String header = getMavenJavadocPluginBasicOption( project, "header", null ); |
286 | 0 | if ( header != null ) |
287 | |
{ |
288 | 0 | writer.startElement( "header" ); |
289 | 0 | writer.writeText( "<![CDATA[" + header + "]]>" ); |
290 | 0 | writer.endElement(); |
291 | |
} |
292 | 0 | String footer = getMavenJavadocPluginBasicOption( project, "footer", null ); |
293 | 0 | if ( footer != null ) |
294 | |
{ |
295 | 0 | writer.startElement( "footer" ); |
296 | 0 | writer.writeText( "<![CDATA[" + footer + "]]>" ); |
297 | 0 | writer.endElement(); |
298 | |
} |
299 | 0 | String bottom = getMavenJavadocPluginBasicOption( project, "bottom", null ); |
300 | 0 | if ( bottom != null ) |
301 | |
{ |
302 | 0 | writer.startElement( "bottom" ); |
303 | 0 | writer.writeText( "<![CDATA[" + bottom + "]]>" ); |
304 | 0 | writer.endElement(); |
305 | |
} |
306 | |
|
307 | 0 | Map[] links = getMavenJavadocPluginOptions( project, "links", null ); |
308 | 0 | if ( links != null ) |
309 | |
{ |
310 | 0 | for ( int i = 0; i < links.length; i++ ) |
311 | |
{ |
312 | 0 | writer.startElement( "link" ); |
313 | 0 | writer.addAttribute( "href", (String) links[i].get( "link" ) ); |
314 | 0 | writer.endElement(); |
315 | |
} |
316 | |
} |
317 | |
|
318 | 0 | Map[] offlineLinks = getMavenJavadocPluginOptions( project, "offlineLinks", null ); |
319 | 0 | if ( offlineLinks != null ) |
320 | |
{ |
321 | 0 | for ( int i = 0; i < offlineLinks.length; i++ ) |
322 | |
{ |
323 | 0 | writer.startElement( "link" ); |
324 | 0 | writer.addAttribute( "href", (String) offlineLinks[i].get( "url" ) ); |
325 | 0 | addWrapAttribute( writer, "javadoc", "offline", "true", 4 ); |
326 | 0 | writer.endElement(); |
327 | |
} |
328 | |
} |
329 | |
|
330 | 0 | Map[] groups = getMavenJavadocPluginOptions( project, "groups", null ); |
331 | 0 | if ( groups != null ) |
332 | |
{ |
333 | 0 | for ( int i = 0; i < groups.length; i++ ) |
334 | |
{ |
335 | 0 | Map group = (Map) groups[i].get( "group" ); |
336 | 0 | writer.startElement( "group" ); |
337 | 0 | writer.addAttribute( "title", (String) group.get( "title" ) ); |
338 | 0 | addWrapAttribute( writer, "javadoc", "package", (String) group.get( "package" ), 4 ); |
339 | 0 | writer.endElement(); |
340 | |
} |
341 | |
} |
342 | |
|
343 | |
|
344 | 0 | String doclet = getMavenJavadocPluginBasicOption( project, "doclet", null ); |
345 | 0 | if ( doclet != null ) |
346 | |
{ |
347 | 0 | String docletpath = getMavenJavadocPluginBasicOption( project, "docletpath", null ); |
348 | 0 | if ( StringUtils.isNotEmpty( docletpath ) ) |
349 | |
{ |
350 | 0 | writer.startElement( "doclet" ); |
351 | 0 | writer.addAttribute( "name", doclet ); |
352 | 0 | addWrapAttribute( writer, "javadoc", "path", docletpath, 4 ); |
353 | 0 | writer.endElement(); |
354 | |
} |
355 | |
else |
356 | |
{ |
357 | 0 | Map docletArtifact = getMavenJavadocPluginOption( project, "docletArtifact", null ); |
358 | 0 | String path = wrapper.getArtifactAbsolutePath( (String) docletArtifact.get( "groupId" ), |
359 | |
(String) docletArtifact.get( "artifactId" ), |
360 | |
(String) docletArtifact.get( "version" ) ); |
361 | 0 | path = StringUtils.replace( path, wrapper.getLocalRepository().getBasedir(), "${maven.repo.local}" ); |
362 | |
|
363 | 0 | writer.startElement( "doclet" ); |
364 | 0 | writer.addAttribute( "name", doclet ); |
365 | 0 | addWrapAttribute( writer, "javadoc", "path", path, 4 ); |
366 | 0 | writer.endElement(); |
367 | |
} |
368 | |
} |
369 | |
|
370 | |
|
371 | 0 | String taglet = getMavenJavadocPluginBasicOption( project, "taglet", null ); |
372 | 0 | if ( taglet != null ) |
373 | |
{ |
374 | 0 | String tagletpath = getMavenJavadocPluginBasicOption( project, "tagletpath", null ); |
375 | 0 | if ( StringUtils.isNotEmpty( tagletpath ) ) |
376 | |
{ |
377 | 0 | writer.startElement( "taglet" ); |
378 | 0 | writer.addAttribute( "name", taglet ); |
379 | 0 | addWrapAttribute( writer, "javadoc", "path", tagletpath, 4 ); |
380 | 0 | writer.endElement(); |
381 | |
} |
382 | |
else |
383 | |
{ |
384 | 0 | Map tagletArtifact = getMavenJavadocPluginOption( project, "tagletArtifact", null ); |
385 | 0 | String path = wrapper.getArtifactAbsolutePath( (String) tagletArtifact.get( "groupId" ), |
386 | |
(String) tagletArtifact.get( "artifactId" ), |
387 | |
(String) tagletArtifact.get( "version" ) ); |
388 | 0 | path = StringUtils.replace( path, wrapper.getLocalRepository().getBasedir(), "${maven.repo.local}" ); |
389 | |
|
390 | 0 | writer.startElement( "taglet" ); |
391 | 0 | writer.addAttribute( "name", taglet ); |
392 | 0 | addWrapAttribute( writer, "javadoc", "path", path, 4 ); |
393 | 0 | writer.endElement(); |
394 | |
} |
395 | |
} |
396 | |
|
397 | 0 | Map[] tags = getMavenJavadocPluginOptions( project, "tags", null ); |
398 | 0 | if ( tags != null ) |
399 | |
{ |
400 | 0 | for ( int i = 0; i < tags.length; i++ ) |
401 | |
{ |
402 | 0 | Map props = (Map) tags[i].get( "tag" ); |
403 | 0 | writer.startElement( "tag" ); |
404 | 0 | writer.addAttribute( "name", (String) props.get( "name" ) ); |
405 | 0 | addWrapAttribute( writer, "javadoc", "scope", (String) props.get( "placement" ), 4 ); |
406 | 0 | addWrapAttribute( writer, "javadoc", "description", (String) props.get( "head" ), 4 ); |
407 | 0 | writer.endElement(); |
408 | |
} |
409 | |
} |
410 | |
|
411 | 0 | writer.endElement(); |
412 | 0 | } |
413 | |
|
414 | |
|
415 | |
|
416 | |
|
417 | |
|
418 | |
|
419 | |
|
420 | |
|
421 | |
public static void writeJarTask( XMLWriter writer, MavenProject project ) |
422 | |
throws IOException |
423 | |
{ |
424 | 27 | writer.startElement( "jar" ); |
425 | 27 | writer.addAttribute( "jarfile", "${maven.build.dir}/${maven.build.finalName}.jar" ); |
426 | 27 | addWrapAttribute( writer, "jar", "compress", |
427 | |
getMavenJarPluginBasicOption( project, "archive//compress", "true" ), 3 ); |
428 | 27 | addWrapAttribute( writer, "jar", "index", getMavenJarPluginBasicOption( project, "archive//index", "false" ), 3 ); |
429 | 27 | if ( getMavenJarPluginBasicOption( project, "archive//manifestFile", null ) != null ) |
430 | |
{ |
431 | 0 | addWrapAttribute( writer, "jar", "manifest", getMavenJarPluginBasicOption( project, |
432 | |
"archive//manifestFile", null ), |
433 | |
3 ); |
434 | |
} |
435 | 27 | addWrapAttribute( writer, "jar", "basedir", "${maven.build.outputDir}", 3 ); |
436 | 27 | addWrapAttribute( writer, "jar", "excludes", "**/package.html", 3 ); |
437 | 27 | if ( getMavenPluginOption( project, "maven-jar-plugin", "archive//manifest", null ) != null ) |
438 | |
{ |
439 | 0 | writer.startElement( "manifest" ); |
440 | 0 | writer.startElement( "attribute" ); |
441 | 0 | writer.addAttribute( "name", "Main-Class" ); |
442 | 0 | addWrapAttribute( writer, "attribute", "value", |
443 | |
getMavenJarPluginBasicOption( project, "archive//manifest//mainClass", null ), 5 ); |
444 | 0 | writer.endElement(); |
445 | 0 | writer.endElement(); |
446 | |
} |
447 | 27 | writer.endElement(); |
448 | 27 | } |
449 | |
|
450 | |
|
451 | |
|
452 | |
|
453 | |
|
454 | |
|
455 | |
|
456 | |
|
457 | |
|
458 | |
public static void writeEarTask( XMLWriter writer, MavenProject project, |
459 | |
ArtifactResolverWrapper artifactResolverWrapper ) |
460 | |
throws IOException |
461 | |
{ |
462 | 0 | writeCopyLib( writer, project, artifactResolverWrapper, "${maven.build.dir}/${maven.build.finalName}" ); |
463 | |
|
464 | 0 | writer.startElement( "ear" ); |
465 | 0 | writer.addAttribute( "destfile", "${maven.build.dir}/${maven.build.finalName}.ear" ); |
466 | 0 | addWrapAttribute( writer, "ear", "basedir", "${maven.build.dir}/${maven.build.finalName}", 3 ); |
467 | 0 | addWrapAttribute( writer, "ear", "compress", |
468 | |
getMavenEarPluginBasicOption( project, "archive//compress", "true" ), 3 ); |
469 | 0 | addWrapAttribute( writer, "ear", "includes ", getMavenEarPluginBasicOption( project, "includes", null ), 3 ); |
470 | 0 | addWrapAttribute( writer, "ear", "excludes", getMavenEarPluginBasicOption( project, "excludes", null ), 3 ); |
471 | 0 | if ( getMavenEarPluginBasicOption( project, "applicationXml", null ) != null ) |
472 | |
{ |
473 | 0 | addWrapAttribute( writer, "ear", "appxml", getMavenEarPluginBasicOption( project, "applicationXml", null ), |
474 | |
3 ); |
475 | |
} |
476 | |
else |
477 | |
{ |
478 | |
|
479 | 0 | addWrapAttribute( writer, "ear", "appxml", "${maven.build.dir}/application.xml", 3 ); |
480 | |
} |
481 | 0 | if ( getMavenEarPluginBasicOption( project, "manifestFile", null ) != null ) |
482 | |
{ |
483 | 0 | addWrapAttribute( writer, "ear", "manifest", getMavenEarPluginBasicOption( project, "manifestFile", null ), |
484 | |
3 ); |
485 | |
} |
486 | 0 | writer.endElement(); |
487 | 0 | } |
488 | |
|
489 | |
|
490 | |
|
491 | |
|
492 | |
|
493 | |
|
494 | |
|
495 | |
|
496 | |
|
497 | |
public static void writeWarTask( XMLWriter writer, MavenProject project, |
498 | |
ArtifactResolverWrapper artifactResolverWrapper ) |
499 | |
throws IOException |
500 | |
{ |
501 | 0 | String webXml = |
502 | |
getMavenWarPluginBasicOption( project, "webXml", "${basedir}/src/main/webapp/WEB-INF/web.xml" ); |
503 | 0 | if ( webXml.startsWith( "${basedir}/" ) ) |
504 | |
{ |
505 | 0 | webXml = webXml.substring( "${basedir}/".length() ); |
506 | |
} |
507 | |
|
508 | 0 | writeCopyLib( writer, project, artifactResolverWrapper, "${maven.build.dir}/${maven.build.finalName}/WEB-INF/lib" ); |
509 | |
|
510 | 0 | writer.startElement( "war" ); |
511 | 0 | writer.addAttribute( "destfile", "${maven.build.dir}/${maven.build.finalName}.war" ); |
512 | 0 | addWrapAttribute( writer, "war", "compress", |
513 | |
getMavenWarPluginBasicOption( project, "archive//compress", "true" ), 3 ); |
514 | 0 | addWrapAttribute( writer, "war", "webxml", webXml, 3 ); |
515 | 0 | if ( getMavenWarPluginBasicOption( project, "manifestFile", null ) != null ) |
516 | |
{ |
517 | 0 | addWrapAttribute( writer, "war", "manifest", getMavenWarPluginBasicOption( project, "manifestFile", null ), |
518 | |
3 ); |
519 | |
} |
520 | 0 | writer.startElement( "lib" ); |
521 | 0 | writer.addAttribute( "dir", "${maven.build.dir}/${maven.build.finalName}/WEB-INF/lib" ); |
522 | 0 | writer.endElement(); |
523 | 0 | writer.startElement( "classes" ); |
524 | 0 | writer.addAttribute( "dir", "${maven.build.outputDir}" ); |
525 | 0 | writer.endElement(); |
526 | 0 | writer.startElement( "fileset" ); |
527 | 0 | writer.addAttribute( "dir", "src/main/webapp" ); |
528 | 0 | addWrapAttribute( writer, "fileset", "excludes", "WEB-INF/web.xml", 4 ); |
529 | 0 | writer.endElement(); |
530 | 0 | writer.endElement(); |
531 | 0 | } |
532 | |
|
533 | |
|
534 | |
|
535 | |
|
536 | |
|
537 | |
|
538 | |
|
539 | |
|
540 | |
|
541 | |
|
542 | |
public static void addWrapAttribute( XMLWriter writer, String tag, String name, String value, int indent ) |
543 | |
{ |
544 | 513 | if ( StringUtils.isEmpty( value ) ) |
545 | |
{ |
546 | 0 | return; |
547 | |
} |
548 | |
|
549 | 513 | if ( indent < 0 ) |
550 | |
{ |
551 | 0 | writer.addAttribute( name, value ); |
552 | |
} |
553 | |
else |
554 | |
{ |
555 | 513 | writer.addAttribute( "\n" |
556 | |
+ StringUtils.repeat( " ", ( StringUtils.isEmpty( tag ) ? 0 : tag.length() ) + indent |
557 | |
* XmlWriterUtil.DEFAULT_INDENTATION_SIZE ) + name, value ); |
558 | |
} |
559 | 513 | } |
560 | |
|
561 | |
|
562 | |
|
563 | |
|
564 | |
|
565 | |
public static boolean isPomPackaging( MavenProject mavenProject ) |
566 | |
{ |
567 | 297 | return mavenProject.getPackaging().toLowerCase().equals( "pom" ); |
568 | |
} |
569 | |
|
570 | |
|
571 | |
|
572 | |
|
573 | |
|
574 | |
public static boolean isJarPackaging( MavenProject mavenProject ) |
575 | |
{ |
576 | 27 | return mavenProject.getPackaging().toLowerCase().equals( "jar" ) |
577 | |
|| mavenProject.getPackaging().toLowerCase().equals( "ejb" ) |
578 | |
|| mavenProject.getPackaging().toLowerCase().equals( "maven-plugin" ); |
579 | |
} |
580 | |
|
581 | |
|
582 | |
|
583 | |
|
584 | |
|
585 | |
public static boolean isEarPackaging( MavenProject mavenProject ) |
586 | |
{ |
587 | 0 | return mavenProject.getPackaging().toLowerCase().equals( "ear" ); |
588 | |
} |
589 | |
|
590 | |
|
591 | |
|
592 | |
|
593 | |
|
594 | |
public static boolean isWarPackaging( MavenProject mavenProject ) |
595 | |
{ |
596 | 0 | return mavenProject.getPackaging().toLowerCase().equals( "war" ); |
597 | |
} |
598 | |
|
599 | |
|
600 | |
|
601 | |
|
602 | |
|
603 | |
|
604 | |
|
605 | |
|
606 | |
|
607 | |
|
608 | |
public static String getMavenCompilerPluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
609 | |
throws IOException |
610 | |
{ |
611 | 9 | return getMavenPluginBasicOption( project, "maven-compiler-plugin", optionName, defaultValue ); |
612 | |
} |
613 | |
|
614 | |
|
615 | |
|
616 | |
|
617 | |
|
618 | |
|
619 | |
|
620 | |
|
621 | |
|
622 | |
|
623 | |
public static Map getMavenCompilerPluginOption( MavenProject project, String optionName, String defaultValue ) |
624 | |
throws IOException |
625 | |
{ |
626 | 0 | return getMavenPluginOption( project, "maven-compiler-plugin", optionName, defaultValue ); |
627 | |
} |
628 | |
|
629 | |
|
630 | |
|
631 | |
|
632 | |
|
633 | |
|
634 | |
|
635 | |
|
636 | |
|
637 | |
|
638 | |
public static Map[] getMavenCompilerPluginOptions( MavenProject project, String optionName, String defaultValue ) |
639 | |
throws IOException |
640 | |
{ |
641 | 36 | return getMavenPluginOptions( project, "maven-compiler-plugin", optionName, defaultValue ); |
642 | |
} |
643 | |
|
644 | |
|
645 | |
|
646 | |
|
647 | |
|
648 | |
|
649 | |
|
650 | |
|
651 | |
|
652 | |
|
653 | |
public static String getMavenSurefirePluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
654 | |
throws IOException |
655 | |
{ |
656 | 0 | return getMavenPluginBasicOption( project, "maven-surefire-plugin", optionName, defaultValue ); |
657 | |
} |
658 | |
|
659 | |
|
660 | |
|
661 | |
|
662 | |
|
663 | |
|
664 | |
|
665 | |
|
666 | |
|
667 | |
|
668 | |
public static Map getMavenSurefirePluginOption( MavenProject project, String optionName, String defaultValue ) |
669 | |
throws IOException |
670 | |
{ |
671 | 0 | return getMavenPluginOption( project, "maven-surefire-plugin", optionName, defaultValue ); |
672 | |
} |
673 | |
|
674 | |
|
675 | |
|
676 | |
|
677 | |
|
678 | |
|
679 | |
|
680 | |
|
681 | |
|
682 | |
|
683 | |
public static Map[] getMavenSurefirePluginOptions( MavenProject project, String optionName, String defaultValue ) |
684 | |
throws IOException |
685 | |
{ |
686 | 0 | return getMavenPluginOptions( project, "maven-surefire-plugin", optionName, defaultValue ); |
687 | |
} |
688 | |
|
689 | |
|
690 | |
|
691 | |
|
692 | |
|
693 | |
|
694 | |
|
695 | |
|
696 | |
|
697 | |
|
698 | |
public static String getMavenJavadocPluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
699 | |
throws IOException |
700 | |
{ |
701 | 9 | return getMavenPluginBasicOption( project, "maven-javadoc-plugin", optionName, defaultValue ); |
702 | |
} |
703 | |
|
704 | |
|
705 | |
|
706 | |
|
707 | |
|
708 | |
|
709 | |
|
710 | |
|
711 | |
|
712 | |
|
713 | |
public static Map getMavenJavadocPluginOption( MavenProject project, String optionName, String defaultValue ) |
714 | |
throws IOException |
715 | |
{ |
716 | 0 | return getMavenPluginOption( project, "maven-javadoc-plugin", optionName, defaultValue ); |
717 | |
} |
718 | |
|
719 | |
|
720 | |
|
721 | |
|
722 | |
|
723 | |
|
724 | |
|
725 | |
|
726 | |
|
727 | |
|
728 | |
public static Map[] getMavenJavadocPluginOptions( MavenProject project, String optionName, String defaultValue ) |
729 | |
throws IOException |
730 | |
{ |
731 | 45 | return getMavenPluginOptions( project, "maven-javadoc-plugin", optionName, defaultValue ); |
732 | |
} |
733 | |
|
734 | |
|
735 | |
|
736 | |
|
737 | |
|
738 | |
|
739 | |
|
740 | |
|
741 | |
|
742 | |
|
743 | |
public static String getMavenJarPluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
744 | |
throws IOException |
745 | |
{ |
746 | 81 | return getMavenPluginBasicOption( project, "maven-jar-plugin", optionName, defaultValue ); |
747 | |
} |
748 | |
|
749 | |
|
750 | |
|
751 | |
|
752 | |
|
753 | |
|
754 | |
|
755 | |
|
756 | |
|
757 | |
|
758 | |
public static String getMavenEarPluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
759 | |
throws IOException |
760 | |
{ |
761 | 0 | return getMavenPluginBasicOption( project, "maven-ear-plugin", optionName, defaultValue ); |
762 | |
} |
763 | |
|
764 | |
|
765 | |
|
766 | |
|
767 | |
|
768 | |
|
769 | |
|
770 | |
|
771 | |
|
772 | |
|
773 | |
public static String getMavenWarPluginBasicOption( MavenProject project, String optionName, String defaultValue ) |
774 | |
throws IOException |
775 | |
{ |
776 | 18 | return getMavenPluginBasicOption( project, "maven-war-plugin", optionName, defaultValue ); |
777 | |
} |
778 | |
|
779 | |
|
780 | |
|
781 | |
|
782 | |
|
783 | |
|
784 | |
|
785 | |
|
786 | |
|
787 | |
|
788 | |
|
789 | |
|
790 | |
|
791 | |
|
792 | |
|
793 | |
|
794 | |
|
795 | |
|
796 | |
|
797 | |
|
798 | |
|
799 | |
|
800 | |
|
801 | |
|
802 | |
|
803 | |
|
804 | |
|
805 | |
|
806 | |
private static String getMavenPluginBasicOption( MavenProject project, String pluginArtifactId, String optionName, |
807 | |
String defaultValue ) |
808 | |
throws IOException |
809 | |
{ |
810 | 117 | return (String) getMavenPluginConfigurationsImpl( project, pluginArtifactId, optionName, defaultValue ) |
811 | |
.get( optionName ); |
812 | |
} |
813 | |
|
814 | |
|
815 | |
|
816 | |
|
817 | |
|
818 | |
|
819 | |
|
820 | |
|
821 | |
|
822 | |
|
823 | |
|
824 | |
|
825 | |
|
826 | |
|
827 | |
|
828 | |
|
829 | |
|
830 | |
|
831 | |
|
832 | |
|
833 | |
|
834 | |
|
835 | |
|
836 | |
|
837 | |
|
838 | |
|
839 | |
|
840 | |
|
841 | |
|
842 | |
private static Map getMavenPluginOption( MavenProject project, String pluginArtifactId, String optionName, |
843 | |
String defaultValue ) |
844 | |
throws IOException |
845 | |
{ |
846 | 27 | return (Map) getMavenPluginConfigurationsImpl( project, pluginArtifactId, optionName, defaultValue ) |
847 | |
.get( optionName ); |
848 | |
} |
849 | |
|
850 | |
|
851 | |
|
852 | |
|
853 | |
|
854 | |
|
855 | |
|
856 | |
|
857 | |
|
858 | |
|
859 | |
|
860 | |
|
861 | |
|
862 | |
|
863 | |
|
864 | |
|
865 | |
|
866 | |
|
867 | |
|
868 | |
|
869 | |
|
870 | |
|
871 | |
|
872 | |
|
873 | |
|
874 | |
|
875 | |
|
876 | |
|
877 | |
|
878 | |
|
879 | |
|
880 | |
|
881 | |
|
882 | |
|
883 | |
|
884 | |
private static Map[] getMavenPluginOptions( MavenProject project, String pluginArtifactId, String optionName, |
885 | |
String defaultValue ) |
886 | |
throws IOException |
887 | |
{ |
888 | 81 | return (Map[]) getMavenPluginConfigurationsImpl( project, pluginArtifactId, optionName, defaultValue ) |
889 | |
.get( optionName ); |
890 | |
} |
891 | |
|
892 | |
|
893 | |
|
894 | |
|
895 | |
|
896 | |
|
897 | |
|
898 | |
|
899 | |
|
900 | |
|
901 | |
|
902 | |
|
903 | |
|
904 | |
|
905 | |
|
906 | |
|
907 | |
|
908 | |
|
909 | |
|
910 | |
|
911 | |
|
912 | |
|
913 | |
|
914 | |
|
915 | |
|
916 | |
|
917 | |
|
918 | |
|
919 | |
|
920 | |
|
921 | |
|
922 | |
|
923 | |
|
924 | |
|
925 | |
|
926 | |
|
927 | |
|
928 | |
|
929 | |
|
930 | |
|
931 | |
|
932 | |
|
933 | |
|
934 | |
|
935 | |
|
936 | |
|
937 | |
|
938 | |
|
939 | |
private static Map getMavenPluginConfigurationsImpl( MavenProject project, String pluginArtifactId, |
940 | |
String optionName, String defaultValue ) |
941 | |
throws IOException |
942 | |
{ |
943 | 225 | List plugins = new ArrayList(); |
944 | 225 | for ( Iterator it = project.getModel().getReporting().getPlugins().iterator(); it.hasNext(); ) |
945 | |
{ |
946 | 54 | plugins.add( it.next() ); |
947 | |
} |
948 | 225 | for ( Iterator it = project.getModel().getBuild().getPlugins().iterator(); it.hasNext(); ) |
949 | |
{ |
950 | 315 | plugins.add( it.next() ); |
951 | |
} |
952 | 225 | if ( project.getBuild().getPluginManagement() != null ) |
953 | |
{ |
954 | 0 | for ( Iterator it = project.getBuild().getPluginManagement().getPlugins().iterator(); it.hasNext(); ) |
955 | |
{ |
956 | 0 | plugins.add( it.next() ); |
957 | |
} |
958 | |
} |
959 | |
|
960 | 225 | for ( Iterator it = plugins.iterator(); it.hasNext(); ) |
961 | |
{ |
962 | 261 | Object next = it.next(); |
963 | |
|
964 | 261 | Object pluginConf = null; |
965 | |
|
966 | 261 | if ( next instanceof Plugin ) |
967 | |
{ |
968 | 207 | Plugin plugin = (Plugin) next; |
969 | |
|
970 | |
|
971 | 207 | if ( !( ( plugin.getGroupId().equals( "org.apache.maven.plugins" ) ) && ( plugin.getArtifactId() |
972 | |
.equals( pluginArtifactId ) ) ) ) |
973 | |
{ |
974 | 144 | continue; |
975 | |
} |
976 | |
|
977 | 63 | pluginConf = plugin.getConfiguration(); |
978 | |
} |
979 | |
|
980 | 117 | if ( next instanceof ReportPlugin ) |
981 | |
{ |
982 | 54 | ReportPlugin reportPlugin = (ReportPlugin) next; |
983 | |
|
984 | |
|
985 | 54 | if ( !( ( reportPlugin.getGroupId().equals( "org.apache.maven.plugins" ) ) && ( reportPlugin |
986 | |
.getArtifactId().equals( pluginArtifactId ) ) ) ) |
987 | |
{ |
988 | 0 | continue; |
989 | |
} |
990 | |
|
991 | 54 | pluginConf = reportPlugin.getConfiguration(); |
992 | |
} |
993 | |
|
994 | 117 | if ( pluginConf == null ) |
995 | |
{ |
996 | 0 | continue; |
997 | |
} |
998 | |
|
999 | |
try |
1000 | |
{ |
1001 | 117 | Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder() |
1002 | |
.parse( new ByteArrayInputStream( pluginConf.toString().getBytes( "UTF-8" ) ) ); |
1003 | |
|
1004 | 117 | NodeList nodeList = XPathAPI.eval( doc, "//configuration/" + optionName ).nodelist(); |
1005 | 117 | if ( nodeList.getLength() > 0 ) |
1006 | |
{ |
1007 | 117 | Node optionNode = nodeList.item( 0 ); |
1008 | |
|
1009 | 117 | if ( isList( optionNode ) ) |
1010 | |
{ |
1011 | |
|
1012 | |
|
1013 | |
|
1014 | |
|
1015 | |
|
1016 | |
|
1017 | |
|
1018 | |
|
1019 | 81 | Map options = new HashMap(); |
1020 | |
|
1021 | 81 | List optionNames = new ArrayList(); |
1022 | 81 | NodeList childs = optionNode.getChildNodes(); |
1023 | 432 | for ( int i = 0; i < childs.getLength(); i++ ) |
1024 | |
{ |
1025 | 351 | Node child = childs.item( i ); |
1026 | 351 | if ( child.getNodeType() == Node.ELEMENT_NODE ) |
1027 | |
{ |
1028 | 135 | Map option = new HashMap(); |
1029 | |
|
1030 | 135 | if ( isElementContent( child ) ) |
1031 | |
{ |
1032 | 45 | Map properties = new HashMap(); |
1033 | 45 | NodeList childs2 = child.getChildNodes(); |
1034 | 45 | if ( childs2.getLength() > 0 ) |
1035 | |
{ |
1036 | 360 | for ( int j = 0; j < childs2.getLength(); j++ ) |
1037 | |
{ |
1038 | 315 | Node child2 = childs2.item( j ); |
1039 | 315 | if ( child2.getNodeType() == Node.ELEMENT_NODE ) |
1040 | |
{ |
1041 | 135 | properties.put( child2.getNodeName(), getTextContent( child2 ) ); |
1042 | |
} |
1043 | |
} |
1044 | 45 | option.put( child.getNodeName(), properties ); |
1045 | |
} |
1046 | |
} |
1047 | |
else |
1048 | |
{ |
1049 | 90 | option.put( child.getNodeName(), getTextContent( child ) ); |
1050 | |
} |
1051 | |
|
1052 | 135 | optionNames.add( option ); |
1053 | |
} |
1054 | |
} |
1055 | |
|
1056 | 81 | options.put( optionName, optionNames.toArray( new Map[0] ) ); |
1057 | |
|
1058 | 81 | return options; |
1059 | |
} |
1060 | |
|
1061 | 36 | if ( isElementContent( optionNode ) ) |
1062 | |
{ |
1063 | |
|
1064 | |
|
1065 | |
|
1066 | |
|
1067 | |
|
1068 | |
|
1069 | 0 | Map option = new HashMap(); |
1070 | |
|
1071 | 0 | NodeList childs = optionNode.getChildNodes(); |
1072 | 0 | if ( childs.getLength() > 1 ) |
1073 | |
{ |
1074 | 0 | Map parameters = new HashMap(); |
1075 | |
|
1076 | 0 | for ( int i = 0; i < childs.getLength(); i++ ) |
1077 | |
{ |
1078 | 0 | Node child = childs.item( i ); |
1079 | 0 | if ( child.getNodeType() == Node.ELEMENT_NODE ) |
1080 | |
{ |
1081 | 0 | parameters.put( child.getNodeName(), getTextContent( child ) ); |
1082 | |
} |
1083 | |
} |
1084 | |
|
1085 | 0 | option.put( optionName, parameters ); |
1086 | |
} |
1087 | |
|
1088 | 0 | return option; |
1089 | |
} |
1090 | |
else |
1091 | |
{ |
1092 | |
|
1093 | |
|
1094 | |
|
1095 | 36 | Map option = new HashMap(); |
1096 | |
|
1097 | 36 | option.put( optionName, getTextContent( optionNode ) ); |
1098 | |
|
1099 | 36 | return option; |
1100 | |
} |
1101 | |
} |
1102 | |
} |
1103 | 0 | catch ( Exception e ) |
1104 | |
{ |
1105 | 0 | throw new IOException( "Exception occured: " + e.getMessage() ); |
1106 | 0 | } |
1107 | |
} |
1108 | |
|
1109 | 108 | Map properties = new HashMap(); |
1110 | 108 | properties.put( optionName, defaultValue ); |
1111 | |
|
1112 | 108 | return properties; |
1113 | |
} |
1114 | |
|
1115 | |
|
1116 | |
|
1117 | |
|
1118 | |
|
1119 | |
|
1120 | |
|
1121 | |
|
1122 | |
|
1123 | |
|
1124 | |
private static void writeCopyLib( XMLWriter writer, MavenProject project, |
1125 | |
ArtifactResolverWrapper artifactResolverWrapper, String outputDir ) |
1126 | |
{ |
1127 | 0 | writer.startElement( "mkdir" ); |
1128 | 0 | writer.addAttribute( "dir", outputDir ); |
1129 | 0 | writer.endElement(); |
1130 | |
|
1131 | 0 | if ( !project.getDependencyArtifacts().isEmpty() ) |
1132 | |
{ |
1133 | 0 | for ( Iterator i = project.getDependencyArtifacts().iterator(); i.hasNext(); ) |
1134 | |
{ |
1135 | 0 | Artifact artifact = (Artifact) i.next(); |
1136 | |
|
1137 | 0 | if ( !artifact.getScope().equals( Artifact.SCOPE_PROVIDED ) |
1138 | |
&& !artifact.getScope().equals( Artifact.SCOPE_TEST ) ) |
1139 | |
{ |
1140 | 0 | String path = artifactResolverWrapper.getLocalArtifactPath( artifact ); |
1141 | 0 | if ( !new File( path ).isAbsolute() ) |
1142 | |
{ |
1143 | 0 | path = "${maven.repo.local}/" + path; |
1144 | |
} |
1145 | |
|
1146 | 0 | writer.startElement( "copy" ); |
1147 | 0 | writer.addAttribute( "file", path ); |
1148 | 0 | addWrapAttribute( writer, "copy", "todir", outputDir, 3 ); |
1149 | 0 | writer.endElement(); |
1150 | |
} |
1151 | |
} |
1152 | |
} |
1153 | 0 | } |
1154 | |
|
1155 | |
|
1156 | |
|
1157 | |
|
1158 | |
|
1159 | |
|
1160 | |
|
1161 | |
|
1162 | |
|
1163 | |
|
1164 | |
|
1165 | |
|
1166 | |
|
1167 | |
|
1168 | |
|
1169 | |
|
1170 | |
|
1171 | |
|
1172 | |
|
1173 | |
|
1174 | |
|
1175 | |
private static boolean isList( Node node ) |
1176 | |
{ |
1177 | 117 | if ( node == null ) |
1178 | |
{ |
1179 | 0 | return false; |
1180 | |
} |
1181 | |
|
1182 | 117 | NodeList children = node.getChildNodes(); |
1183 | |
|
1184 | 117 | boolean isList = false; |
1185 | 117 | String lastNodeName = null; |
1186 | 504 | for ( int i = 0; i < children.getLength(); i++ ) |
1187 | |
{ |
1188 | 387 | Node child = children.item( i ); |
1189 | 387 | if ( child.getNodeType() == Node.ELEMENT_NODE ) |
1190 | |
{ |
1191 | 135 | isList = isList || ( child.getNodeName().equals( lastNodeName ) ); |
1192 | 135 | lastNodeName = child.getNodeName(); |
1193 | |
} |
1194 | |
} |
1195 | 117 | if ( StringUtils.isNotEmpty( lastNodeName ) ) |
1196 | |
{ |
1197 | 81 | isList = isList || lastNodeName.equals( getSingularForm( node.getNodeName() ) ); |
1198 | |
} |
1199 | |
|
1200 | 117 | return isList; |
1201 | |
} |
1202 | |
|
1203 | |
|
1204 | |
|
1205 | |
|
1206 | |
|
1207 | |
|
1208 | |
|
1209 | |
private static boolean isElementContent( Node node ) |
1210 | |
{ |
1211 | 171 | if ( node == null ) |
1212 | |
{ |
1213 | 0 | return false; |
1214 | |
} |
1215 | 171 | NodeList children = node.getChildNodes(); |
1216 | 342 | for ( int i = 0; i < children.getLength(); i++ ) |
1217 | |
{ |
1218 | 216 | Node child = children.item( i ); |
1219 | 216 | if ( child.getNodeType() == Node.ELEMENT_NODE ) |
1220 | |
{ |
1221 | 45 | return true; |
1222 | |
} |
1223 | |
} |
1224 | 126 | return false; |
1225 | |
} |
1226 | |
|
1227 | |
|
1228 | |
|
1229 | |
|
1230 | |
|
1231 | |
|
1232 | |
|
1233 | |
private static String getTextContent( Node node ) |
1234 | |
{ |
1235 | 261 | StringBuffer buffer = new StringBuffer(); |
1236 | 261 | if ( node != null ) |
1237 | |
{ |
1238 | 261 | NodeList children = node.getChildNodes(); |
1239 | 522 | for ( int i = 0; i < children.getLength(); i++ ) |
1240 | |
{ |
1241 | 261 | Node child = children.item( i ); |
1242 | 261 | if ( child.getNodeType() == Node.TEXT_NODE || child.getNodeType() == Node.CDATA_SECTION_NODE ) |
1243 | |
{ |
1244 | 261 | buffer.append( child.getNodeValue() ); |
1245 | |
} |
1246 | |
} |
1247 | |
} |
1248 | 261 | return buffer.toString(); |
1249 | |
} |
1250 | |
|
1251 | |
|
1252 | |
|
1253 | |
|
1254 | |
|
1255 | |
|
1256 | |
|
1257 | |
|
1258 | |
|
1259 | |
|
1260 | |
|
1261 | |
|
1262 | |
|
1263 | |
|
1264 | |
static String getSingularForm( String pluralForm ) |
1265 | |
{ |
1266 | 72 | String singularForm = ""; |
1267 | 72 | if ( StringUtils.isNotEmpty( pluralForm ) ) |
1268 | |
{ |
1269 | 63 | if ( pluralForm.endsWith( "ies" ) ) |
1270 | |
{ |
1271 | 9 | singularForm = pluralForm.substring( 0, pluralForm.length() - 3 ) + 'y'; |
1272 | |
} |
1273 | 54 | else if ( pluralForm.endsWith( "ches" ) ) |
1274 | |
{ |
1275 | 9 | singularForm = pluralForm.substring( 0, pluralForm.length() - 2 ); |
1276 | |
} |
1277 | 45 | else if ( pluralForm.endsWith( "s" ) && pluralForm.length() > 1 ) |
1278 | |
{ |
1279 | 36 | singularForm = pluralForm.substring( 0, pluralForm.length() - 1 ); |
1280 | |
} |
1281 | |
} |
1282 | 72 | return singularForm; |
1283 | |
} |
1284 | |
|
1285 | |
|
1286 | |
|
1287 | |
|
1288 | |
|
1289 | |
|
1290 | |
|
1291 | |
|
1292 | |
|
1293 | |
|
1294 | |
|
1295 | |
|
1296 | |
|
1297 | |
|
1298 | |
|
1299 | |
|
1300 | |
|
1301 | |
|
1302 | |
|
1303 | |
|
1304 | |
|
1305 | |
|
1306 | |
|
1307 | |
|
1308 | |
|
1309 | |
|
1310 | |
|
1311 | |
|
1312 | |
|
1313 | |
|
1314 | |
|
1315 | |
|
1316 | |
|
1317 | |
|
1318 | |
|
1319 | |
|
1320 | |
|
1321 | |
|
1322 | |
|
1323 | |
|
1324 | |
|
1325 | |
|
1326 | |
|
1327 | |
|
1328 | |
static String toRelative( File basedir, String path ) |
1329 | |
{ |
1330 | 495 | String result = null; |
1331 | 495 | if ( new File( path ).isAbsolute() ) |
1332 | |
{ |
1333 | 459 | String pathNormalized = path.replace( '/', File.separatorChar ).replace( '\\', File.separatorChar ); |
1334 | 459 | result = PathTool.getRelativeFilePath( basedir.getAbsolutePath(), pathNormalized ); |
1335 | |
} |
1336 | 495 | if ( result == null ) |
1337 | |
{ |
1338 | 36 | result = path; |
1339 | |
} |
1340 | 495 | result = result.replace( '\\', '/' ); |
1341 | 495 | if ( result.length() <= 0 || "/".equals( result ) ) |
1342 | |
{ |
1343 | 18 | result = '.' + result; |
1344 | |
} |
1345 | 495 | return result; |
1346 | |
} |
1347 | |
|
1348 | |
} |