unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Neil Jerram <neil@ossau.uklinux.net>
Cc: guile-user@gnu.org
Subject: Re: one C function to many Scheme functions
Date: 08 Jan 2003 20:45:43 +0000	[thread overview]
Message-ID: <m3smw3fk08.fsf@laruns.ossau.uklinux.net> (raw)
In-Reply-To: <20030106203029.GA11033@gosia>

>>>>> "bajcik" == bajcik  <bajcik@kolos.math.uni.lodz.pl> writes:

    bajcik> But I want to declare many functions in a loop. I have a
    bajcik> table of names and a table of C-functions [ mytype_t
    bajcik> function(my_type arg) ] and only ONE C-function that
    bajcik> converts SCM to mytype_t. It is a wrapper.

Guile does not have anything like gh_new_procedure_data.  However your
general objective can easily be achieved like this ...

    bajcik> I would like to do it this way:

    bajcik> typedef struct
    bajcik> {
    bajcik> 	mytype_t (*func)(mytype_t arg);
    bajcik> 	char *name;
    bajcik> } scm_func_t;

    bajcik> scm_func_t FuncTable[50]; /* Initialized */

    bajcik> SCM wrapper(SCM arg, void *data) /* !!! watch "data" */

Change this to SCM wrapper(SCM arg, SCM index).

    bajcik> {
    bajcik> 	scm_func_t *sf = (scm_func_t *)data;

Change this to:
                scm_func_t *sf = &(FuncTable[SCM_INUM(index)]);

    bajcik> 	my_type_t my_result;
	
    bajcik> 	...
    bajcik> 	my_arg = SCM2my(arg);
    bajcik> 	...
    bajcik> 	my_result = sf->func(my_arg)
    bajcik> 	...

    bajcik> 	return my2SCM(my_result);
    bajcik> }


    bajcik> void declare_all_functions()
    bajcik> {
    bajcik> 	int i;
	
    bajcik> 	for (i=0; i<50; i++)
    bajcik> 		gh_new_procedure_data(FuncTable[i].func, &FuncTable[i]);

Change this to a gh_new_procedure for just one Scheme function, which
maps to wrapper.  (With no loop.)

Then in Scheme:

(define (name0 arg) (wrapper arg 0))
(define (name1 arg) (wrapper arg 1))
(define (name2 arg) (wrapper arg 2))
...

Does this help?

        Neil



_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user


  reply	other threads:[~2003-01-08 20:45 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-06 20:30 one C function to many Scheme functions bajcik
2003-01-08 20:45 ` Neil Jerram [this message]
2003-01-09 10:26   ` Krzysztof Garus
2003-01-09 23:30     ` Neil Jerram
2003-01-09 11:40   ` Matthias Koeppe
2003-01-09 23:19     ` Neil Jerram

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=m3smw3fk08.fsf@laruns.ossau.uklinux.net \
    --to=neil@ossau.uklinux.net \
    --cc=guile-user@gnu.org \
    /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).