1 package org.apache.torque.mojo;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.io.OutputStream;
6 import java.util.List;
7 import java.util.Properties;
8 import java.util.Set;
9 import java.util.TreeSet;
10
11 import org.apache.commons.io.FileUtils;
12 import org.apache.commons.io.IOUtils;
13 import org.apache.maven.plugin.MojoExecutionException;
14 import org.apache.maven.plugin.MojoFailureException;
15 import org.apache.tools.ant.DirectoryScanner;
16 import org.apache.torque.engine.database.model.Database;
17 import org.apache.torque.engine.database.model.Table;
18 import org.kuali.core.db.torque.SetUtils;
19 import org.kuali.core.db.torque.Utils;
20
21
22
23
24
25
26
27
28
29
30
31
32 public class IdentifyInvalidDataFiles extends BaseMojo {
33 private static final String FS = System.getProperty("file.separator");
34
35
36
37
38
39 private String extension;
40
41
42
43
44
45 private File dataDir;
46
47
48
49
50 private String dataDirIncludes;
51
52
53
54
55 private String dataDirExcludes;
56
57
58
59
60 private String schemaXMLFile;
61
62
63
64
65 private String targetDatabase;
66
67
68
69
70
71
72 private File markedForRemoval;
73
74 @Override
75 protected void executeMojo() throws MojoExecutionException, MojoFailureException {
76 Utils utils = new Utils();
77 try {
78 getLog().info("Examining " + dataDir.getAbsolutePath());
79 Database db = utils.getDatabase(schemaXMLFile, targetDatabase);
80 DirectoryScanner ds = getDirectoryScanner();
81 Set<File> existing = getExistingFiles(ds);
82 Set<File> allowed = getDatabaseFiles(db);
83 Set<File> invalid = SetUtils.difference(existing, allowed);
84 getLog().info(existing.size() + " data files currently exist");
85 getLog().info(invalid.size() + " of those are invalid");
86 StringBuilder sb = new StringBuilder();
87 int count = 0;
88 StringBuilder invalidFiles = new StringBuilder();
89 for (File file : invalid) {
90 if (count != 0) {
91 sb.append(",");
92 }
93 sb.append("**/src/main/impex/" + file.getName());
94 invalidFiles.append(file.getCanonicalPath() + "\n");
95 getLog().info("Marked for removal: " + file.getName());
96 count++;
97 }
98 Properties properties = getProject().getProperties();
99 properties.setProperty("impex.data.invalid", sb.toString());
100 if (count > 0) {
101 properties.setProperty("impex.found.invalid", Boolean.TRUE.toString());
102 createFile(markedForRemoval, invalidFiles.toString());
103 }
104 } catch (Exception e) {
105 throw new MojoExecutionException("Error executing mojo", e);
106 }
107 }
108
109 protected void createFile(File file, String contents) throws IOException {
110 OutputStream out = null;
111 try {
112 out = FileUtils.openOutputStream(file);
113 IOUtils.write(contents, out);
114 } finally {
115 IOUtils.closeQuietly(out);
116 }
117 }
118
119 protected Set<File> getDatabaseFiles(Database db) {
120 List<?> tables = db.getTables();
121 Set<File> files = new TreeSet<File>();
122 for (Object object : tables) {
123 Table table = (Table) object;
124 String tableName = table.getName();
125 String filename = dataDir.getAbsolutePath() + FS + tableName + extension;
126 File file = new File(filename);
127 files.add(file);
128 }
129 return files;
130 }
131
132 protected Set<File> getExistingFiles(DirectoryScanner ds) {
133 ds.scan();
134 String[] relativeFilenames = ds.getIncludedFiles();
135 Set<File> files = new TreeSet<File>();
136 for (int i = 0; i < relativeFilenames.length; i++) {
137 String filename = ds.getBasedir().getAbsolutePath() + FS + relativeFilenames[i];
138 File file = new File(filename);
139 files.add(file);
140 }
141 return files;
142 }
143
144 protected DirectoryScanner getDirectoryScanner() {
145 DirectoryScanner ds = new DirectoryScanner();
146 ds.setBasedir(dataDir);
147 ds.setIncludes(new String[] { dataDirIncludes });
148 ds.setExcludes(new String[] { dataDirExcludes });
149 return ds;
150 }
151
152 protected File getFile(Table table) {
153 String tableName = table.getName();
154 String filename = dataDir.getAbsolutePath() + FS + tableName + extension;
155 File file = new File(filename);
156 return file;
157 }
158
159 public File getDataDir() {
160 return dataDir;
161 }
162
163 public void setDataDir(File dataDir) {
164 this.dataDir = dataDir;
165 }
166
167 public String getDataDirIncludes() {
168 return dataDirIncludes;
169 }
170
171 public void setDataDirIncludes(String dataDirIncludes) {
172 this.dataDirIncludes = dataDirIncludes;
173 }
174
175 public String getDataDirExcludes() {
176 return dataDirExcludes;
177 }
178
179 public void setDataDirExcludes(String dataDirExcludes) {
180 this.dataDirExcludes = dataDirExcludes;
181 }
182
183 public String getSchemaXMLFile() {
184 return schemaXMLFile;
185 }
186
187 public void setSchemaXMLFile(String schemaXMLFile) {
188 this.schemaXMLFile = schemaXMLFile;
189 }
190
191 public String getExtension() {
192 return extension;
193 }
194
195 public void setExtension(String extension) {
196 this.extension = extension;
197 }
198
199 public String getTargetDatabase() {
200 return targetDatabase;
201 }
202
203 public void setTargetDatabase(String targetDatabase) {
204 this.targetDatabase = targetDatabase;
205 }
206
207 public File getMarkedForRemoval() {
208 return markedForRemoval;
209 }
210
211 public void setMarkedForRemoval(File markedForRemoval) {
212 this.markedForRemoval = markedForRemoval;
213 }
214
215 }