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 "Papyrus/Neon Work Description/NewFeature/Papyrus Refactoring Service"

(EMF Compare Integration)
(Call service)
 
(11 intermediate revisions by the same user not shown)
Line 7: Line 7:
 
*Move elements between model
 
*Move elements between model
 
**[https://bugs.eclipse.org/bugs/show_bug.cgi?id=465277 465277]
 
**[https://bugs.eclipse.org/bugs/show_bug.cgi?id=465277 465277]
 +
*Control Mode
 +
**[https://bugs.eclipse.org/bugs/show_bug.cgi?id=459166 459166]
 +
*Externalise Profile Application
 +
**Does the Refactoring action should be launched ?
 +
 
== Requirements  ==  
 
== Requirements  ==  
 
{|class="wikitable"
 
{|class="wikitable"
Line 32: Line 37:
 
|Scope||It limits the refactor operation. It takes three values: None, Project, Workspace.
 
|Scope||It limits the refactor operation. It takes three values: None, Project, Workspace.
 
|}
 
|}
 +
===Filter Participants===
 +
It is necessary to give the possibility to exclude a participant of an Refactoring action. A participant can be useful only during one kind of Refactoring Action. This type could be defined during creation of the Request and could be chosen among this set:
 +
* ALL
 +
* MOVE
 +
* RENAME
 +
 
==Components==
 
==Components==
 
The new mechanism adds a new plugin to contain all engines. This new plugin exposes an extension point.
 
The new mechanism adds a new plugin to contain all engines. This new plugin exposes an extension point.
Line 50: Line 61:
 
|-
 
|-
 
|None||It means that refactor doesn’t need to be executed.
 
|None||It means that refactor doesn’t need to be executed.
 +
|-
 +
|Container||It means that refactor uses all models present in container resource of the current model to resolve broken references.
 
|-
 
|-
 
|Project||It means that refactor uses all models present in Project to resolve broken references.
 
|Project||It means that refactor uses all models present in Project to resolve broken references.
Line 55: Line 68:
 
|Workspace||It means that refactor uses all model present in Workspace to resolve broken references.
 
|Workspace||It means that refactor uses all model present in Workspace to resolve broken references.
 
|}
 
|}
 +
 
===Behaviour===
 
===Behaviour===
[[File:Papyrus_Refactor_Service_Scope.png|Sequence diagram of Refactor scope definition through UI]]
+
==Triggering==
 +
The service must be call when an element change its location. The service must be in back-end and it must be triggered by particular events.
 +
The managing of save of external modifications like model files in other project must be made through the ResourceSetListener too. The Refactoring service can not depend of LifeCycleDependency because this introduces bad dependencies for a independent service.
 +
 
 +
[[File:Papyrus_Refactor_Service_Triggering.png|Diagram of listeners for triggering of Refactoring service]]
  
 
==Conception==
 
==Conception==
 
The mechanism is similar as Control Mode or Element Type Edit service. From one request and the service, this one returns a command for the refactor.
 
The mechanism is similar as Control Mode or Element Type Edit service. From one request and the service, this one returns a command for the refactor.
 +
The service uses LTK API to perform UI interaction and perform refactoring.
 
===Architecture===
 
===Architecture===
 
[[File:Papyrus_Refactor_Service_Architecture.png|Architecture of Refactor service]]
 
[[File:Papyrus_Refactor_Service_Architecture.png|Architecture of Refactor service]]
 
+
=== LTK Integration ===
 +
[[File:Papyrus_Refactor_LTK_Integration.png| LTK Integration]]
 
===Interaction===
 
===Interaction===
 
[[File:Papyrus_Refactor_Service_Interaction.png|Sequence diagram of Refactor service]]
 
[[File:Papyrus_Refactor_Service_Interaction.png|Sequence diagram of Refactor service]]
Line 69: Line 89:
 
=== EMF Compare Integration ===
 
=== EMF Compare Integration ===
 
[[File:Papyrus_Refactor_Service_EMF_Compare_Integration.PNG|Integration of Model Resolver from EMF Compare]]
 
[[File:Papyrus_Refactor_Service_EMF_Compare_Integration.PNG|Integration of Model Resolver from EMF Compare]]
 +
 +
This integration of EMF Compare permits to use their ThreadedModelResolver with our Scope Resolution implementation.
 
:[https://bugs.eclipse.org/bugs/show_bug.cgi?id=471024 471024]
 
:[https://bugs.eclipse.org/bugs/show_bug.cgi?id=471024 471024]
  

Latest revision as of 05:51, 9 October 2015

Papyrus Refactoring Service

Overview

An UML model can contain several files and it can reference external models. When user makes an action as rename a file, Papyrus must ensure that all references are always consistent at the end of execution.

Use Cases

  • Rename Action
  • Move elements between model
  • Control Mode
  • Externalise Profile Application
    • Does the Refactoring action should be launched ?

Requirements

Index Description
REQ_001 Have a central mechanism to manage Refactor operation
REQ_002 Can choice the scope of the refactor resolution

Notions

Based on Control Mode mechanism and Element Type service, the mechanism uses three notions:

Notion Description
Request It contains all necessary information to execute correctly the refactor.
Service It is the entry point for the mechanism and it takes Request to deliver commands. It knows all participants.
Participant It registers on service to provide a command according to input request.
Command It contains refactor operation.
Scope It limits the refactor operation. It takes three values: None, Project, Workspace.

Filter Participants

It is necessary to give the possibility to exclude a participant of an Refactoring action. A participant can be useful only during one kind of Refactoring Action. This type could be defined during creation of the Request and could be chosen among this set:

  • ALL
  • MOVE
  • RENAME

Components

The new mechanism adds a new plugin to contain all engines. This new plugin exposes an extension point.

Plugin

Refactor plugin and dependency

A new plugin will be created to contain the Refactor service. To declare the service, this plugin must depend of org.eclipse.papyrus.infra.core which exposes the extension point to declare a Papyrus service. The Refactor service plugin exposes itself an extension point, org.eclipse.papyrus.infra.services.refactorParticipant to register participants of Refactor.

Extension Point

It permits to add new Participant to a refactor. This class must implement the interface IRefactorParticipant. The participant returns a command according of input request. The role of participant has to be clearly defined to know which side effect of Refactor, it resolves. The participant is dependent of its scope resolution.

User Interface

Description

The service needs to know which is the refactor scope. The scope determines from where the refactor starts. The user interface lets to user to choice between three different scopes.

Scope Description
None It means that refactor doesn’t need to be executed.
Container It means that refactor uses all models present in container resource of the current model to resolve broken references.
Project It means that refactor uses all models present in Project to resolve broken references.
Workspace It means that refactor uses all model present in Workspace to resolve broken references.

Behaviour

Triggering

The service must be call when an element change its location. The service must be in back-end and it must be triggered by particular events. The managing of save of external modifications like model files in other project must be made through the ResourceSetListener too. The Refactoring service can not depend of LifeCycleDependency because this introduces bad dependencies for a independent service.

Diagram of listeners for triggering of Refactoring service

Conception

The mechanism is similar as Control Mode or Element Type Edit service. From one request and the service, this one returns a command for the refactor. The service uses LTK API to perform UI interaction and perform refactoring.

Architecture

Architecture of Refactor service

LTK Integration

LTK Integration

Interaction

Sequence diagram of Refactor service

Refactoring Resolution

EMF Compare Integration

Integration of Model Resolver from EMF Compare

This integration of EMF Compare permits to use their ThreadedModelResolver with our Scope Resolution implementation.

471024

Related Bugs

Back to the top