⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ddlformatterimpl.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors.  All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA  02110-1301  USA * */package org.hibernate.jdbc.util;import java.util.StringTokenizer;/** * Performs formatting of DDL SQL statements. * * @author Gavin King * @author Steve Ebersole */public class DDLFormatterImpl implements Formatter {	/**	 * Format an SQL statement using simple rules<ul>	 * <li>Insert newline after each comma</li>	 * <li>Indent three spaces after each inserted newline</li>	 * </ul>	 * If the statement contains single/double quotes return unchanged,	 * it is too complex and could be broken by simple formatting.	 * 	 * @param sql The statement to be fornmatted.	 */	public String format(String sql) {		if ( sql.toLowerCase().startsWith( "create table" ) ) {			return formatCreateTable( sql );		}		else if ( sql.toLowerCase().startsWith( "alter table" ) ) {			return formatAlterTable( sql );		}		else if ( sql.toLowerCase().startsWith( "comment on" ) ) {			return formatCommentOn( sql );		}		else {			return "\n    " + sql;		}	}	private String formatCommentOn(String sql) {		StringBuffer result = new StringBuffer( 60 ).append( "\n    " );		StringTokenizer tokens = new StringTokenizer( sql, " '[]\"", true );		boolean quoted = false;		while ( tokens.hasMoreTokens() ) {			String token = tokens.nextToken();			result.append( token );			if ( isQuote( token ) ) {				quoted = !quoted;			}			else if ( !quoted ) {				if ( "is".equals( token ) ) {					result.append( "\n       " );				}			}		}		return result.toString();	}	private String formatAlterTable(String sql) {		StringBuffer result = new StringBuffer( 60 ).append( "\n    " );		StringTokenizer tokens = new StringTokenizer( sql, " (,)'[]\"", true );		boolean quoted = false;		while ( tokens.hasMoreTokens() ) {			String token = tokens.nextToken();			if ( isQuote( token ) ) {				quoted = !quoted;			}			else if ( !quoted ) {				if ( isBreak( token ) ) {					result.append( "\n        " );				}			}			result.append( token );		}		return result.toString();	}	private String formatCreateTable(String sql) {		StringBuffer result = new StringBuffer( 60 ).append( "\n    " );		StringTokenizer tokens = new StringTokenizer( sql, "(,)'[]\"", true );		int depth = 0;		boolean quoted = false;		while ( tokens.hasMoreTokens() ) {			String token = tokens.nextToken();			if ( isQuote( token ) ) {				quoted = !quoted;				result.append( token );			}			else if ( quoted ) {				result.append( token );			}			else {				if ( ")".equals( token ) ) {					depth--;					if ( depth == 0 ) {						result.append( "\n    " );					}				}				result.append( token );				if ( ",".equals( token ) && depth == 1 ) {					result.append( "\n       " );				}				if ( "(".equals( token ) ) {					depth++;					if ( depth == 1 ) {						result.append( "\n        " );					}				}			}		}		return result.toString();	}	private static boolean isBreak(String token) {		return "drop".equals( token ) ||				"add".equals( token ) ||				"references".equals( token ) ||				"foreign".equals( token ) ||				"on".equals( token );	}	private static boolean isQuote(String tok) {		return "\"".equals( tok ) ||				"`".equals( tok ) ||				"]".equals( tok ) ||				"[".equals( tok ) ||				"'".equals( tok );	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -