blob: aa3da07bd44d4e08e5b2d8091c7af469f98b1352 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// 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
* @param writer Target writer where to write type string.
* @param session Current session context.
* @throws ValidationException When invalid or inconsistent data were found.
*/
public void appendTypeString(final Writer writer, final AbstractSession session)
throws ValidationException {
final FieldTypeDefinition fieldType = getFieldTypeDefinition(session, type, typeName);
try {
writer.write(fieldType.getName());
if ((fieldType.isSizeAllowed()) && ((typeSize != 0) || (fieldType.isSizeRequired()))) {
writer.write("(");
if (typeSize == 0) {
writer.write(Integer.toString(fieldType.getDefaultSize() ));
} else {
writer.write(Integer.toString(typeSize));
}
writer.write(")");
}
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}
}
/**
* INTERNAL:
* Return the DDL to create the varray.
*/
@Override
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.
*/
@Override
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;
}
}