use of org.knime.workbench.explorer.view.ContentObject in project knime-core by knime.
the class WorkflowEditor method getNewLocation.
/**
* For SaveAs...
* @param currentLocation
* @param allowRemoteLocation local and remote mount points are added to the selection dialog
* @return new (different!) URI or null if user canceled. Caller should create a snapshot if told so.
*/
private OverwriteAndMergeInfo getNewLocation(final URI currentLocation, final boolean allowRemoteLocation) {
final AbstractExplorerFileStore currentStore = getFileStore(currentLocation);
AbstractExplorerFileStore currentParent = null;
if (currentStore != null) {
currentParent = currentStore.getParent();
}
String currentName = new Path(currentLocation.getPath()).lastSegment();
List<String> selIDs = new LinkedList<String>();
for (String id : ExplorerMountTable.getAllVisibleMountIDs()) {
AbstractContentProvider provider = ExplorerMountTable.getMountPoint(id).getProvider();
if (!provider.isRemote() || (allowRemoteLocation && provider.isWritable())) {
selIDs.add(id);
}
}
ContentObject preSel = ContentObject.forFile(currentParent);
if (isTempRemoteWorkflowEditor()) {
AbstractExplorerFileStore remoteStore = null;
try {
remoteStore = ExplorerFileSystem.INSTANCE.getStore(m_origRemoteLocation);
} catch (IllegalArgumentException e) {
/* don't preselect on unknown original location */
}
if (remoteStore != null) {
preSel = ContentObject.forFile(remoteStore);
} else {
preSel = null;
}
}
OverwriteAndMergeInfo result = null;
while (result == null) {
// keep the selection dialog open until we get a useful result
final SpaceResourceSelectionDialog dialog = new SpaceResourceSelectionDialog(getSite().getShell(), selIDs.toArray(new String[selIDs.size()]), preSel);
SaveAsValidator validator = new SaveAsValidator(dialog, currentStore);
String defName = currentName + " - Copy";
if (!isTempRemoteWorkflowEditor()) {
if (currentParent != null) {
try {
Set<String> childs = new HashSet<String>(Arrays.asList(currentParent.childNames(EFS.NONE, null)));
defName = guessNewWorkflowNameOnSaveAs(childs, currentName);
} catch (CoreException e1) {
// keep the simple default
}
}
} else {
defName = currentName;
if (defName.endsWith("." + KNIMEConstants.KNIME_WORKFLOW_FILE_EXTENSION)) {
defName = defName.substring(0, defName.length() - KNIMEConstants.KNIME_WORKFLOW_FILE_EXTENSION.length() - 1);
}
}
dialog.setTitle("Save to new Location");
dialog.setDescription("Select the new destination workflow group for the workflow.");
dialog.setValidator(validator);
// Setup the name field of the dialog
dialog.setNameFieldEnabled(true);
dialog.setNameFieldDefaultValue(defName);
final AtomicBoolean proceed = new AtomicBoolean(false);
Display.getDefault().syncExec(new Runnable() {
@Override
public void run() {
proceed.set(dialog.open() == Window.OK);
}
});
if (!proceed.get()) {
return null;
}
AbstractExplorerFileStore newLocation = dialog.getSelection();
if (newLocation.fetchInfo().isWorkflowGroup()) {
newLocation = newLocation.getChild(dialog.getNameFieldValue());
} else {
// in case they have selected a flow but changed the name in the name field afterwards
newLocation = newLocation.getParent().getChild(dialog.getNameFieldValue());
}
assert !newLocation.fetchInfo().exists() || newLocation.fetchInfo().isWorkflow();
if (newLocation.fetchInfo().exists()) {
// confirm overwrite (with snapshot?)
final AtomicBoolean snapshotSupported = new AtomicBoolean(false);
final AtomicReference<SnapshotPanel> snapshotPanel = new AtomicReference<SnapshotPanel>(null);
if (newLocation.getContentProvider().supportsSnapshots() && (newLocation instanceof RemoteExplorerFileStore)) {
snapshotSupported.set(true);
}
MessageDialog dlg = new MessageDialog(getSite().getShell(), "Confirm SaveAs Overwrite", null, "The selected destination\n\n\t" + newLocation.getMountIDWithFullPath() + "\n\nalready exists. Do you want to overwrite?\n", MessageDialog.QUESTION, new String[] { IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL, IDialogConstants.CANCEL_LABEL }, 1) {
/**
* {@inheritDoc}
*/
@Override
protected Control createCustomArea(final Composite parent) {
if (snapshotSupported.get()) {
snapshotPanel.set(new SnapshotPanel(parent, SWT.NONE));
snapshotPanel.get().setEnabled(true);
return snapshotPanel.get();
} else {
return null;
}
}
};
int dlgResult = dlg.open();
if (dlgResult == 2) /* CANCEL */
{
return null;
}
if (dlgResult == 0) {
/* YES (= please overwrite) */
if (snapshotPanel.get() != null) {
SnapshotPanel snapPanel = snapshotPanel.get();
result = new OverwriteAndMergeInfo(newLocation.toURI().toASCIIString(), false, true, snapPanel.createSnapshot(), snapPanel.getComment());
} else {
result = new OverwriteAndMergeInfo(newLocation.toURI().toASCIIString(), false, true, false, "");
}
} else {
/* NO, don't overwrite: continue while loop asking for a different location */
preSel = ContentObject.forFile(newLocation);
currentName = newLocation.getName();
}
} else {
result = new OverwriteAndMergeInfo(newLocation.toURI().toASCIIString(), false, false, false, "");
}
}
/* end of while (result != null) keep the target selection dialog open */
return result;
}
use of org.knime.workbench.explorer.view.ContentObject in project knime-core by knime.
the class WorkflowEditorSelectionDropListener method handleDrop.
/**
* {@inheritDoc}
*/
@Override
protected void handleDrop() {
ContentObject obj = getDragResources(getCurrentEvent());
try {
URL url = obj.getObject().toURI().toURL();
getFactory().setReaderNodeSettings(new ReaderNodeSettings(getNodeFactory(url), url));
super.handleDrop();
} catch (MalformedURLException e) {
LOGGER.error(e);
}
}
use of org.knime.workbench.explorer.view.ContentObject in project knime-core by knime.
the class SaveAsMetaNodeTemplateAction method runOnNodes.
/**
* {@inheritDoc}
*/
@Override
public void runOnNodes(final NodeContainerEditPart[] nodes) {
if (nodes.length < 1) {
return;
}
WorkflowManager wm = Wrapper.unwrapWFM(nodes[0].getNodeContainer());
List<String> validMountPointList = new ArrayList<String>();
// Workbench.getInstance().getActiveWorkbenchWindow().getActivePage().findView(ID)
for (Map.Entry<String, AbstractContentProvider> entry : ExplorerMountTable.getMountedContent().entrySet()) {
AbstractContentProvider contentProvider = entry.getValue();
if (contentProvider.isWritable() && contentProvider.canHostMetaNodeTemplates()) {
validMountPointList.add(entry.getKey());
}
}
if (validMountPointList.isEmpty()) {
throw new IllegalStateException("No valid mount points found - " + "this is inconsistent with calculateEnabled()");
}
String[] validMountPoints = validMountPointList.toArray(new String[0]);
final Shell shell = Display.getCurrent().getActiveShell();
ContentObject defSel = getDefaultSaveLocation(wm);
SpaceResourceSelectionDialog dialog = new SpaceResourceSelectionDialog(shell, validMountPoints, defSel);
dialog.setTitle("Save As Metanode Template");
dialog.setHeader("Select destination workflow group for metanode template");
dialog.setValidator(new Validator() {
@Override
public String validateSelectionValue(final AbstractExplorerFileStore selection, final String name) {
final AbstractExplorerFileInfo info = selection.fetchInfo();
if (info.isWorkflowGroup()) {
return null;
}
return "Only workflow groups can be selected as target.";
}
});
if (dialog.open() != Window.OK) {
return;
}
AbstractExplorerFileStore target = dialog.getSelection();
AbstractContentProvider contentProvider = target.getContentProvider();
contentProvider.saveMetaNodeTemplate(wm, target);
}
use of org.knime.workbench.explorer.view.ContentObject in project knime-core by knime.
the class SaveAsSubNodeTemplateAction method runOnNodes.
/**
* {@inheritDoc}
*/
@Override
public void runOnNodes(final NodeContainerEditPart[] nodes) {
if (nodes.length < 1) {
return;
}
SubNodeContainer snc = unwrap(nodes[0].getNodeContainer(), SubNodeContainer.class);
WorkflowManager wm = snc.getWorkflowManager();
List<String> validMountPointList = new ArrayList<String>();
for (Map.Entry<String, AbstractContentProvider> entry : ExplorerMountTable.getMountedContent().entrySet()) {
AbstractContentProvider contentProvider = entry.getValue();
if (contentProvider.isWritable() && contentProvider.canHostMetaNodeTemplates()) {
validMountPointList.add(entry.getKey());
}
}
if (validMountPointList.isEmpty()) {
throw new IllegalStateException("No valid mount points found - " + "this is inconsistent with calculateEnabled()");
}
String[] validMountPoints = validMountPointList.toArray(new String[0]);
final Shell shell = Display.getCurrent().getActiveShell();
ContentObject defSel = getDefaultSaveLocation(wm);
SpaceResourceSelectionDialog dialog = new SpaceResourceSelectionDialog(shell, validMountPoints, defSel);
dialog.setTitle("Save As Wrapped Metanode Template");
dialog.setHeader("Select destination workflow group for Wrapped Metanode template");
dialog.setValidator(new Validator() {
@Override
public String validateSelectionValue(final AbstractExplorerFileStore selection, final String name) {
final AbstractExplorerFileInfo info = selection.fetchInfo();
if (info.isWorkflowGroup()) {
return null;
}
return "Only workflow groups can be selected as target.";
}
});
if (dialog.open() != Window.OK) {
return;
}
AbstractExplorerFileStore target = dialog.getSelection();
AbstractContentProvider contentProvider = target.getContentProvider();
contentProvider.saveSubNodeTemplate(snc, target);
}
use of org.knime.workbench.explorer.view.ContentObject in project knime-core by knime.
the class WorkflowEditorDropTargetListener method getDragResources.
/**
* @param event the drop target event
* @return the first dragged resource or null if the event contains a resource that is not of type
* {@link ContentObject}
*/
protected ContentObject getDragResources(final DropTargetEvent event) {
LocalSelectionTransfer transfer = (LocalSelectionTransfer) getTransfer();
ISelection selection = transfer.getSelection();
if (selection instanceof IStructuredSelection) {
IStructuredSelection ss = (IStructuredSelection) selection;
Object firstElement = ss.getFirstElement();
if (firstElement instanceof ContentObject) {
return (ContentObject) firstElement;
}
}
return null;
}
Aggregations