unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Olivier Dion via General Guile related discussions <guile-user@gnu.org>
To: adriano <randomlooser@riseup.net>, guile-user <guile-user@gnu.org>
Subject: Re: foreign objects and the garbage collector
Date: Sun, 19 Sep 2021 14:11:44 -0400	[thread overview]
Message-ID: <87czp4h1un.fsf@laura> (raw)
In-Reply-To: <d07a3ff3eac871659124da2208e7554d5ac68feb.camel@riseup.net>

On Sun, 19 Sep 2021, adriano <randomlooser@riseup.net> wrote:
>> If you want to avoid the problem, you should explicitely bind and
>> call the gps-close function and not rely on the garbage collector to
>> do it for you. You can use dynamic-wind to open and close
>> resources as needed.
>
> It'd be so nice to have an example

(define (with-my-resource token proc)
  (let ((resource #f))
    (dynamic-wind
      (lambda ()
	(set! resource (open-my-resource% token)))

      (proc resource)

      (lambda ()
	(when resource
	  (close-my-resource% resource))))))

(with-my-resource "some-internal-token" (lambda ()))

>
>> That being said, make-pointer (from (system foreign-library)) is
>> probably what you are expecting. It should work with gps_close.
>
> Another exmple of what you mean, here, would be so nice :-)

Says you have `open_my_resource()` and `close_my_resource()` in C in
library "libfoo.so" where open_my_resource takes a C string and returns
an integer for the resource while close_my_resource takes the integer of
the resource:

(define open-my-resource%
  (eval-when (eval load compile)
    (let ((this-lib (load-foreign-library "libfoo")))
      (foreign-library-function this-lib "open_my_resource"
                                #:return-type int
                                #:arg-types (list '*))))

(define open-my-resource%
  (eval-when (eval load compile)
    (let ((this-lib (load-foreign-library "libfoo")))
      (foreign-library-function this-lib "open_my_resource"
                                #:return-type int
                                #:arg-types (list int)))))
                                
Note that you probably need to do a wrapper named `open-my-resource` to
do the conversion of scm_string to C raw pointer before calling
`open-my-resource%` in this particular case.

This is just an example, but it shows you that you can call foreign C
primitives easily without any C code, and that you have to use a
dynamic context to manage the lifetime of the C resources.

-- 
Olivier Dion
Polymtl



  reply	other threads:[~2021-09-19 18:11 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-04 12:41 foreign objects and the garbage collector Tim Meehan
2021-09-04 13:35 ` Vivien Kraus via General Guile related discussions
2021-09-05  0:58   ` Tim Meehan
2021-09-19  6:14   ` adriano
2021-09-19 18:11     ` Olivier Dion via General Guile related discussions [this message]
2021-09-19 18:23       ` Maxime Devos
2021-09-21 14:26         ` adriano
2021-09-21 18:49           ` Maxime Devos
2021-09-21 14:00       ` adriano
2021-09-21 14:25         ` Olivier Dion via General Guile related discussions
2021-09-21 14:51           ` adriano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87czp4h1un.fsf@laura \
    --to=guile-user@gnu.org \
    --cc=olivier.dion@polymtl.ca \
    --cc=randomlooser@riseup.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).