DefaultDiagramService.java
/**
* Copyright (c) 2004-2025 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party benefici-
* aries to this license with respect to the terms applicable to their Third Party Software. Third Party Software li-
* censes only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*/
package org.osate.ge.internal.services.impl;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.ArrayContentProvider;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.ListDialog;
import org.eclipse.ui.statushandlers.StatusManager;
import org.osate.ge.CanonicalBusinessObjectReference;
import org.osate.ge.DiagramType;
import org.osate.ge.GraphicalEditor;
import org.osate.ge.ProjectUtil;
import org.osate.ge.RelativeBusinessObjectReference;
import org.osate.ge.internal.AgeDiagramProvider;
import org.osate.ge.internal.GraphicalEditorException;
import org.osate.ge.internal.diagram.runtime.AgeDiagram;
import org.osate.ge.internal.diagram.runtime.DiagramConfigurationBuilder;
import org.osate.ge.internal.diagram.runtime.DiagramElement;
import org.osate.ge.internal.diagram.runtime.DiagramModification;
import org.osate.ge.internal.diagram.runtime.DiagramNode;
import org.osate.ge.internal.diagram.runtime.DiagramSerialization;
import org.osate.ge.internal.diagram.runtime.types.UnrecognizedDiagramType;
import org.osate.ge.internal.indexing.SavedDiagramIndex;
import org.osate.ge.internal.indexing.SavedDiagramIndexInvalidator;
import org.osate.ge.internal.services.DiagramService;
import org.osate.ge.internal.services.ExtensionRegistryService;
import org.osate.ge.internal.services.ReferenceService;
import org.osate.ge.internal.ui.dialogs.CreateDiagramDialog;
import org.osate.ge.internal.ui.dialogs.DefaultCreateDiagramModel;
import org.osate.ge.internal.ui.editor.InternalDiagramEditor;
import org.osate.ge.internal.ui.util.EditorUtil;
import org.osate.ge.internal.util.BusinessObjectProviderHelper;
import org.osate.ge.internal.util.Log;
import org.osgi.framework.FrameworkUtil;
import com.google.common.collect.ImmutableSet;
/**
* {@link DiagramService} implementation
*
*/
public class DefaultDiagramService implements DiagramService {
private final ReferenceService referenceService;
private final ExtensionRegistryService extRegistry;
/**
* Context function which instantiates this service
*/
public static class ContextFunction extends SimpleServiceContextFunction<DiagramService> {
@Override
public DiagramService createService(final IEclipseContext context) {
return new DefaultDiagramService(context.get(ReferenceService.class),
context.get(ExtensionRegistryService.class));
}
@Override
protected void deactivate() {
// Dispose the service if it is valid
final DiagramService service = getService();
if (service instanceof DefaultDiagramService) {
((DefaultDiagramService) service).dispose();
}
super.deactivate();
}
}
// Implementation of DiagramReference
private static class InternalDiagramReference implements DiagramReference {
private final SavedDiagramIndex.DiagramIndexEntry indexEntry;
private final InternalDiagramEditor editor;
private InternalDiagramReference(final SavedDiagramIndex.DiagramIndexEntry indexEntry,
final InternalDiagramEditor editor) {
this.indexEntry = Objects.requireNonNull(indexEntry, "indexEntry must not be null");
this.editor = editor;
}
@Override
public boolean isValid() {
return indexEntry.getDiagramTypeId() != null;
}
@Override
public IFile getFile() {
return indexEntry.getDiagramFile();
}
public InternalDiagramEditor getEditor() {
return editor;
}
@Override
public boolean isOpen() {
return editor != null;
}
@Override
public String getDiagramTypeId() {
return indexEntry.getDiagramTypeId();
}
@Override
public CanonicalBusinessObjectReference getContextReference() {
return indexEntry.getContext();
}
}
private BusinessObjectProviderHelper bopHelper;
private SavedDiagramIndex savedDiagramIndex;
private SavedDiagramIndexInvalidator indexUpdater;
private DefaultDiagramService(final ReferenceService referenceBuilder, final ExtensionRegistryService extRegistry) {
this.referenceService = Objects.requireNonNull(referenceBuilder, "referenceBuilder must not be null");
this.extRegistry = Objects.requireNonNull(extRegistry, "extRegistry must not be null");
this.bopHelper = new BusinessObjectProviderHelper(extRegistry);
this.savedDiagramIndex = new SavedDiagramIndex(referenceBuilder, bopHelper);
this.indexUpdater = new SavedDiagramIndexInvalidator(savedDiagramIndex);
// Register the index updater
final IWorkspace workspace = ResourcesPlugin.getWorkspace();
workspace.addResourceChangeListener(indexUpdater);
}
private void dispose() {
final IWorkspace workspace = ResourcesPlugin.getWorkspace();
workspace.removeResourceChangeListener(indexUpdater);
}
@Override
public List<InternalDiagramReference> findDiagramsByContextBusinessObject(final Object bo) {
final CanonicalBusinessObjectReference boReference = referenceService.getCanonicalReference(bo);
if (boReference == null) {
throw new GraphicalEditorException("Unable to get canonical reference for business object : " + bo);
}
final IProject project = ProjectUtil.getProjectForBoOrThrow(bo);
// Build a set containing the project containing the business object and all projects which reference that project.
final HashSet<IProject> relevantProjects = new HashSet<>();
relevantProjects.add(project);
for (final IProject referencingProject : project.getReferencingProjects()) {
if (referencingProject.isAccessible()) {
relevantProjects.add(referencingProject);
}
}
final Map<IFile, InternalDiagramEditor> fileToEditorMap = getOpenEditorsMap(relevantProjects);
// Add saved diagram files if they are not open
return savedDiagramIndex.getDiagramsByContext(relevantProjects.stream(), boReference)
.stream()
.map(e -> new InternalDiagramReference(e, fileToEditorMap.get(e.getDiagramFile())))
.collect(Collectors.toList());
}
@Override
public GraphicalEditor openOrCreateDiagramForBusinessObject(final Object bo, final boolean promptForCreate,
final boolean promptForConfigureAfterCreate) {
// Look for an existing diagram
final List<InternalDiagramReference> diagramRefs = findDiagramsByContextBusinessObject(bo).stream()
.filter(InternalDiagramReference::isValid)
.collect(Collectors.toList());
// If there is just one diagram, open it
if (diagramRefs.size() == 1) {
final InternalDiagramReference diagramRef = diagramRefs.get(0);
if (diagramRef.isOpen()) {
Log.info("Existing diagram found. Activating existing editor...");
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().activate(diagramRef.getEditor());
return diagramRef.getEditor();
} else {
Log.info("Existing diagram found. Opening new editor...");
return EditorUtil.openEditor(diagramRef.getFile(), false);
}
} else if (diagramRefs.isEmpty()) {
// Prompt user to determine whether a new diagram should be created
if (!promptForCreate || MessageDialog.openQuestion(null, "Create New Diagram?",
"An existing diagram was not found for the specified model element.\nCreate new diagram?")) {
// Create and open a new diagram
final IFile diagramFile = createDiagram(bo);
if (diagramFile == null) {
return null;
}
return EditorUtil.openEditor(diagramFile, promptForConfigureAfterCreate);
} else {
return null;
}
} else {
final DiagramReference diagramRef = promptForDiagram(diagramRefs);
return diagramRef == null ? null : EditorUtil.openEditor(diagramRef.getFile(), false);
}
}
private InternalDiagramReference promptForDiagram(final List<InternalDiagramReference> diagramRefs) {
// Sort the diagram references
final InternalDiagramReference[] sortedDiagramRefs = diagramRefs.stream()
.sorted((r1, r2) -> r1.getFile().getName().compareToIgnoreCase(r2.getFile().getName()))
.toArray(InternalDiagramReference[]::new);
// Prompt user to select a single dialog reference
final ListDialog dialog = new ListDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
dialog.setAddCancelButton(true);
dialog.setTitle("Select Diagram");
dialog.setMessage("Select a Diagram to Open");
dialog.setWidthInChars(90);
dialog.setLabelProvider(new LabelProvider() {
@Override
public String getText(final Object element) {
if (element instanceof InternalDiagramReference) {
final InternalDiagramReference diagramRef = (InternalDiagramReference) element;
final String diagramTypeName = extRegistry.getDiagramTypeById(diagramRef.getDiagramTypeId())
.orElseGet(() -> new UnrecognizedDiagramType(diagramRef.getDiagramTypeId()))
.getName();
return diagramRef.getFile().getName() + " (" + diagramTypeName + ")";
}
return super.getText(element);
}
});
dialog.setContentProvider(new ArrayContentProvider());
dialog.setInput(sortedDiagramRefs);
dialog.setInitialElementSelections(Collections.singletonList(sortedDiagramRefs[0]));
dialog.open();
final Object[] result = dialog.getResult();
return (result != null && result.length > 0) ? (InternalDiagramReference) result[0] : null;
}
@Override
public IFile createDiagram(final Object contextBo) {
final IProject project = ProjectUtil.getProjectForBoOrThrow(contextBo);
// Prompt to determine the filepath and diagram type.
final CreateDiagramDialog.Model<DiagramType> createDiagramModel = new DefaultCreateDiagramModel(extRegistry,
project, contextBo);
final CreateDiagramDialog.Result<DiagramType> result = CreateDiagramDialog.show(null, createDiagramModel);
if (result == null) {
return null;
}
createDiagram(result.getDiagramFile(), result.getDiagramType(), contextBo);
return result.getDiagramFile();
}
@Override
public void createDiagram(final IFile diagramFile, final DiagramType diagramType, final Object contextBo) {
// Create an AgeDiagram object. This object doesn't have to be completely valid. It just needs to be able to be written.
final AgeDiagram diagram = new AgeDiagram();
// Build diagram configuration
final CanonicalBusinessObjectReference contextBoCanonicalRef = contextBo == null ? null
: Objects.requireNonNull(referenceService.getCanonicalReference(contextBo),
"Unable to build canonical reference for business object: " + contextBo);
diagram.modify("Configure Diagram",
m -> m.setDiagramConfiguration(
new DiagramConfigurationBuilder(diagramType, true).contextBoReference(contextBoCanonicalRef)
.connectionPrimaryLabelsVisible(false)
.build()));
final URI newDiagramUri = URI.createPlatformResourceURI(diagramFile.getFullPath().toString(), true);
DiagramSerialization.write(diagramFile.getProject(), diagram, newDiagramUri);
try {
diagramFile.refreshLocal(IResource.DEPTH_INFINITE, null);
} catch (final CoreException e) {
throw new GraphicalEditorException(e);
}
}
@Override
public List<DiagramReference> findDiagrams(final Set<IProject> projects) {
final Map<IFile, InternalDiagramEditor> fileToEditorMap = getOpenEditorsMap(projects);
// Add saved diagram files if they are not open
return savedDiagramIndex.getDiagramsByProject(projects.stream())
.stream()
.map(e -> new InternalDiagramReference(e, fileToEditorMap.get(e.getDiagramFile())))
.collect(Collectors.toList());
}
private static Map<IFile, InternalDiagramEditor> getOpenEditorsMap(final Collection<IProject> projects) {
final Map<IFile, InternalDiagramEditor> fileToEditorMap = new HashMap<>();
for (final IEditorReference editorRef : PlatformUI.getWorkbench()
.getActiveWorkbenchWindow()
.getActivePage()
.getEditorReferences()) {
final IEditorPart editor = editorRef.getEditor(false); // If restore is true then the editor is automatically updated
if (editor instanceof InternalDiagramEditor) {
final InternalDiagramEditor diagramEditor = (InternalDiagramEditor) editor;
final IProject project = diagramEditor.getProject();
if (projects.contains(project)) {
final IFile file = diagramEditor.getDiagramFile();
if (file != null) {
fileToEditorMap.put(file, diagramEditor);
}
}
}
}
return fileToEditorMap;
}
private class InternalReferencesToUpdate implements ReferenceCollection {
// Mapping from internal diagram references to a mapping from original diagram reference to lists of references to update
// Key should be an IFile or a InternalDiagramEditor
private final Map<Object, Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>>> sourceToCanonicalReferenceToReferencesMap = new HashMap<>();
@Override
public void update(final UpdatedReferenceValueProvider updatedReferenceValues) {
Display.getDefault().syncExec(() -> {
for (final Entry<Object, Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>>> sourceToCanonicalReferenceToReferencesEntry : sourceToCanonicalReferenceToReferencesMap
.entrySet()) {
final Object key = sourceToCanonicalReferenceToReferencesEntry.getKey();
final Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>> originalCanonicalRefToReferenceMap = sourceToCanonicalReferenceToReferencesEntry
.getValue();
if (key instanceof InternalDiagramEditor) {
final InternalDiagramEditor editor = (InternalDiagramEditor) key;
// NonUndoableToolCommand
editor.modifyDiagram("Update References", m -> updateReferences(updatedReferenceValues,
originalCanonicalRefToReferenceMap, null, m));
// Ensure that the editor is updated on the next model change
editor.forceDiagramUpdateOnNextModelChange();
} else if (key instanceof IFile) {
final IFile diagramFile = (IFile) key;
// Handle closed diagrams
// Don't attempt to edit read only files.
if (!diagramFile.isReadOnly()) {
final ResourceSet rs = new ResourceSetImpl();
final URI diagramUri = URI.createPlatformResourceURI(diagramFile.getFullPath().toString(),
true);
final Resource diagramResource = rs.createResource(diagramUri);
try {
diagramResource.load(Collections.emptyMap());
if (diagramResource.getContents().size() == 1 && diagramResource.getContents()
.get(0) instanceof org.osate.ge.diagram.Diagram) {
updateReferences(updatedReferenceValues, originalCanonicalRefToReferenceMap,
diagramResource, null);
}
} catch (IOException e) {
// Ignore. Continue with next file
} finally {
// Save and unload the resource if it was loaded
if (diagramResource.isLoaded()) {
try {
diagramResource.save(Collections.emptyMap());
} catch (final IOException e) {
// Log and ignore
StatusManager.getManager()
.handle(new Status(IStatus.ERROR,
FrameworkUtil.getBundle(getClass()).getSymbolicName(),
"Error saving diagram resource", e), StatusManager.LOG);
}
diagramResource.unload();
}
}
}
} else {
throw new GraphicalEditorException("Unexpected key: " + key);
}
}
});
}
@Override
public ImmutableSet<IFile> getRelatedDiagramFiles() {
final ImmutableSet.Builder<IFile> diagramFileSetsBuilder = ImmutableSet.builder();
Display.getDefault().syncExec(() -> {
for (final Entry<Object, Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>>> sourceToCanonicalReferenceToReferencesEntry : sourceToCanonicalReferenceToReferencesMap
.entrySet()) {
final Object key = sourceToCanonicalReferenceToReferencesEntry.getKey();
if (key instanceof InternalDiagramEditor) {
final InternalDiagramEditor editor = (InternalDiagramEditor) key;
final IFile diagramFile = editor.getDiagramFile();
if (diagramFile != null) {
diagramFileSetsBuilder.add(diagramFile);
}
} else if (key instanceof IFile) {
final IFile diagramFile = (IFile) key;
diagramFileSetsBuilder.add(diagramFile);
} else {
throw new GraphicalEditorException("Unexpected key: " + key);
}
}
});
return diagramFileSetsBuilder.build();
}
private void updateReferences(final UpdatedReferenceValueProvider newBoReferences,
final Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>> originalCanonicalRefToReferenceMap,
final Resource diagramResource, final DiagramModification diagramModification) {
try {
referenceUpdateResource = diagramResource;
referenceUpdateModification = diagramModification;
for (final Entry<CanonicalBusinessObjectReference, Collection<UpdateableReference>> originalCanonicalRefToReferencesToUpdateEntry : originalCanonicalRefToReferenceMap
.entrySet()) {
final CanonicalBusinessObjectReference originalCanonicalReference = originalCanonicalRefToReferencesToUpdateEntry
.getKey();
final CanonicalBusinessObjectReference newCanonicalReference = newBoReferences
.getNewCanonicalReference(originalCanonicalReference);
final RelativeBusinessObjectReference newRelativeReference = newBoReferences
.getNewRelativeReference(originalCanonicalReference);
if (newCanonicalReference != null && newRelativeReference != null) {
for (final UpdateableReference referenceToUpdate : originalCanonicalRefToReferencesToUpdateEntry
.getValue()) {
referenceToUpdate.update(newCanonicalReference, newRelativeReference);
}
}
}
} finally {
referenceUpdateResource = null;
referenceUpdateModification = null;
}
}
public void addReference(final Object source, final CanonicalBusinessObjectReference originalCanonicalReference,
final UpdateableReference reference) {
if (!(source instanceof InternalDiagramEditor || source instanceof IFile)) {
throw new GraphicalEditorException("source must be a diagram editor or a file");
}
// Add Reference to the collection
final Map<CanonicalBusinessObjectReference, Collection<UpdateableReference>> canonicalReferenceToUpdateableReferenceMap = sourceToCanonicalReferenceToReferencesMap
.computeIfAbsent(source, (k) -> new HashMap<>());
final Collection<UpdateableReference> updateableReferences = canonicalReferenceToUpdateableReferenceMap
.computeIfAbsent(originalCanonicalReference, (k) -> new ArrayList<>());
updateableReferences.add(reference);
}
}
// Variables used during the update process
private Resource referenceUpdateResource;
private DiagramModification referenceUpdateModification;
private interface UpdateableReference {
void update(CanonicalBusinessObjectReference newCanonicalReference,
RelativeBusinessObjectReference newRelativeReference);
}
//
// Updateable Reference Implementations
//
// Reference to the context field in an open diagram's configuration
private class OpenDiagramContextReference implements UpdateableReference {
private final AgeDiagram diagram;
public OpenDiagramContextReference(final AgeDiagram diagram) {
this.diagram = Objects.requireNonNull(diagram, "diagram must not be null");
}
@Override
public void update(CanonicalBusinessObjectReference newCanonicalReference,
RelativeBusinessObjectReference newRelativeReference) {
diagram.modify("Configure Diagram",
m -> m.setDiagramConfiguration(new DiagramConfigurationBuilder(diagram.getConfiguration())
.contextBoReference(newCanonicalReference)
.build()));
}
}
// Reference to the reference of an open diagram element
private class OpenDiagramElementReference implements UpdateableReference {
private final DiagramElement diagramElement;
public OpenDiagramElementReference(final DiagramElement diagramElement) {
this.diagramElement = Objects.requireNonNull(diagramElement, "diagramElement must not be null");
}
@Override
public void update(final CanonicalBusinessObjectReference newCanonicalReference,
final RelativeBusinessObjectReference newRelativeReference) {
// The diagram element's business object is not updated because it is not available at this point.
// In the case of a rename refactoring, the object would be available during the rename but not during undo.
referenceUpdateModification.updateBusinessObject(diagramElement, diagramElement.getBusinessObject(),
newRelativeReference);
}
}
// Reference to the context field in an saved diagram configuration
private class SavedDiagramContextReference implements UpdateableReference {
@Override
public void update(final CanonicalBusinessObjectReference newCanonicalReference,
final RelativeBusinessObjectReference newRelativeReference) {
final org.osate.ge.diagram.Diagram mmDiagram = (org.osate.ge.diagram.Diagram) referenceUpdateResource
.getContents()
.get(0);
// Get the Context Business Object
final org.osate.ge.diagram.DiagramConfiguration config = mmDiagram.getConfig();
if (config != null) {
config.setContext(newCanonicalReference.toMetamodel());
}
}
}
// Reference to the context field in an saved diagram element
private class SavedDiagramElementReference implements UpdateableReference {
private final URI diagramElementUri;
public SavedDiagramElementReference(final URI diagramElementUri) {
this.diagramElementUri = Objects.requireNonNull(diagramElementUri, "diagramElementUri must not be null");
}
@Override
public void update(final CanonicalBusinessObjectReference newCanonicalReference,
final RelativeBusinessObjectReference newRelativeReference) {
final org.osate.ge.diagram.RelativeBusinessObjectReference mmRelRef = newRelativeReference.toMetamodel();
if (mmRelRef != null) {
final org.osate.ge.diagram.DiagramElement diagramElement = (org.osate.ge.diagram.DiagramElement) referenceUpdateResource
.getEObject(diagramElementUri.fragment());
if (diagramElement == null) {
throw new GraphicalEditorException("Unable to retrieve diagram element");
}
if (diagramElement.eIsProxy()) {
throw new GraphicalEditorException("Retrieved diagram element is proxy");
}
diagramElement.setBo(mmRelRef);
}
}
}
@Override
public ReferenceCollection getReferences(final Set<IProject> relevantProjects,
final Set<CanonicalBusinessObjectReference> originalCanonicalReferences) {
final InternalReferencesToUpdate references = new InternalReferencesToUpdate();
Display.getDefault().syncExec(() -> {
// Create updateable reference for open diagrams
for (final InternalDiagramEditor editor : getOpenEditorsMap(relevantProjects).values()) {
final AgeDiagramProvider diagramProvider = editor.getAdapter(AgeDiagramProvider.class);
if (diagramProvider == null) {
continue;
}
final AgeDiagram diagram = diagramProvider.getAgeDiagram();
if (diagram == null) {
continue;
}
// Update the diagram immediately. This is intended to ensure the diagram doesn't have any proxies
editor.updateNowIfModelHasChanged();
final CanonicalBusinessObjectReference diagramContextRef = diagram.getConfiguration()
.getContextBoReference();
if (diagramContextRef != null && originalCanonicalReferences.contains(diagramContextRef)) {
references.addReference(editor, diagramContextRef, new OpenDiagramContextReference(diagram));
}
// Get references from the diagram elements
getRuntimeReferencesFromChildren(editor, diagram, originalCanonicalReferences, references);
}
// Create updateable references for saved diagrams
savedDiagramIndex.getDiagramsByContexts(relevantProjects.stream(), originalCanonicalReferences)
.forEach(e -> references.addReference(e.getDiagramFile(), e.getContext(),
new SavedDiagramContextReference()));
savedDiagramIndex.getDiagramElementUrisByReferences(relevantProjects.stream(), originalCanonicalReferences)
.forEach(e -> references.addReference(e.diagramFile, e.reference,
new SavedDiagramElementReference(e.diagramElementUri)));
});
return references;
}
/**
* Gets references from open editors.
*/
private void getRuntimeReferencesFromChildren(final InternalDiagramEditor editor, final DiagramNode node,
final Collection<CanonicalBusinessObjectReference> originalCanonicalReferences,
final InternalReferencesToUpdate references) {
for (final DiagramElement child : node.getChildren()) {
final Object currentBo = child.getBusinessObject();
final CanonicalBusinessObjectReference currentCanonicalRef = currentBo == null ? null
: referenceService.getCanonicalReference(currentBo);
if (currentCanonicalRef != null && originalCanonicalReferences.contains(currentCanonicalRef)) {
references.addReference(editor, currentCanonicalRef, new OpenDiagramElementReference(child));
}
getRuntimeReferencesFromChildren(editor, child, originalCanonicalReferences, references);
}
}
}