Papyrus Banner

In this page we will show the Papyrus capabilities to create and reintegrate submodels, also known as control mode.

What is it?

As a model grows large in number of elements, it is convenient to split them into different physical resources i.e. files. Papyrus provides a feature to perform this splitting in a seamless fashion, allowing to move parts of the model to another resource. We call this create a submodel. This is specially helpful working in collaborative environments, since the Team features can be applied individually to the different resources i.e. make changes and commit them in only one part of the model.

Create a submodel

To create a submodel:

  1. Right click on the element which you wish to move to a different resource (a Package in the common case)
  2. Select Create Submodel
  3. The following dialog appears.
  4. Select the desired location for the new resource
  5. Click OK.

Important: The selected element has not been moved just yet. The model editor will be dirty i.e. there will be an asterisk next to its name in the tab. In order to complete the submodel creation, you need to save your model.

The new resource is created in the chosen location with the chosen file name, whilst a green decorator is shown in the Model Explorer view of the parent model to indicate this element is in a submodel.

Note that, for a package, the dialog shows an option to have it be openable and editable in its own editor, independently of the package containing it (and the one containing that, etc.). This can be convenient, but it does mean that the package has to redundantly apply all of the profile applications applied to the packages containing it, so that stereotypes can properly be manipulated in the editor. This can result in inconsistencies if a profile definition changes over time and not all applications in all packages are kept up-to-date consistently with stereotype migrations. This option is available only for packages, because only they can have profile applications. For other kinds of elements, this option is disabled and the resources created for them will always open in the context of the containing model.

When this option is not selected, then the resulting submodel cannot be opened separately. Attempting to open it, usually by double-clicking it in the Project Explorer, will instead open the top-most independent submodel (or the root model package). Or, if that is already open, just activate its editor. This ensures that the nesting package context, and especially its profile applications, is always available to properly manage stereotypes.

Toggle the Independent Submodel Support

Once a package has been stored in a submodel resource, the support for editing it independently can be added and removed at any time:

  1. Right-click on the submodel package in the Model Explorer.
  2. If the package is independently editable, the Independent Submodel menu item will have a check mark. Otherwise, it will not.
  3. Click the Independent Submodel menu item to change whether the package can be edited independently or not.

Important: These changes will only take permanent effect on the next save action. Until then, the resource on disk is not changed and so what happens when it is opened in an editor will not change.

In the Project Explorer view, the submodel resource is indicated by a filled blue note-paper decoration or a hollow blue decoration in the case that it is not an independently openable submodel.

Reintegrate a submodel into the main model

To reintegrate a submodel into the main model:

  1. Open the parent model
  2. Right click on the submodel element in the Model Explorer (recognizable with the green decorator).
  3. Select Reintegrate Submodel

The submodel is reintegrated into the main model resource.

Important: The submodel resources will be deleted only on save action.

Controlled Units as Integral Fragments

This enhancement introduces a new variant of the controlled unit dubbed a 'shard' (as being a fragment of broken ceramic or glass that is a constituent of the whole on not generally handled). Thus Papyrus supports two modes of controlled unit:

Use Cases

UC1 Import Fragmented Model from RSA

  1. User selects a *.emx resource in the workspace, activates the context menu, and selects 'Import RSA Model/Profile'.
  2. The system opens the RSA import wizard.
  3. The user completes the wizard.
  4. The system imports the *.emx resource along with all of its *.efx fragments. These latter are imported as 'shards'.
  5. The user double-clicks on the top-level unit (the one that was imported from the EMX file) to open the model.
  6. The system opens the top-level unit in the Papyrus Editor.

UC2 Open an Imported Sub-unit Resource

  1. The user double-clicks on a *.di resource that was imported from an *.efx in the RSA model.
  2. The system opens the top-level unit containing the root package namespace of the contents of the selected resource in the Papyrus Editor.

UC2.1 Variant: Open an Imported Sub-unit Resource (Model Already Open)

  1. The user opens an imported model as in UC1.
  2. The user finds some sub-unit resource of this model in the Project Explorer and double-clicks on it to open it.
  3. The user activates the editor previously opened, which is the root context of the sub-unit resource.

Design

Model Cross-Reference Index

The topology of sub-model units is implied by cross-resource containment in EMF: that is, containment references that have proxies for lazily resolved objects from other resources. As one of the benefits of the classic Papyrus sub-model unit is that it is independently openable and editable, it does not add a reference to its parent unit in an annotation as is done in RSA's fragments, because that would trigger loading of the parent unit chain by proxy resolution. Accordingly, in order to discover the connected graph of sub-unit resources at run-time, some agent is required that can provide independent off-line knowledge of it. This is naturally implemented on the WorkspaceModelIndex framework.

A new ICrossReferenceIndex API in the org.eclipse.papyrus.infra.emf bundle provides for queries (asynchronous and synchronous, as usual) about:

Unlike sub-model units, shards additionally have annotations that reference the containing object in the parent resource, not unlike fragments in RSA. This is not a problem because they are not intended to be loaded independently of their parent units, anyways, but also has the benefit of enabling a tracing of the parent unit chain in cases where the full off-line index is not available:

In these contexts, the cross-reference index API actually parses resources on-the-fly looking for these annotations to trace the parent unit chain, without loading them in the EMF manner.

Shard Resource Loading

The point of shard resources is that they cannot be loaded without the chain of parent resources storing their containing objects, so that in the case of UML resources, packages find all of the profile applications in their nesting packages to ensure that stereotype applications are properly resolved.

This loading of the parent unit chain, from the root unit(s) down, is ensured in two different ways, depending on the circumstances:

Other Index Enhancements

Because now another index is introduced (Papyrus has had an index of external profile applications since the Mars release), it is prudent to do some refactoring to ensure as much as possible that performance doesn't suffer from the added burden.

Consolidation of Indexing Control

Rather than have every index create background jobs for itself that react to resource changes and scan projects in the workspace, now a new IndexManager provides a single point of control for these processes:

This improves throughput of the indexing process by eliminating multiple passes over resource deltas and resource trees in the workspace projects, but it does mean that asynchronous queries on any index will only be ready when all indices complete their processing of any deltas.

Persistence of Index Data

Because even the simplest use case of opening a model now depends on this new workspace-wide index, it is important to initialize that index as efficiently as possible. To that end, the WorkspaceModelIndex framework now supports an extension of the IndexHandler protocol which is a PersistentIndexHandler. This protocol

The new CrossReferenceIndex supports persistence and the older DecoratorModelIndex is retrofitted for persistence, also.

Index Start-up

As a consequence of both of the enhancements described above, consolidation of control and initialization from a persistent store, it is necessary for the IndexManager to discover all available index instances when it starts up. This is accomplished by a new extension point org.eclipse.papyrus.infra.emf.index on which IWorkspaceModelIndexProviders are registered that supply unique concrete WorkspaceModelIndex instances. It is not required but probably advisable that all such instances be long-lived singletons.

Manipulating Sub-unit Resources

As far as the manipulation of sub-units is concerned, they are still created in the same way as in the Neon release. The difference is that, after a model element is stored in its sub-unit resource, it needs to be tagged as a 'shard'. This is accomplished by the ShardResourceHelper API. A helper is initialized with the model element that is the root of the shard sub-tree. It can add or remove the shard annotation directly or by providing Commands for execution on the stack and can query the current shard-ness of the sub-unit. As long as the helper is in use, it maintains Adapters to track any changes to the object's containment and/or shard annotation. For this reason, it must be closed when no longer needed, to prevent memory leaks.

User Interface for New Control-Mode Features

This enhancement introduces UI for manipulation of the 'shard' style of sub-unit resource, including:

Use Cases

UC3 Create a Sub-model Unit

  1. User selects a package in the Model Explorer, activates the context menu, and selects 'Create Submodel'.
  2. The system opens the 'Submodel Resource' dialog.
  3. The user enters a resource URI and ensures that the 'Create an independent sub-model resource' check-box is selected, then presses OK.
  4. The system creates the sub-model resource in the editor's resource set and shows the controlled unit decoration on the package in the Model Explorer.
  5. The user saves the editor.
  6. The Project Explorer shows the new sub-unit resource with a filled blue bent-corner paper decoration to denote that it is a sub-model unit.

alt=

UC4 Create a Shard Unit

  1. User selects a package in the Model Explorer, activates the context menu, and selects 'Create Submodel'.
  2. The system opens the 'Submodel Resource' dialog.
  3. The user enters a resource URI and ensures that the 'Create an independent sub-model resource' check-box is not selected, then presses OK.
  4. The system creates the shard resource in the editor's resource set and shows the controlled unit decoration on the package in the Model Explorer.
  5. The user saves the editor.
  6. The Project Explorer shows the new shard resource with a hollow blue bent-corner paper decoration to denote that it is a shard unit.

UC4.1 Variant: Control a UML Class

  1. User selects a class in the Model Explorer, activates the context menu, and selects 'Create Submodel'.
  2. The system opens the 'Submodel Resource' dialog. The 'Create an independent sub-model resource' check-box is disabled, because classes cannot be edited independently (they cannot have profile applications).
  3. The user enters a resource URI then presses OK.
  4. The system creates the shard resource in the editor's resource set and shows the controlled unit decoration on the package in the Model Explorer.
  5. The user saves the editor.
  6. The Project Explorer shows the new shard resource with a hollow blue bent-corner paper decoration to denote that it is a shard unit.

UC5 Convert a Sub-model Unit to a Shard

  1. User creates a sub-model unit for a package as in UC3 and saves the editor.
  2. The user selects the package, activates the context menu, and toggles the 'Independent Submodel' menu item, which is currently checked.
  3. The system adds the shard annotation and removes redundant profile applications from the package.
  4. The user saves the editor.
  5. The Project Explorer updates the sub-unit resource's label to show the hollow blue bent-corner paper decoration denoting that it is a shard unit. paper decoration to denote that it is a shard unit.

UC6 Convert a Shard to a Sub-model Unit

  1. User creates a shard unit for a package as in UC4 and saves the editor.
  2. The user selects the package, activates the context menu, and toggles the 'Independent Submodel' menu item, which is currently checked.
  3. The system removes the shard annotation and adds redundant profile applications to the package so that it may be opened independently.
  4. The user saves the editor.
  5. The Project Explorer updates the sub-unit resource's label to show the filled blue bent-corner paper decoration denoting that it is a sub-model unit.

UC6.1 Variant: Convert a Class Shard to a Sub-model Unit

  1. User creates a shard unit for a class as in UC4.1 and saves the editor.
  2. The user selects the package and activates the context menu.
  3. The 'Independent Submodel' menu item is unchecked and disabled so that it may not be toggled.

Design

Control-Mode Participants

A new protocol specializing the IControlModeParticipant is introduced that participants may optionally implement to influence the UI workflows. The IControlCommandApprover interface specifies two operations:

So, the former of these APIs is used by the ControlModeManager to determine the enablement of the check-box option for sub-models in the 'control resource' dialog and in the context menu (although, of course, in the latter case the action is enabled if a non-package element is controlled as a sub-model in order that it may be converted to a shard).

The latter API is used by the UI control/uncontrol command handlers to validate a request before attempting to survey the participants for commands and execute them.

Compatibility

The 'shard' structure is compatible with the Neon and Mars releases. It adds only an annotation that those versions of the software simply ignore. The back-reference to the parent unit will usually cause the parent units (and recursively up to the roots) to be loaded, which may help to emulate the Neon.1 and later behaviour. However, because a Neon.1 shard will not have redundant profile applications (a model imported from RSA in Mars or Neon would not have them, either) then there may be problems in handling of stereotype applications and potential data loss. If these resources must be edited with Mars or Neon versions of Papyrus, then it is recommended either always to open them at the root unit explicitly or even to opt for the classic sub-model unit structure (except for non-packages, which effectively always were defective shards anyways).