Formal Semantics
and Interactive Environment
for Parallel Object-Oriented Programming: Eiffel//

INRIA
CNRS
UNSA

Isabelle Attali and Denis Caromel
Sidi Ould Ehmety

Isabelle.Attali@sophia.inria.fr
Denis.Caromel@sophia.inria.fr
Sidi.Ould_Ehmety@sophia.inria.fr


[Overview] [Language] [Example] [Semantics] [Environment] [Documentation] [Contact]

Overview

A formal definition of the Eiffel// semantics has been defined in the structural operational style of Natural Semantics. Using the Centaur system, this semantics permits to generate an interactive environment for parallel object-oriented programming and visualization. We provide features such as graphical representation of objects, visualization of closure and semantic rules, and animation tools to show the concurrent activities of objects.

The interest of this approach is to formally introduce parallelism within the framework of the Eiffel language, and more generally in object-oriented programming, leading towards formal transformations and parallelization for object-oriented languages.

This project is part of a larger project in collaboration with Jean-Luc Gaudiot (USC, Los Angeles) and Andrew Wendelborn (Univ. Adelaide, Australia): Formal Specification and Transformation of Parallel Programs

The language

The Eiffel// language (pronounce Eiffel Parallel) defines an extension of Eiffel which permits reusability and flexibility in parallel programming.

The Eiffel// language belongs to the category of asynchronous languages with asynchronous communications. The main objective of this language is to help the writing of parallel programs thanks to the following features:
  • reusability of sequential programs when designing parallel systems,
  • transformation of sequential programs to obtain an equivalent system running in parallel,
  • methodology for the designer of parallel applications,
  • a set of classes makes it possible to tailor the programming of concurrency control to the particular application.
  • The Eiffel// model uses the following principles:
  • heterogeneous model with both passive and active objects (processes, actors);
  • sequential processes;
  • unified syntax between message passing and inter-process communication;
  • systematic asynchronous communications towards active objects;
  • wait-by-necessity (automatic and transparent futures);
  • automatic continuations (a delegation mechanism);
  • no shared passive objects (call-by-value between processes);
  • centralized and explicit control by default;
  • polymorphism between objects and processes.


  • An Example

    As an illustration, the following Figure presents an Eiffel// system.



    It provides a parallel version of the sequential class binary_tree, which describes the management of a sorted binary tree with two routines insert and search: each node of the tree has two children ( left and right), an information ( info) and an associated key ( key); keys of the left (resp. right) subtree of a node are smaller (resp. greater) than the key of this node. To parallelize the binary tree we define the p_binary_tree class. It inherits from the process class and the binary_tree class; no other programming is necessary; Polymorphism between processes (p_bt) and objects (bt) makes it possible to reuse existing sequential code (here build_binary_tree for instance). In that example, the default fifo behavior and the wait-by-necessity ensure that all insertions are handled in a correct order, and before the search; the parallel system preserves the semantics of the sequential one.

    The Semantics

    We adopt a structural operational semantics for both the Eiffel language itself, and the concurrent primitives. More specifically, we use the Natural Semantics within the Centaur system, and the Typol formalism which provides us with executable specifications. This operational semantics simulates parallelism with a non-deterministic interleaving of (activities of) concurrent objects. The semantics of inheritance and dynamic binding is expressed in Natural Semantics (120 rules) Although, the modules describing the actual execution of statements (loops, feature calls, assignments, ...) are expressed in Structural Operational Semantics (200 rules). We need to define some structures which describe the global configuration of a system. During execution, an Eiffel// system is composed of objects. Each object in the system has a configuration (attribute values, activity, pending requests); the collection of all object configurations is the configuration of the system. For modeling objects (with their activity) during execution, we need a structure (based on an abstract syntax). We also need a structure to store the futures and their values. We then describe the operational semantics of the language in terms of a transition system, modeling possible transitions (global actions) from one configuration to another. We present rules describing global actions of a system; these global actions are expressed in terms of local actions on objects or interactions between objects. Here are examples of rules expressing global actions:





    The Graphical Environment

    We present a graphical environment for parallel object-oriented programming. It provides visual tools to develop and debug object-oriented programs as well as parallel or concurrent systems. This environment was derived from a structural operational semantics of Eiffel//. The visualization is not obtained from code instrumentation but automatically, using the semantic description. The graphical environment focuses on objects and their interactions (object topology, attribute values, concurrent activities, subsystems, synchronizations), provides a set of primitives for controlling and probing the execution (granularity of interleaving, step-by-step execution, control over the interleaving), and detects deadlock configurations when they occur. Due to non-determinism of concurrency, it is crucial to provide the user with the possibility to investigate the interleaving space of all possible executions. The outcome of such an approach is twofold: (i) a pedagogic environment to demonstrate concepts of object-oriented programming, actor computation, and formal semantics; (ii) a step towards environments for the formal study of parallel object-oriented programming. Here are examples of typical sessions:




    A Speech Recognition Application:


    Sequential Version:




    Parallel Version:






    Documentation

  • A Natural Semantics for Eiffel Dynamic Binding
    ACM Transactions on Programming Languages and Systems (TOPLAS), 18 (5) , November 1996.
  • Semantic-based visualization for parallel object-oriented programming
    OOPSLA'96 (Object-Oriented Programming: Systems, Languages, and Applications), ACM Press, Sigplan Notices, Vol. 31, No. 10, San Jose, CA , October 1996.


  • Contact

    Isabelle Attali
    Croap
    INRIA Sophia Antipolis BP 93
    06902 Sophia Antipolis - France
    (33) 4 93 65 79 10
    Isabelle.Attali@sophia.inria.fr
    Denis Caromel
    Sloop
    INRIA Sophia Antipolis BP 93
    06902 Sophia Antipolis - France
    (33) 4 93 65 76 31
    Denis.Caromel@sophia.inria.fr