Extending the Rodin database (How to extend Rodin Tutorial)

From Event-B
Revision as of 12:51, 19 August 2010 by imported>Tommy (→‎Step 5)
Jump to navigationJump to search

In this part

We will explain how to add a new attribute to events elements and add a new element in the database. Here are the steps we will detail :

  1. add dependencies to the plugins providing the extension services and interfaces we want to use,
  2. add the extensions point we will use, and define our extensions,
  3. implement required classes to specify newly added elements,
  4. create an interface using Eclipse content assist

For more information about the database extension, please refer to : Extending the Rodin Database

Step 1

When one wants to use extension points provided by a plugin, one has to add a dependency to this plugin. We will use 2 extension points to extend the database, so we need to add a dependency to the plugin org.rodinp.core which defines them. Moreover, as we want to manipulate event-b elements, we will manipulate interfaces and public classes provided by the event-B plugin. We will then add a dependency to the plugin org.eventb.core To do this, open the MANIFEST.MF file in the forlder META-INF of our plugin to get the following:

Extend Rodin Tuto 1 5 Manifest dependencies.png

1. Click on the "Dependencies" Tab,
2. Click on the Add button.
A dialog appears, start to enter org.rodinp.core and select this plugin, press "OK" to add it to the dependencies.
The dependency to org.rodinp.core has been added. Re-do the above operations to add org.eventb.core.

You should now have the following dependencies added to the plugin :

Extend Rodin Tuto 1 5 Added Dependencies.png

Step 2

We will add now the Extensions Points that we want to use, and define extensions using them.

Extend Rodin Tuto 1 6 Add Extension Point.png

1. Click on the "Extensions" Tab,
2. and click on the "Add" button.

Extend Rodin Tuto 1 6 Extension Point Selection.png

As we will start by extending the database by adding the attribute "probabilistic", we will create an extension for org.rodinp.core.attributeTypes extension point. Hence, we need to add this extension point first before creating an extension with it. To do so... on the wizard that appeared (see picture above):
1. start to type the extension point name org.rodinp.core.attributeTypes, to reveal it in the list of available extension points,
2. select it in the list, and click on "Finish" to add it.

The extension point org.rodinp.core.attributeTypes now appears in the list on the "Extensions" page of the MANIFEST.MF of our plugin.

Step 3

We will now add the attribute "probabilistic" in the database, creating an extension for org.rodinp.core.attributeTypes. Right click on the extension point, select New > attributeType as in the picture below :

Extend Rodin Tuto 1 7 Add Attibute Extension.png

A new extension attributeType has been added. We will edit it to add our "probabilistic" attribute.
As an event can be probabilistic or not, we set the kind of this attribute to boolean. Give a unique ID to this attribute (here fr.systerel.rodinextension.sample.probabilistic) and a name (here probabilistic). You should now have something similar to what appears in the picture below :

Extend Rodin Tuto 1 7 Add Attibute Extension2.png


Step 4

We will now add a new element "Bound" to set the upper bound of the probabilistic variant.
Repeat the step 2, to add the extension point : org.rodinp.core.internalElementTypes.
Create an extension to specify our new element "Bound" using the right click as previously.
You shall now specify the details for this new extension element :

Extend Rodin Tuto 1 7 Bound Extension.png

As in the picture above :
1. give the element a unique ID (here fr.systerel.rodinextension.sample.bound)
2. give a name to this element (here Bound)
3. now things differ, as this extension point (org.rodinp.core.internalElementTypes) requires us to provide a class describing the element.
Click on the "class*:" link to open a wizard that will help us to create this class.

The following wizard appears :

Extend Rodin Tuto 1 7 Bound Extension New Java Class Bound.png

1. First specify a package where you want this class to be stored. As we want to organise a bit the project, we will say that all elements that we add will be part of a new package called fr.systerel.rodinextension.sample.basis,
2. Give the name of the class : "Bound",
3. We see that the superclass of this element is org.rodinp.core.basis.InternalElement but we know that we will implement an element specific to Event-B, so we put here org.eventb.core.basis.EventBElement,
4. You can optionnaly add comments automatically to the created class, if you set them in "Preferences > Java > Code Style > Code Templates",
5. Click on "Finish" to create the class.

The class Bound.java has now been created. We can open it and review its contents that we anyway shall modify now.

Step 5

We now opened the class Bound.java and see that we need to implement the method getElementType() inherited from the superclass.
As the type of element might be needed from outside, and is common to all Bound element, we will create a constanst in a new interface IBound that we have to create.
Enter in the method body the following code :

return IBound.ELEMENT_TYPE;

Extend Rodin Tuto 1 7 Create Interface Menu.png

Then use the quick assist (while you go over IBound underlined in red), to create the interface IBound. The following wizard appears :

Extend Rodin Tuto 1 7 Create Interface Wizard.png

Use here the "Extended Interfaces" field to specify that the element Bound should be commented (thus shall implement ICommentedElement) and will carry an expression (thus shall implement IExpressionElement) for the value of the bound.

public interface IBound extends ICommentedElement, IExpressionElement {
	IInternalElementType<IBound> ELEMENT_TYPE = RodinCore
			.getInternalElementType(QualProbPlugin.PLUGIN_ID + ".bound");
}

At this point of the development, you should have the following extensions :

Extend Rodin Tuto 1 7 Used Extensions.png

and you should have the following contents in your plugin :

Extend Rodin Tuto 1 7 ProjectExplorer2.png.png

The sources of the plugin at this point can be downloaded here : // FIXME attach sources here.

In Brief

We saw how to use Eclipse to add extension points that will be used in our plugin and created our extensions using some helpful Eclipse automatic actions (wizard, content assist...).