Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "GMF: Synchronized Container Use Cases"

(Bugzilla entries)
(Definitions)
Line 17: Line 17:
  
 
''reference-only link'' – a diagram link representing a reference in a domain model. This reference is contained in a link source domain model element and points to the link target domain model element.
 
''reference-only link'' – a diagram link representing a reference in a domain model. This reference is contained in a link source domain model element and points to the link target domain model element.
 +
 +
''pure-design element'' - a diagram or diagram node without link to the underlying domain model (View.getElement() == null and not ''reference-only link'')
  
 
''CanonicalEditPolicy'' - an abstract class in the GMF runtime implementing EditPolicy and encapsulating a set of functionality useful for synchronizing diagram element contents with the domain model element contents.  
 
''CanonicalEditPolicy'' - an abstract class in the GMF runtime implementing EditPolicy and encapsulating a set of functionality useful for synchronizing diagram element contents with the domain model element contents.  

Revision as of 05:57, 13 April 2007

Preface

In the current state, GMF supports two modes of diagram code generation - synchronized and non-synchronized. A toolsmith is able to switch between these two modes by changing the GenDiagram.synchronized property. There have been a number of discussions concerning diagram behavior in different situations according to the current mode. The idea of this document is to summarize the existing requirements to simplify upcoming feature development. Once this document is finalized, corresponding changes will be introduced into the code generator and the runtime, if necessary.

This document will cover common use cases for different types of synchronized/non-synchronized diagrams from the end-user point of view, and highlight corresponding places in code generator/runtime to be used in corresponding conditions.

Definitions

synchronized element – a diagram or diagram node that always represents the actual domain (semantic) model contents (i.e. all the child diagram nodes recognized from the underlying domain model).

canonical container – a synchronized element, including contained elements.

non-synchronized element – a diagram or diagram node representing only selected child diagram nodes recognized from the domain model.

synchronized diagram – a diagram itself, all the diagram nodes and sub-nodes are synchronized elements

element-based link – a diagram link associated with the element in a domain model connecting link source with link target domain model elements.

reference-only link – a diagram link representing a reference in a domain model. This reference is contained in a link source domain model element and points to the link target domain model element.

pure-design element - a diagram or diagram node without link to the underlying domain model (View.getElement() == null and not reference-only link)

CanonicalEditPolicy - an abstract class in the GMF runtime implementing EditPolicy and encapsulating a set of functionality useful for synchronizing diagram element contents with the domain model element contents.

CanonicalConnectionEditPolicy – abstract subclass of CanonicalEditPolicy supporting outgoing element-based diagram links synchronization.

Synchronized diagram

This type of the diagram will be generated if GenDiagram.synchronized == true in the .gmfgen model. Updating code (CanonicalEditPolicy subclasses) should be generated for each type of the synchronized element available on this diagram.

By default, this diagram and all the contained nodes and links are synchronized elements. A Toolsmith can switch off synchronization for any diagram element/diagram by attaching CanonicalStyle with isCanonical() == false to the corresponding diagram element (see below). If the synchronization process should be switched off for all the elements of some particular type, then a corresponding style could be attached to each View instance created by the corresponding ViewFactory. Hint: this could be done by customizing corresponding template.

Synchronized elements

Each synchronized element should always represent up-to-date content of the corresponding domain model element. The following cases should be covered:

- domain model was changed in external editor in a way that a new child diagram element could be recognized (new child domain element added) - diagram editor content should be updated with new child diagram element on next diagram opening.

- domain model was changed by user code in a way that a new child diagram element could be recognized – diagram editor content should be updated with new diagram element on receiving corresponding EMF notification.

- domain model was changed externally or by user code in a way that existing child diagram element should be removed (child domain element removed) – corresponding child diagram element should be removed on next diagram opening or corresponding EMF notification.

- if the same domain model element can be represented on a diagram as different diagram elements (node-1 or node-2) based on domain model properties, and the domain model was changed externally or by user code in a way that the existing domain model element should change the diagram representation (not be recognized as node-1 anymore, but should be recognized as node-2) – the existing node-1 should be replaced by node-2 on next diagram opening or by receiving EMF notification. Node-2 should get the size/position of node-1 and all the rest of its applicable Styles.

- if a synchronized element was just created by an update process (CanonicalEditPolicy) and some child diagram elements could be recognized from the underlying domain model element, then an update should be triggered for this synchronized element in order to create the corresponding diagram elements. In other words, on any model changes the diagram should be updated to always represent current domain model content.

- notation model element represented by this synchronized element adorned with CanonicalStyle – it should be possible to switch on/off synchronization with the domain model by calling CanonicalStyle.setCanonical(). If the synchronization was switched on, then this synchronized element should be immediately synchronized with the model. If the synchronization was switched off, then this element should behave like non-synchronized element.

Links synchronization

Each synchronized element should perform outgoing link synchronization (both element-based links and reference-only links) in addition to child elements synchronization. Following cases should be covered:

- domain model was changed externally or by user code in a way that a new link from this diagram element could be recognized - diagram editor content should be updated with new link on next diagram opening/receiving EMF notification. It is important to correctly process the situation when a new link was added to domain model together with the new link destination node so both elements should be created on diagram. Note that a created link destination node could be a sub-node of diagram node parent’s sibling node.

- domain model was changed externally or by user code in a way that an existing link should be removed from diagram – corresponding link should be removed on next diagram opening/receiving EMF notification.

- if same domain model element (or even reference!) could be represented on diagram as a different link (link-1 or link-2) based on domain model properties and domain model was changed externally or by user code in a way existing link-1 should be replaced by link-2 – corresponding diagram update should be performed on next diagram opening/receiving EMF notification. Newly created link-2 should get all bending/connection points of link-1 and all the rest of its applicable Styles.

- if a synchronized element was created by an update process (CanonicalEditPolicy) and some outgoing link can be recognized from the underlying domain model, then update should create all the necessary links.

- if a synchronized element is a link and some other links can be created starting from this link, then the corresponding outgoing links should be updated in accordance with the domain model content, and so forth. If this synchronized element is adorned with a CanonicalStyle, then it should be possible to switch on/off the synchronization of outgoing links with the domain model by calling CanonicalStyle.setCanonical(). If synchronization is switched on, all the outgoing links should be immediately synchronized with the model.

Non-Synchronized diagrams

This type of the diagram will be generated if GenDiagram.synchronized == false in .gmfgen model. No synchronization code should be generated for elements of this diagram. Only selected by user subset of non-synchronized elements should be represented on this diagram. Any non-synchronized element created on this diagram from the toolbar should be immediately visualized on diagram. In addition it should be possible to: - invoke “Import child elements” popup menu action on each non-synchronized element (diagram node or diagram itself). This action will show the dialog with all the child diagram elements recognized from the model element associated with this non-synchronized element, but invisible on diagram currently. It should be possible to select any number of diagram elements from this dialog and add corresponding non-synchronized elements to this diagram.

- invoke “Import outgoing link” popup menu action on each non-synchronized element. This action should show dialog listing all the links recognized from domain model, outgoing from this non-synchronized element and invisible on current diagram. It should be possible to add selected links to the diagram. Note: non-synchronized element could be a link.

- Delete any non-synchronized element from view should remove this element from the diagram and keep domain model unchanged.

- Delete from model action should remove both non-synchronized element and corresponding element/reference (for reference-only links) from the domain model.

Non-Synchronized elements

Each non-synchronized element should still listen for the domain model changes to support the following cases:

- domain model was changed externally or by user code in a way that existing diagram element should be removed (domain element removed) – corresponding diagram element should be removed on next diagram opening or corresponding EMF notification.

- if the same domain model element can be represented on diagram as a different diagram elements (node-1 or node-2) based on domain model properties and the domain model was changed externally or by user code in a way that the existing domain model element should change the diagram representation (not be recognized as node-1 anymore, but should be recognized as node-2) – the existing node-1 should be replaced by node-2 on next diagram opening or by receiving EMF notification. Node-2 should get the size/position of node-1 and all the rest of applicable Styles.

Non-Synchronized links

Each link on non-synchronized diagram should be updated in case of following changes in domain model:

- if same domain model element (or even reference!) can be represented on diagram as a different link (link-1 or link-2) based on domain model properties and domain model was changed externally or by user code in a way that existing link-1 should be replaced by link-2 – corresponding diagram update should be performed on next diagram opening or by receiving EMF notification. Newly created link-2 should get all the bending/connection points of link-1 and all the rest of its applicable Styles.

- domain model was changed externally or by user code in a way that an existing link should be removed from diagram– corresponding link should be removed on next diagram opening/receiving EMF notification.

HREFs

Bugzilla entries

#150257

#150408

#133505

#148275

#180786

Newsgroup threads

http://dev.eclipse.org/newslists/news.eclipse.modeling.gmf/msg05117.html

Back to the top