service equivalence via multiparty session type
play

Service Equivalence via Multiparty Session Type Isomorphisms Assel - PowerPoint PPT Presentation

Service Equivalence via Multiparty Session Type Isomorphisms Assel Altayeva December 19, 2019 ABCD meeting Glasgow Assel Altayeva mrg.doc.ic.ac.uk Imperial College London 1 / 36 Setting Interoperability of Service Oriented Architecture


  1. Service Equivalence via Multiparty Session Type Isomorphisms Assel Altayeva December 19, 2019 ABCD meeting Glasgow Assel Altayeva mrg.doc.ic.ac.uk Imperial College London 1 / 36

  2. Setting Interoperability of Service Oriented Architecture Bridging: Matching: Constructive adaptors Service specification Interoperability is a fundamental problem in software design, arising in various contexts (reuse, integration and legacy services) Assel Altayeva 2 /36 mrg.doc.ic.ac.uk Imperial College London 2 / 36

  3. Motivation: Medical Health Record ◮ Distributed Ledger Technology smart contract correctness does not have a formal verification framework. ◮ What is the optimal way to structure communication to ensure data provenance and safety? Assel Altayeva 3 /36 mrg.doc.ic.ac.uk Imperial College London 3 / 36

  4. Choreography of a medical health records system ◮ Industrial component based systems consist of a choreography of modules in which data items often possess a critical identity across their journey(Patient’s Health Record Privacy and Accessibility). ◮ If provenance of data is formalised as traceability of items, then the expectations of provenance are formalised by a notion of component interfaces and component composition that can predicate over the journey of data items. ◮ We understand reuse and adaptability in terms of global choreographies of messages between components, considered as sessions across processes. Assel Altayeva 4 /36 mrg.doc.ic.ac.uk Imperial College London 4 / 36

  5. Distributed communication protocol- Health Record ◮ Four independent interfaces (Patient, Insurance, Doctor, Hospital Record) ◮ Structured protocol according to ◮ rules of interactions (ex. Prescribe, Quote) ◮ local contract conditions (Patient-Insurance) ◮ accessibilty (ex. Secure record) ◮ Message-passing peer-to-peer communication ◮ No global control P I D R Book RetrRec Symptoms Prescr Quote Prescr UpRec Assel Altayeva 5 /36 mrg.doc.ic.ac.uk Imperial College London 5 / 36

  6. Problem ◮ Global Choreography combines interface behaviours ◮ Question: How to verify correctness of the overall global choreography up to an equivalence (isomorphism)? ◮ Goal: ◮ certified substitutability within a global choreography ◮ provide interaction success (no orphan messages, deadlocks) ◮ Method: Multiparty Session Types (MPST) ◮ Type theory for channel-based π -calculus ◮ Global interaction choreographies between several participants ◮ Local type enforcement to guarantee global progress (according to the specification). ◮ Session refinement: enforcing other properties (security, state) Assel Altayeva 6 /36 mrg.doc.ic.ac.uk Imperial College London 6 / 36

  7. Type isomorphisms in Functional Programming The notion of conversion, or adaptation without loss of information between types is commonly known as an isomorphism between the two types 1 f id A id B A B g Two types are isomorphic ( A ∼ = B ) if there are mutually inverse procedures for transforming data between them. 1 R. Di Cosmo. Isomorphisms of types: from λ -calculus to information retrieval and language design., 1995 Assel Altayeva 7 /36 mrg.doc.ic.ac.uk Imperial College London 7 / 36

  8. Type isomorphisms practices: Functional Programming ◮ Types as search keys : using type isomorphism as a key tool for retrieving library components. (HOOGLE) ◮ Inside Type Systems : performing transformations of data types inside a programming language via isomorphism.(Mockingbird) ◮ Building Coercions :defining glue code in order to adapt to different contexts and language constructs(classes, objects and modules, dependent types in proof assistants) Assel Altayeva 8 /36 mrg.doc.ic.ac.uk Imperial College London 8 / 36

  9. Approaches to behavioral equivalences ◮ Bisimulation two systems are able to mimic each others behaviour stepwise. 2 ◮ Testing two systems are considered to be equivalent if an external observer cannot distinguish between them. 3 ◮ Trace considers the computations of the systems taken in isolation, thus abstracting from the branching points of their behaviour. 4 2 D. Kouzapas, N. Yoshida:Globally Governed Session Semantics. LMCS, 2014 3 G. Bernardi, M. Hennessy: Mutually Testing Processes. LMCS 2015 4 R. Demangeon, N. Yoshida: On the Expressiveness of Multiparty Sessions. FSTTCS 2015 Assel Altayeva 9 /36 mrg.doc.ic.ac.uk Imperial College London 9 / 36

  10. Multiparty session types 5 Global type Local type Local type Local type Process Process Process ◮ Structured communications from a global point of view, for example: G = A → B : m 1 ; B → C : m 2 ; A → C : m 3 . end ◮ Type-checking strategy of processes through projection of global types onto participants : G ↾ B = A ? m 1 ; C ! m 2 ; end 5 K. Honda, N.Yoshida, M. Carbone: Multiparty asynchronous session types. Assel Altayeva 10 /36 POPL 2008 mrg.doc.ic.ac.uk Imperial College London 10 / 36

  11. GP visit protocol Patient Provider Doctor HR (1)Book (2)RetrRec (3)Symptoms Prescr Quote Prescr (4)choice Update Refer Quote Refer Test Assel Altayeva 11 /36 mrg.doc.ic.ac.uk Imperial College London 11 / 36

  12. Multiparty session type for NHS GP visit protocol G NHS = (1) Patient → NHS : � Book � ; (2) Doctor → HR : � RetrRec � ; (3) Patient → Doctor : � Symptoms � ; (4) Doctor → Patient : { Prescr: HR → NHS : � Quote � ; Doctor → HR : { Prescr : Doctor → HR : � Update � ;end } , Refer : HR → NHS : � Quote � ; Doctor → HR : { Refer : Doctor → HR : � Test � ;end } } . Assel Altayeva 12 /36 mrg.doc.ic.ac.uk Imperial College London 12 / 36

  13. NHS GP visit protocol Patient NHS Doctor HR (1)Book (2)RetrRec (3)Symptoms Prescr Quote Prescr (4)choice Update Refer Quote Refer Test Assel Altayeva 13 /36 mrg.doc.ic.ac.uk Imperial College London 13 / 36

  14. Private GP visit protocol Patient Insurance Doctor HR (1)RetrRec (2)Book (3)Date (4)Quote Prescr Prescr (5)choice Update Refer Refer Test Assel Altayeva 14 /36 mrg.doc.ic.ac.uk Imperial College London 14 / 36

  15. Candidate for equivalent multiparty session type G Private = (1) Doctor → HR : � RetrRec � ; (2) Patient → Insurance : � Book � ; (3) Patient → Doctor : � date � ; (4) HR → Insurance : � quote � ; (5) Doctor → Patient : { Prescr : Doctor → HR : { Prescr : Doctor → HR : � Update � ;end } , Refer : Doctor → HR : { Refer : Doctor → HR : � Test � ;end }} . Are these two global types equivalent? G NHS ∼ = ? G Private Assel Altayeva 15 /36 mrg.doc.ic.ac.uk Imperial College London 15 / 36

  16. Type theoretic behavioural equivalence example An interface type for an online banking system’s login string login(string username, int pin) can be considered isomorphic to string login2(int pin, string username) because we can convert or adapt code that satisfies the first type to match the second, and vice versa: string login2(int pin, string username) { return login(username, pin); } Assel Altayeva 16 /36 mrg.doc.ic.ac.uk Imperial College London 16 / 36

  17. Isomorphism and invertibility The study of the type isomorphisms in λ -calculus is based on the notion of λ -term invertibility. Dezani fully characterized invertible λ -terms in 6 as the finite hereditary permutators, λ -terms of the form λ xy 1 .. y n . x ( P 1 y π (1) ) ... ( P n y π ( n ) )( n ≥ 0) where π is a permutation of 1 ,.., n , and P 1 ,..., P n are FHPs. A × B ∼ (Ax 1) = B × A A × ( B × C ) ∼ (Ax 2) = ( A × B ) × C ( A × B ) → C ∼ (Ax 3) = A → ( B → C ) A → ( B × C ) ∼ (Ax 4) = ( A → B ) × ( A → C ) Table: Some type isomorphisms axioms for the First order λ -calculus 6 M. Dezani-Ciancaglini: Characterization of Normal Forms Possessing Inverse in the lambda-beta-eta-Calculus. TCS 2(3): 323-337 (1976) Assel Altayeva 17 /36 mrg.doc.ic.ac.uk Imperial College London 17 / 36

  18. How to axiomatise multiparty session type isomorphism in the context of adaptation?

  19. Approach ◮ Trace-based (denotational) models of session types to compare expressiveness of sessions. ◮ Λ-term combinators over syntactic structure of the global type. ◮ Logical specifications to impose restrictions. Assel Altayeva 19 /36 mrg.doc.ic.ac.uk Imperial College London 19 / 36

  20. Multiparty session types syntax Participants p , q .. Types of exchanged messages U ∈ { Bool , Int } Labels l 1 ,..., l n Prefix g ::= p → q : � U � inp( g ) := q , out( g ) := p pid( g ) = { p , q } ; Branch Prefix g i ::= p → q : l i , ∀ i ∈ I inp( g i ) := q , out( g i ) := p ∀ i ∈ I pid (g i ) = { p , q } . Assel Altayeva 20 /36 mrg.doc.ic.ac.uk Imperial College London 20 / 36

  21. Multiparty session type syntax U ::= Bool | Int Value types Global types Gtype ::= g; G Prefix g 1 ; G 1 × ... × g k ; G k , k ∈ I Branching µ t . G t end Recursion/end Local session types T ::= inp(g)! � U � ; T Send out(g)? � U � ; T Receive inp(g) ⊕{ l i ; T i } Branching out(g) & { l i ; T i } Selection µ t . T t | | end Recursion/end Assel Altayeva 21 /36 mrg.doc.ic.ac.uk Imperial College London 21 / 36

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