integration of a modelling language and a distributed
play

Integration of a modelling language and a distributed programming - PowerPoint PPT Presentation

Integration of a modelling language and a distributed programming language Alexis Grall 11/06/2019 advisors : Dominique Mery and Horatiu Cirstea Alexis Grall Integration of a modelling language and a distributed programming language


  1. Integration of a modelling language and a distributed programming language Alexis Grall 11/06/2019 advisors : Dominique Mery and Horatiu Cirstea Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 1 / 39

  2. Introduction 1 Event-B 2 DistAlgo 3 Stop-and-wait ARQ 4 Model for the stop-andwait ARQ and its transformation 5 Conclusion 6 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 2 / 39

  3. Introduction Main objective : automatically translate models of distributed algorithms into executable programs. The models are obtained by refinement with the Event-B method. The chosen programming language is DistAlgo. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 3 / 39

  4. Introduction Service Induction refines First machine Communi- refines cation Second machine Event-B models Localization refines Third machine DistAlgo program Intermediate refines Language Transformation Program Machine to transform Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 4 / 39

  5. Introduction 1 Event-B 2 DistAlgo 3 Stop-and-wait ARQ 4 Model for the stop-andwait ARQ and its transformation 5 Conclusion 6 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 5 / 39

  6. Event-B Method for modelling systems Based on set theory Refinement of models Proof assistant and model checker. Framework Rodin is used. A model consists of contexts and machines Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 6 / 39

  7. Context A context specifies Types (which are sets) Constants Axioms and theorems Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 7 / 39

  8. Machine A machine specifies Variables Invariants on the variables Events which define the state transition of the system. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 8 / 39

  9. Events An INITIALISATION event initialises the variables of the machine. Other events are made of : Parameters Guards on the variables and parameters Actions which modify the variables When there exists values for the parameters for which the guards are true, the event is then enabled. When an event is enabled, the actions of the event can be observed. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 9 / 39

  10. Introduction 1 Event-B 2 DistAlgo 3 Stop-and-wait ARQ 4 Model for the stop-andwait ARQ and its transformation 5 Conclusion 6 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 10 / 39

  11. DistAlgo Programming language for distributed algorithms High level Based on Python Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 11 / 39

  12. Structure of a DistAlgo program A DistAlgo program defines some class of processes and a main method. The main method instantiates the processes of each class of process and runs them. A class of processes consists of A setup method to initialise the local variables of the process. A run method with the program of the process. Message handlers that are executed when messages are received. User methods Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 12 / 39

  13. Program structure class A(process): def setup( args ): setup _ body def receive(msg= mexp , from_= pexp ): receive _ body def run(): run _ body class B(process): . . . def main (* args): a = new(A) setup(a, ( args )) start(a) Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 13 / 39

  14. Communication Sending a message : send( mexp , to= pexp ) Messages are received at yield points : await statements. The statement await( bexp ) triggers the reception of all the messages that arrived before but were not yet received. The process then waits for the condition bexp to be true while new messages are received. When a message is received, corresponding message handlers are executed. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 14 / 39

  15. Communication Receiver Sender msgQueue yield point copy send channel received transport layer copy if message handler exists else sent message handler body skip Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 15 / 39

  16. Introduction 1 Event-B 2 DistAlgo 3 Stop-and-wait ARQ 4 Model for the stop-andwait ARQ and its transformation 5 Conclusion 6 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 16 / 39

  17. Stop-and-wait ARQ A process p has an array IN of length n he wants to send to a process q and q wants to copy IN in an array OUT . Loss of messages can happen. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 17 / 39

  18. Stop-and-wait ARQ P Q IN , ns , n OUT , nr , n ns ← 0 nr ← 0 � 0 I , N [ 0 ] � � 0 , I N [ 0 OUT [ 0 ] ← IN [ 0 ] ] � nr ← nr + 1 � 0 � � 0 � ns ← ns + 1 . . . � i , IN [ i ] � OUT [ i ] ← IN [ i ] � i � nr ← nr + 1 ns ← ns + 1 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 18 / 39

  19. Automata for p Here is the automata for the program of process p . P _ receive P _ send P _ sending P _ waiting INITIALISATION P _ has _ not _ received P _ has _ received P _ stop _ sending done Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 19 / 39

  20. Automata for q Here is the automata for the program of process q . Q _ receive _ nr Q _ done Q _ waiting INITIALISATION done Q _ receive _ i Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 20 / 39

  21. Introduction 1 Event-B 2 DistAlgo 3 Stop-and-wait ARQ 4 Model for the stop-andwait ARQ and its transformation 5 Conclusion 6 Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 21 / 39

  22. Context CONTEXT C SETS NODES MESSAGES MESSAGE_TYPES STATES CONSTANTS P Q p q class of processes and processes P_sending P_waiting Q_waiting done reception_states states send receive lose functions for communication between processes IN n dest @P array to send, length of IN and dest = q source @Q source = p AXIOMS . . . END Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 22 / 39

  23. Transformation of the context With the context, we can already get the main structure of the program. class P(process): . . . class Q(process): . . . def main (): p = new(P) q = new(Q) IN = . . . n = . . . setup(p, (IN , n, q)) setup(q, (n, p)) start ({p,q}) Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 23 / 39

  24. Machine variables OUT , ns and nr are variables only for this algorithm. channel is the variable modelling the communication channels. pc is a function of NODES → STATES which gives the state of each process. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 24 / 39

  25. Initialisation The initialisation of the different variables is the following. MACHINE EVENTS Initialisation then act1 : OUT := ∅ function with the empty set as domain act2 : ns := 0 act3 : nr := 0 act4 : channel := emptyChannel act5 : pc := { p �→ P _ sending , q �→ Q _ waiting } END Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 25 / 39

  26. Setup of P The setup method for class P is obtained from the Initialisation event. class P(process): def setup(IN , n, dest): self.ns = 0 self.pc = "P_sending" def run(): . . . def receive( . . . ): . . . Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 26 / 39

  27. Events of p The different events of p are the transitions of its automata. P _ receive P _ send P _ sending P _ waiting INITIALISATION P _ has _ not _ received P _ has _ received P _ stop _ sending done Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 27 / 39

  28. Events of p P _ stop _ sending is a local event of computation. P _ send is a sending event. P _ has _ received is an await event. P _ has _ not _ received is an await event. P _ receive is a reception event. Here, P _ waiting is the only reception state. Events P _ has _ not _ received and P _ has _ received are enabled in this reception state and thus are await events. Alexis Grall Integration of a modelling language and a distributed programming language 11/06/2019 28 / 39

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend