actors: Add new method of running REPL via REPL actor.
[8sync.git] / demos / ircbot.scm
index b97b572bf738143d37c739c138f5d5f9286b6749..eaae113f80bf07d34b391652eec024d9ca728fc7 100755 (executable)
@@ -22,6 +22,7 @@
 
 (use-modules (8sync)
              (8sync systems irc)
+             (8sync repl)
              (oop goops)
              (srfi srfi-37)
              (ice-9 format)
                    (option '("channels") #t #f
                            (lambda (opt name arg result)
                              `(#:channels ,(string-split arg #\,)
-                               ,@result))))
+                               ,@result)))
+                   (option '("repl") #f #t
+                           (lambda (opt name arg result)
+                             `(#:repl ,(or arg #t) ,@result))))
              (lambda (opt name arg result)
                (format #t "Unrecognized option `~a'\n" name)
                (exit 1))
                         #:username username
                         #:server server
                         #:channels channels))
+  (define repl-manager
+    (cond
+     ((string? repl)
+      (hive-create-actor* hive <repl-manager> "repl"
+                          #:path repl))
+     (repl
+      (hive-create-actor* hive <repl-manager> "repl"))))
+
+  (define initial-messages
+    (if repl
+        (list (bootstrap-message hive irc-bot 'init)
+              (bootstrap-message hive repl-manager 'init))
+        (list (bootstrap-message hive irc-bot 'init))))
+
   ;; TODO: load REPL
-  (ez-run-hive hive (list (bootstrap-message hive irc-bot 'init))))
+  (ez-run-hive hive initial-messages))
 
 (define (main args)
   (define parsed-args (parse-args "ircbot.scm" args))