matchable
srfi-18 ; threads
srfi-69 ; hash-table
+ uuid ; ids for actors
+ uri-generic
udp
fifo)
;; Actors
-(define (make-machine host port)
- (cons host port))
-(define (machine-host m) (car m))
-(define (machine-port m) (cdr m))
+(define this-host "localhost")
+(define this-port 1234)
-(define this-machine (make-machine "localhost" 1234))
+(define (make-address host port id)
+ (make-uri #:scheme "actor"
+ #:host host
+ #:port port
+ #:path (list '/ id)))
-(define next-actor-id
- (let ((mutex (make-mutex "actor id mutex"))
- (next-id 1))
+(define next-local-address
+ (let ((mutex (make-mutex "actor address mutex")))
(lambda ()
(let ((res #f))
(mutex-lock! mutex)
- (set! res next-id)
- (set! next-id (+ next-id 1))
+ (set! res (make-address this-host this-port (uuid)))
(mutex-unlock! mutex)
res))))
-(define (address-id address) (car address))
-(define (address-machine address) (cdr address))
-(define (make-address id machine)
- (cons id machine))
+(define (address-id address) (cadr (uri-path address)))
(define (address-local? address)
- (equal? (address-machine address)
- this-machine))
+ (and (equal? (uri-host address) this-host)
+ (equal? (uri-port address) this-port)))
(define actor-table (make-hash-table))
(define (make-actor beh)
- (let* ((id (next-actor-id)))
+ (let* ((address (next-local-address))
+ (id (address-id address)))
(hash-table-set! actor-table id beh)
- (make-address id this-machine)))
+ address))
(define (deliver-message address . message)
(let ((id (address-id address)))