aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/actor.lux
blob: 569a20bd2131b4f2de6ac042ab84f4b90708d646 (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
(.module:
  [library
   [lux "*"
    ["." debug]
    [abstract
     monad]
    [control
     [pipe {"+" [case>]}]
     ["." function]
     ["." try {"+" [Try]}]
     ["." exception {"+" [exception:]}]
     ["." io {"+" [IO io]}]
     ["<>" parser ("#\." monad)
      ["<.>" code {"+" [Parser]}]]]
    [data
     ["." bit]
     ["." product]
     [text
      ["%" format {"+" [format]}]]
     [collection
      ["." list ("#\." monoid monad)]]]
    ["." macro {"+" [with_identifiers]}
     ["." code]
     [syntax {"+" [syntax:]}
      ["|.|" input]
      ["|.|" annotations]]]
    [math
     [number
      ["n" nat]]]
    ["." meta {"+" [monad]}
     ["." annotation]]
    [type {"+" [:sharing]}
     ["." abstract {"+" [abstract: :representation :abstraction]}]]]]
  [//
   ["." atom {"+" [Atom atom]}]
   ["." async {"+" [Async Resolver]} ("#\." monad)]
   ["." frp {"+" [Channel]}]])

(exception: .public poisoned)
(exception: .public dead)

(with_expansions
  [<Mail> (as_is (-> s (Actor s) (Async (Try s))))
   <Obituary> (as_is [Text s (List <Mail>)])
   <Mailbox> (as_is (Rec Mailbox
                      [(Async [<Mail> Mailbox])
                       (Resolver [<Mail> Mailbox])]))]

  (def: (pending [read write])
    (All (_ a)
      (-> (Rec Mailbox
            [(Async [a Mailbox])
             (Resolver [a Mailbox])])
          (IO (List a))))
    (do {! io.monad}
      [current (async.value read)]
      (case current
        (#.Some [head tail])
        (\ ! each (|>> (#.Item head))
           (pending tail))
        
        #.None
        (in #.End))))
  
  (abstract: .public (Actor s)
    {}

    (Record
     [#obituary [(Async <Obituary>)
                 (Resolver <Obituary>)]
      #mailbox (Atom <Mailbox>)])

    (type: .public (Mail s)
      <Mail>)

    (type: .public (Obituary s)
      <Obituary>)

    (type: .public (Behavior o s)
      (Record
       [#on_init (-> o s)
        #on_mail (-> (Mail s) s (Actor s) (Async (Try s)))]))

    (def: .public (spawn! behavior init)
      (All (_ o s) (-> (Behavior o s) o (IO (Actor s))))
      (io (let [[on_init on_mail] behavior
                self (:sharing [o s]
                               (Behavior o s)
                               behavior
                               
                               (Actor s)
                               (:abstraction [#obituary (async.async [])
                                              #mailbox (atom (async.async []))]))
                process (loop [state (on_init init)
                               [|mailbox| _] (io.run! (atom.read! (value@ #mailbox (:representation self))))]
                          (do {! async.monad}
                            [[head tail] |mailbox|
                             ?state' (on_mail head state self)]
                            (case ?state'
                              (#try.Failure error)
                              (let [[_ resolve] (value@ #obituary (:representation self))]
                                (exec (io.run!
                                       (do io.monad
                                         [pending (..pending tail)]
                                         (resolve [error state (#.Item head pending)])))
                                  (in [])))

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

    (def: .public (alive? actor)
      (All (_ s) (-> (Actor s) (IO Bit)))
      (let [[obituary _] (value@ #obituary (:representation actor))]
        (|> obituary
            async.value
            (\ io.functor each
               (|>> (case> #.None
                           bit.yes

                           _
                           bit.no))))))

    (def: .public (obituary' actor)
      (All (_ s) (-> (Actor s) (IO (Maybe (Obituary s)))))
      (let [[obituary _] (value@ #obituary (:representation actor))]
        (async.value obituary)))

    (def: .public obituary
      (All (_ s) (-> (Actor s) (Async (Obituary s))))
      (|>> :representation
           (value@ #obituary)
           product.left))

    (def: .public (mail! mail actor)
      (All (_ s) (-> (Mail s) (Actor s) (IO (Try Any))))
      (do {! io.monad}
        [alive? (..alive? actor)]
        (if alive?
          (let [entry [mail (async.async [])]]
            (do !
              [|mailbox|&resolve (atom.read! (value@ #mailbox (:representation actor)))]
              (loop [[|mailbox| resolve] |mailbox|&resolve]
                (do !
                  [|mailbox| (async.value |mailbox|)]
                  (case |mailbox|
                    #.None
                    (do !
                      [resolved? (resolve entry)]
                      (if resolved?
                        (do !
                          [_ (atom.write! (product.right entry) (value@ #mailbox (:representation actor)))]
                          (in (#try.Success [])))
                        (recur |mailbox|&resolve)))
                    
                    (#.Some [_ |mailbox|'])
                    (recur |mailbox|'))))))
          (in (exception.except ..dead [])))))

    (type: .public (Message s o)
      (-> s (Actor s) (Async (Try [s o]))))

    (def: (mail message)
      (All (_ s o) (-> (Message s o) [(Async (Try o)) (Mail s)]))
      (let [[async resolve] (:sharing [s o]
                                      (Message s o)
                                      message
                                      
                                      [(Async (Try o))
                                       (Resolver (Try o))]
                                      (async.async []))]
        [async
         (function (_ state self)
           (do {! async.monad}
             [outcome (message state self)]
             (case outcome
               (#try.Success [state' return])
               (exec
                 (io.run! (resolve (#try.Success return)))
                 (async.resolved (#try.Success state')))
               
               (#try.Failure error)
               (exec
                 (io.run! (resolve (#try.Failure error)))
                 (async.resolved (#try.Failure error))))))]))

    (def: .public (tell! message actor)
      (All (_ s o) (-> (Message s o) (Actor s) (Async (Try o))))
      (let [[async mail] (..mail message)]
        (do async.monad
          [outcome (async.future (..mail! mail actor))]
          (case outcome
            (#try.Success)
            async
            
            (#try.Failure error)
            (in (#try.Failure error))))))
    )
  )

(def: (default_on_mail mail state self)
  (All (_ s) (-> (Mail s) s (Actor s) (Async (Try s))))
  (mail state self))

(def: .public default
  (All (_ s) (Behavior s s))
  [#on_init function.identity
   #on_mail ..default_on_mail])

(def: .public (poison! actor)
  (All (_ s) (-> (Actor s) (IO (Try Any))))
  (..mail! (function (_ state self)
             (async.resolved (exception.except ..poisoned [])))
           actor))

(def: actor_decl^
  (Parser [Text (List Text)])
  (<>.either (<code>.form (<>.and <code>.local_identifier (<>.some <code>.local_identifier)))
             (<>.and <code>.local_identifier (\ <>.monad in (list)))))

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

(type: BehaviorC
  [(Maybe On_MailC) (List Code)])

(def: argument
  (Parser Text)
  <code>.local_identifier)

(def: behavior^
  (Parser BehaviorC)
  (let [on_mail_args ($_ <>.and ..argument ..argument ..argument)]
    ($_ <>.and
        (<>.maybe (<code>.form (<>.and (<code>.form (<>.after (<code>.this! (' on_mail)) on_mail_args))
                                       <code>.any)))
        (<>.some <code>.any))))

(def: (on_mail g!_ ?on_mail)
  (-> Code (Maybe On_MailC) Code)
  (case ?on_mail
    #.None
    (` (~! ..default_on_mail))

    (#.Some [[mailN stateN selfN] bodyC])
    (` (function ((~ g!_)
                  (~ (code.local_identifier mailN))
                  (~ (code.local_identifier stateN))
                  (~ (code.local_identifier selfN)))
         (~ bodyC)))))

(def: actorP
  (Parser [Code [Text (List Text)] |annotations|.Annotations Code BehaviorC])
  (let [private ($_ <>.and
                    ..actor_decl^
                    |annotations|.parser
                    <code>.any
                    behavior^)]
    ($_ <>.either
        (<>.and <code>.any private)
        (<>.and (<>\in (` .private)) private))))

(syntax: .public (actor: [[export_policy [name vars] annotations state_type [?on_mail messages]] ..actorP])
  (with_identifiers [g!_]
    (do meta.monad
      [g!type (macro.identifier (format name "_abstract_type"))
       .let [g!actor (code.local_identifier name)
             g!vars (list\each code.local_identifier vars)]]
      (in (list (` ((~! abstract:) (~ export_policy) ((~ g!type) (~+ g!vars))
                    {}

                    (~ state_type)

                    (def: (~ export_policy) (~ g!actor)
                      (All ((~ g!_) (~+ g!vars))
                        (..Behavior (~ state_type) ((~ g!type) (~+ g!vars))))
                      [#..on_init (|>> ((~! abstract.:abstraction) (~ g!type)))
                       #..on_mail (~ (..on_mail g!_ ?on_mail))])

                    (~+ messages))))))))

(syntax: .public (actor [[state_type init] (<code>.record (<>.and <code>.any <code>.any))
                         [?on_mail messages] behavior^])
  (with_identifiers [g!_]
    (in (list (` (: ((~! io.IO) (..Actor (~ state_type)))
                    (..spawn! (: (..Behavior (~ state_type) (~ state_type))
                                 [#..on_init (|>>)
                                  #..on_mail (~ (..on_mail g!_ ?on_mail))])
                              (: (~ state_type)
                                 (~ init)))))))))

(type: Signature
  (Record
   [#vars (List Text)
    #name Text
    #inputs (List |input|.Input)
    #state Text
    #self Text]))

(def: signature^
  (Parser Signature)
  (<code>.form ($_ <>.and
                   (<>.else (list) (<code>.tuple (<>.some <code>.local_identifier)))
                   <code>.local_identifier
                   (<>.some |input|.parser)
                   <code>.local_identifier
                   <code>.local_identifier)))

(def: reference^
  (Parser [Name (List Text)])
  (<>.either (<code>.form (<>.and <code>.identifier (<>.some <code>.local_identifier)))
             (<>.and <code>.identifier (\ <>.monad in (list)))))

(def: messageP
  (Parser [Code Signature |annotations|.Annotations Code Code])
  (let [private ($_ <>.and
                    ..signature^
                    (<>.else |annotations|.empty |annotations|.parser)
                    <code>.any
                    <code>.any)]
    ($_ <>.either
        (<>.and <code>.any private)
        (<>.and (<>\in (` .private)) private))))

(syntax: .public (message: [[export_policy signature annotations output_type body] ..messageP])
  (with_identifiers [g!_ g!return]
    (do meta.monad
      [actor_scope abstract.current
       .let [g!type (code.local_identifier (value@ #abstract.name actor_scope))
             g!message (code.local_identifier (value@ #name signature))
             g!actor_vars (value@ #abstract.type_vars actor_scope)
             g!all_vars (|> signature (value@ #vars) (list\each code.local_identifier) (list\composite g!actor_vars))
             g!inputsC (|> signature (value@ #inputs) (list\each product.left))
             g!inputsT (|> signature (value@ #inputs) (list\each product.right))
             g!state (|> signature (value@ #state) code.local_identifier)
             g!self (|> signature (value@ #self) code.local_identifier)]]
      (in (list (` (def: (~ export_policy) ((~ g!message) (~+ g!inputsC))
                     (~ (|annotations|.format annotations))
                     (All ((~ g!_) (~+ g!all_vars))
                       (-> (~+ g!inputsT)
                           (..Message (~ (value@ #abstract.abstraction actor_scope))
                                      (~ output_type))))
                     (function ((~ g!_) (~ g!state) (~ g!self))
                       (let [(~ g!state) (:as (~ (value@ #abstract.representation actor_scope))
                                              (~ g!state))]
                         (|> (~ body)
                             (: ((~! async.Async) ((~! try.Try) [(~ (value@ #abstract.representation actor_scope))
                                                                 (~ output_type)])))
                             (:as ((~! async.Async) ((~! try.Try) [(~ (value@ #abstract.abstraction actor_scope))
                                                                   (~ output_type)]))))))))
                )))))

(type: .public Stop
  (IO Any))

(def: continue! true)
(def: stop! false)

(def: .public (observe! action channel actor)
  (All (_ e s) (-> (-> e Stop (Mail s)) (Channel e) (Actor s) (IO Any)))
  (let [signal (: (Atom Bit)
                  (atom.atom ..continue!))
        stop (: Stop
                (atom.write! ..stop! signal))]
    (frp.subscribe! (function (_ event)
                      (do {! io.monad}
                        [continue? (atom.read! signal)]
                        (if continue?
                          (|> actor
                              (..mail! (action event stop))
                              (\ ! each try.maybe))
                          (in #.None))))
                    channel)))