aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/actor.lux
blob: 3384b7b66352034d08a32d5844308c80ebd33c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
(.module: {#.doc "The actor model of concurrency."}
  [lux #*
   ["." function]
   [abstract
    monad]
   [control
    ["p" parser]
    ["ex" exception (#+ exception:)]]
   ["." io (#+ IO io) ("#;." monad)]
   [data
    ["." product]
    ["." error (#+ Error)]
    [text
     format]
    [collection
     ["." list ("#;." monoid monad fold)]]]
   ["." macro (#+ with-gensyms monad)
    ["." code]
    ["s" syntax (#+ syntax: Syntax)]
    [syntax
     ["cs" common
      ["csr" reader]
      ["csw" writer]]]]
   [type
    abstract]]
  [//
   ["." atom (#+ Atom atom)]
   ["." promise (#+ Promise Resolver) ("#;." monad)]])

(exception: #export poisoned)

(exception: #export (dead {actor-name Text}
                          {message-name Text})
  (ex.report ["Actor" actor-name]
             ["Message" message-name]))

(with-expansions
  [<Message> (as-is (-> s (Actor s) (Promise (Error s))))
   <Obituary> (as-is [Text s (List <Message>)])
   <Mailbox> (as-is (Rec Mailbox
                      [(Promise [<Message> Mailbox])
                       (Resolver [<Message> Mailbox])]))]

  (def: (obituary [read write])
    (All [a]
      (-> (Rec Mailbox
            [(Promise [a Mailbox])
             (Resolver [a Mailbox])])
          (List a)))
    (case (promise.poll read)
      (#.Some [head tail])
      (#.Cons head (obituary tail))
      
      #.None
      #.Nil))
  
  (abstract: #export (Actor s)
    {#.doc "An actor, defined as all the necessities it requires."}
    
    {#mailbox (Atom <Mailbox>)
     #obituary [(Promise <Obituary>)
                (Resolver <Obituary>)]}

    ## TODO: Delete after new-luxc becomes the new standard compiler.
    (def: (actor mailbox obituary)
      (All [s]
        (-> (Atom <Mailbox>)
            [(Promise <Obituary>)
             (Resolver <Obituary>)]
            (Actor s)))
      (:abstraction {#mailbox mailbox
                     #obituary obituary}))

    (type: #export (Message s)
      <Message>)

    (type: #export (Obituary s)
      <Obituary>)

    (type: #export (Behavior s)
      {#.doc "An actor's behavior when messages are received."}
      {#handle (-> (Message s) s (Actor s) (Promise (Error s)))
       #end (-> Text s (Promise Any))})

    (def: #export (spawn behavior init)
      {#.doc "Given a behavior and initial state, spawns an actor and returns it."}
      (All [s] (-> (Behavior s) s (IO (Actor s))))
      (io (let [[handle end] behavior
                self (actor (atom (promise.promise []))
                            (promise.promise []))
                process (loop [state init
                               [|mailbox| _] (io.run (atom.read (get@ #mailbox (:representation self))))]
                          (do promise.monad
                            [[head tail] |mailbox|
                             ?state' (handle head state self)]
                            (case ?state'
                              (#error.Failure error)
                              (do @
                                [_ (end error state)]
                                (let [[_ resolve] (get@ #obituary (:representation self))]
                                  (exec (io.run (resolve [error state (#.Cons head (..obituary tail))]))
                                    (wrap []))))

                              (#error.Success state')
                              (recur state' tail))))]
            self)))

    (def: #export (alive? actor)
      (All [s] (-> (Actor s) Bit))
      (let [[obituary _] (get@ #obituary (:representation actor))]
        (case (promise.poll obituary)
          #.None
          #1

          _
          #0)))

    (def: #export (send message actor)
      {#.doc "Communicate with an actor through message passing."}
      (All [s] (-> (Message s) (Actor s) (IO Bit)))
      (if (alive? actor)
        (let [entry [message (promise.promise [])]]
          (do io.monad
            [|mailbox|&resolve (atom.read (get@ #mailbox (:representation actor)))]
            (loop [[|mailbox| resolve] |mailbox|&resolve]
              (case (promise.poll |mailbox|)
                #.None
                (do @
                  [resolved? (resolve entry)]
                  (if resolved?
                    (do @
                      [_ (atom.write (product.right entry) (get@ #mailbox (:representation actor)))]
                      (wrap #1))
                    (recur |mailbox|&resolve)))
                
                (#.Some [_ |mailbox|'])
                (recur |mailbox|')))))
        (io;wrap #0)))
    )
  )

(def: (default-handle message state self)
  (All [s] (-> (Message s) s (Actor s) (Promise (Error s))))
  (message state self))

(def: (default-end cause state)
  (All [s] (-> Text s (Promise Any)))
  (promise;wrap []))

(def: #export default-behavior
  (All [s] (Behavior s))
  {#handle default-handle
   #end default-end})

(def: #export (poison actor)
  {#.doc (doc "Kills the actor by sending a message that will kill it upon processing,"
              "but allows the actor to handle previous messages.")}
  (All [s] (-> (Actor s) (IO Bit)))
  (send (function (_ state self)
          (promise.resolved (ex.throw ..poisoned [])))
        actor))

(template [<with> <resolve> <tag> <desc>]
  [(def: #export (<with> name)
     (-> Name cs.Annotations cs.Annotations)
     (|>> (#.Cons [(name-of <tag>)
                   (code.tag name)])))

   (def: #export (<resolve> name)
     (-> Name (Meta Name))
     (do macro.monad
       [[_ annotations _] (macro.find-def name)]
       (case (macro.get-tag-ann (name-of <tag>) annotations)
         (#.Some actor-name)
         (wrap actor-name)

         _
         (macro.fail (format "Definition is not " <desc> ".")))))]

  [with-actor   resolve-actor   #..actor   "an actor"]
  [with-message resolve-message #..message "a message"]
  )

(def: actor-decl^
  (Syntax [Text (List Text)])
  (p.either (s.form (p.and s.local-identifier (p.some s.local-identifier)))
            (p.and s.local-identifier (:: p.monad wrap (list)))))

(template [<name> <desc>]
  [(def: #export <name>
     (-> Text Text)
     (|>> (format <desc> "@")))]

  [state-name    "State"]
  [behavior-name "Behavior"]
  [new-name      "new"]
  )

(type: HandleC
  [[Text Text Text] Code])

(type: StopC
  [[Text Text] Code])

(type: BehaviorC
  [(Maybe HandleC) (Maybe StopC)])

(def: behavior^
  (s.Syntax BehaviorC)
  (let [handle-args ($_ p.and s.local-identifier s.local-identifier s.local-identifier)
        stop-args ($_ p.and s.local-identifier s.local-identifier)]
    (p.and (p.maybe (s.form (p.and (s.form (p.after (s.this (' handle)) handle-args))
                                   s.any)))
           (p.maybe (s.form (p.and (s.form (p.after (s.this (' stop)) stop-args))
                                   s.any))))))

(syntax: #export (actor:
                   {export csr.export}
                   {[_name _vars] actor-decl^}
                   {annotations (p.default cs.empty-annotations csr.annotations)}
                   state-type
                   {[?handle ?stop] behavior^})
  {#.doc (doc "Defines an actor, with its behavior and internal state."
              (actor: #export Counter
                Nat

                ((stop cause state)
                 (:: promise.monad wrap
                     (log! (if (ex.match? ..poisoned cause)
                             (format "Counter was poisoned: " (%n state))
                             cause)))))

              (actor: #export (Stack a)
                (List a)

                ((handle message state self)
                 (do (error.with promise.monad)
                   [#let [_ (log! "BEFORE")]
                    output (message state self)
                    #let [_ (log! "AFTER")]]
                   (wrap output)))))}
  (with-gensyms [g!_ g!init]
    (do @
      [module macro.current-module-name
       #let [g!type (code.local-identifier (state-name _name))
             g!behavior (code.local-identifier (behavior-name _name))
             g!actor (code.local-identifier _name)
             g!new (code.local-identifier (new-name _name))
             g!vars (list;map code.local-identifier _vars)]]
      (wrap (list (` (type: (~+ (csw.export export)) ((~ g!type) (~+ g!vars))
                       (~ state-type)))
                  (` (type: (~+ (csw.export export)) ((~ g!actor) (~+ g!vars))
                       (~ (|> annotations
                              (with-actor [module _name])
                              csw.annotations))
                       (..Actor ((~ g!type) (~+ g!vars)))))
                  (` (def: (~+ (csw.export export)) (~ g!behavior)
                       (All [(~+ g!vars)]
                         (..Behavior ((~ g!type) (~+ g!vars))))
                       {#..handle (~ (case ?handle
                                       #.None
                                       (` (~! ..default-handle))

                                       (#.Some [[messageN stateN selfN] bodyC])
                                       (` (function ((~ g!_)
                                                     (~ (code.local-identifier messageN))
                                                     (~ (code.local-identifier stateN))
                                                     (~ (code.local-identifier selfN)))
                                            ((~! do) ((~! error.with) (~! promise.monad))
                                             []
                                             (~ bodyC))))))
                        #..end (~ (case ?stop
                                    #.None
                                    (` (~! ..default-end))

                                    (#.Some [[causeN stateN] bodyC])
                                    (` (function ((~ g!_)
                                                  (~ (code.local-identifier causeN))
                                                  (~ (code.local-identifier stateN)))
                                         ((~! do) (~! promise.monad)
                                          []
                                          (~ bodyC))))))}))
                  (` (def: (~+ (csw.export export)) ((~ g!new) (~ g!init))
                       (All [(~+ g!vars)]
                         (-> ((~ g!type) (~+ g!vars)) (io.IO ((~ g!actor) (~+ g!vars)))))
                       (..spawn (~ g!behavior) (~ g!init))))))
      )))

(type: Signature
  {#vars (List Text)
   #name Text
   #inputs (List cs.Typed-Input)
   #state Text
   #self Text
   #output Code})

(def: signature^
  (s.Syntax Signature)
  (s.form ($_ p.and
              (p.default (list) (s.tuple (p.some s.local-identifier)))
              s.local-identifier
              (p.some csr.typed-input)
              s.local-identifier
              s.local-identifier
              s.any)))

(def: reference^
  (s.Syntax [Name (List Text)])
  (p.either (s.form (p.and s.identifier (p.some s.local-identifier)))
            (p.and s.identifier (:: p.monad wrap (list)))))

(syntax: #export (message:
                   {export csr.export}
                   {[actor-name actor-vars] reference^}
                   {signature signature^}
                   {annotations (p.default cs.empty-annotations csr.annotations)}
                   body)
  {#.doc (doc "A message can access the actor's state through the state parameter."
              "A message can also access the actor itself through the self parameter."
              "A message's output must be a task containing a 2-tuple with the updated state and a return value."
              "A message may succeed or fail (in case of failure, the actor dies)."

              (message: #export Counter
                (count! [increment Nat] state self Nat)
                (let [state' (n/+ increment state)]
                  (promise.resolved (#error.Success [state' state']))))

              (message: #export (Stack a)
                (push [value a] state self (List a))
                (let [state' (#.Cons value state)]
                  (promise.resolved (#error.Success [state' state'])))))}
  (with-gensyms [g!_ g!return g!error g!task g!sent? g!resolve]
    (do @
      [current-module macro.current-module-name
       actor-name (resolve-actor actor-name)
       #let [message-name [current-module (get@ #name signature)]
             g!type (code.identifier (product.both function.identity state-name actor-name))
             g!message (code.local-identifier (get@ #name signature))
             g!actor-vars (list;map code.local-identifier actor-vars)
             actorC (` ((~ (code.identifier actor-name)) (~+ g!actor-vars)))
             g!all-vars (|> (get@ #vars signature) (list;map code.local-identifier) (list;compose g!actor-vars))
             g!inputsC (|> (get@ #inputs signature) (list;map product.left))
             g!inputsT (|> (get@ #inputs signature) (list;map product.right))
             g!state (|> signature (get@ #state) code.local-identifier)
             g!self (|> signature (get@ #self) code.local-identifier)
             g!actor-refs (: (List Code)
                             (if (list.empty? actor-vars)
                               (list)
                               (|> actor-vars list.size list.indices (list;map (|>> code.nat (~) ($) (`))))))
             ref-replacements (|> (if (list.empty? actor-vars)
                                    (list)
                                    (|> actor-vars list.size list.indices (list;map (|>> code.nat (~) ($) (`)))))
                                  (: (List Code))
                                  (list.zip2 g!all-vars)
                                  (: (List [Code Code])))
             g!outputT (list;fold (function (_ [g!var g!ref] outputT)
                                    (code.replace g!var g!ref outputT))
                                  (get@ #output signature)
                                  ref-replacements)]]
      (wrap (list (` (def: (~+ (csw.export export)) ((~ g!message) (~+ g!inputsC) (~ g!self))
                       (~ (|> annotations
                              (with-message actor-name)
                              csw.annotations))
                       (All [(~+ g!all-vars)]
                         (-> (~+ g!inputsT)
                             (~ actorC)
                             ((~! promise.Promise) ((~! error.Error) (~ (get@ #output signature))))))
                       (let [[(~ g!task) (~ g!resolve)] (: [((~! promise.Promise) ((~! error.Error) (~ g!outputT)))
                                                            (promise.Resolver ((~! error.Error) (~ g!outputT)))]
                                                           (promise.promise []))]
                         ((~! io.run) ((~! do) (~! io.monad)
                                       [(~ g!sent?) (..send (function ((~ g!_) (~ g!state) (~ g!self))
                                                              ((~! do) (~! promise.monad)
                                                               [(~ g!return) (: ((~! promise.Promise)
                                                                                 ((~! error.Error)
                                                                                  [((~ g!type) (~+ g!actor-refs))
                                                                                   (~ g!outputT)]))
                                                                                ((~! do) ((~! error.with) (~! promise.monad))
                                                                                 []
                                                                                 (~ body)))]
                                                               (case (~ g!return)
                                                                 (#error.Success [(~ g!state) (~ g!return)])
                                                                 (exec ((~! io.run) ((~ g!resolve) (#error.Success (~ g!return))))
                                                                   ((~! promise.resolved) (#error.Success (~ g!state))))

                                                                 (#error.Failure (~ g!error))
                                                                 (exec ((~! io.run) ((~ g!resolve) (#error.Failure (~ g!error))))
                                                                   ((~! promise.resolved) (#error.Failure (~ g!error)))))
                                                               ))
                                                            (~ g!self))]
                                       (if (~ g!sent?)
                                         ((~' wrap) (~ g!task))
                                         ((~' wrap) ((~! promise.resolved)
                                                     ((~! ex.throw) ..dead [(~ (code.text (%name actor-name)))
                                                                            (~ (code.text (%name message-name)))])))))))))
                  )))))