196b02d6bb7c787d89d0506bdd2bb37c2f7b9128
[8sync.git] / eightsync / repl.scm
1 ;; Copyright (C) 2015 Christopher Allan Webber <cwebber@dustycloud.org>
2
3 ;; This library is free software; you can redistribute it and/or
4 ;; modify it under the terms of the GNU Lesser General Public
5 ;; License as published by the Free Software Foundation; either
6 ;; version 3 of the License, or (at your option) any later version.
7 ;;
8 ;; This library is distributed in the hope that it will be useful,
9 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 ;; Lesser General Public License for more details.
12 ;;
13 ;; You should have received a copy of the GNU Lesser General Public
14 ;; License along with this library; if not, write to the Free Software
15 ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 ;; 02110-1301 USA
17
18 (define-module (eightsync repl)
19   #:use-module (ice-9 q)
20   #:use-module (eightsync agenda)
21   #:use-module (system repl coop-server)
22   #:export (make-coop-server-handler
23             spawn-and-queue-repl-server!))
24
25 (define (make-coop-server-handler coop-server)
26   (define (run-self)
27     (poll-coop-repl-server coop-server)
28     ;; queue ourselves again
29     (run-delay (run-self) (/ 1 30)))
30   run-self)
31
32 (define* (spawn-and-queue-repl-server! agenda #:optional port)
33   (let ((coop-server
34          (if port
35              (spawn-coop-repl-server port)
36              (spawn-coop-repl-server))))
37     (enq! (agenda-queue agenda)
38           (make-coop-server-handler coop-server))))