use of org.knime.core.node.workflow.WorkflowSaveHelper in project knime-core by knime.
the class WorkflowEditor method saveTo.
/**
* Save workflow to resource.
*
* @param fileResource .. the resource, usually m_fileResource or m_autoSaveFileResource or soon-to-be
* m_fileResource (for save-as)
* @param monitor ...
* @param saveWithData ... save data also
* @param newContext a new workflow context for the saved workflow; if this is non-<code>null</code>, a "save as" is
* performed
*/
private void saveTo(final URI fileResource, final IProgressMonitor monitor, final boolean saveWithData, final WorkflowContext newContext) {
LOGGER.debug("Saving workflow " + getWorkflowManager().get().getNameWithID());
// Exception messages from the inner thread
final StringBuilder exceptionMessage = new StringBuilder();
if (fileResource == null && m_parentEditor != null) {
m_parentEditor.doSave(monitor);
m_isDirty = false;
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
firePropertyChange(IEditorPart.PROP_DIRTY);
}
});
return;
}
// attach editor properties with the workflow manager - for all sub editors too
saveEditorSettingsToWorkflowManager();
/* TODO: EditorSettings should be saved on all child editors too. But this triggers them dirty. And they stay
* dirty even after save (and setting them clean!). The dirty flag is a mess. Needs to be cleaned up!
* And after that, we may not inherit the zoom level (in metanodes) from the parent anymore
* (see #applyEditorSettingsFromWorkflowManager).
* for (IEditorPart subEditor : getSubEditors()) {
* ((WorkflowEditor)subEditor).saveEditorSettingsToWorkflowManager();
* }
*/
// to be sure to mark dirty and inform the user about running nodes
// we ask for the state BEFORE saving
// this flag is evaluated at the end of this method
boolean wasInProgress = false;
try {
final File workflowDir = new File(fileResource);
AbstractSaveRunnable saveRunnable;
if (newContext != null) {
saveRunnable = new SaveAsRunnable(this, exceptionMessage, monitor, newContext);
} else {
WorkflowSaveHelper saveHelper = new WorkflowSaveHelper(saveWithData, false);
saveRunnable = new InplaceSaveRunnable(this, exceptionMessage, saveHelper, monitor, workflowDir);
}
IWorkbench wb = PlatformUI.getWorkbench();
IProgressService ps = wb.getProgressService();
NodeContainerState state = m_manager.getNodeContainerState();
wasInProgress = state.isExecutionInProgress() && !state.isExecutingRemotely();
ps.run(true, false, saveRunnable);
// this code is usually (always?) run in the UI thread but in case it's not we schedule in UI thread
// (SVG export always in UI thread)
final File svgFile = new File(workflowDir, WorkflowPersistor.SVG_WORKFLOW_FILE);
svgFile.delete();
Display.getDefault().syncExec(new Runnable() {
@Override
public void run() {
if (m_manager.isProject()) {
saveSVGImage(svgFile);
}
}
});
// mark command stack (no undo beyond this point)
getCommandStack().markSaveLocation();
} catch (Exception e) {
LOGGER.error("Could not save workflow: " + exceptionMessage, e);
// inform the user
if (exceptionMessage.length() > 0) {
showInfoMessage("Workflow could not be saved ...", exceptionMessage.toString());
}
throw new OperationCanceledException("Workflow was not saved: " + exceptionMessage.toString());
}
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
if (!Display.getDefault().isDisposed() && (m_manager != null)) {
// mark all sub editors as saved
for (IEditorPart subEditor : getSubEditors()) {
final WorkflowEditor editor = (WorkflowEditor) subEditor;
((WorkflowEditor) subEditor).setIsDirty(false);
editor.firePropertyChange(IEditorPart.PROP_DIRTY);
}
}
}
});
monitor.done();
// or simply saves (Ctrl+S)
if (wasInProgress) {
markDirty();
final Pointer<Boolean> abortPointer = new Pointer<Boolean>();
abortPointer.set(Boolean.FALSE);
Display.getDefault().syncExec(new Runnable() {
@Override
public void run() {
boolean abort = false;
Shell sh = Display.getDefault().getActiveShell();
String title = "Workflow in execution";
String message = "Executing nodes are not saved!";
if (m_isClosing) {
abort = !MessageDialog.openQuestion(sh, title, message + " Exit anyway?");
// user canceled close
m_isClosing = !abort;
} else {
IPreferenceStore prefStore = KNIMEUIPlugin.getDefault().getPreferenceStore();
String toogleMessage = "Don't warn me again";
if (prefStore.getBoolean(PreferenceConstants.P_CONFIRM_EXEC_NODES_NOT_SAVED)) {
MessageDialogWithToggle.openInformation(sh, title, message, toogleMessage, false, prefStore, PreferenceConstants.P_CONFIRM_EXEC_NODES_NOT_SAVED);
}
}
abortPointer.set(Boolean.valueOf(abort));
}
});
if (abortPointer.get()) {
throw new OperationCanceledException("Closing workflow canceled on user request.");
}
}
}
Aggregations