actors: Implicit from-actor argument <-foo methods, and add rest of <-foo*.
[8sync.git] / demos / actors / botherbotherbother.scm
1 #!/usr/bin/guile \
2 -e main -s
3 !#
4
5 ;;; 8sync --- Asynchronous programming for Guile
6 ;;; Copyright (C) 2016 Christopher Allan Webber <cwebber@dustycloud.org>
7 ;;;
8 ;;; This file is part of 8sync.
9 ;;;
10 ;;; 8sync is free software: you can redistribute it and/or modify it
11 ;;; under the terms of the GNU Lesser General Public License as
12 ;;; published by the Free Software Foundation, either version 3 of the
13 ;;; License, or (at your option) any later version.
14 ;;;
15 ;;; 8sync is distributed in the hope that it will be useful,
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;;; GNU Lesser General Public License for more details.
19 ;;;
20 ;;; You should have received a copy of the GNU Lesser General Public
21 ;;; License along with 8sync.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;; Puppet show simulator.
24
25 (use-modules (8sync agenda)
26              (8sync actors)
27              (oop goops)
28              (ice-9 hash-table)
29              (ice-9 format))
30
31 (set! *random-state* (random-state-from-platform))
32 (define (random-choice lst)
33   (list-ref lst (random (length lst))))
34
35
36 (define student-names
37   '("Henry" "Harmony" "Rolf"))
38
39 (define (student-name-generator)
40   ;; a hashmap of student names with their current count
41   (define student-count (make-hash-table))
42   (lambda ()
43     (let* ((student (random-choice student-names))
44            (current-number (hash-ref student-count student 1)))
45       (hash-set! student-count student (1+ current-number))
46       (format #f "~a-~a" student current-number))))
47
48
49 (define-class <student> (<actor>)
50   (name #:init-keyword #:name)
51   (dead #:init-value #f
52         #:accessor student-dead)
53   (actions #:allocation #:each-subclass
54            #:init-value
55            (build-actions
56             (bother-professor
57              (lambda* (actor message #:key target)
58                "Go bother a professor"
59                (while (not (student-dead actor))
60                  (format #t "~a: Bother bother bother!\n"
61                          (actor-id-actor actor))
62                  (<- target 'be-bothered
63                      #:noise "Bother bother bother!\n"))))
64
65             (be-lambda-consvardraed
66              (lambda (actor message)
67                "This kills the student."
68                (format #t "~a says: AAAAAAAHHHH!!! I'm dead!\n"
69                        (actor-id-actor actor))
70                (set! (student-dead actor) #t))))))
71
72 (define complaints
73   '("Hey!" "Stop that!" "Oof!"))
74
75 (define (professor-be-bothered actor message . rest)
76   (define whos-bothering (professor-bothered-by actor))
77   (hash-set! whos-bothering (message-from message) #t)
78
79   ;; Oof!  Those kids!
80   (display (string-append (random-choice complaints)))
81   (newline)
82
83   ;; More than one student is bothering us, lose our temper
84   (if (> (hash-count (const #t) whos-bothering)
85          1)
86       (begin
87         (format #t "~s: LAMBDA CONSVARDRA!\n"
88                 (actor-id actor))
89         (hash-for-each
90          (lambda (student _)
91            (<- student 'be-lambda-consvardraed)
92            ;; Remove student from bothering list
93            (hash-remove! whos-bothering student))
94          whos-bothering))
95       ;; Otherwise, remove them from the list and carry on
96       (hash-remove! whos-bothering (message-from message))))
97
98 (define-class <professor> (<actor>)
99   ;; This value checks whether any other actor is currently
100   ;; bothering this same character.
101   ;; We'll use a hash table as a fake set.
102   (bothered-by #:init-thunk make-hash-table
103                #:getter professor-bothered-by)
104   (actions #:allocation #:each-subclass
105            #:init-value
106            (build-actions
107             (be-bothered professor-be-bothered))))
108
109 (define num-students 10)
110
111 (define (main . args)
112   (define agenda (make-agenda))
113   (define hive (make-hive))
114   (define professor (hive-create-actor* hive <professor> "prof"))
115   (define namegen (student-name-generator))
116   (define students
117     (map
118      (lambda _
119        (let ((name (namegen)))
120          (hive-create-actor* hive <student> name
121                              #:name name)))
122      (iota num-students)))
123
124   ;; Bootstrap each student into bothering-professor mode.
125   (define start-bothering-tasks
126     (map
127      (lambda (student)
128        (bootstrap-message hive student 'bother-professor
129                                #:target professor))
130      students))
131
132   (run-hive hive start-bothering-tasks))