core calculi
play

Core -calculi Simon Fowler Joint work with Sam Lindley and Philip - PowerPoint PPT Presentation

Actors and Channels in Core -calculi Simon Fowler Joint work with Sam Lindley and Philip Wadler ABCD Meeting, January 2016 Actors and Channels Hopac Actors and Channels Process Actor Process Process Hopac Actors and Channels ? Hopac


  1. Actors and Channels in Core λ -calculi Simon Fowler Joint work with Sam Lindley and Philip Wadler ABCD Meeting, January 2016

  2. Actors and Channels Hopac

  3. Actors and Channels Process Actor Process Process Hopac

  4. Actors and Channels ? Hopac

  5. Why? • Concise formalisations of transformations between actors and channels • Explore design issues with (session) type-parameterised actor calculi • Influence design of session-typed actors for Links

  6. 𝜇 ch : A channel-based 𝜇 -calculus

  7. 𝜇 ch : Channel Typing Rules

  8. 𝜇 𝑑ℎ : Communication Semantics

  9. Actor-based Functional Languages • Based on the actor model (Agha, 1985), not the same – Actors represented as lightweight processes , scheduled by RTS – No explicit notion of behaviour / become – Computation modelled directly • Primitives - module (stack). - compile (export_all). loop(State) -> – spawn receive {pop, Pid} -> – send [Hd|Tl] = State, Pid ! Hd, – receive loop(Tl); {push, Item} -> – (wait) loop([Item] ++ State) end . spawn_stack() -> spawn (stack, loop, [[]]).

  10. The Type Pollution Problem Client joinOk / joinRequest joinFailed ChatServer has type Pid(joinRequest + joinSuccessful + ChatServer roomFull) …wherever we use it! joinSuccessful / userJoinRequest roomFull ChatRoom

  11. 𝜇 act : A core actor-based 𝜇 - calculus

  12. 𝜇 act : Selected Typing Rules

  13. (An alternative formulation of wait) spawnWait construct: combination of spawn and wait

  14. 𝜇 act : Configurations Actors are a three-tuple: Term being Process ID Mailbox evaluated

  15. 𝜇 act : Communication Semantics

  16. Translations: Desired Properties • Translation function : Actors in terms of channels • Type Preservation: – Terms: – Configurations • Semantics Preservation – Terms – Configurations

  17. Actors implemented using channels Idea (based on Cooper et al., 2006): create a channel and use it as a mailbox, “threaded through” the translation Mailbox Result Channel Channel Pass mailbox channel as an argument to the function

  18. 𝜇 𝑏𝑑𝑢 in 𝜇 𝑑ℎ : Translation on T erms Top-level term: create mailbox channel, pass as parameter to translation Extra parameter c’ to pass mailbox channel to the function c applied to translated function M

  19. 𝜇 act in 𝜇 ch : Translation on T erms Create a mailbox and result channel; fork a new process; evaluate result; and give to result channel Translate PID; give to mailbox channel Translate PID; take from result channel

  20. Translations: Desired Properties • Translation function : Channels in terms of actors • Type Preservation: – Terms: – Configurations • Semantics Preservation – Terms – Configurations

  21. Channels implemented using Actors • Idea: represent channels as processes ; emulate give and take using internal state Channels: pair of take and give functions C can be any type , as translated functions don’t have the ability to receive from mailboxes

  22. Translations on T erms (the easy ones)

  23. Translation of newCh … let drainBufferFn = rec drainBuffer(runningState: List(C) * List(C -> C 1)): (List(C), * List(C -> C 1)) . let (vals, readers) = runningState in case vals of [] |-> (vals, readers) [v] ++ vs |-> case readers of [] |-> (vals, readers) [rFn] ++ rs |-> rFn v; drainBuffer (vs, rs) in let stepFn = rec step(state: (List(C) * List(C -> C 1)): 1. let (vals, readers) = drainBufferFn state in let msg = receive in case msg of inl v |-> step (vals ++ [v], readers) inr sendFn |-> step (vals, readers ++ [sendFn]) in let chanPid = spawn(stepFn([], [])) in let giveFn = λ x. send (inl x) chanPid in let takeFn = λ x. let newPid = spawn ( λ newPid -> send chanPid (inr ( λ val -> send val newPid)); receive) in wait newPid in (takeFn, giveFn)

  24. Seriously though: 1. Define a function to ensure that either the buffer or list of blocked readers is empty at each step. State: list of buffered values, and list of send callbacks let drainBufferFn = rec drainBuffer(runningState: List(C) * List(C -> C 1)): (List(C) * List(C -> C 1)) . let (vals, readers) = runningState in case vals of If buffer is empty, stop [] |-> (vals, readers) Otherwise, send the top value and recurse [v] ++ vs |-> If buffer is nonempty, but case readers of list of readers is, stop [] |-> (vals, readers) [rFn] ++ rs |-> rFn v; drainBuffer (vs, rs) in …

  25. Seriously though: 2. Define a loop function stepFn which calls drainBufferFn , then receives a message and modifies the state let stepFn = rec step(state: (List(C) * List(C -> C 1)): 1. Message can either be inl value or let (vals, readers) = drainBufferFn state in If a callback, add to callback If a value, add to buffer inr callback let msg = receive in list case msg of inl v |-> step (vals ++ [v], readers) inr sendFn |-> step (vals, readers ++ [sendFn]) in ...

  26. Seriously though: 3. Spawn a new actor with empty state; define functions for give and take Spawn a new actor, executing stepFn give implemented by let chanPid = spawn(stepFn([], [])) in sending inl value to the let giveFn = λ x. send (inl x) chanPid in channel process let takeFn = λ x. let newPid = spawn ( λ newPid -> send (inr ( λ val -> send val newPid) chanPid); receive) in take: spawn new actor which sends wait newPid in callback to channel process, then receives (takeFn, giveFn) result. wait for result from spawned actor.

  27. Still to do / the future • Goal: A minimal behaviourally typed actor calculus – Conjecture: there exists a minimal session-typed actor calculus • …which we can do analogous translations to / from asynchronous GV • …not needing recursion for the channel -> actor translation • …with simpler session types (no ! / ? required?) – Influence a design for session-typed actors in Links • A better solution to type pollution – Subtyping? • Lots of proving to do!

  28. Extra slides

  29. Actor Configuration Typing

  30. Session Actor Calculus Sketch

  31. Actor-based Functional Languages vs. the Actor Model • A word of caution regarding terminology! • Actors: a minimal concurrency model – Unforgeable PID, message queue (mailbox) – Behaviour B 1. Send a finite set of messages hello to another actor A Привет C

  32. Actor-based Functional Languages vs. the Actor Model • A word of caution regarding terminology! • Actors: a minimal concurrency model – Unforgeable PID, message queue (mailbox) – Behaviour D 2. Spawn a finite set of new actors A E

  33. Actor-based Functional Languages vs. the Actor Model • A word of caution regarding terminology! • Actors: a minimal concurrency model – Unforgeable PID, message queue (mailbox) – Behaviour 3. Change behaviour: react differently when processing A A next message

  34. Actor-based Functional Languages vs. the Actor Model • Agha (1985) introduces minimal actor languages SAL and Act, which stay very true to the core actor model: Acquaintance List Communication List Change Behaviour Send Message Spawn new actor

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