Extending the Pretty Print Page

From Event-B
Revision as of 15:35, 15 April 2010 by imported>Tommy (→‎How the Pretty Print Page is created)
Jump to navigationJump to search

The Petty Print Page of the Event-B Editor provides a rendered view of an edited machine or context, for an quicker and easier reading.

An example of pretty print page

As a mechanism is available to extend Rodin's Structured Editor, such a mechanism also exists in order to extend the Pretty Print Page. For each element to be displayed, a "pretty printer" is defined within the element extension of the structured editor.

We will have a look at :

  • how the extensions can contribute to the pretty print page,
  • how the pretty print page is created,
  • how to implement pretty printers.

How to contribute to the Pretty Print Page

When contributing to the Event-B Editor, one uses the extension point org.eventb.ui.editorItems. This extension point defines extensions from which two of them have been updated in order to contribute to the pretty print page.

Those updated extensions are :

  • element
element has been extended with a child called prettyPrinter where the name of the class that will be used to pretty print the element in the pretty print view shall be given. This class must moreover implement org.eventb.ui.IElementPrettyPrinter.
  • childRelation
the child element childType of a childRelation has been extended with implicitChildProvider where the name of the class that will be used to retrieve implicit children of this type in the pretty print view shall be given. The class must moreover implement org.eventb.ui.IImplicitChildProvider.

Hence, one that wants to contribute to the pretty print page for added items, must at least provide a prettyPrinter for each of those added items, and if needed, an implicitChildProvider, that will harvest the implicit children of the given type that should also be displayed.

Note: if editor items are defined without such extensions, the added items will simply not appear on the pretty print page.

How the Pretty Print Page is created

In this part, we will discribe the core algorithm for pretty printing (we will use the term "core pretty printer" to refer to this piece of code in the pretty print process). The core algorithm starts on the root element (such as a context or a machine) and displays its related informations. Then in a recursive loop, it traverses all sub-elements and pretty print them.

Here is the corresponding algorithm in charge of sub-elements pretty print:

traverse(Element parent)
 begin
  for all ContributionType c in parent.getChildTypes()
  do
    appendPrefixOrSpecialPrefix(c)
    for each Element e in parent.elementsOfType(c)
    do
       appendItemBeginning(e);
       IElementPrettyPrinter p = e.getPrettyPrinter();
       p.prettyPrint(e, parent);
       //recursive traverse to continue pretty printing child elements
       traverse(e);
       appendItemEnding(e);
    od
  od
 end

As one can see, reading this algorithm, the main method that one should implement to pretty print added items is the prettyPrint method.

Once all defined items are contributed to the structured editor, they should normally have if needed :

  • a prefix, that will be appended once for all elements of this type,
  • a childrenSuffix, that will be appended at the end of all elements of this type.

The pretty printing algorithm will handle those values if no special prefix is defined by an element pretty printer.

In fact, one that implements the interface for pretty printing IElementPrettyPrinter will be able to define a pretty printing method, but also auxiliary methods to tune the way elements are display by the Pretty Print Page.

There are 4 methods one can implement defining a pretty printer for an element :

void prettyPrint(IInternalElement elt, IInternalElement parent, IPrettyPrintStream ps);

(Required)This method appends the string corresponding to the pretty print of the element elt.

boolean appendSpecialPrefix(IInternalElement parent, String defaultPrefix, IPrettyPrintStream ps, boolean empty);

(Optional)This method appends a custom prefix, and should be used to replace the default prefix which is contributed, to be appended. It shall return true to tell the core pretty printer that a special prefix was appended, so it avoids to append the default one.

void appendBeginningDetails(IInternalElement elt, IPrettyPrintStream ps);

(Optional)This methods appends some details that contributors can calculate on a given element, and for which there is not representation in the data model. This method appends details before traversing the children of the given element elt.

void appendEndingDetails(IInternalElement elt, IPrettyPrintStream ps);

(Optional)This method appends some details that contributors can calculate on a given element, and for which there is no representation in the data model. This method appends details after having traversed the children of the given element elt.

How to implement pretty printers (of Event-B Editor contributions)

In this part we will study concrete examples, to show how the pretty printer is contributed.