Added patch by Joachim Van der Auwera to support package level annotations
[hibernate4-maven-plugin] / src / main / java / de / juplo / plugins / hibernate4 / Hbm2DdlMojo.java
1 package de.juplo.plugins.hibernate4;
2
3 /*
4  * Copyright 2001-2005 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import com.pyx4j.log4j.MavenLogAppender;
20 import java.io.File;
21 import java.io.FileInputStream;
22 import java.io.FileNotFoundException;
23 import java.io.FileOutputStream;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.io.ObjectInputStream;
27 import java.io.ObjectOutputStream;
28 import java.math.BigInteger;
29 import java.net.URL;
30 import java.net.URLClassLoader;
31 import java.security.MessageDigest;
32 import java.security.NoSuchAlgorithmException;
33 import java.sql.Connection;
34 import java.sql.Driver;
35 import java.sql.DriverManager;
36 import java.sql.DriverPropertyInfo;
37 import java.sql.SQLException;
38 import java.sql.SQLFeatureNotSupportedException;
39 import java.util.Comparator;
40 import java.util.Enumeration;
41 import java.util.HashMap;
42 import java.util.HashSet;
43 import java.util.List;
44 import java.util.Map;
45 import java.util.Map.Entry;
46 import java.util.Properties;
47 import java.util.Set;
48 import java.util.TreeSet;
49 import java.util.logging.Logger;
50 import java.util.regex.Matcher;
51 import java.util.regex.Pattern;
52 import javax.persistence.Embeddable;
53 import javax.persistence.Entity;
54 import javax.persistence.MappedSuperclass;
55 import org.apache.maven.artifact.Artifact;
56 import org.apache.maven.model.Resource;
57 import org.apache.maven.plugin.AbstractMojo;
58 import org.apache.maven.plugin.MojoExecutionException;
59 import org.apache.maven.plugin.MojoFailureException;
60 import org.apache.maven.project.MavenProject;
61 import org.hibernate.cfg.NamingStrategy;
62 import org.hibernate.envers.configuration.spi.AuditConfiguration;
63 import org.hibernate.tool.hbm2ddl.SchemaExport;
64 import org.hibernate.tool.hbm2ddl.SchemaExport.Type;
65 import org.hibernate.tool.hbm2ddl.Target;
66 import org.scannotation.AnnotationDB;
67
68
69 /**
70  * Goal which extracts the hibernate-mapping-configuration and
71  * exports an according SQL-database-schema.
72  *
73  * @goal export
74  * @phase process-classes
75  * @threadSafe
76  * @requiresDependencyResolution runtime
77  */
78 public class Hbm2DdlMojo extends AbstractMojo
79 {
80   public final static String EXPORT_SKIPPED_PROPERTY = "hibernate.export.skipped";
81
82   public final static String DRIVER_CLASS = "hibernate.connection.driver_class";
83   public final static String URL = "hibernate.connection.url";
84   public final static String USERNAME = "hibernate.connection.username";
85   public final static String PASSWORD = "hibernate.connection.password";
86   public final static String DIALECT = "hibernate.dialect";
87   public final static String NAMING_STRATEGY="hibernate.ejb.naming_strategy";
88   public final static String ENVERS = "hibernate.export.envers";
89
90   public final static String MD5S = "hibernate4-generatedschema.md5s";
91
92   private final static Pattern split = Pattern.compile("[^,\\s]+");
93
94
95   /**
96    * The maven project.
97    * <p>
98    * Only needed internally.
99    *
100    * @parameter property="project"
101    * @required
102    * @readonly
103    */
104   private MavenProject project;
105
106   /**
107    * Build-directory.
108    * <p>
109    * Only needed internally.
110    *
111    * @parameter property="project.build.directory"
112    * @required
113    * @readonly
114    */
115   private String buildDirectory;
116
117   /**
118    * Classes-Directory to scan.
119    * <p>
120    * This parameter defaults to the maven build-output-directory for classes.
121    * Additionally, all dependencies are scanned for annotated classes.
122    *
123    * @parameter property="project.build.outputDirectory"
124    * @since 1.0
125    */
126   private String outputDirectory;
127
128   /**
129    * Whether to scan test-classes too, or not.
130    * <p>
131    * If this parameter is set to <code>true</code> the test-classes of the
132    * artifact will be scanned for hibernate-annotated classes additionally.
133    *
134    * @parameter property="hibernate.export.scan_testclasses" default-value="false"
135    * @since 1.0.1
136    */
137   private boolean scanTestClasses;
138
139   /**
140    * Dependency-Scopes, that should be scanned for annotated classes.
141    * <p>
142    * By default, only dependencies in the scope <code>compile</code> are
143    * scanned for annotated classes. Multiple scopes can be seperated by
144    * white space or commas.
145    * <p>
146    * The plugin does not scan for annotated classes in transitive
147    * dependencies. If some of your annotated classes are hidden in a
148    * transitive dependency, you can simply add that dependency explicitly.
149    *
150    * @parameter property="hibernate.export.scan_dependencies" default-value="compile"
151    * @since 1.0.3
152    */
153   private String scanDependencies;
154
155   /**
156    * Test-Classes-Directory to scan.
157    * <p>
158    * This parameter defaults to the maven build-output-directory for
159    * test-classes.
160    * <p>
161    * This parameter is only used, when <code>scanTestClasses</code> is set
162    * to <code>true</code>!
163    *
164    * @parameter property="project.build.testOutputDirectory"
165    * @since 1.0.2
166    */
167   private String testOutputDirectory;
168
169   /**
170    * Skip execution
171    * <p>
172    * If set to <code>true</code>, the execution is skipped.
173    * <p>
174    * A skipped execution is signaled via the maven-property
175    * <code>${hibernate.export.skipped}</code>.
176    * <p>
177    * The execution is skipped automatically, if no modified or newly added
178    * annotated classes are found and the dialect was not changed.
179    *
180    * @parameter property="hibernate.skip" default-value="${maven.test.skip}"
181    * @since 1.0
182    */
183   private boolean skip;
184
185   /**
186    * Force execution
187    * <p>
188    * Force execution, even if no modified or newly added annotated classes
189    * where found and the dialect was not changed.
190    * <p>
191    * <code>skip</code> takes precedence over <code>force</code>.
192    *
193    * @parameter property="hibernate.export.force" default-value="false"
194    * @since 1.0
195    */
196   private boolean force;
197
198   /**
199    * SQL-Driver name.
200    *
201    * @parameter property="hibernate.connection.driver_class"
202    * @since 1.0
203    */
204   private String driverClassName;
205
206   /**
207    * Database URL.
208    *
209    * @parameter property="hibernate.connection.url"
210    * @since 1.0
211    */
212   private String url;
213
214   /**
215    * Database username
216    *
217    * @parameter property="hibernate.connection.username"
218    * @since 1.0
219    */
220   private String username;
221
222   /**
223    * Database password
224    *
225    * @parameter property="hibernate.connection.password"
226    * @since 1.0
227    */
228   private String password;
229
230   /**
231    * Hibernate dialect.
232    *
233    * @parameter property="hibernate.dialect"
234    * @since 1.0
235    */
236   private String hibernateDialect;
237
238   /**
239    * Hibernate Naming Strategy
240    *
241    * @parameter property="hibernate.ejb.naming_strategy"
242    * @since 1.0.2
243    */
244   private String hibernateNamingStrategy;
245
246   /**
247    * Path to Hibernate configuration file.
248    *
249    * @parameter default-value="${project.build.outputDirectory}/hibernate.properties"
250    * @since 1.0
251    */
252   private String hibernateProperties;
253
254   /**
255    * List of Hibernate-Mapping-Files (XML).
256    * Multiple files can be separated with white-spaces and/or commas.
257    *
258    * @parameter property="hibernate.mapping"
259    * @since 1.0.2
260    */
261   private String hibernateMapping;
262
263   /**
264    * Target of execution:
265    * <ul>
266    *   <li><strong>NONE</strong> only export schema to SQL-script (forces execution, signals skip)</li>
267    *   <li><strong>EXPORT</strong> create database (<strong>DEFAULT!</strong>). forces execution, signals skip)</li>
268    *   <li><strong>SCRIPT</strong> export schema to SQL-script and print it to STDOUT</li>
269    *   <li><strong>BOTH</strong></li>
270    * </ul>
271    *
272    * A database connection is only needed for EXPORT and BOTH, but a
273    * Hibernate-Dialect must always be chosen.
274    *
275    * @parameter property="hibernate.export.target" default-value="EXPORT"
276    * @since 1.0
277    */
278   private String target;
279
280   /**
281    * Type of execution.
282    * <ul>
283    *   <li><strong>NONE</strong> do nothing - just validate the configuration</li>
284    *   <li><strong>CREATE</strong> create database-schema</li>
285    *   <li><strong>DROP</strong> drop database-schema</li>
286    *   <li><strong>BOTH</strong> (<strong>DEFAULT!</strong>)</li>
287    * </ul>
288    *
289    * If NONE is choosen, no databaseconnection is needed.
290    *
291    * @parameter property="hibernate.export.type" default-value="BOTH"
292    * @since 1.0
293    */
294   private String type;
295
296   /**
297    * Output file.
298    *
299    * @parameter property="hibernate.export.schema.filename" default-value="${project.build.directory}/schema.sql"
300    * @since 1.0
301    */
302   private String outputFile;
303
304   /**
305    * Delimiter in output-file.
306    *
307    * @parameter property="hibernate.export.schema.delimiter" default-value=";"
308    * @since 1.0
309    */
310   private String delimiter;
311
312   /**
313    * Format output-file.
314    *
315    * @parameter property="hibernate.export.schema.format" default-value="true"
316    * @since 1.0
317    */
318   private boolean format;
319
320   /**
321    * Generate envers schema for auditing tables.
322    *
323    * @parameter property="hibernate.export.envers" default-value="false"
324    * @since 1.0.3
325    */
326   private boolean envers;
327
328
329   @Override
330   public void execute()
331     throws
332       MojoFailureException,
333       MojoExecutionException
334   {
335     if (skip)
336     {
337       getLog().info("Execution of hibernate4-maven-plugin:export was skipped!");
338       project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
339       return;
340     }
341
342     Map<String,String> md5s;
343     boolean modified = false;
344     File saved = new File(buildDirectory + File.separator + MD5S);
345
346     if (saved.isFile() && saved.length() > 0)
347     {
348       try
349       {
350         FileInputStream fis = new FileInputStream(saved);
351         ObjectInputStream ois = new ObjectInputStream(fis);
352         md5s = (HashMap<String,String>)ois.readObject();
353         ois.close();
354       }
355       catch (Exception e)
356       {
357         md5s = new HashMap<String,String>();
358         getLog().warn("Cannot read timestamps from saved: " + e);
359       }
360     }
361     else
362     {
363       md5s = new HashMap<String,String>();
364       try
365       {
366         saved.createNewFile();
367       }
368       catch (IOException e)
369       {
370         getLog().debug("Cannot create file \"" + saved.getPath() + "\" for timestamps: " + e);
371       }
372     }
373
374     ClassLoader classLoader = null;
375     try
376     {
377       getLog().debug("Creating ClassLoader for project-dependencies...");
378       List<String> classpathFiles = project.getCompileClasspathElements();
379       if (scanTestClasses)
380         classpathFiles.addAll(project.getTestClasspathElements());
381       URL[] urls = new URL[classpathFiles.size()];
382       for (int i = 0; i < classpathFiles.size(); ++i)
383       {
384         getLog().debug("Dependency: " + classpathFiles.get(i));
385         urls[i] = new File(classpathFiles.get(i)).toURI().toURL();
386       }
387       classLoader = new URLClassLoader(urls, getClass().getClassLoader());
388     }
389     catch (Exception e)
390     {
391       getLog().error("Error while creating ClassLoader!", e);
392       throw new MojoExecutionException(e.getMessage());
393     }
394
395     Set<Class<?>> classes =
396         new TreeSet<Class<?>>(
397             new Comparator<Class<?>>() {
398               @Override
399               public int compare(Class<?> a, Class<?> b)
400               {
401                 return a.getName().compareTo(b.getName());
402               }
403             }
404           );
405
406     try
407     {
408       AnnotationDB db = new AnnotationDB();
409       File dir = new File(outputDirectory);
410       if (dir.exists())
411       {
412         getLog().info("Scanning directory " + outputDirectory + " for annotated classes...");
413         URL dirUrl = dir.toURI().toURL();
414         db.scanArchives(dirUrl);
415       }
416       if (scanTestClasses)
417       {
418         dir = new File(testOutputDirectory);
419         if (dir.exists())
420         {
421           getLog().info("Scanning directory " + testOutputDirectory + " for annotated classes...");
422           URL dirUrl = dir.toURI().toURL();
423           db.scanArchives(dirUrl);
424         }
425       }
426       if (scanDependencies != null)
427       {
428         Matcher matcher = split.matcher(scanDependencies);
429         while (matcher.find())
430         {
431           getLog().info("Scanning dependencies for scope " + matcher.group());
432           for (Artifact artifact : project.getDependencyArtifacts())
433           {
434             if (!artifact.getScope().equalsIgnoreCase(matcher.group()))
435               continue;
436             if (artifact.getFile() == null)
437             {
438               getLog().warn(
439                   "Cannot scan dependency " +
440                   artifact.getId() +
441                   ": no JAR-file available!"
442                   );
443               continue;
444             }
445             getLog().info(
446                 "Scanning dependency " +
447                 artifact.getId() +
448                 " for annotated classes..."
449                 );
450             db.scanArchives(artifact.getFile().toURI().toURL());
451           }
452         }
453       }
454
455       Set<String> classNames = new HashSet<String>();
456       if (db.getAnnotationIndex().containsKey(Entity.class.getName()))
457         classNames.addAll(db.getAnnotationIndex().get(Entity.class.getName()));
458       if (db.getAnnotationIndex().containsKey(MappedSuperclass.class.getName()))
459         classNames.addAll(db.getAnnotationIndex().get(MappedSuperclass.class.getName()));
460       if (db.getAnnotationIndex().containsKey(Embeddable.class.getName()))
461         classNames.addAll(db.getAnnotationIndex().get(Embeddable.class.getName()));
462
463       MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
464       for (String name : classNames)
465       {
466         Class<?> annotatedClass = classLoader.loadClass(name);
467         classes.add(annotatedClass);
468         String resourceName = annotatedClass.getName();
469         resourceName = resourceName.substring(resourceName.lastIndexOf(".") + 1, resourceName.length()) + ".class";
470         InputStream is =
471             annotatedClass
472                 .getResourceAsStream(resourceName);
473         byte[] buffer = new byte[1024*4]; // copy data in 4MB-chunks
474         int i;
475         while((i = is.read(buffer)) > -1)
476           digest.update(buffer, 0, i);
477         is.close();
478         byte[] bytes = digest.digest();
479         BigInteger bi = new BigInteger(1, bytes);
480         String newMd5 = String.format("%0" + (bytes.length << 1) + "x", bi);
481         String oldMd5 = !md5s.containsKey(name) ? "" : md5s.get(name);
482         if (!newMd5.equals(oldMd5))
483         {
484           getLog().debug("Found new or modified annotated class: " + name);
485           modified = true;
486           md5s.put(name, newMd5);
487         }
488         else
489         {
490           getLog().debug(oldMd5 + " -> class unchanged: " + name);
491         }
492       }
493     }
494     catch (ClassNotFoundException e)
495     {
496       getLog().error("Error while adding annotated classes!", e);
497       throw new MojoExecutionException(e.getMessage());
498     }
499     catch (Exception e)
500     {
501       getLog().error("Error while scanning!", e);
502       throw new MojoFailureException(e.getMessage());
503     }
504
505     if (classes.isEmpty())
506     {
507       if (hibernateMapping == null || hibernateMapping.isEmpty())
508         throw new MojoFailureException("No annotated classes found in directory " + outputDirectory);
509     }
510     else
511     {
512       getLog().debug("Detected classes with mapping-annotations:");
513       for (Class<?> annotatedClass : classes)
514         getLog().debug("  " + annotatedClass.getName());
515     }
516
517
518     Properties properties = new Properties();
519
520     /** Try to read configuration from properties-file */
521     try
522     {
523       File file = new File(hibernateProperties);
524       if (file.exists())
525       {
526         getLog().info("Reading properties from file " + hibernateProperties + "...");
527         properties.load(new FileInputStream(file));
528       }
529       else
530         getLog().info("No hibernate-properties-file found! (Checked path: " + hibernateProperties + ")");
531     }
532     catch (IOException e)
533     {
534       getLog().error("Error while reading properties!", e);
535       throw new MojoExecutionException(e.getMessage());
536     }
537
538     /** Overwrite values from properties-file or set, if given */
539     if (driverClassName != null)
540     {
541       if (properties.containsKey(DRIVER_CLASS))
542         getLog().debug(
543             "Overwriting property " +
544             DRIVER_CLASS + "=" + properties.getProperty(DRIVER_CLASS) +
545             " with the value " + driverClassName
546           );
547       else
548         getLog().debug("Using the value " + driverClassName);
549       properties.setProperty(DRIVER_CLASS, driverClassName);
550     }
551     if (url != null)
552     {
553       if (properties.containsKey(URL))
554         getLog().debug(
555             "Overwriting property " +
556             URL + "=" + properties.getProperty(URL) +
557             " with the value " + url
558           );
559       else
560         getLog().debug("Using the value " + url);
561       properties.setProperty(URL, url);
562     }
563     if (username != null)
564     {
565       if (properties.containsKey(USERNAME))
566         getLog().debug(
567             "Overwriting property " +
568             USERNAME + "=" + properties.getProperty(USERNAME) +
569             " with the value " + username
570           );
571       else
572         getLog().debug("Using the value " + username);
573       properties.setProperty(USERNAME, username);
574     }
575     if (password != null)
576     {
577       if (properties.containsKey(PASSWORD))
578         getLog().debug(
579             "Overwriting property " +
580             PASSWORD + "=" + properties.getProperty(PASSWORD) +
581             " with value " + password
582           );
583       else
584         getLog().debug("Using value " + password + " for property " + PASSWORD);
585       properties.setProperty(PASSWORD, password);
586     }
587     if (hibernateDialect != null)
588     {
589       if (properties.containsKey(DIALECT))
590         getLog().debug(
591             "Overwriting property " +
592             DIALECT + "=" + properties.getProperty(DIALECT) +
593             " with value " + hibernateDialect
594           );
595       else
596         getLog().debug(
597             "Using value " + hibernateDialect + " for property " + DIALECT
598             );
599       properties.setProperty(DIALECT, hibernateDialect);
600     }
601     if ( hibernateNamingStrategy != null )
602     {
603       if ( properties.contains(NAMING_STRATEGY))
604         getLog().debug(
605             "Overwriting property " +
606             NAMING_STRATEGY + "=" + properties.getProperty(NAMING_STRATEGY) +
607             " with value " + hibernateNamingStrategy
608            );
609       else
610         getLog().debug(
611             "Using value " + hibernateNamingStrategy + " for property " +
612             NAMING_STRATEGY
613             );
614       properties.setProperty(NAMING_STRATEGY, hibernateNamingStrategy);
615     }
616
617     /** The generated SQL varies with the dialect! */
618     if (md5s.containsKey(DIALECT))
619     {
620       String dialect = properties.getProperty(DIALECT);
621       if (md5s.get(DIALECT).equals(dialect))
622         getLog().debug("SQL-dialect unchanged.");
623       else
624       {
625         modified = true;
626         if (dialect == null)
627         {
628           getLog().debug("SQL-dialect was unset.");
629           md5s.remove(DIALECT);
630         }
631         else
632         {
633           getLog().debug("SQL-dialect changed: " + dialect);
634           md5s.put(DIALECT, dialect);
635         }
636       }
637     }
638     else
639     {
640       String dialect = properties.getProperty(DIALECT);
641       if (dialect != null)
642       {
643         modified = true;
644         md5s.put(DIALECT, properties.getProperty(DIALECT));
645       }
646     }
647
648     /** The generated SQL varies with the envers-configuration */
649     if (md5s.get(ENVERS) != null)
650     {
651       if (md5s.get(ENVERS).equals(Boolean.toString(envers)))
652         getLog().debug("Envers-Configuration unchanged. Enabled: " + envers);
653       else
654       {
655         getLog().debug("Envers-Configuration changed. Enabled: " + envers);
656         modified = true;
657         md5s.put(ENVERS, Boolean.toString(envers));
658       }
659     }
660     else
661     {
662       modified = true;
663       md5s.put(ENVERS, Boolean.toString(envers));
664     }
665
666     if (properties.isEmpty())
667     {
668       getLog().error("No properties set!");
669       throw new MojoFailureException("Hibernate configuration is missing!");
670     }
671
672     final ValidationConfiguration config = new ValidationConfiguration(hibernateDialect);
673
674     config.setProperties(properties);
675
676     if ( properties.containsKey(NAMING_STRATEGY))
677     {
678       String namingStrategy = properties.getProperty(NAMING_STRATEGY);
679       getLog().debug("Explicitly set NamingStrategy: " + namingStrategy);
680       try
681       {
682         @SuppressWarnings("unchecked")
683         Class<NamingStrategy> namingStrategyClass = (Class<NamingStrategy>) Class.forName(namingStrategy);
684         config.setNamingStrategy(namingStrategyClass.newInstance());
685       }
686       catch (Exception e)
687       {
688         getLog().error("Error setting NamingStrategy", e);
689         throw new MojoExecutionException(e.getMessage());
690       }
691     }
692
693     ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
694     Connection connection = null;
695     MavenLogAppender.startPluginLog(this);
696     try
697     {
698       /**
699        * Change class-loader of current thread, so that hibernate can
700        * see all dependencies!
701        */
702       Thread.currentThread().setContextClassLoader(classLoader);
703
704       getLog().debug("Adding annotated classes to hibernate-mapping-configuration...");
705       // build annotated packages
706       Set<String> packages = new HashSet<String>();
707       for (Class<?> annotatedClass : classes)
708       {
709         String packageName = annotatedClass.getPackage().getName();
710         if (!packages.contains(packageName))
711         {
712           getLog().debug("Add package " + packageName);
713           packages.add(packageName);
714           config.addPackage(packageName);
715           getLog().debug("type definintions" + config.getTypeDefs());
716         }
717         getLog().debug("Class " + annotatedClass);
718         config.addAnnotatedClass(annotatedClass);
719       }
720
721       if (hibernateMapping != null)
722       {
723         try
724         {
725           MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
726           for (String filename : hibernateMapping.split("[\\s,]+"))
727           {
728             // First try the filename as absolute/relative path
729             File file = new File(filename);
730             if (!file.exists())
731             {
732               // If the file was not found, search for it in the resource-directories
733               for (Resource resource : project.getResources())
734               {
735                 file = new File(resource.getDirectory() + File.separator + filename);
736                 if (file.exists())
737                   break;
738               }
739             }
740             if (file != null && file.exists())
741             {
742               InputStream is = new FileInputStream(file);
743               byte[] buffer = new byte[1024*4]; // copy data in 4MB-chunks
744               int i;
745               while((i = is.read(buffer)) > -1)
746                 digest.update(buffer, 0, i);
747               is.close();
748               byte[] bytes = digest.digest();
749               BigInteger bi = new BigInteger(1, bytes);
750               String newMd5 = String.format("%0" + (bytes.length << 1) + "x", bi);
751               String oldMd5 = !md5s.containsKey(filename) ? "" : md5s.get(filename);
752               if (!newMd5.equals(oldMd5))
753               {
754                 getLog().debug("Found new or modified mapping-file: " + filename);
755                 modified = true;
756                 md5s.put(filename, newMd5);
757               }
758               else
759               {
760                 getLog().debug(oldMd5 + " -> mapping-file unchanged: " + filename);
761               }
762               getLog().debug("Adding mappings from XML-configurationfile: " + file);
763               config.addFile(file);
764             }
765             else
766               throw new MojoFailureException("File " + filename + " could not be found in any of the configured resource-directories!");
767           }
768         }
769         catch (NoSuchAlgorithmException e)
770         {
771           throw new MojoFailureException("Cannot calculate MD5 sums!", e);
772         }
773         catch (FileNotFoundException e)
774         {
775           throw new MojoFailureException("Cannot calculate MD5 sums!", e);
776         }
777         catch (IOException e)
778         {
779           throw new MojoFailureException("Cannot calculate MD5 sums!", e);
780         }
781       }
782
783       Target target = null;
784       try
785       {
786         target = Target.valueOf(this.target.toUpperCase());
787       }
788       catch (IllegalArgumentException e)
789       {
790         getLog().error("Invalid value for configuration-option \"target\": " + this.target);
791         getLog().error("Valid values are: NONE, SCRIPT, EXPORT, BOTH");
792         throw new MojoExecutionException("Invalid value for configuration-option \"target\"");
793       }
794       Type type = null;
795       try
796       {
797         type = Type.valueOf(this.type.toUpperCase());
798       }
799       catch (IllegalArgumentException e)
800       {
801         getLog().error("Invalid value for configuration-option \"type\": " + this.type);
802         getLog().error("Valid values are: NONE, CREATE, DROP, BOTH");
803         throw new MojoExecutionException("Invalid value for configuration-option \"type\"");
804       }
805
806       if (target.equals(Target.SCRIPT) || target.equals(Target.NONE))
807       {
808         project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
809       }
810       if (
811           !modified
812           && !target.equals(Target.SCRIPT)
813           && !target.equals(Target.NONE)
814           && !force
815         )
816       {
817         getLog().info("No modified annotated classes or mapping-files found and dialect unchanged.");
818         getLog().info("Skipping schema generation!");
819         project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
820         return;
821       }
822
823       getLog().info("Gathered hibernate-configuration (turn on debugging for details):");
824       for (Entry<Object,Object> entry : properties.entrySet())
825         getLog().info("  " + entry.getKey() + " = " + entry.getValue());
826
827       try
828       {
829         /**
830          * The connection must be established outside of hibernate, because
831          * hibernate does not use the context-classloader of the current
832          * thread and, hence, would not be able to resolve the driver-class!
833          */
834         getLog().debug("Target: " + target + ", Type: " + type);
835         switch (target)
836         {
837           case EXPORT:
838           case BOTH:
839             switch (type)
840             {
841               case CREATE:
842               case DROP:
843               case BOTH:
844                 Class driverClass = classLoader.loadClass(properties.getProperty(DRIVER_CLASS));
845                 getLog().debug("Registering JDBC-driver " + driverClass.getName());
846                 DriverManager.registerDriver(new DriverProxy((Driver)driverClass.newInstance()));
847                 getLog().debug(
848                     "Opening JDBC-connection to "
849                     + properties.getProperty(URL)
850                     + " as "
851                     + properties.getProperty(USERNAME)
852                     + " with password "
853                     + properties.getProperty(PASSWORD)
854                     );
855                 connection = DriverManager.getConnection(
856                     properties.getProperty(URL),
857                     properties.getProperty(USERNAME),
858                     properties.getProperty(PASSWORD)
859                     );
860             }
861         }
862       }
863       catch (ClassNotFoundException e)
864       {
865         getLog().error("Dependency for driver-class " + properties.getProperty(DRIVER_CLASS) + " is missing!");
866         throw new MojoExecutionException(e.getMessage());
867       }
868       catch (Exception e)
869       {
870         getLog().error("Cannot establish connection to database!");
871         Enumeration<Driver> drivers = DriverManager.getDrivers();
872         if (!drivers.hasMoreElements())
873           getLog().error("No drivers registered!");
874         while (drivers.hasMoreElements())
875           getLog().debug("Driver: " + drivers.nextElement());
876         throw new MojoExecutionException(e.getMessage());
877       }
878
879       config.buildMappings();
880
881       if (envers)
882       {
883         getLog().info("Automatic auditing via hibernate-envers enabled!");
884         AuditConfiguration.getFor(config);
885       }
886
887       SchemaExport export = new SchemaExport(config, connection);
888       export.setDelimiter(delimiter);
889       export.setFormat(format);
890
891       File outF = new File(outputFile);
892
893       if (!outF.isAbsolute())
894       {
895         // Interpret relative file path relative to build directory
896         outF = new File(buildDirectory, outputFile);
897         getLog().info("Adjusted relative path, resulting path is " + outF.getPath());
898       }
899
900       // Ensure that directory path for specified file exists
901       File outFileParentDir = outF.getParentFile();
902       if (null != outFileParentDir && !outFileParentDir.exists())
903       {
904         try
905         {
906           getLog().info("Creating directory path for output file:" + outFileParentDir.getPath());
907           outFileParentDir.mkdirs();
908         }
909         catch (Exception e)
910         {
911           getLog().error("Error creating directory path for output file: " + e.getLocalizedMessage());
912         }
913       }
914
915       export.setOutputFile(outF.getPath());
916       export.execute(target, type);
917
918       for (Object exception : export.getExceptions())
919         getLog().debug(exception.toString());
920     }
921     finally
922     {
923       /** Stop Log-Capturing */
924       MavenLogAppender.endPluginLog(this);
925
926       /** Restore the old class-loader (TODO: is this really necessary?) */
927       Thread.currentThread().setContextClassLoader(contextClassLoader);
928
929       /** Close the connection */
930       try
931       {
932         if (connection != null)
933           connection.close();
934       }
935       catch (SQLException e)
936       {
937         getLog().error("Error while closing connection: " + e.getMessage());
938       }
939     }
940
941     /** Write md5-sums for annotated classes to file */
942     try
943     {
944       FileOutputStream fos = new FileOutputStream(saved);
945       ObjectOutputStream oos = new ObjectOutputStream(fos);
946       oos.writeObject(md5s);
947       oos.close();
948       fos.close();
949     }
950     catch (Exception e)
951     {
952       getLog().error("Cannot write md5-sums to file: " + e);
953     }
954   }
955
956   /**
957    * Needed, because DriverManager won't pick up drivers, that were not
958    * loaded by the system-classloader!
959    * See:
960    * http://stackoverflow.com/questions/288828/how-to-use-a-jdbc-driver-fromodifiedm-an-arbitrary-location
961    */
962   static final class DriverProxy implements Driver
963   {
964     private final Driver target;
965
966     DriverProxy(Driver target)
967     {
968       if (target == null)
969         throw new NullPointerException();
970       this.target = target;
971     }
972
973     public java.sql.Driver getTarget()
974     {
975       return target;
976     }
977
978     @Override
979     public boolean acceptsURL(String url) throws SQLException
980     {
981       return target.acceptsURL(url);
982     }
983
984     @Override
985     public java.sql.Connection connect(
986         String url,
987         java.util.Properties info
988       )
989       throws
990         SQLException
991     {
992       return target.connect(url, info);
993     }
994
995     @Override
996     public int getMajorVersion()
997     {
998       return target.getMajorVersion();
999     }
1000
1001     @Override
1002     public int getMinorVersion()
1003     {
1004       return target.getMinorVersion();
1005     }
1006
1007     @Override
1008     public DriverPropertyInfo[] getPropertyInfo(
1009         String url,
1010         Properties info
1011       )
1012       throws
1013         SQLException
1014     {
1015       return target.getPropertyInfo(url, info);
1016     }
1017
1018     @Override
1019     public boolean jdbcCompliant()
1020     {
1021       return target.jdbcCompliant();
1022     }
1023
1024     /**
1025      * This Method cannot be annotated with @Override, becaus the plugin
1026      * will not compile then under Java 1.6!
1027      */
1028     public Logger getParentLogger() throws SQLFeatureNotSupportedException
1029     {
1030       throw new SQLFeatureNotSupportedException("Not supported, for backward-compatibility with Java 1.6");
1031     }
1032
1033     @Override
1034     public String toString()
1035     {
1036       return "Proxy: " + target;
1037     }
1038
1039     @Override
1040     public int hashCode()
1041     {
1042       return target.hashCode();
1043     }
1044
1045     @Override
1046     public boolean equals(Object obj)
1047     {
1048       if (!(obj instanceof DriverProxy))
1049         return false;
1050       DriverProxy other = (DriverProxy) obj;
1051       return this.target.equals(other.target);
1052     }
1053   }
1054 }