blob: 2da468b89e0b121c458e5ba86552a6e9d3992fff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.tools.schemaframework;
import java.io.*;
import org.eclipse.persistence.internal.databaseaccess.*;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.exceptions.*;
/**
* <p>
* <b>Purpose</b>: Allow for creation of nested table types.
* <p>
*/
public class NestedTableDefinition extends DatabaseObjectDefinition {
protected int typeSize;
protected Class type;
protected String typeName;
public NestedTableDefinition() {
super();
}
/**
* INTERNAL:
* Append the type to the statement
*/
public void appendTypeString(Writer writer, AbstractSession session) throws ValidationException {
FieldTypeDefinition fieldType;
if (getType() != null) {
fieldType = session.getPlatform().getFieldTypeDefinition(getType());
if (fieldType == null) {
throw ValidationException.javaTypeIsNotAValidDatabaseType(getType());
}
} else {
fieldType = new FieldTypeDefinition(getTypeName());
}
try {
writer.write(fieldType.getName());
if ((fieldType.isSizeAllowed()) && ((getTypeSize() != 0) || (fieldType.isSizeRequired()))) {
writer.write("(");
if (getTypeSize() == 0) {
writer.write(Integer.valueOf(fieldType.getDefaultSize()).toString());
} else {
writer.write(Integer.valueOf(getTypeSize()).toString());
}
writer.write(")");
}
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}
}
/**
* INTERNAL:
* Return the DDL to create the varray.
*/
public Writer buildCreationWriter(AbstractSession session, Writer writer) throws ValidationException {
try {
writer.write("CREATE TYPE ");
writer.write(getFullName());
writer.write(" AS TABLE OF ");
appendTypeString(writer, session);
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}
return writer;
}
/**
* INTERNAL:
* Return the DDL to drop the varray.
*/
public Writer buildDeletionWriter(AbstractSession session, Writer writer) throws ValidationException {
try {
writer.write("DROP TYPE " + getFullName());
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}
return writer;
}
/**
* PUBLIC:
* Return the type of the field.
* This should be set to a java class, such as String.class, Integer.class or Date.class.
*/
public Class getType() {
return type;
}
/**
* PUBLIC:
* Return the type of the field.
* This is the exact DB type name, which can be used instead of the Java class.
*/
public String getTypeName() {
return typeName;
}
/**
* PUBLIC:
* Return the size of the element field, this is only required for some field types.
*/
public int getTypeSize() {
return typeSize;
}
/**
* PUBLIC:
* Set the type of the field.
* This should be set to a java class, such as String.class, Integer.class or Date.class.
*/
public void setType(Class type) {
this.type = type;
}
/**
* PUBLIC:
* Set the type of the field.
* This is the exact DB type name, which can be used instead of the Java class.
*/
public void setTypeName(String typeName) {
this.typeName = typeName;
}
/**
* PUBLIC:
* Set the size of the element field, this is only required for some field types.
*/
public void setTypeSize(int typeSize) {
this.typeSize = typeSize;
}
}