actors: Add debug module with useful utilities.
[8sync.git] / 8sync / systems / actors / debug.scm
1 ;;; 8sync --- Asynchronous programming for Guile
2 ;;; Copyright (C) 2016 Christopher Allan Webber <cwebber@dustycloud.org>
3 ;;;
4 ;;; This file is part of 8sync.
5 ;;;
6 ;;; 8sync is free software: you can redistribute it and/or modify it
7 ;;; under the terms of the GNU Lesser General Public License as
8 ;;; published by the Free Software Foundation, either version 3 of the
9 ;;; License, or (at your option) any later version.
10 ;;;
11 ;;; 8sync is distributed in the hope that it will be useful,
12 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU Lesser General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU Lesser General Public
17 ;;; License along with 8sync.  If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (8sync systems actors debug)
20   #:use-module (oop goops)
21   #:use-module (8sync systems actors)
22   #:export (hive-resolve-local-actor
23             hive-create-actor-gimmie))
24
25 (define hive-resolve-local-actor
26   (@@ (8sync systems actors) hive-resolve-local-actor))
27
28 (define (hive-create-actor-gimmie . args)
29   "Create an actor on the hive, and give us that actor.
30 Uses hive-create-actor* arguments."
31   (let ((actor-id (apply hive-create-actor args)))
32     (hive-resolve-local-actor hive actor-id)))
33
34 (define-syntax-rule (hive-create-actor-gimmie* args ...)
35   "Create an actor on the hive, and give us that actor.
36 Uses hive-create-actor* arguments."
37   (let ((actor-id (hive-create-actor* args ...)))
38     (hive-resolve-local-actor hive actor-id)))