Difference between pages "Code Generation Tutorial" and "CruiseControl"

From Event-B
(Difference between pages)
Jump to navigationJump to search
imported>Andy
 
imported>Jastram
(New page: The Rodin Core and some subprojects are continuously built with a [http://cruise.cs.uni-duesseldorf.de/dashboard/tab/builds CruiseControl] Server. The server continuously looks for code c...)
 
Line 1: Line 1:
'''This Page is Under Construction'''
+
The Rodin Core and some subprojects are continuously built with a [http://cruise.cs.uni-duesseldorf.de/dashboard/tab/builds CruiseControl] Server.  The server continuously looks for code changes, and if it finds any, it compiles, tests and assembles the projects that have changed.
  
=== Tutorial Overview ===
+
There are currently a number of limitations:
  
The aim of the tutorial is to allow users to explore the approach with a relatively simple example. The example uses a shared buffer with reader and writer processes. The tutorial is presented in three stages, making use of the example projects from the download site. The example projects are,
+
* Not all Rodin Sub-Projects are being built automatically, we will add more over time.
 +
* Not all tests are integrated yet, due to the state of the Eclipse PDE-Build Scripts.  In particular, there is currently no support for JUnit 4 Tests
 +
* There are a few Düsseldorf-Specific projects hosted on the server as well (the Server is hosted by the [http://www.stups.uni-duesseldorf.de/ University of Düsseldorf])
 +
* Notifications of broken or fixed builds will go to DEPLOYWP9-TOOLING@JISCMAIL.AC.UK. The subject will have the prefix "[cc-build]" for easy filtering.  Mails will only be sent if the status changes, not with every broken build.
  
SharedBuffer20100819Demo
+
If you discover a problem or would like to have a subproject added, please, contact the maintainer, currently [mailto:michael@jastram.de Michael Jastram].
  
A project with a completed Tasking Development, and IL1 model (post IL1 translation, but before Event-B translation).
+
[[Category:Developer documentation]]
 
+
[[Category:Rodin Platform]]
sharedbuffer20100819Tasking
 
A completed project, with translated Event-B; a model of the implementation with program counters.
 
 
 
SharedBuffer20100819Tutorial
 
A bare project for step 1 of the tutorial.
 
 
 
sharedbuffer20100819Tutorial2
 
A partially completed tasking development for steps 2 and 3 of the tutorial.
 
 
 
The steps will be as follows,
 
* 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.
 
==== The PrettyPrint View of 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.
 
 
 
Open the ''SharedBuffer20100819Demo'' Project and switch to the Resource Perspective. Open the ''.tasking'' model and inspect it. Clicking on the Main, Machine or Event nodes updates the pretty print window.
 
 
 
==== Viewing Source Code ====
 
 
 
aka. The PrettyPrint View of The IL1 Model.
 
 
 
From the top-menu select ''Window/Show View/Other/IL1 Pretty Printer''.
 
 
 
Open the ''SharedBuffer20100819Demo'' Project and switch to the Resource Perspective. Open the ''.il1'' model and inspect it. Clicking on the Protected, Main Entry, or Task nodes updates the pretty print window.
 
 
 
== 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 ====
 

Latest revision as of 14:17, 5 May 2009

The Rodin Core and some subprojects are continuously built with a CruiseControl Server. The server continuously looks for code changes, and if it finds any, it compiles, tests and assembles the projects that have changed.

There are currently a number of limitations:

  • Not all Rodin Sub-Projects are being built automatically, we will add more over time.
  • Not all tests are integrated yet, due to the state of the Eclipse PDE-Build Scripts. In particular, there is currently no support for JUnit 4 Tests
  • There are a few Düsseldorf-Specific projects hosted on the server as well (the Server is hosted by the University of Düsseldorf)
  • Notifications of broken or fixed builds will go to DEPLOYWP9-TOOLING@JISCMAIL.AC.UK. The subject will have the prefix "[cc-build]" for easy filtering. Mails will only be sent if the status changes, not with every broken build.

If you discover a problem or would like to have a subproject added, please, contact the maintainer, currently Michael Jastram.