(import (chicken io)
(chicken string)
+ (chicken port)
matchable
srfi-18 ; threads
srfi-69 ; hash-table
;; Actors
(define this-host "localhost")
-(define this-port 1234)
+(define this-port 8000)
(define (make-address host port id)
(make-uri #:scheme "actor"
#:port port
#:path (list '/ id)))
-(define next-local-address
- (let ((mutex (make-mutex "actor address mutex")))
- (lambda ()
- (let ((res #f))
- (mutex-lock! mutex)
- (set! res (make-address this-host this-port (uuid)))
- (mutex-unlock! mutex)
- res))))
-
+(define (make-local-address . args)
+ (make-address this-host
+ this-port
+ (if (null? args)
+ (uuid)
+ (car args))))
+
(define (address-id address) (cadr (uri-path address)))
(define (address-local? address)
(define actor-table (make-hash-table))
(define (make-actor beh)
- (let* ((address (next-local-address))
+ (let* ((address (make-local-address))
(id (address-id address)))
(hash-table-set! actor-table id beh)
address))
(loop)))
+;; Network
+
+(define (start-network-listener)
+ (thread-start!
+ (lambda ()
+ (let ((s (udp-open-socket*)))
+ (udp-bind! s #f this-port)
+ (let loop ()
+ (let-values (((n str) (udp-recv s 1024)))
+ (print "Received " n " bytes over network: " str)
+ (match (with-input-from-string str read)
+ ((uri-str message ...)
+ (apply send-message (cons (uri-reference uri-str) message)))
+ (else
+ (print "Warning: received badly formatted message string '" str "'"))))
+ (loop))))))
+
;; System interface
(define system
(thread-start!
(lambda ()
- (thread-sleep! 10)
+ (thread-sleep! 120)
(send-message system 'shutdown)))
+(print (uri->string system))
+
(start-scheduler)
+(start-network-listener)
(start-console)
;; (thread-join! scheduler-thread)