All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.hbm2ddl.TargetTypeHelper Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.tool.hbm2ddl;

import java.util.EnumSet;

import org.hibernate.tool.schema.TargetType;

/**
 * @author Steve Ebersole
 */
public class TargetTypeHelper {
	public static EnumSet parseLegacyCommandLineOptions(boolean script, boolean export, String outputFile) {
		final EnumSet options = EnumSet.noneOf( TargetType.class );

		final Target target = Target.interpret( script, export );
		if ( outputFile != null ) {
			options.add( TargetType.SCRIPT );
		}
		if ( target.doScript() ) {
			options.add( TargetType.STDOUT );
		}
		if ( target.doExport() ) {
			options.add( TargetType.DATABASE );
		}
		return options;
	}

	public static EnumSet parseCommandLineOptions(String targetTypeText) {
		final EnumSet options = EnumSet.noneOf( TargetType.class );

		if ( !targetTypeText.equalsIgnoreCase( "none" ) ) {
			for ( String option : targetTypeText.split( "," ) ) {
				if ( option.equalsIgnoreCase( "database" ) ) {
					options.add( TargetType.DATABASE );
				}
				else if ( option.equalsIgnoreCase( "stdout" ) ) {
					options.add( TargetType.STDOUT );
				}
				else if ( option.equalsIgnoreCase( "script" ) ) {
					options.add( TargetType.SCRIPT );
				}
				else {
					throw new IllegalArgumentException( "Unrecognized --target option : " + option );
				}
			}
		}

		return options;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy