1 package de.juplo.plugins.hibernate4;
4 * Copyright 2001-2005 The Apache Software Foundation.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 import com.pyx4j.log4j.MavenLogAppender;
21 import java.io.FileInputStream;
22 import java.io.FileOutputStream;
23 import java.io.IOException;
24 import java.io.InputStream;
25 import java.io.ObjectInputStream;
26 import java.io.ObjectOutputStream;
27 import java.math.BigInteger;
29 import java.net.URLClassLoader;
30 import java.security.MessageDigest;
31 import java.sql.Connection;
32 import java.sql.Driver;
33 import java.sql.DriverManager;
34 import java.sql.DriverPropertyInfo;
35 import java.sql.SQLException;
36 import java.sql.SQLFeatureNotSupportedException;
37 import java.util.Comparator;
38 import java.util.Enumeration;
39 import java.util.HashMap;
40 import java.util.HashSet;
41 import java.util.List;
43 import java.util.Map.Entry;
44 import java.util.Properties;
46 import java.util.TreeSet;
47 import java.util.logging.Logger;
48 import javax.persistence.Embeddable;
49 import javax.persistence.Entity;
50 import javax.persistence.MappedSuperclass;
51 import org.apache.maven.plugin.AbstractMojo;
52 import org.apache.maven.plugin.MojoExecutionException;
53 import org.apache.maven.plugin.MojoFailureException;
54 import org.apache.maven.project.MavenProject;
55 import org.hibernate.cfg.Configuration;
56 import org.hibernate.tool.hbm2ddl.SchemaExport;
57 import org.hibernate.tool.hbm2ddl.SchemaExport.Type;
58 import org.hibernate.tool.hbm2ddl.Target;
59 import org.scannotation.AnnotationDB;
63 * Goal which extracts the hibernate-mapping-configuration and
64 * exports an according SQL-database-schema.
67 * @phase process-classes
69 * @requiresDependencyResolution runtime
71 public class Hbm2DdlMojo extends AbstractMojo
73 public final static String EXPORT_SKIPPED_PROPERTY = "hibernate.export.skipped";
75 public final static String DRIVER_CLASS = "hibernate.connection.driver_class";
76 public final static String URL = "hibernate.connection.url";
77 public final static String USERNAME = "hibernate.connection.username";
78 public final static String PASSWORD = "hibernate.connection.password";
79 public final static String DIALECT = "hibernate.dialect";
81 private final static String MD5S = "schema.md5s";
86 * @parameter expression="${project}"
90 private MavenProject project;
95 * @parameter expression="${project.build.directory}"
97 private String buildDirectory;
100 * Class-directory to scan.
102 * @parameter expression="${project.build.outputDirectory}"
104 private String outputDirectory;
109 * @parameter expression="${maven.test.skip}" default-value="false"
111 private boolean skip;
116 * Force execution, even if no modified or newly added annotated classes
117 * where found. <code>skip</code> takes precedence over <code>force</code>.
119 * @parameter expression="${hibernate.export.force}" default-value="false"
121 private boolean force;
126 * @parameter expression="${hibernate.connection.driver_class}
128 private String driverClassName;
133 * @parameter expression="${hibernate.connection.url}"
140 * @parameter expression="${hibernate.connection.username}"
142 private String username;
147 * @parameter expression="${hibernate.connection.password}"
149 private String password;
154 * @parameter expression="${hibernate.dialect}"
156 private String hibernateDialect;
159 * Path to Hibernate configuration file.
161 * @parameter default-value="${project.build.outputDirectory}/hibernate.properties"
163 private String hibernateProperties;
166 * Target of execution:
168 * <li><strong>NONE</strong> do nothing - just validate the configuration</li>
169 * <li><strong>EXPORT</strong> create database <strong>(DEFAULT!)</strong></li>
170 * <li><strong>SCRIPT</strong> export schema to SQL-script</li>
171 * <li><strong>BOTH</strong></li>
173 * @parameter expression="${hibernate.export.target}" default-value="EXPORT"
175 private String target;
180 * <li><strong>NONE</strong> do nothing - just validate the configuration</li>
181 * <li><strong>CREATE</strong> create database-schema</li>
182 * <li><strong>DROP</strong> drop database-schema</li>
183 * <li><strong>BOTH</strong> <strong>(DEFAULT!)</strong></li>
185 * @parameter expression="${hibernate.export.type}" default-value="BOTH"
192 * @parameter expression="${hibernate.export.schema.filename}" default-value="${project.build.directory}/schema.sql"
194 private String outputFile;
197 * Delimiter in output-file.
199 * @parameter expression="${hibernate.export.schema.delimiter}" default-value=";"
201 private String delimiter;
204 * Format output-file.
206 * @parameter expression="${hibernate.export.schema.format}" default-value="true"
208 private boolean format;
212 public void execute()
214 MojoFailureException,
215 MojoExecutionException
219 getLog().info("Exectuion of hibernate4-maven-plugin:export was skipped!");
220 project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
224 File dir = new File(outputDirectory);
226 throw new MojoExecutionException("Cannot scan for annotated classes in " + outputDirectory + ": directory does not exist!");
228 Map<String,String> md5s;
229 boolean modified = false;
230 File saved = new File(buildDirectory + File.separator + MD5S);
236 FileInputStream fis = new FileInputStream(saved);
237 ObjectInputStream ois = new ObjectInputStream(fis);
238 md5s = (HashMap<String,String>)ois.readObject();
243 md5s = new HashMap<String,String>();
244 getLog().warn("Cannot read timestamps from saved: " + e);
249 md5s = new HashMap<String,String>();
252 saved.createNewFile();
254 catch (IOException e)
256 getLog().warn("Cannot create saved for timestamps: " + e);
260 ClassLoader classLoader = null;
263 getLog().debug("Creating ClassLoader for project-dependencies...");
264 List<String> classpathFiles = project.getCompileClasspathElements();
265 URL[] urls = new URL[classpathFiles.size()];
266 for (int i = 0; i < classpathFiles.size(); ++i)
268 getLog().debug("Dependency: " + classpathFiles.get(i));
269 urls[i] = new File(classpathFiles.get(i)).toURI().toURL();
271 classLoader = new URLClassLoader(urls, getClass().getClassLoader());
275 getLog().error("Error while creating ClassLoader!", e);
276 throw new MojoExecutionException(e.getMessage());
279 Set<Class<?>> classes =
280 new TreeSet<Class<?>>(
281 new Comparator<Class<?>>() {
283 public int compare(Class<?> a, Class<?> b)
285 return a.getName().compareTo(b.getName());
292 AnnotationDB db = new AnnotationDB();
293 getLog().info("Scanning directory " + outputDirectory + " for annotated classes...");
294 URL dirUrl = dir.toURI().toURL();
295 db.scanArchives(dirUrl);
297 Set<String> classNames = new HashSet<String>();
298 if (db.getAnnotationIndex().containsKey(Entity.class.getName()))
299 classNames.addAll(db.getAnnotationIndex().get(Entity.class.getName()));
300 if (db.getAnnotationIndex().containsKey(MappedSuperclass.class.getName()))
301 classNames.addAll(db.getAnnotationIndex().get(MappedSuperclass.class.getName()));
302 if (db.getAnnotationIndex().containsKey(Embeddable.class.getName()))
303 classNames.addAll(db.getAnnotationIndex().get(Embeddable.class.getName()));
305 MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
306 for (String name : classNames)
308 Class<?> annotatedClass = classLoader.loadClass(name);
309 classes.add(annotatedClass);
312 .getResourceAsStream(annotatedClass.getSimpleName() + ".class");
313 byte[] buffer = new byte[1024*4]; // copy data in 4MB-chunks
315 while((i = is.read(buffer)) > -1)
316 digest.update(buffer, 0, i);
318 byte[] bytes = digest.digest();
319 BigInteger bi = new BigInteger(1, bytes);
320 String newMd5 = String.format("%0" + (bytes.length << 1) + "x", bi);
321 String oldMd5 = !md5s.containsKey(name) ? "" : md5s.get(name);
322 if (!newMd5.equals(oldMd5))
324 getLog().debug("Found new or modified annotated class: " + name);
326 md5s.put(name, newMd5);
330 getLog().debug(oldMd5 + " -> class unchanged: " + name);
334 catch (ClassNotFoundException e)
336 getLog().error("Error while adding annotated classes!", e);
337 throw new MojoExecutionException(e.getMessage());
341 getLog().error("Error while scanning!", e);
342 throw new MojoFailureException(e.getMessage());
345 if (classes.isEmpty())
346 throw new MojoFailureException("No annotated classes found in directory " + outputDirectory);
348 getLog().debug("Detected classes with mapping-annotations:");
349 for (Class<?> annotatedClass : classes)
350 getLog().debug(" " + annotatedClass.getName());
353 Properties properties = new Properties();
355 /** Try to read configuration from properties-file */
358 File file = new File(hibernateProperties);
361 getLog().info("Reading properties from file " + hibernateProperties + "...");
362 properties.load(new FileInputStream(file));
365 getLog().info("No hibernate-properties-file found! Checked path: " + hibernateProperties);
367 catch (IOException e)
369 getLog().error("Error while reading properties!", e);
370 throw new MojoExecutionException(e.getMessage());
373 /** Overwrite values from propertie-file or set, if given */
374 if (driverClassName != null)
376 if (properties.containsKey(DRIVER_CLASS))
378 "Overwriting property " +
379 DRIVER_CLASS + "=" + properties.getProperty(DRIVER_CLASS) +
380 " with the value " + driverClassName +
381 " from the plugin-configuration-parameter driverClassName!"
385 "Using the value " + driverClassName +
386 " from the plugin-configuration-parameter driverClassName!"
388 properties.setProperty(DRIVER_CLASS, driverClassName);
392 if (properties.containsKey(URL))
394 "Overwriting property " +
395 URL + "=" + properties.getProperty(URL) +
396 " with the value " + url +
397 " from the plugin-configuration-parameter url!"
401 "Using the value " + url +
402 " from the plugin-configuration-parameter url!"
404 properties.setProperty(URL, url);
406 if (username != null)
408 if (properties.containsKey(USERNAME))
410 "Overwriting property " +
411 USERNAME + "=" + properties.getProperty(USERNAME) +
412 " with the value " + username +
413 " from the plugin-configuration-parameter username!"
417 "Using the value " + username +
418 " from the plugin-configuration-parameter username!"
420 properties.setProperty(USERNAME, username);
422 if (password != null)
424 if (properties.containsKey(PASSWORD))
426 "Overwriting property " +
427 PASSWORD + "=" + properties.getProperty(PASSWORD) +
428 " with the value " + password +
429 " from the plugin-configuration-parameter password!"
433 "Using the value " + password +
434 " from the plugin-configuration-parameter password!"
436 properties.setProperty(PASSWORD, password);
438 if (hibernateDialect != null)
440 if (properties.containsKey(DIALECT))
442 "Overwriting property " +
443 DIALECT + "=" + properties.getProperty(DIALECT) +
444 " with the value " + hibernateDialect +
445 " from the plugin-configuration-parameter hibernateDialect!"
449 "Using the value " + hibernateDialect +
450 " from the plugin-configuration-parameter hibernateDialect!"
452 properties.setProperty(DIALECT, hibernateDialect);
455 /** The generated SQL varies with the dialect! */
456 if (md5s.containsKey(DIALECT))
458 String dialect = properties.getProperty(DIALECT);
459 if (md5s.get(DIALECT).equals(dialect))
460 getLog().debug("SQL-dialect unchanged.");
463 getLog().debug("SQL-dialect changed: " + dialect);
465 md5s.put(DIALECT, dialect);
471 md5s.put(DIALECT, properties.getProperty(DIALECT));
474 if (properties.isEmpty())
476 getLog().error("No properties set!");
477 throw new MojoFailureException("Hibernate-Configuration is missing!");
480 Configuration config = new Configuration();
481 config.setProperties(properties);
482 getLog().debug("Adding annotated classes to hibernate-mapping-configuration...");
483 for (Class<?> annotatedClass : classes)
485 getLog().debug("Class " + annotatedClass);
486 config.addAnnotatedClass(annotatedClass);
489 Target target = null;
492 target = Target.valueOf(this.target.toUpperCase());
494 catch (IllegalArgumentException e)
496 getLog().error("Invalid value for configuration-option \"target\": " + this.target);
497 getLog().error("Valid values are: NONE, SCRIPT, EXPORT, BOTH");
498 throw new MojoExecutionException("Invalid value for configuration-option \"target\"");
503 type = Type.valueOf(this.type.toUpperCase());
505 catch (IllegalArgumentException e)
507 getLog().error("Invalid value for configuration-option \"type\": " + this.type);
508 getLog().error("Valid values are: NONE, CREATE, DROP, BOTH");
509 throw new MojoExecutionException("Invalid value for configuration-option \"type\"");
512 if (target.equals(Target.SCRIPT) || target.equals(Target.NONE))
514 project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
518 && !target.equals(Target.SCRIPT)
519 && !target.equals(Target.NONE)
523 getLog().info("No modified annotated classes found and dialect unchanged.");
524 getLog().info("Skipping schema generation!");
525 project.getProperties().setProperty(EXPORT_SKIPPED_PROPERTY, "true");
529 getLog().info("Gathered hibernate-configuration (turn on debugging for details):");
530 for (Entry<Object,Object> entry : properties.entrySet())
531 getLog().info(" " + entry.getKey() + " = " + entry.getValue());
533 Connection connection = null;
537 * The connection must be established outside of hibernate, because
538 * hibernate does not use the context-classloader of the current
539 * thread and, hence, would not be able to resolve the driver-class!
550 Class driverClass = classLoader.loadClass(driverClassName);
551 getLog().debug("Registering JDBC-driver " + driverClass.getName());
552 DriverManager.registerDriver(new DriverProxy((Driver)driverClass.newInstance()));
553 getLog().debug("Opening JDBC-connection to " + url + " as " + username + " with password " + password);
554 connection = DriverManager.getConnection(url, username, password);
558 catch (ClassNotFoundException e)
560 getLog().error("Dependency for driver-class " + driverClassName + " is missing!");
561 throw new MojoExecutionException(e.getMessage());
565 getLog().error("Cannot establish connection to database!");
566 Enumeration<Driver> drivers = DriverManager.getDrivers();
567 if (!drivers.hasMoreElements())
568 getLog().error("No drivers registered!");
569 while (drivers.hasMoreElements())
570 getLog().debug("Driver: " + drivers.nextElement());
571 throw new MojoExecutionException(e.getMessage());
574 ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
575 MavenLogAppender.startPluginLog(this);
579 * Change class-loader of current thread, so that hibernate can
580 * see all dependencies!
582 Thread.currentThread().setContextClassLoader(classLoader);
584 SchemaExport export = new SchemaExport(config, connection);
585 export.setOutputFile(outputFile);
586 export.setDelimiter(delimiter);
587 export.setFormat(format);
588 export.execute(target, type);
590 for (Object exception : export.getExceptions())
591 getLog().debug(exception.toString());
595 /** Stop Log-Capturing */
596 MavenLogAppender.endPluginLog(this);
598 /** Restore the old class-loader (TODO: is this really necessary?) */
599 Thread.currentThread().setContextClassLoader(contextClassLoader);
601 /** Close the connection */
606 catch (SQLException e)
608 getLog().error("Error while closing connection: " + e.getMessage());
612 /** Write md5-sums for annotated classes to file */
615 FileOutputStream fos = new FileOutputStream(saved);
616 ObjectOutputStream oos = new ObjectOutputStream(fos);
617 oos.writeObject(md5s);
623 getLog().error("Cannot write md5-sums to file: " + e);
628 * Needed, because DriverManager won't pick up drivers, that were not
629 * loaded by the system-classloader!
631 * http://stackoverflow.com/questions/288828/how-to-use-a-jdbc-driver-fromodifiedm-an-arbitrary-location
633 static final class DriverProxy implements Driver
635 private final Driver target;
637 DriverProxy(Driver target)
640 throw new NullPointerException();
641 this.target = target;
644 public java.sql.Driver getTarget()
650 public boolean acceptsURL(String url) throws SQLException
652 return target.acceptsURL(url);
656 public java.sql.Connection connect(
658 java.util.Properties info
663 return target.connect(url, info);
667 public int getMajorVersion()
669 return target.getMajorVersion();
673 public int getMinorVersion()
675 return target.getMinorVersion();
679 public DriverPropertyInfo[] getPropertyInfo(
686 return target.getPropertyInfo(url, info);
690 public boolean jdbcCompliant()
692 return target.jdbcCompliant();
696 * This Method cannot be annotated with @Override, becaus the plugin
697 * will not compile then under Java 1.6!
699 public Logger getParentLogger() throws SQLFeatureNotSupportedException
701 throw new SQLFeatureNotSupportedException("Not supported, for backward-compatibility with Java 1.6");
705 public String toString()
707 return "Proxy: " + target;
711 public int hashCode()
713 return target.hashCode();
717 public boolean equals(Object obj)
719 if (!(obj instanceof DriverProxy))
721 DriverProxy other = (DriverProxy) obj;
722 return this.target.equals(other.target);