;; ;; Copyright 2023, Jaidyn Ann ;; ;; This program is free software: you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of ;; the License, or (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;; (import (prefix dbus dbus:) sxml-serializer) ;; Generate `Introspect`-form XML for a DBUS node, given its interfaces. ;; The interfaces should be in the format: ;; (INTERFACE-NAME . ((METHOD-NAME-A . ARGUMENT-ALISTS-A) ;; (METHOD-NAME-B . ARGUMENT-ALISTS-B) ;; ...)) ;; The argument alists should have the traits 'name, 'direction, and 'type. (define (introspect-node-xml interfaces) (string-append "\n\n" (serialize-sxml (introspect-node-sxml interfaces) #f))) ;; Generate a node's list containing the given interfaces, for use with SXML for ;; serialization to `Introspect`-friendly XML. ;; See `introspect-node-xml` for a description of the structure. (define (introspect-node-sxml interfaces) (append (list 'node) (map (lambda (interface-list) (introspect-interface-sxml (car interface-list) (cdr interface-list))) interfaces))) ;; Generate an interface's list of the given name and methods, ;; for use with SXML for serialization to `Introspect`-friendly XML. ;; The method-lists are of the format: ;; (METHOD-NAME . ((ARGUMENT-ALIST-A) ;; (ARGUMENT-ALIST-B) ;; ...)) ;; Where the argument alists are alists containing the traits 'name, ;; 'direction, and 'type. (define (introspect-interface-sxml interface-name method-lists) (append `(interface (@ (name ,interface-name))) (map (lambda (method-list) (introspect-method-sxml (car method-list) (cdr method-list))) method-lists))) ;; Generate an interface's list of the given name and methods, ;; for use with SXML for serialization to `Introspect`-friendly XML. ;; The method-lists are of the format: ;; (METHOD-NAME . ((ARGUMENT-ALIST-A) ;; (ARGUMENT-ALIST-B) ;; ...)) ;; An argument alist contains the traits 'name, 'direction, and 'type. (define (introspect-method-sxml name arg-alists) (append `(method (@ (name ,name))) (map (lambda (arg-alist) (introspect-method-arg-sxml (alist-ref 'name arg-alist) (alist-ref 'type arg-alist) (alist-ref 'direction arg-alist))) arg-alists))) ;; Generate an argument's list for use with SXML for serialization ;; into XML, to create an tag. ;; The `name` can be arbitrary, `type` can be (i.e.) "s", and ;; `direction` is either "in" or "out". (define (introspect-method-arg-sxml name type direction) `(arg (@ (name ,name) (type ,type) (direction ,direction)))) ;; The callback function for org.freedesktop.DBus.Introspectable's `Introspect`. (define (introspection-introspect) (introspect-node-xml '(("org.freedesktop.DBus.Introspectable" . (("Introspect" . (((direction . "out") (type . "s") (name . "xml_data"))))))))) ;; The DBUS context used for introspection. (define introspection-context (dbus:make-context bus: dbus:session-bus service: 'org.jadedctrl.secrettabero interface: 'org.freedesktop.DBus.Introspectable path: '/)) (dbus:register-method introspection-context "Introspect" introspection-introspect) (let loop () ; (printf "poll~%") ; (dbus:poll-for-message bus: dbus:session-bus) ;; would be the session-bus by default anyway (dbus:poll-for-message) (loop))