Skip to content
This repository has been archived by the owner on May 17, 2018. It is now read-only.

Diagram Type Support and Diagram Configuration Improvements #211

Closed
31 tasks done
philip-alldredge opened this issue Aug 22, 2017 · 4 comments
Closed
31 tasks done
Milestone

Comments

@philip-alldredge
Copy link
Contributor

philip-alldredge commented Aug 22, 2017

predefined diagram types that determine the default contents of the diagram.

The ability to customize the model elements included in the diagram was recently added. The next iteration of this capability is to have pre-defined diagram types that will customize the default behavior of this capability. The current thought is that the tool should provide reasonable defaults for a particular diagram type but that the user should be able to customize however desired. The definition of these diagram types are TBD but it is anticipated that user feedback would be helpful. The goal is to look at SysML and UML diagram types and use that as a starting inspiration.

Tasks

  • Menu Rework
    • Simplify and organize context menu in graphical editor.
    • Remove commands extension point. Use standard eclipse commands and menus extension points.
  • Auto Content Filters
    • Should be interface
      • Needs an id
      • Needs a name
      • Needs method for determining whether a child passes the filter.
      • Needs method to determine if the filter is applicable to a business object context.
    • Diagram configuration dialog should allow selecting multiple filters.
    • Each element should have a set of content filters.
    • Add content filter extension point and provide list to configuration dialog.
    • Add initial set of content filters.
    • Add context menu to adjust contents of element.
      • Enable All Filters
      • Disable All Filters
      • Hide All Contents
      • Enable individual filters
      • Item to open config diagram. Go to the first selected element. Indicator for how many of the selected elements have manual children?
    • Serialization
      • Save content filters to diagram.
      • Convert legacy auto content filters to a set of new filters.
        • Mode transition trigger connections, default annex library, and default annex subclauses will need to be specially handled since there isn't a filter for them. Mode transition triggers connections cause layout issues and annex subclauses and libraries are of limited usefulness.
        • Test opening older diagrams. Graphiti and OGE XML formats.
  • Design Document Types and Refine plans for Diagram Type Extension Point
  • Create Diagram Type Extension Point
    • Allow defining via extension point.
    • Should Provide:
      • ID
      • Name
      • The default filters for a diagram element
      • Return a set of default properties.
    • Store Diagram Type as part of diagram configuration. All existing diagrams will be considered custom diagrams.
    • Use diagram types to resolve default content filter.
    • Show the Diagram Type in configuration dialog. Don't support changing diagram type.
    • Show the Diagram Type in the select diagram dialog when opening
    • Define Diagram Types based on earlier design. Add additional content filters as needed.
    • If diagram type is not found, should be treated like a custom diagram. However, when saving, the original diagram type ID should be serialized.
  • Diagram Creation and Navigation
    • Prompt user for type when creating a new diagram.
    • Prompt user for name when creating a new diagram.
    • Set default AADL properties based on diagram type.
    • Don't prompt to configure diagram after creation. The default configuration combined with the new context menu results in a diagram that needs minimal configuration.
    • Switch default to hiding connection labels. Retain backwards compatibility with existing diagrams.
    • Need way to navigate to component implementation diagram
  • Make content filter extension point part of public API.
  • Optimization
  • Update Documentation
    • Context menu.
    • Configure Diagram Dialog
    • Diagram Types
    • Document that content filters must be immutable/stateless
    • Document behavior of enabling connections when endpoints aren't visible
@philip-alldredge philip-alldredge added this to the M3 milestone Aug 22, 2017
@philip-alldredge philip-alldredge changed the title Diagram Types and Diagram Configuration Improvements Support Diagram Types and Diagram Configuration Improvements Aug 22, 2017
@philip-alldredge philip-alldredge changed the title Diagram Types and Diagram Configuration Improvements Diagram Type Support and Diagram Configuration Improvements Aug 22, 2017
@philip-alldredge
Copy link
Contributor Author

Updated task list based on design refinements.

@philip-alldredge
Copy link
Contributor Author

philip-alldredge commented Feb 1, 2018

A previous version of this task described changes to how content filters are treated based on the manual flag. After further consideration, this change was discarded. Content filters need to be used independent of the manual flag. To do otherwise would likely result in cases where the user would manually need to disable the manual flag.

For example:

  • Assume a top level component implementation.
  • Enable Subcomponents filter
  • Enable Modes in one of the subcomponents. This would require setting the manual flag for the subcomponent.
  • Disable Subcomponents filter on top level.
  • The subcomponent and modes would still be visible. This is not the desired behavior. The desired behavior is that an object is only manual if the user selects it as such. In the current application setting a content filter results in the node being manual and can result in unexpected behavior.

@philip-alldredge
Copy link
Contributor Author

philip-alldredge commented Feb 7, 2018

The planned diagram types are described below.

  • All diagram types should represent mode transition triggers as labels. See Allow Showing Mode Transition Triggers as Labels #244.
  • Diagram Types:
    • Custom Diagram.
      • Existing diagrams will be converted to custom diagrams.
      • Filters, except for mode transition trigger labels, are not enabled by default.
    • Package Diagram - Applicable to Packages
      • Classifiers
      • Generalizations
    • Stucture Diagram - Applicable to Classifiers
      • Classifier
      • Type Features
      • Implementation Features
      • Connections
      • Flow Specifications
      • Subcomponents - Only for classifiers/system instances the top level.
    • Mode Diagram - Applicable to Classifiers
      • Mode
      • Mode Transitions
      • NOTE: If such a diagram is made at the package level, the user will need to automatically show a classifier.
      • NOTE: The mode and mode transition filters should be enabled for both classifiers and subcomponents.
    • Processor Binding Diagram - Applicable to Classifiers
      • Actual_Processor_Binding Property.
      • Subcomponents: System, Processor, Virtual Processor, Device, Thread, Thread Group, Process
      • NOTE: This will require additional filters beyond those already created. Investigate whether there needs to be a way to declutter the UI.
      • NOTE: Only the actual_processor_binding property will be enabled by default. The user can customize to show the Allowed_Processor_Binding if desired.

@philip-alldredge
Copy link
Contributor Author

Optimization is being deferred until later. While profiling, it appears that the most critical hotspots related to performance are not related to the business object providers or content filtering.

philip-alldredge added a commit that referenced this issue Feb 12, 2018
Implements #211

- Implements #211
- Reorganized context menu.
- Removed org.osate.ge.commands extension point in favor of using standardeclipse extension points.
- Added diagram type extension point and related usage of diagram types.
- Defined diagram types.
- Added dialog to prompt for diagram name and type.
- Diagram layout and UI adjustments.
- Disabled prompting to configure diagram. Often no longer necessary
because the default settings provide a better experience.
- Initial diagram layout not occurs after Graphiti diagram is created.
This provides a better layout.
- Added open to open implementation diagram.
- Increased size of select diagram dialog. Added ability to open type
diagram from instance model diagrams.
- Only set manual flag if current content filters would result in model
element not being displayed after creation.
- Updated documentation.
philip-alldredge added a commit to smaccm/smaccm that referenced this issue Feb 12, 2018
…nd_ext_removal

As part of osate/osate-ge#211, the command extension point used by the simulator to contribute to the graphical editor's menu was removed. This reworks the menu option to be contributed using the standard eclipse extension points.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant