1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 package org.jomc.mojo;
32
33 import java.io.File;
34 import java.util.Locale;
35 import java.util.logging.Level;
36 import javax.xml.bind.JAXBContext;
37 import javax.xml.bind.util.JAXBSource;
38 import javax.xml.transform.Source;
39 import org.apache.commons.io.FileUtils;
40 import org.apache.maven.model.Resource;
41 import org.apache.maven.plugin.MojoExecutionException;
42 import org.apache.maven.project.MavenProject;
43 import org.jomc.model.Module;
44 import org.jomc.modlet.ModelContext;
45 import org.jomc.modlet.ModelValidationReport;
46 import org.jomc.modlet.ObjectFactory;
47 import org.jomc.tools.ResourceFileProcessor;
48
49
50
51
52
53
54
55 public abstract class AbstractResourcesWriteMojo extends AbstractJomcMojo
56 {
57
58
59 private static final String TOOLNAME = "ResourceFileProcessor";
60
61
62
63
64
65
66 private String resourceBundleDefaultLanguage;
67
68
69 public AbstractResourcesWriteMojo()
70 {
71 super();
72 }
73
74 @Override
75 protected final void executeTool() throws Exception
76 {
77 this.logSeparator();
78
79 if ( this.isResourceProcessingEnabled() )
80 {
81 this.logProcessingModule( TOOLNAME, this.getResourcesModuleName() );
82
83 final ModelContext context = this.createModelContext( this.getResourcesClassLoader() );
84 final ResourceFileProcessor tool = this.createResourceFileProcessor( context );
85 final JAXBContext jaxbContext = context.createContext( this.getModel() );
86 final Source source = new JAXBSource( jaxbContext, new ObjectFactory().createModel( tool.getModel() ) );
87 final ModelValidationReport validationReport = context.validateModel( this.getModel(), source );
88
89 if ( this.resourceBundleDefaultLanguage != null )
90 {
91 tool.setResourceBundleDefaultLocale(
92 new Locale( this.resourceBundleDefaultLanguage.toLowerCase( Locale.ENGLISH ) ) );
93
94 }
95
96 this.log( context, validationReport.isModelValid() ? Level.INFO : Level.SEVERE, validationReport );
97
98 if ( validationReport.isModelValid() )
99 {
100 final Module module =
101 tool.getModules() != null ? tool.getModules().getModule( this.getResourcesModuleName() ) : null;
102
103 if ( module != null )
104 {
105 if ( !this.getResourcesDirectory().exists() && !this.getResourcesDirectory().mkdirs() )
106 {
107 throw new MojoExecutionException( Messages.getMessage(
108 "failedCreatingDirectory", this.getResourcesDirectory().getAbsolutePath() ) );
109
110 }
111
112 tool.writeResourceBundleResourceFiles( module, this.getResourcesDirectory() );
113
114 if ( !this.getResourcesDirectory().equals( this.getResourcesOutputDirectory() ) )
115 {
116 FileUtils.copyDirectory( this.getResourcesDirectory(), this.getResourcesOutputDirectory() );
117 }
118
119 final Resource resource = new Resource();
120 resource.setDirectory( this.getResourcesDirectory().getAbsolutePath() );
121 resource.setFiltering( false );
122
123 this.addMavenResource( this.getMavenProject(), resource );
124
125 this.logToolSuccess( TOOLNAME );
126 }
127 else
128 {
129 this.logMissingModule( this.getResourcesModuleName() );
130 }
131 }
132 else
133 {
134 throw new MojoExecutionException( Messages.getMessage( "resourceProcessingFailure" ) );
135 }
136 }
137 else if ( this.isLoggable( Level.INFO ) )
138 {
139 this.log( Level.INFO, Messages.getMessage( "resourceProcessingDisabled" ), null );
140 }
141 }
142
143
144
145
146
147
148
149
150 protected abstract String getResourcesModuleName() throws MojoExecutionException;
151
152
153
154
155
156
157
158
159 protected abstract ClassLoader getResourcesClassLoader() throws MojoExecutionException;
160
161
162
163
164
165
166
167
168 protected abstract File getResourcesDirectory() throws MojoExecutionException;
169
170
171
172
173
174
175
176
177
178
179 protected abstract File getResourcesOutputDirectory() throws MojoExecutionException;
180
181
182
183
184
185
186
187
188
189
190
191 protected abstract void addMavenResource( MavenProject mavenProject, Resource resource )
192 throws MojoExecutionException;
193
194 }