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.ant;
32  
33  import java.io.File;
34  import java.io.IOException;
35  import java.util.logging.Level;
36  import javax.xml.bind.JAXBContext;
37  import javax.xml.bind.JAXBException;
38  import javax.xml.bind.util.JAXBSource;
39  import javax.xml.transform.Source;
40  import org.apache.tools.ant.BuildException;
41  import org.jomc.model.Implementation;
42  import org.jomc.model.Module;
43  import org.jomc.model.Specification;
44  import org.jomc.modlet.Model;
45  import org.jomc.modlet.ModelContext;
46  import org.jomc.modlet.ModelException;
47  import org.jomc.modlet.ModelValidationReport;
48  import org.jomc.modlet.ObjectFactory;
49  import org.jomc.tools.ClassFileProcessor;
50  
51  
52  
53  
54  
55  
56  
57  public final class ValidateClassesTask extends ClassFileProcessorTask
58  {
59  
60      
61  
62  
63      private File classesDirectory;
64  
65      
66  
67  
68      public ValidateClassesTask()
69      {
70          super();
71      }
72  
73      
74  
75  
76  
77  
78  
79  
80      public File getClassesDirectory()
81      {
82          return this.classesDirectory;
83      }
84  
85      
86  
87  
88  
89  
90  
91  
92      public void setClassesDirectory( final File value )
93      {
94          this.classesDirectory = value;
95      }
96  
97      
98  
99  
100     @Override
101     public void preExecuteTask() throws BuildException
102     {
103         super.preExecuteTask();
104 
105         this.assertNotNull( "classesDirectory", this.getClassesDirectory() );
106     }
107 
108     
109 
110 
111 
112 
113     @Override
114     public void processClassFiles() throws BuildException
115     {
116         ProjectClassLoader classLoader = null;
117 
118         try
119         {
120             this.log( Messages.getMessage( "validatingModelObjects", this.getModel() ) );
121 
122             classLoader = this.newProjectClassLoader();
123             final ModelContext context = this.newModelContext( classLoader );
124             final ClassFileProcessor tool = this.newClassFileProcessor();
125             final JAXBContext jaxbContext = context.createContext( this.getModel() );
126             final Model model = this.getModel( context );
127             final Source source = new JAXBSource( jaxbContext, new ObjectFactory().createModel( model ) );
128             ModelValidationReport validationReport = context.validateModel( this.getModel(), source );
129 
130             this.logValidationReport( context, validationReport );
131             tool.setModel( model );
132 
133             if ( validationReport.isModelValid() )
134             {
135                 final Specification s = this.getSpecification( model );
136                 final Implementation i = this.getImplementation( model );
137                 final Module m = this.getModule( model );
138 
139                 if ( s != null )
140                 {
141                     validationReport = tool.validateModelObjects( s, context, this.getClassesDirectory() );
142 
143                     if ( validationReport != null )
144                     {
145                         this.logValidationReport( context, validationReport );
146 
147                         if ( !validationReport.isModelValid() )
148                         {
149                             throw new ModelException( Messages.getMessage( "invalidModel", this.getModel() ) );
150                         }
151                     }
152                 }
153 
154                 if ( i != null )
155                 {
156                     validationReport = tool.validateModelObjects( i, context, this.getClassesDirectory() );
157 
158                     if ( validationReport != null )
159                     {
160                         this.logValidationReport( context, validationReport );
161 
162                         if ( !validationReport.isModelValid() )
163                         {
164                             throw new ModelException( Messages.getMessage( "invalidModel", this.getModel() ) );
165                         }
166                     }
167                 }
168 
169                 if ( m != null )
170                 {
171                     validationReport = tool.validateModelObjects( m, context, this.getClassesDirectory() );
172 
173                     if ( validationReport != null )
174                     {
175                         this.logValidationReport( context, validationReport );
176 
177                         if ( !validationReport.isModelValid() )
178                         {
179                             throw new ModelException( Messages.getMessage( "invalidModel", this.getModel() ) );
180                         }
181                     }
182                 }
183 
184                 if ( this.isModulesProcessingRequested() )
185                 {
186                     validationReport = tool.validateModelObjects( context, this.getClassesDirectory() );
187 
188                     if ( validationReport != null )
189                     {
190                         this.logValidationReport( context, validationReport );
191 
192                         if ( !validationReport.isModelValid() )
193                         {
194                             throw new ModelException( Messages.getMessage( "invalidModel", this.getModel() ) );
195                         }
196                     }
197                 }
198 
199                 classLoader.close();
200                 classLoader = null;
201             }
202             else
203             {
204                 throw new ModelException( Messages.getMessage( "invalidModel", this.getModel() ) );
205             }
206         }
207         catch ( final IOException e )
208         {
209             throw new ClassProcessingException( Messages.getMessage( e ), e, this.getLocation() );
210         }
211         catch ( final JAXBException e )
212         {
213             throw new ClassProcessingException( Messages.getMessage( e ), e, this.getLocation() );
214         }
215         catch ( final ModelException e )
216         {
217             throw new ClassProcessingException( Messages.getMessage( e ), e, this.getLocation() );
218         }
219         finally
220         {
221             try
222             {
223                 if ( classLoader != null )
224                 {
225                     classLoader.close();
226                 }
227             }
228             catch ( final IOException e )
229             {
230                 this.logMessage( Level.SEVERE, Messages.getMessage( e ), e );
231             }
232         }
233     }
234 
235     
236 
237 
238     @Override
239     public ValidateClassesTask clone()
240     {
241         final ValidateClassesTask clone = (ValidateClassesTask) super.clone();
242         clone.classesDirectory =
243             this.classesDirectory != null ? new File( this.classesDirectory.getAbsolutePath() ) : null;
244 
245         return clone;
246     }
247 
248 }