Difference between revisions of "Lib/sequencer offers Multitasking"

From Liberty Eiffel Wiki
Jump to navigation Jump to search
(still translating)
(still translating)
Line 33: Line 33:
 
The <tt>restart</tt> feature is seldom useful. See [[lib/vision|Vision]] for some use cases.
 
The <tt>restart</tt> feature is seldom useful. See [[lib/vision|Vision]] for some use cases.
   
  +
== Execution conditions ==
<!--
 
== Conditions d'exécution ==
 
   
La classe [[library_class:READY_DESCRIPTION|<tt>READY_DESCRIPTION</tt>]] permet de positionner des conditions et de les tester. Les conditions possibles sont&nbsp;:
+
The class [[library_class:READY_DESCRIPTION|<tt>READY_DESCRIPTION</tt>]] allows to set and test conditions. The possible conditions are:
   
* '''Le temps'''&nbsp;: ceci permet de créer des tâches périodiques. Voir les classes [[library_class:PERIODIC_JOB|<tt>PERIODIC_JOB</tt>]] et [[library_class:BACKGROUND_JOB|<tt>BACKGROUND_JOB</tt>]]&nbsp;;
+
* '''Time''': this allows to create periodic tasks. See the classes [[library_class:PERIODIC_JOB|<tt>PERIODIC_JOB</tt>]] and [[library_class:BACKGROUND_JOB|<tt>BACKGROUND_JOB</tt>]];
* '''Les entrées-sorties'''&nbsp;:
+
* '''Input-output''':
** ''Les données sur un flux d'entrée''&nbsp;: ceci permet de créer des tâches en attente sur la disponibilité de données en entrée (méthodes <tt>when_data</tt> et <tt>is_data</tt>),
+
** ''Data on an input stream'': this allows to build tasks that wait for input data to be available (features <tt>when_data</tt> and <tt>is_data</tt>),
** ''Les données sur un flux de sortie''&nbsp;: ceci permet de créer des tâches qui ne s'activent que quand elles peuvent écrire sur un flux de sortie (méthodes <tt>when_free</tt> et <tt>is_free</tt>)&nbsp;;
+
** ''Data on an output stream'': this allows to build tasks that wait until they can write on an output stream (features <tt>when_free</tt> and <tt>is_free</tt>)&nbsp;;
* '''Le réseau'''&nbsp;: ceci permet de créer des tâches en attente d'une connection réseau (méthodes <tt>when_connection</tt> et <tt>is_connection</tt>).
+
* '''Network''': this allows to build tasks waiting network connections (features <tt>when_connection</tt> and <tt>is_connection</tt>).
   
  +
<!--
 
== Le déroulement des tâches ==
 
== Le déroulement des tâches ==
   

Revision as of 15:48, 4 January 2006

*** OK, I'm translating that --Cyril 14:34, 4 Jan 2006 (CET)

The lib/sequencer library implements one kind of cooperative multi-tasking of the event-driver kind. Unlike "pure" cooperative multi-tasking, a task cannot stop at any time (using an hypothetic yield feature) but only in lnown and stable states. That is conform to the Eiffel principles.

The principle is:

  • the class LOOP_STACK manages the multi-tasking;
  • the class JOB represents a task. The task core is the continue feature, in which the task controls the whole system;
  • the class READY_DESCRIPTION allows to describe in which conditions a task can be executed.

We will successively see each of those concepts.

The multi-tasking manager

The class LOOP_STACK is in charge of managing the multi-tasking. It is used in two steps:

  • initialisation: creation of the LOOP_STACK object, and adding of the tasks to execute
  • execution: execution of the run feature

Of course, tasks can be added during the execution. The manager can also be stopped, thanks to the break feature.

Also, the loops stack is composed of many execution loops (LOOP_ITEM). This allows, for instance, the implementation of a kind of modality (see the modal windows in Vision).

Tasks

A task has a life cycle represented by the features executed by the manager (indeed a LOOP_ITEM hence the export clauses of those fetaures).

  1. prepare allows to prepare the task; in this phase, the task sets the events upon which it wants to be activated. The READY_DESCRIPTION object is an object upon which one can set conditions (thanks to its when_* features).
  2. is_ready allows to test if the task has really been activated.The READY_DESCRIPTION object is an object upon which one can test conditions (thanks to its is_* features).
  3. continue contains the execution body of the task, and is executed if the task is really activated.
  4. done tells if the task has finished its execution. If so, it will be removed from the execution loop. Otherwise, the cycle begins again.
  5. restart allows to reinsert a task in the execution loop.

The restart feature is seldom useful. See Vision for some use cases.

Execution conditions

The class READY_DESCRIPTION allows to set and test conditions. The possible conditions are:

  • Time: this allows to create periodic tasks. See the classes PERIODIC_JOB and BACKGROUND_JOB;
  • Input-output:
    • Data on an input stream: this allows to build tasks that wait for input data to be available (features when_data and is_data),
    • Data on an output stream: this allows to build tasks that wait until they can write on an output stream (features when_free and is_free) ;
  • Network: this allows to build tasks waiting network connections (features when_connection and is_connection).