/*
Copyright (c) 2008 Health Market Science, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License.
This library 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 library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
You can contact Health Market Science at info@healthmarketscience.com
or at the following address:
Health Market Science
2700 Horizon Drive
Suite 200
King of Prussia, PA 19406
*/
package com.healthmarketscience.sqlbuilder;
import java.io.IOException;
import com.healthmarketscience.common.util.AppendableExt;
import com.healthmarketscience.sqlbuilder.dbspec.Column;
/**
* Query which generates a CREATE statement.
*
* @author James Ahlborn
*/
public abstract class BaseCreateQuery<ThisType extends BaseCreateQuery<ThisType>>
extends Query<ThisType>
{
protected SqlObject _object;
protected SqlObjectList<SqlObject> _columns = SqlObjectList.create();
private String _tableSpace;
protected BaseCreateQuery(SqlObject objectStr) {
_object = objectStr;
}
/**
* Sets the name of the object being created.
*/
public ThisType setName(String name) {
return setCustomName(name);
}
/**
* Sets the name of the object being created.
* <p>
* {@code Object} -> {@code SqlObject} conversions handled by
* {@link Converter#toCustomSqlObject(Object)}.
*/
public ThisType setCustomName(Object name) {
_object = Converter.toCustomSqlObject(name);
return getThisType();
}
/** Adds column descriptions for the given Columns. */
public ThisType addColumns(Column... columns) {
return addCustomColumns((Object[])columns);
}
/** Sets a specific tablespace for the table to be created in by appending
* <code>TABLESPACE <tableSpace></code> to the end of the CREATE
* query.
* <p>
* <em>WARNING, this is not ANSI SQL compliant.</em>
* */
public ThisType setTableSpace(String tableSpace) {
_tableSpace = tableSpace;
return getThisType();
}
@Override
protected void collectSchemaObjects(ValidationContext vContext) {
super.collectSchemaObjects(vContext);
_object.collectSchemaObjects(vContext);
_columns.collectSchemaObjects(vContext);
}
@Override
public void validate(ValidationContext vContext)
throws ValidationException
{
// validate super
super.validate(vContext);
// can not have a "*" in the column list
if(SelectQuery.hasAllColumns(_columns)) {
throw new ValidationException("Cannot use the '*' syntax in this query");
}
}
/**
* Appends a "TABLESPACE ..." clause to the given AppendableExt if a
* tableSpace has been specified.
*/
protected void appendTableSpace(AppendableExt app) throws IOException {
if (_tableSpace != null) {
app.append(" TABLESPACE " + _tableSpace);
}
}
/** Adds the given SqlObjects as column descriptions, according to the
subclass type. */
public abstract ThisType addCustomColumns(Object... typedColumnStrs);
/**
* @return a DropQuery for the object which would be created by this create
* query.
*/
public abstract DropQuery getDropQuery();
}