guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: %module-public-interface


From: Ian Hulin
Subject: Re: %module-public-interface
Date: Fri, 02 Apr 2010 01:11:03 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100317 Lightning/1.0b1 Thunderbird/3.0.4

Hi Ludovic,

On 30/03/10 22:52, Ludovic � wrote:
Hello,

Andy Wingo<address@hidden>  writes:

On Tue 30 Mar 2010 22:56, address@hidden (Ludovic Courtès) writes:

I'm pretty sure that the submodule thing can be changed without any
problem. But it seems that the %module-public-interface is used
explicitly, at least by texmacs and lilypond.

How do they use it?

Linking to the evil empire:

http://www.google.com/codesearch?hl=en&lr=&q=%25module-public-interface&sbtn=Search
http://www.google.com/codesearch?hl=en&lr=&q=%25module-public-interface+lang%3Ac%2B%2B&sbtn=Search

Lilypond does:

--8<---------------cut here---------------start------------->8---
       mod = scm_call_0 (maker);
       scm_module_define (mod, ly_symbol2scm ("%module-public-interface"),
                          mod);
--8<---------------cut here---------------end--------------->8---

Solution: do something like:

--8<---------------cut here---------------start------------->8---
#ifdef HAVE_SCM_SET_MODULE_PUBLIC_INTERFACE_X
   scm_set_module_public_interface_x (mod, mod);
#else
   scm_module_define (mod, ly_symbol2scm ("%module-public-interface"),
                      mod);
#endif
--8<---------------cut here---------------end--------------->8---

(We just need to add that function.)


TeXmacs does:
<snip>
And we could add a ‘public-interface’ slot to ‘module-type’ and have
‘module-public-interface’ and ‘set-module-public-interface!’ refer to
it; for backward compatibility we’d also initialize the
‘%module-public-interface’ binding.  How does it sound?

Actually the trick wouldn’t work in cases where the
‘%module-public-interface’ binding is mutated, as with Lilypond.

Given this and the above examples, I’d suggest dropping that binding
completely and sending patches to the Lilypond/TeXmacs people.

> What do you think?

If you do add scm_set_module_public_interface_x, could you back-port it to Guile V1.8.6 and V1.8.7?

Those are the lowest versions of Guile the upcoming stable release of Lilypond will support.

Cheers,

Ian Hulin





reply via email to

[Prev in Thread] Current Thread [Next in Thread]