syndicate-2017/racket/prospect/core.rkt

466 lines
17 KiB
Racket
Raw Normal View History

#lang racket/base
;; Core implementation of Incremental Network Calculus.
(provide (struct-out message)
(except-out (struct-out quit) quit)
2016-01-18 19:29:48 +00:00
(struct-out quit-network)
(rename-out [quit <quit>])
(except-out (struct-out spawn) spawn)
(rename-out [spawn <spawn>])
(struct-out transition)
2016-01-18 19:29:48 +00:00
(struct-out network)
(struct-out seal)
(all-from-out "patch.rkt")
;; imported from trie.rkt:
?
wildcard?
?!
(struct-out capture)
2016-01-22 02:55:41 +00:00
pretty-print-trie
trie->pretty-string
trie-non-empty?
trie-empty?
trie-empty
projection->pattern
projection-arity
2016-01-22 02:55:41 +00:00
trie-project
trie-project/set
trie-project/set/single
project-assertions
event?
action?
match-event
meta-label?
2015-03-05 16:39:57 +00:00
prepend-at-meta
assert
retract
sub
unsub
pub
unpub
(rename-out [make-quit quit])
2016-01-18 19:29:48 +00:00
make-network
spawn-network
(rename-out [spawn-process spawn])
2015-03-06 13:23:36 +00:00
spawn/stateless
2016-01-18 19:29:48 +00:00
make-spawn-network
transition-bind
sequence-transitions
sequence-transitions*
sequence-transitions0
sequence-transitions0*
2016-01-18 19:29:48 +00:00
network-handle-event
2015-03-16 14:38:32 +00:00
clean-transition
2016-01-18 19:29:48 +00:00
pretty-print-network)
(require racket/set)
(require racket/match)
(require (only-in racket/list flatten))
(require "functional-queue.rkt")
(require "trie.rkt")
(require "patch.rkt")
2015-03-04 16:16:18 +00:00
(require "trace.rkt")
2015-03-16 14:38:32 +00:00
(require "mux.rkt")
(require "pretty.rkt")
(module+ test (require rackunit))
2015-03-04 16:16:18 +00:00
;; Events = Patches Messages
(struct message (body) #:prefab)
;; Actions ⊃ Events
(struct spawn (boot) #:prefab)
2016-01-18 19:29:48 +00:00
(struct quit-network () #:prefab) ;; NB. An action. Compare (quit), a Transition.
;; A Behavior is a ((Option Event) Any -> Transition): a function
;; mapping an Event (or, in the #f case, a poll signal) and a
;; Process's current state to a Transition.
;;
;; A Transition is either
;; - #f, a signal from a Process that it is inert and need not be
;; scheduled until some Event relevant to it arrives; or,
;; - a (transition Any (Constreeof Action)), a new Process state to
2016-01-18 19:29:48 +00:00
;; be held by its Network and a sequence of Actions for the Network
;; to take on the transitioning Process's behalf.
;; - a (quit (Option Exn) (Constreeof Action)), signalling that the
;; Process should never again be handed an event, and that any
;; queued actions should be performed, followed by the sequence
;; of Actions given, and then the process should be
;; garbage-collected. The optional Exn is only used for
;; debugging purposes; #f means normal termination.
(struct transition (state actions) #:transparent)
(struct quit (exn actions) #:prefab)
;; A PID is a Nat.
;; A Label is a PID or 'meta.
;; VM private states
2016-01-18 19:29:48 +00:00
(struct network (mux ;; Multiplexer
pending-action-queue ;; (Queueof (Cons Label (U Action 'quit)))
runnable-pids ;; (Setof PID)
behaviors ;; (HashTable PID Behavior)
states ;; (HashTable PID Any)
)
#:transparent
#:methods gen:prospect-pretty-printable
[(define (prospect-pretty-print w [p (current-output-port)])
2016-01-18 19:29:48 +00:00
(pretty-print-network w p))])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Seals are used by protocols to prevent the routing tries from
;; examining internal structure of values.
(struct seal (contents)) ;; NB. Neither transparent nor prefab
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2015-03-04 16:16:18 +00:00
(define (event? x) (or (patch? x) (message? x)))
2016-01-18 19:29:48 +00:00
(define (action? x) (or (event? x) (spawn? x) (quit-network? x)))
(define-syntax-rule (match-event e clause ...)
(match e
clause ...
[_ #f]))
(define (prepend-at-meta pattern level)
(if (zero? level)
pattern
(at-meta (prepend-at-meta pattern (- level 1)))))
(define (observe-at-meta pattern level)
(if (zero? level)
(pattern->trie '<observe-at-meta> (observe pattern))
2016-01-22 02:55:41 +00:00
(trie-union
(pattern->trie '<observe-at-meta> (observe (prepend-at-meta pattern level)))
(pattern->trie '<observe-at-meta> (at-meta (embedded-trie (observe-at-meta pattern (- level 1))))))))
(define (assert pattern #:meta-level [level 0])
(patch (pattern->trie '<assert> (prepend-at-meta pattern level)) trie-empty))
(define (retract pattern #:meta-level [level 0])
(patch trie-empty (pattern->trie '<retract> (prepend-at-meta pattern level))))
(define (sub pattern #:meta-level [level 0])
(patch (observe-at-meta pattern level) trie-empty))
(define (unsub pattern #:meta-level [level 0])
(patch trie-empty (observe-at-meta pattern level)))
(define (pub pattern #:meta-level [level 0]) (assert (advertise pattern) #:meta-level level))
(define (unpub pattern #:meta-level [level 0]) (retract (advertise pattern) #:meta-level level))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (general-transition? v)
(or (not v) (transition? v) (quit? v) (void? v)))
(define (ensure-transition v)
(if (general-transition? v)
v
(raise (exn:fail:contract (format "Expected transition, quit, #f or (void); got ~v" v)
(current-continuation-marks)))))
(define (clean-transition t)
(match t
[#f #f]
[(quit exn actions) (quit exn (clean-actions actions))]
[(transition state actions) (transition state (clean-actions actions))]
[(? void?) #f]))
(define (clean-actions actions)
(filter (lambda (x) (and (action? x) (not (patch-empty? x)))) (flatten actions)))
(define (send-event e pid w)
2016-01-18 19:29:48 +00:00
(define behavior (hash-ref (network-behaviors w) pid #f))
(define old-state (hash-ref (network-states w) pid #f))
2015-03-16 14:38:32 +00:00
(if (not behavior)
w
2015-03-21 16:30:10 +00:00
(begin
(trace-process-step e pid behavior old-state)
(invoke-process pid
(lambda () (clean-transition (ensure-transition (behavior e old-state))))
(match-lambda
[#f w]
[(and q (quit exn final-actions))
(trace-process-step-result e pid behavior old-state exn q)
2015-12-03 20:53:32 +00:00
(enqueue-actions (disable-process pid exn w) pid (append final-actions
(list 'quit)))]
2015-03-21 16:30:10 +00:00
[(and t (transition new-state new-actions))
(trace-process-step-result e pid behavior old-state #f t)
(enqueue-actions (mark-pid-runnable (update-state w pid new-state) pid)
pid
new-actions)])
(lambda (exn)
(trace-process-step-result e pid behavior old-state exn #f)
(enqueue-actions (disable-process pid exn w) pid (list 'quit)))))))
2015-03-16 14:38:32 +00:00
(define (update-state w pid s)
2016-01-18 19:29:48 +00:00
(struct-copy network w [states (hash-set (network-states w) pid s)]))
(define (send-event/guard delta pid w)
(if (patch-empty? delta)
w
(send-event delta pid w)))
(define (disable-process pid exn w)
(when exn
(log-error "Process ~a died with exception:\n~a"
(cons pid (trace-pid-stack))
(exn->string exn)))
2016-01-18 19:29:48 +00:00
(struct-copy network w
[behaviors (hash-remove (network-behaviors w) pid)]
[states (hash-remove (network-states w) pid)]))
(define (invoke-process pid thunk k-ok k-exn)
(define-values (ok? result)
2015-03-04 16:16:18 +00:00
(call-in-trace-context
pid
(lambda ()
(with-handlers ([(lambda (exn) #t) (lambda (exn) (values #f exn))])
(values #t (with-continuation-mark 'minimart-process pid (thunk)))))))
(if ok?
(k-ok result)
(k-exn result)))
(define (mark-pid-runnable w pid)
2016-01-18 19:29:48 +00:00
(struct-copy network w [runnable-pids (set-add (network-runnable-pids w) pid)]))
(define (enqueue-actions w label actions)
2016-01-18 19:29:48 +00:00
(struct-copy network w
[pending-action-queue
2016-01-18 19:29:48 +00:00
(queue-append-list (network-pending-action-queue w)
(for/list [(a actions)] (cons label a)))]))
(define (make-quit #:exception [exn #f] . actions)
(quit exn actions))
(define-syntax spawn-process
(syntax-rules ()
[(_ #:name name-exp behavior-exp initial-state-exp initial-action-tree-exp)
(spawn (lambda ()
(list (let ((name name-exp)
(beh behavior-exp))
(if name (procedure-rename beh name) beh))
(transition initial-state-exp initial-action-tree-exp))))]
[(_ behavior-exp initial-state-exp initial-action-tree-exp)
(spawn (lambda ()
(list behavior-exp
(transition initial-state-exp initial-action-tree-exp))))]))
(define-syntax-rule (spawn/stateless behavior-exp initial-action-tree-exp)
2015-03-06 13:23:36 +00:00
(spawn-process (stateless-behavior-wrap behavior-exp)
(void)
initial-action-tree-exp))
2015-03-06 13:23:36 +00:00
(define ((stateless-behavior-wrap b) e state)
(match (b e)
[#f #f]
[(? quit? q) q]
[actions (transition state actions)]))
2016-01-18 19:29:48 +00:00
(define-syntax-rule (spawn-network boot-action ...)
(make-spawn-network (lambda () (list boot-action ...))))
2016-01-18 19:29:48 +00:00
(define (make-network boot-actions)
(network (mux)
(list->queue (for/list ((a (in-list (clean-actions boot-actions)))) (cons 'meta a)))
(set)
(hash)
(hash)))
2016-01-18 19:29:48 +00:00
(define (make-spawn-network boot-actions-thunk)
2015-03-16 14:38:32 +00:00
(spawn (lambda ()
2016-01-18 19:29:48 +00:00
(list network-handle-event
(transition (make-network (boot-actions-thunk)) '())))))
(define (transition-bind k t0)
(match t0
[#f (error 'transition-bind "Cannot bind from transition #f with continuation ~v" k)]
[(quit _ _) t0]
[(transition state0 actions0)
(match (k state0)
[#f t0]
[(quit exn actions1) (quit exn (cons actions0 actions1))]
[(transition state1 actions1) (transition state1 (cons actions0 actions1))])]))
(define (sequence-transitions t0 . steps)
(sequence-transitions* t0 steps))
(define (sequence-transitions* t0 steps)
(foldl transition-bind t0 steps))
(define (sequence-transitions0 state0 . steps)
(sequence-transitions0* state0 steps))
(define (sequence-transitions0* state0 steps)
(match steps
['() #f]
[(cons step rest)
(match (step state0)
[#f (sequence-transitions0* state0 rest)]
[(? quit? q) q]
[(? transition? t) (sequence-transitions* t rest)])]))
(define (inert? w)
2016-01-18 19:29:48 +00:00
(and (queue-empty? (network-pending-action-queue w))
(set-empty? (network-runnable-pids w))))
2016-01-18 19:29:48 +00:00
(define (network-handle-event e w)
(if (or e (not (inert? w)))
(sequence-transitions (transition w '())
(inject-event e)
perform-actions
(lambda (w) (or (step-children w) (transition w '()))))
(step-children w)))
(define ((inject-event e) w)
(transition (match e
[#f w]
[(? patch? delta) (enqueue-actions w 'meta (list (lift-patch delta)))]
[(message body) (enqueue-actions w 'meta (list (message (at-meta body))))])
'()))
(define (perform-actions w)
2016-01-18 19:29:48 +00:00
(for/fold ([wt (transition (struct-copy network w [pending-action-queue (make-queue)]) '())])
((entry (in-list (queue->list (network-pending-action-queue w)))))
#:break (quit? wt) ;; TODO: should a quit action be delayed until the end of the turn?
(match-define [cons label a] entry)
2015-03-21 16:30:10 +00:00
(trace-internal-action label a (transition-state wt))
2015-03-04 16:16:18 +00:00
(define wt1 (transition-bind (perform-action label a) wt))
2015-03-21 16:30:10 +00:00
(trace-internal-action-result label a (transition-state wt) wt1)
2015-03-04 16:16:18 +00:00
wt1))
(define ((perform-action label a) w)
(match a
[(spawn boot)
(invoke-process 'booting
(lambda ()
2015-03-16 14:38:32 +00:00
(match (boot)
[(and results (list (? procedure?) (? general-transition?)))
2015-03-16 14:38:32 +00:00
results]
[other
(error 'spawn
"Spawn boot procedure must yield boot spec; received ~v"
other)]))
(lambda (results)
(match-define (list behavior initial-transition) results)
(create-process w behavior initial-transition))
(lambda (exn)
2016-01-18 19:29:48 +00:00
(log-error "Spawned process in network ~a died with exception:\n~a"
(trace-pid-stack)
(exn->string exn))
(transition w '())))]
['quit
2016-01-18 19:29:48 +00:00
(define-values (new-mux _label delta delta-aggregate)
(mux-remove-stream (network-mux w) label))
;; behavior & state in w already removed by disable-process
(deliver-patches w new-mux label delta delta-aggregate)]
2016-01-18 19:29:48 +00:00
[(quit-network)
2015-10-23 23:49:30 +00:00
(make-quit)]
[(? patch? delta-orig)
(define-values (new-mux _label delta delta-aggregate)
2016-01-18 19:29:48 +00:00
(mux-update-stream (network-mux w) label delta-orig))
(deliver-patches w new-mux label delta delta-aggregate)]
2015-03-04 16:16:18 +00:00
[(and m (message body))
(when (observe? body)
(log-warning "Stream ~a sent message containing query ~v"
(cons label (trace-pid-stack))
body))
(if (and (not (meta-label? label)) ;; it's from a local process, not envt
(at-meta? body)) ;; it relates to envt, not local
(transition w (message (at-meta-claim body)))
(transition (for/fold [(w w)]
2016-01-18 19:29:48 +00:00
[(pid (in-list (mux-route-message (network-mux w) body)))]
(send-event m pid w))
'()))]))
2015-03-16 14:38:32 +00:00
(define (create-process w behavior initial-transition)
(if (not initial-transition)
(transition w '()) ;; Uh, ok
(let ()
(define-values (postprocess initial-actions)
(match (clean-transition initial-transition)
[(and q (quit exn initial-actions0))
(values (lambda (w pid)
(trace-process-step-result 'boot pid behavior (void) exn q)
(disable-process pid exn w))
(append initial-actions0 (list 'quit)))]
[(and t (transition initial-state initial-actions0))
(values (lambda (w pid)
(trace-process-step-result 'boot pid behavior (void) #f t)
(mark-pid-runnable (update-state w pid initial-state) pid))
initial-actions0)]))
(define-values (initial-patch remaining-initial-actions)
(match initial-actions
[(cons (? patch? p) rest) (values p rest)]
[other (values patch-empty other)]))
(define-values (new-mux new-pid delta delta-aggregate)
2016-01-18 19:29:48 +00:00
(mux-add-stream (network-mux w) initial-patch))
(let* ((w (struct-copy network w
[behaviors (hash-set (network-behaviors w)
new-pid
behavior)]))
(w (enqueue-actions (postprocess w new-pid) new-pid remaining-initial-actions)))
(deliver-patches w new-mux new-pid delta delta-aggregate)))))
(define (deliver-patches w new-mux acting-label delta delta-aggregate)
(define-values (patches meta-action)
2016-01-18 19:29:48 +00:00
(compute-patches (network-mux w) new-mux acting-label delta delta-aggregate))
(transition (for/fold [(w (struct-copy network w [mux new-mux]))]
[(entry (in-list patches))]
2015-03-16 14:38:32 +00:00
(match-define (cons label event) entry)
(send-event/guard event label w))
meta-action))
(define (step-children w)
2016-01-18 19:29:48 +00:00
(define runnable-pids (network-runnable-pids w))
(if (set-empty? runnable-pids)
2016-01-18 19:29:48 +00:00
#f ;; network is inert.
(transition (for/fold [(w (struct-copy network w [runnable-pids (set)]))]
[(pid (in-set runnable-pids))]
(send-event #f pid w))
'())))
2016-01-18 19:29:48 +00:00
(define (pretty-print-network w [p (current-output-port)])
(match-define (network mux qs runnable behaviors states) w)
(fprintf p "NETWORK:\n")
2015-03-16 14:38:32 +00:00
(fprintf p " - ~a queued actions\n" (queue-length qs))
(fprintf p " - ~a runnable pids ~a\n" (set-count runnable) (set->list runnable))
(fprintf p " - ~a live processes\n" (hash-count states))
(fprintf p " - ")
(display (indented-port-output 3 (lambda (p) (prospect-pretty-print mux p)) #:first-line? #f) p)
2016-01-24 05:03:32 +00:00
(newline p)
2015-03-16 14:38:32 +00:00
(for ([pid (set-union (hash-keys (mux-interest-table mux)) (hash-keys states))])
(fprintf p " ---- process ~a, behavior ~v, STATE:\n" pid (hash-ref behaviors pid #f))
(define state (hash-ref states pid #f))
(display (indented-port-output 6 (lambda (p) (prospect-pretty-print state p))) p)
2015-03-16 14:38:32 +00:00
(newline p)
(fprintf p " process ~a, behavior ~v, CLAIMS:\n" pid (hash-ref behaviors pid #f))
(display (indented-port-output 6 (lambda (p)
2016-01-22 02:55:41 +00:00
(pretty-print-trie (mux-interests-of mux pid) p)))
2015-03-16 14:38:32 +00:00
p)
(newline p)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(module+ test
(require racket/pretty)
(define (step* w)
(let loop ((w w) (actions '()))
(pretty-print w)
2016-01-18 19:29:48 +00:00
(match (network-handle-event #f w)
[#f (values w #f (flatten actions))]
[(quit exn new-actions) (values w exn (flatten (cons actions new-actions)))]
[(transition new-w new-actions) (loop new-w (cons actions new-actions))])))
2016-01-18 19:29:48 +00:00
(step* (make-network '()))
)