modular session types for distributed object oriented
play

Modular Session Types for Distributed Object-Oriented Programming - PowerPoint PPT Presentation

Modular Session Types for Distributed Object-Oriented Programming Simon J. Gay Antnio Ravara Vasco T. Vasconcelos Nils Gesbert Alexandre Z. Caldeira New University of Lisbon Formerly Technical University University of Glasgow University


  1. Modular Session Types for Distributed Object-Oriented Programming Simon J. Gay António Ravara Vasco T. Vasconcelos Nils Gesbert Alexandre Z. Caldeira New University of Lisbon Formerly Technical University University of Glasgow University of Lisbon of Lisbon POPL, 21st January 2010 Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 1 / 12

  2. Running Example: Mail Reader enum ErrorStatus { OK, ERR } interface MailReader { ErrorStatus login (String user, String pass); int getNumberOfMessages(); ErrorStatus fetchAndDelete (int index); String getMessageContent(); void logout(); } Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 2 / 12

  3. Constraints Cannot fetch messages before (successful) login or after logout Cannot get the content of a message before it is fetched successfully Should not fetch a new message before the previous one is read or saved Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 3 / 12

  4. Constraints Cannot fetch messages before (successful) login or after logout Cannot get the content of a message before it is fetched successfully Should not fetch a new message before the previous one is read or saved Not any method can be safely called at any time; the interface (set of available methods) changes depending of what is done. We propose to represent that fact at the type level. Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 3 / 12

  5. Session Types for Objects Several methods available: external choice {fetchAndDelete: S, logout: S’} Object branches / Client selects by calling a method Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 4 / 12

  6. Session Types for Objects Several methods available: external choice {fetchAndDelete: S, logout: S’} Object branches / Client selects by calling a method Dependency on a method result: internal choice <OK: S, ERR: S’> Object selects by returning a label / Client branches Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 4 / 12

  7. Session Types for Objects Several methods available: external choice {fetchAndDelete: S, logout: S’} Object branches / Client selects by calling a method Dependency on a method result: internal choice <OK: S, ERR: S’> Object selects by returning a label / Client branches Session Init = {login: <OK: NoMsg, ERR: Init>} where NoMsg = {fetchAndDelete: <OK: MsgRead, ERR: NoMsg>, getNumberOfMessages: NoMsg, logout: {} } and MsgRead = {getMessageContent: NoMsg, getNumberOfMessages: MsgRead, logout: {getMessageContent: {}} } Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 4 / 12

  8. ✵ ✵ ❵ How it works Calling a method advances the session type of the object If the continuation is an internal choice, client must switch on the result to resolve it Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 5 / 12

  9. ✵ ✵ ❵ How it works Calling a method advances the session type of the object If the continuation is an internal choice, client must switch on the result to resolve it Objects are linear but may be stored in fields of other objects Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 5 / 12

  10. ✵ ✵ ❵ How it works Calling a method advances the session type of the object If the continuation is an internal choice, client must switch on the result to resolve it Objects are linear but may be stored in fields of other objects External type of an object: session type, C [ S ] Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 5 / 12

  11. ✵ ✵ ❵ How it works Calling a method advances the session type of the object If the continuation is an internal choice, client must switch on the result to resolve it Objects are linear but may be stored in fields of other objects External type of an object: session type, C [ S ] Internal state of an object: type of its fields, C [ F ] Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 5 / 12

  12. How it works Calling a method advances the session type of the object If the continuation is an internal choice, client must switch on the result to resolve it Objects are linear but may be stored in fields of other objects External type of an object: session type, C [ S ] Internal state of an object: type of its fields, C [ F ] Judgements: Expressions: Γ ⊲ e : T ⊳ Γ ✵ For a method body: this : C [ F ] ⊲ e : T ⊳ this : C [ F ✵ ] Internal/External state compatibility: F ❵ C : S Coinductively checks method bodies in order Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 5 / 12

  13. ❢ ❣ ✷ ❢ ❤ ✐ ✷ ❣ ✟❢ ❣ ✷ ❢ ❣ ✷ ✵ ✟ ✵ ❢ ❣ ✿ ❢ ❣ ✿ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  14. ❢ ❣ ✷ ❢ ❤ ✐ ✷ ❣ ✟❢ ❣ ✷ ❢ ❣ ✷ ✵ ✟ ✵ ❢ ❣ ✿ ❢ ❣ ✿ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  15. ❢ ❣ ✷ ❢ ❤ ✐ ✷ ❣ ✟❢ ❣ ✷ ❢ ❣ ✷ ✵ ❢ ❣ ✿ ❢ ❣ ✿ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Choice: ✟ {validate: Σ , cancel: Σ ✵ } Allows a selection by sending one of the labels Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  16. ❢ ❣ ✷ ❢ ❤ ✐ ✷ ❣ ✟❢ ❣ ✷ ❢ ❣ ✷ ❢ ❣ ✿ ❢ ❣ ✿ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Choice: ✟ {validate: Σ , cancel: Σ ✵ } Allows a selection by sending one of the labels Branching: &{ok: Σ , error: Σ ✵ } May receive any of the labels Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  17. ❢ ❣ ✷ ❢ ❤ ✐ ✷ ❣ ✟❢ ❣ ✷ ❢ ❣ ✷ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Choice: ✟ {validate: Σ , cancel: Σ ✵ } Allows a selection by sending one of the labels Branching: &{ok: Σ , error: Σ ✵ } May receive any of the labels Channels can be treated like objects � ? T ✿ Σ � = ❢ receive T : � Σ � ❣ � ! T ✿ Σ � = ❢ send T : � Σ � ❣ Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  18. ✟❢ ❣ ✷ ❢ ❣ ✷ Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Choice: ✟ {validate: Σ , cancel: Σ ✵ } Allows a selection by sending one of the labels Branching: &{ok: Σ , error: Σ ✵ } May receive any of the labels Channels can be treated like objects � ? T ✿ Σ � = ❢ receive T : � Σ � ❣ � ! T ✿ Σ � = ❢ send T : � Σ � ❣ � & ❢ l : Σ l ❣ l ✷ E � = ❢ receive E : ❤ l : � Σ l � ✐ l ✷ E ❣ Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  19. Session Types for Channels Honda et al., 1993-present Originally meant for typing communication channels in the ✙ -calculus: describes a protocol Sequence, send, receive: !String.?Bool... Choice: ✟ {validate: Σ , cancel: Σ ✵ } Allows a selection by sending one of the labels Branching: &{ok: Σ , error: Σ ✵ } May receive any of the labels Channels can be treated like objects � ? T ✿ Σ � = ❢ receive T : � Σ � ❣ � ! T ✿ Σ � = ❢ send T : � Σ � ❣ � & ❢ l : Σ l ❣ l ✷ E � = ❢ receive E : ❤ l : � Σ l � ✐ l ✷ E ❣ � ✟❢ l : Σ l ❣ l ✷ E � = ❢ send l : � Σ l � ❣ l ✷ E Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 6 / 12

  20. Example: simplified POP3 Protocol Type POP3 = !String.!String.&{OK: Trans, ERR: POP3} where Trans = ✟ { STAT: ?int.Trans, DELE: !int.Trans, QUIT: End, RETR: !int.&{OK: ?String.Trans, ERR: Trans} } Gay, Gesbert, Ravara, Vasconcelos and Caldeira Modular session types for objects 7 / 12

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