Difference between revisions of "Code Generation Tutorial"

From Event-B
Jump to navigationJump to search
imported>Andy
imported>Andy
Line 14: Line 14:
 
From the top-menu select ''Window/Show View/Other/Tasking Pretty Printer''.
 
From the top-menu select ''Window/Show View/Other/Tasking Pretty Printer''.
  
Note that the Tasking PrettyPrinter may have to be closed when editing the Tasking Development, since it may give rise to exceptions. The PrettyPrinter will need further work to make it robust, however it is intended only as a short-term solution.
+
Note that the Tasking PrettyPrinter may have to be closed when editing the Tasking Development, since it can give rise to exceptions. The PrettyPrinter would need further work to make it robust, however it is intended only as a short-term solution.
 +
 
 
==== Viewing an IL1 Model ====
 
==== Viewing an IL1 Model ====
  

Revision as of 16:40, 7 December 2010

This Page is Under Construction

Tutorial

The aim of the tutorial is to give a allow users to explore the approach with a relatively simple example. The example uses a shared buffer and reader and writer process.

  • Step 1 - Create the tasking development.
  • Step 2 - Add annotations.
  • Step 3 - Invoke translators.

Preliminaries

Before discussing the modelling aspects further we discuss the PrettyPrint viewers. The PrettyPrinters make the viewing of tasking models easier, and provides a quick route to source code generation. The source code can easily be pasted into an Ada source file.

Viewing a Tasking Development

From the top-menu select Window/Show View/Other/Tasking Pretty Printer.

Note that the Tasking PrettyPrinter may have to be closed when editing the Tasking Development, since it can give rise to exceptions. The PrettyPrinter would need further work to make it robust, however it is intended only as a short-term solution.

Viewing an IL1 Model

Creating The Tasking Development

From the Event-B Perspective,

Open the SharedBuffer20100819Tutorial Project.

Select the following Machines: Reader, Writer and Shared.

Right-click and select Make Tasking Development/Generate Tasking Development.

The new Tasking Development will not be visible in the Event-B perspective, change to the resource perspective, open and inspect the new .tasking file. The Tasking Development contains the machines that we wish to provide implementations for. In order to introduce the new concepts we have prepared a partially complete development.

Go to the Project SharedBuffer20100819Tutorial2 to begin the next step.

Providing the Annotations for Implementations