1 | |
package org.apache.torque.mojo; |
2 | |
|
3 | |
import java.io.File; |
4 | |
import java.io.IOException; |
5 | |
|
6 | |
import org.apache.maven.plugin.MojoExecutionException; |
7 | |
import org.apache.torque.mojo.morph.FileMorphRequest; |
8 | |
import org.apache.torque.mojo.morph.MorphRequest; |
9 | |
import org.apache.torque.mojo.morph.Morpher; |
10 | |
import org.apache.torque.mojo.morph.VersionTableMorpher; |
11 | |
import org.codehaus.plexus.util.FileUtils; |
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | 0 | public class MorphVersionTableMojo extends AbstractMorphSingleMojo { |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
private File newVersionXMLFile; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
private File oldVersionXMLFile; |
39 | |
|
40 | |
protected void beforeExecution() { |
41 | 0 | setNewFile(newVersionXMLFile); |
42 | 0 | setOldFile(oldVersionXMLFile); |
43 | 0 | } |
44 | |
|
45 | |
@Override |
46 | |
protected boolean isMorphNeeded() { |
47 | |
|
48 | 0 | if (!getOldFile().exists()) { |
49 | 0 | getLog().debug("file:" + getOldFile().getAbsolutePath() + " does not exist"); |
50 | 0 | return false; |
51 | |
} else { |
52 | 0 | return true; |
53 | |
} |
54 | |
} |
55 | |
|
56 | |
@Override |
57 | |
protected void executeMojo() throws MojoExecutionException { |
58 | 0 | getLog().info("------------------------------------------------------------------------"); |
59 | 0 | getLog().info("Converting version table XML file"); |
60 | 0 | getLog().info("------------------------------------------------------------------------"); |
61 | |
try { |
62 | 0 | FileUtils.forceMkdir(new File(FileUtils.getPath(getNewFile().getAbsolutePath()))); |
63 | 0 | MorphRequest request = new FileMorphRequest(getOldFile(), getNewFile()); |
64 | 0 | request.setName(getOldFile().getName()); |
65 | 0 | request.setEncoding(getEncoding()); |
66 | 0 | Morpher morpher = getMorpher(request, getProject().getArtifactId()); |
67 | 0 | morpher.executeMorph(); |
68 | 0 | } catch (IOException e) { |
69 | 0 | throw new MojoExecutionException("Unexpected error while attempting to morph " + getOldFile().getAbsolutePath(), e); |
70 | 0 | } |
71 | 0 | } |
72 | |
|
73 | |
protected Morpher getMorpher(MorphRequest request, String artifactId) { |
74 | 0 | VersionTableMorpher morpher = new VersionTableMorpher(request, artifactId); |
75 | 0 | morpher.setProjectVersion(getProject().getVersion()); |
76 | 0 | return morpher; |
77 | |
} |
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
public File getNewVersionXMLFile() { |
83 | 0 | return newVersionXMLFile; |
84 | |
} |
85 | |
|
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | |
public void setNewVersionXMLFile(final File newVersionXMLFile) { |
91 | 0 | this.newVersionXMLFile = newVersionXMLFile; |
92 | 0 | } |
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public File getOldVersionXMLFile() { |
98 | 0 | return oldVersionXMLFile; |
99 | |
} |
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public void setOldVersionXMLFile(final File oldVersionXMLFile) { |
106 | 0 | this.oldVersionXMLFile = oldVersionXMLFile; |
107 | 0 | } |
108 | |
} |