mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-06 07:30:28 +02:00
This will replace an internal interface in (system foreign-objects). * module/system/finalizers.scm: New file. * am/bootstrap.am (SOURCES): Add new file. * libguile/foreign-object.h: * libguile/foreign-object.c (invoke_finalizer): (sys_add_finalizer_x): (scm_init_foreign_object): (scm_register_foreign_object): Remove. * libguile/init.c (scm_i_init_guile): Register finalizers instead of foreign-object. * module/system/foreign-object.scm (allocate-instance): Use finalizers module. * libguile/finalizers.c (invoke_finalizer): (scm_sys_add_finalizer): New helper.
89 lines
3.4 KiB
Scheme
89 lines
3.4 KiB
Scheme
;;; Wrapping foreign objects in Scheme
|
|
|
|
;;; Copyright (C) 2014, 2015, 2024, 2025 Free Software Foundation, Inc.
|
|
;;;
|
|
;;; This library is free software; you can redistribute it and/or
|
|
;;; modify it under the terms of the GNU Lesser General Public
|
|
;;; License as published by the Free Software Foundation; either
|
|
;;; version 3 of the License, or (at your option) any later version.
|
|
;;;
|
|
;;; This library 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
|
|
;;; Lesser General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU Lesser General Public
|
|
;;; License along with this library; if not, write to the Free Software
|
|
;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
;;;
|
|
|
|
;;; Commentary:
|
|
;;
|
|
;;
|
|
;;; Code:
|
|
|
|
(define-module (system foreign-object)
|
|
#:use-module (oop goops)
|
|
#:use-module (system finalizers)
|
|
#:export (make-foreign-object-type
|
|
define-foreign-object-type))
|
|
|
|
(define-class <foreign-class> (<class>))
|
|
|
|
(define-class <foreign-class-with-finalizer> (<foreign-class>)
|
|
(finalizer #:init-keyword #:finalizer #:init-value #f
|
|
#:getter finalizer))
|
|
|
|
(define-method (allocate-instance (class <foreign-class-with-finalizer>)
|
|
initargs)
|
|
(let ((instance (next-method))
|
|
(finalizer (finalizer class)))
|
|
(when finalizer
|
|
(add-finalizer! instance finalizer))
|
|
instance))
|
|
|
|
(define* (make-foreign-object-type name slots #:key finalizer
|
|
(getters (map (const #f) slots))
|
|
(supers '()))
|
|
(unless (symbol? name)
|
|
(error "type name should be a symbol" name))
|
|
(unless (or (not finalizer) (procedure? finalizer))
|
|
(error "finalizer should be a procedure" finalizer))
|
|
(let ((dslots (map (lambda (slot getter)
|
|
(unless (symbol? slot)
|
|
(error "slot name should be a symbol" slot))
|
|
(cons* slot #:class <foreign-slot>
|
|
#:init-keyword (symbol->keyword slot)
|
|
#:init-value 0
|
|
(if getter (list #:getter getter) '())))
|
|
slots
|
|
getters)))
|
|
(if finalizer
|
|
(make-class supers dslots #:name name
|
|
#:finalizer finalizer
|
|
#:static-slot-allocation? #t
|
|
#:metaclass <foreign-class-with-finalizer>)
|
|
(make-class supers dslots #:name name
|
|
#:static-slot-allocation? #t
|
|
#:metaclass <foreign-class>))))
|
|
|
|
(define-syntax define-foreign-object-type
|
|
(lambda (x)
|
|
(define (kw-apply slots)
|
|
(syntax-case slots ()
|
|
(() #'())
|
|
((slot . slots)
|
|
(let ((kw (symbol->keyword (syntax->datum #'slot))))
|
|
#`(#,kw slot . #,(kw-apply #'slots))))))
|
|
|
|
(syntax-case x ()
|
|
((_ name constructor (slot ...) kwarg ...)
|
|
#`(begin
|
|
(define slot (ensure-generic 'slot (and (defined? 'slot) slot)))
|
|
...
|
|
(define name
|
|
(make-foreign-object-type 'name '(slot ...) kwarg ...
|
|
#:getters (list slot ...)))
|
|
(define constructor
|
|
(lambda (slot ...)
|
|
(make name #,@(kw-apply #'(slot ...))))))))))
|