blob: 333145ba092c4485d991b6c9d9bef68396e56c72 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2007 The University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.
*
* This program 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, or (at your option) any later version.
*
* 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 program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
******************************************************************************/
package net.sf.taverna.t2.workflowmodel.impl;
import net.sf.taverna.t2.workflowmodel.DataflowOutputPort;
import net.sf.taverna.t2.workflowmodel.Edit;
import net.sf.taverna.t2.workflowmodel.EditException;
/**
* Abstraction of an edit acting on a DataflowOutputPort instance. Handles the check to
* see that the DataflowOutputPort supplied is really a DataflowOutputPortImpl.
*
* @author David Withers
*
*/
public abstract class AbstractDataflowOutputPortEdit implements Edit<DataflowOutputPort> {
private boolean applied = false;
private DataflowOutputPort dataflowOutputPort;
protected AbstractDataflowOutputPortEdit(DataflowOutputPort dataflowOutputPort) {
if (dataflowOutputPort == null) {
throw new RuntimeException(
"Cannot construct a DataflowOutputPort edit with null DataflowOutputPort");
}
this.dataflowOutputPort = dataflowOutputPort;
}
public final DataflowOutputPort doEdit() throws EditException {
if (applied) {
throw new EditException("Edit has already been applied!");
}
if (dataflowOutputPort instanceof DataflowOutputPortImpl == false) {
throw new EditException(
"Edit cannot be applied to a DataflowOutputPort which isn't an instance of DataflowOutputPortImpl");
}
DataflowOutputPortImpl dataflowOutputPortImpl = (DataflowOutputPortImpl) dataflowOutputPort;
try {
synchronized (dataflowOutputPortImpl) {
doEditAction(dataflowOutputPortImpl);
applied = true;
return this.dataflowOutputPort;
}
} catch (EditException ee) {
applied = false;
throw ee;
}
}
/**
* Do the actual edit here
*
* @param dataflowOutputPort
* The DataflowOutputPortImpl to which the edit applies
* @throws EditException
*/
protected abstract void doEditAction(DataflowOutputPortImpl dataflowOutputPort)
throws EditException;
/**
* Undo any edit effects here
*/
protected abstract void undoEditAction(DataflowOutputPortImpl dataflowOutputPort);
public final DataflowOutputPort getSubject() {
return dataflowOutputPort;
}
public final boolean isApplied() {
return this.applied;
}
public final void undo() {
if (!applied) {
throw new RuntimeException(
"Attempt to undo edit that was never applied");
}
DataflowOutputPortImpl dataflowOutputPortImpl = (DataflowOutputPortImpl) dataflowOutputPort;
synchronized (dataflowOutputPortImpl) {
undoEditAction(dataflowOutputPortImpl);
applied = false;
}
}
}