blob: de372eba6b1bfc6843876f076507cbc41fd3bd90 [file] [log] [blame]
/*
* Copyright (c) 2013 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.internal.db.ddl.delta;
import org.eclipse.net4j.db.DBType;
import org.eclipse.net4j.db.ddl.IDBField;
import org.eclipse.net4j.db.ddl.IDBSchema;
import org.eclipse.net4j.db.ddl.IDBTable;
import org.eclipse.net4j.db.ddl.delta.IDBDeltaVisitor;
import org.eclipse.net4j.db.ddl.delta.IDBFieldDelta;
import org.eclipse.net4j.db.ddl.delta.IDBPropertyDelta;
import org.eclipse.net4j.util.ObjectUtil;
import java.text.MessageFormat;
/**
* @author Eike Stepper
*/
public final class DBFieldDelta extends DBDeltaWithPosition implements IDBFieldDelta
{
private static final long serialVersionUID = 1L;
public DBFieldDelta(DBDelta parent, String name, ChangeKind changeKind)
{
super(parent, name, changeKind);
}
public DBFieldDelta(DBDelta parent, IDBField field, IDBField oldField)
{
this(parent, getName(field, oldField), getChangeKind(field, oldField));
DBType type = field == null ? null : field.getType();
DBType oldType = oldField == null ? null : oldField.getType();
if (!ObjectUtil.equals(type, oldType))
{
addPropertyDelta(new DBPropertyDelta<DBType>(this, TYPE_PROPERTY, IDBPropertyDelta.Type.STRING, type, oldType));
}
Integer precision = field == null ? null : field.getPrecision();
Integer oldPrecision = oldField == null ? null : oldField.getPrecision();
if (!ObjectUtil.equals(precision, oldPrecision))
{
addPropertyDelta(new DBPropertyDelta<Integer>(this, PRECISION_PROPERTY, IDBPropertyDelta.Type.INTEGER, precision,
oldPrecision));
}
Integer scale = field == null ? null : field.getScale();
Integer oldScale = oldField == null ? null : oldField.getScale();
if (!ObjectUtil.equals(scale, oldScale))
{
addPropertyDelta(
new DBPropertyDelta<Integer>(this, SCALE_PROPERTY, IDBPropertyDelta.Type.INTEGER, scale, oldScale));
}
Boolean notNull = field == null ? null : field.isNotNull();
Boolean oldNotNull = oldField == null ? null : oldField.isNotNull();
if (!ObjectUtil.equals(notNull, oldNotNull))
{
addPropertyDelta(
new DBPropertyDelta<Boolean>(this, NOT_NULL_PROPERTY, IDBPropertyDelta.Type.BOOLEAN, notNull, oldNotNull));
}
Integer position = field == null ? null : field.getPosition();
Integer oldPosition = oldField == null ? null : oldField.getPosition();
if (!ObjectUtil.equals(position, oldPosition))
{
addPropertyDelta(
new DBPropertyDelta<Integer>(this, POSITION_PROPERTY, IDBPropertyDelta.Type.INTEGER, position, oldPosition));
}
}
/**
* Constructor for deserialization.
*/
protected DBFieldDelta()
{
}
public DeltaType getDeltaType()
{
return DeltaType.FIELD;
}
@Override
public DBTableDelta getParent()
{
return (DBTableDelta)super.getParent();
}
public IDBField getSchemaElement(IDBSchema schema)
{
IDBTable table = getParent().getSchemaElement(schema);
if (table == null)
{
return null;
}
return table.getField(getName());
}
@Override
public String toString()
{
return MessageFormat.format("DBFieldDelta[name={0}, kind={1}, propertyDeltas={2}]", getName(), getChangeKind(),
getPropertyDeltas().values());
}
@Override
protected void doAccept(IDBDeltaVisitor visitor)
{
visitor.visit(this);
}
}