(Creating Guile Modules): Expand define-modules
[bpt/guile.git] / doc / ref / api-modules.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Guile Reference Manual.
3 @c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
4 @c Free Software Foundation, Inc.
5 @c See the file guile.texi for copying conditions.
6
7 @page
8 @node Modules
9 @section Modules
10 @cindex modules
11
12 When programs become large, naming conflicts can occur when a function
13 or global variable defined in one file has the same name as a function
14 or global variable in another file. Even just a @emph{similarity}
15 between function names can cause hard-to-find bugs, since a programmer
16 might type the wrong function name.
17
18 The approach used to tackle this problem is called @emph{information
19 encapsulation}, which consists of packaging functional units into a
20 given name space that is clearly separated from other name spaces.
21 @cindex encapsulation
22 @cindex information encapsulation
23 @cindex name space
24
25 The language features that allow this are usually called @emph{the
26 module system} because programs are broken up into modules that are
27 compiled separately (or loaded separately in an interpreter).
28
29 Older languages, like C, have limited support for name space
30 manipulation and protection. In C a variable or function is public by
31 default, and can be made local to a module with the @code{static}
32 keyword. But you cannot reference public variables and functions from
33 another module with different names.
34
35 More advanced module systems have become a common feature in recently
36 designed languages: ML, Python, Perl, and Modula 3 all allow the
37 @emph{renaming} of objects from a foreign module, so they will not
38 clutter the global name space.
39 @cindex name space - private
40
41 In addition, Guile offers variables as first-class objects. They can
42 be used for interacting with the module system.
43
44 @menu
45 * provide and require:: The SLIB feature mechanism.
46 * Environments:: R5RS top-level environments.
47 * The Guile module system:: How Guile does it.
48 * Dynamic Libraries:: Loading libraries of compiled code at run time.
49 * Variables:: First-class variables.
50 @end menu
51
52 @node provide and require
53 @subsection provide and require
54
55 Aubrey Jaffer, mostly to support his portable Scheme library SLIB,
56 implemented a provide/require mechanism for many Scheme implementations.
57 Library files in SLIB @emph{provide} a feature, and when user programs
58 @emph{require} that feature, the library file is loaded in.
59
60 For example, the file @file{random.scm} in the SLIB package contains the
61 line
62
63 @smalllisp
64 (provide 'random)
65 @end smalllisp
66
67 so to use its procedures, a user would type
68
69 @smalllisp
70 (require 'random)
71 @end smalllisp
72
73 and they would magically become available, @emph{but still have the same
74 names!} So this method is nice, but not as good as a full-featured
75 module system.
76
77 When SLIB is used with Guile, provide and require can be used to access
78 its facilities.
79
80 @node Environments
81 @subsection Environments
82 @cindex environment
83
84 Scheme, as defined in R5RS, does @emph{not} have a full module system.
85 However it does define the concept of a top-level @dfn{environment}.
86 Such an environment maps identifiers (symbols) to Scheme objects such
87 as procedures and lists: @ref{About Closure}. In other words, it
88 implements a set of @dfn{bindings}.
89
90 Environments in R5RS can be passed as the second argument to
91 @code{eval} (@pxref{Fly Evaluation}). Three procedures are defined to
92 return environments: @code{scheme-report-environment},
93 @code{null-environment} and @code{interaction-environment} (@pxref{Fly
94 Evaluation}).
95
96 In addition, in Guile any module can be used as an R5RS environment,
97 i.e., passed as the second argument to @code{eval}.
98
99 Note: the following two procedures are available only when the
100 @code{(ice-9 r5rs)} module is loaded:
101
102 @smalllisp
103 (use-modules (ice-9 r5rs))
104 @end smalllisp
105
106 @deffn {Scheme Procedure} scheme-report-environment version
107 @deffnx {Scheme Procedure} null-environment version
108 @var{version} must be the exact integer `5', corresponding to revision
109 5 of the Scheme report (the Revised^5 Report on Scheme).
110 @code{scheme-report-environment} returns a specifier for an
111 environment that is empty except for all bindings defined in the
112 report that are either required or both optional and supported by the
113 implementation. @code{null-environment} returns a specifier for an
114 environment that is empty except for the (syntactic) bindings for all
115 syntactic keywords defined in the report that are either required or
116 both optional and supported by the implementation.
117
118 Currently Guile does not support values of @var{version} for other
119 revisions of the report.
120
121 The effect of assigning (through the use of @code{eval}) a variable
122 bound in a @code{scheme-report-environment} (for example @code{car})
123 is unspecified. Currently the environments specified by
124 @code{scheme-report-environment} are not immutable in Guile.
125 @end deffn
126
127 @node The Guile module system
128 @subsection The Guile module system
129
130 The Guile module system extends the concept of environments, discussed
131 in the previous section, with mechanisms to define, use and customise
132 sets of bindings.
133
134 In 1996 Tom Lord implemented a full-featured module system for Guile which
135 allows loading Scheme source files into a private name space. This system has
136 been in available since at least Guile version 1.1.
137
138 For Guile version 1.5.0 and later, the system has been improved to have better
139 integration from C code, more fine-grained user control over interfaces, and
140 documentation.
141
142 Although it is anticipated that the module system implementation will
143 change in the future, the Scheme programming interface described in this
144 manual should be considered stable. The C programming interface is
145 considered relatively stable, although at the time of this writing,
146 there is still some flux.
147
148 @menu
149 * General Information about Modules:: Guile module basics.
150 * Using Guile Modules:: How to use existing modules.
151 * Creating Guile Modules:: How to package your code into modules.
152 * Module System Reflection:: Accessing module objects at run-time.
153 * Module System Quirks:: Strange things to be aware of.
154 * Included Guile Modules:: Which modules come with Guile?
155 * Accessing Modules from C:: How to work with modules with C code.
156 @end menu
157
158 @node General Information about Modules
159 @subsubsection General Information about Modules
160
161 A Guile module can be thought of as a collection of named procedures,
162 variables and macros. More precisely, it is a set of @dfn{bindings}
163 of symbols (names) to Scheme objects.
164
165 An environment is a mapping from identifiers (or symbols) to locations,
166 i.e., a set of bindings.
167 There are top-level environments and lexical environments.
168 The environment in which a lambda is executed is remembered as part of its
169 definition.
170
171 Within a module, all bindings are visible. Certain bindings
172 can be declared @dfn{public}, in which case they are added to the
173 module's so-called @dfn{export list}; this set of public bindings is
174 called the module's @dfn{public interface} (@pxref{Creating Guile
175 Modules}).
176
177 A client module @dfn{uses} a providing module's bindings by either
178 accessing the providing module's public interface, or by building a
179 custom interface (and then accessing that). In a custom interface, the
180 client module can @dfn{select} which bindings to access and can also
181 algorithmically @dfn{rename} bindings. In contrast, when using the
182 providing module's public interface, the entire export list is available
183 without renaming (@pxref{Using Guile Modules}).
184
185 To use a module, it must be found and loaded. All Guile modules have a
186 unique @dfn{module name}, which is a list of one or more symbols.
187 Examples are @code{(ice-9 popen)} or @code{(srfi srfi-11)}. When Guile
188 searches for the code of a module, it constructs the name of the file to
189 load by concatenating the name elements with slashes between the
190 elements and appending a number of file name extensions from the list
191 @code{%load-extensions} (@pxref{Loading}). The resulting file name is
192 then searched in all directories in the variable @code{%load-path}
193 (@pxref{Build Config}). For example, the @code{(ice-9 popen)} module
194 would result in the filename @code{ice-9/popen.scm} and searched in the
195 installation directories of Guile and in all other directories in the
196 load path.
197
198 @c FIXME::martin: Not sure about this, maybe someone knows better?
199 Every module has a so-called syntax transformer associated with it.
200 This is a procedure which performs all syntax transformation for the
201 time the module is read in and evaluated. When working with modules,
202 you can manipulate the current syntax transformer using the
203 @code{use-syntax} syntactic form or the @code{#:use-syntax} module
204 definition option (@pxref{Creating Guile Modules}).
205
206 Please note that there are some problems with the current module system
207 you should keep in mind (@pxref{Module System Quirks}). We hope to
208 address these eventually.
209
210
211 @node Using Guile Modules
212 @subsubsection Using Guile Modules
213
214 To use a Guile module is to access either its public interface or a
215 custom interface (@pxref{General Information about Modules}). Both
216 types of access are handled by the syntactic form @code{use-modules},
217 which accepts one or more interface specifications and, upon evaluation,
218 arranges for those interfaces to be available to the current module.
219 This process may include locating and loading code for a given module if
220 that code has not yet been loaded, following %load-path (@pxref{Build
221 Config}).
222
223 An @dfn{interface specification} has one of two forms. The first
224 variation is simply to name the module, in which case its public
225 interface is the one accessed. For example:
226
227 @smalllisp
228 (use-modules (ice-9 popen))
229 @end smalllisp
230
231 Here, the interface specification is @code{(ice-9 popen)}, and the
232 result is that the current module now has access to @code{open-pipe},
233 @code{close-pipe}, @code{open-input-pipe}, and so on (@pxref{Included
234 Guile Modules}).
235
236 Note in the previous example that if the current module had already
237 defined @code{open-pipe}, that definition would be overwritten by the
238 definition in @code{(ice-9 popen)}. For this reason (and others), there
239 is a second variation of interface specification that not only names a
240 module to be accessed, but also selects bindings from it and renames
241 them to suit the current module's needs. For example:
242
243 @smalllisp
244 (use-modules ((ice-9 popen)
245 :select ((open-pipe . pipe-open) close-pipe)
246 :renamer (symbol-prefix-proc 'unixy:)))
247 @end smalllisp
248
249 Here, the interface specification is more complex than before, and the
250 result is that a custom interface with only two bindings is created and
251 subsequently accessed by the current module. The mapping of old to new
252 names is as follows:
253
254 @c Use `smallexample' since `table' is ugly. --ttn
255 @smallexample
256 (ice-9 popen) sees: current module sees:
257 open-pipe unixy:pipe-open
258 close-pipe unixy:close-pipe
259 @end smallexample
260
261 This example also shows how to use the convenience procedure
262 @code{symbol-prefix-proc}.
263
264 You can also directly refer to bindings in a module by using the
265 @code{@@} syntax. For example, instead of using the
266 @code{use-modules} statement from above and writing
267 @code{unixy:pipe-open} to refer to the @code{pipe-open} from the
268 @code{(ice-9 popen)}, you could also write @code{(@@ (ice-9 popen)
269 open-pipe)}. Thus an alternative to the complete @code{use-modules}
270 statement would be
271
272 @smalllisp
273 (define unixy:pipe-open (@@ (ice-9 popen) open-pipe))
274 (define unixy:close-pipe (@@ (ice-9 popen) close-pipe))
275 @end smalllisp
276
277 There is also @code{@@@@}, which can be used like @code{@@}, but does
278 not check whether the variable that is being accessed is actually
279 exported. Thus, @code{@@@@} can be thought of as the impolite version
280 of @code{@@} and should only be used as a last resort or for
281 debugging, for example.
282
283 Note that just as with a @code{use-modules} statement, any module that
284 has not yet been loaded yet will be loaded when referenced by a
285 @code{@@} or @code{@@@@} form.
286
287 You can also use the @code{@@} and @code{@@@@} syntaxes as the target
288 of a @code{set!} when the binding refers to a variable.
289
290 @c begin (scm-doc-string "boot-9.scm" "symbol-prefix-proc")
291 @deffn {Scheme Procedure} symbol-prefix-proc prefix-sym
292 Return a procedure that prefixes its arg (a symbol) with
293 @var{prefix-sym}.
294 @c Insert gratuitous C++ slam here. --ttn
295 @end deffn
296
297 @c begin (scm-doc-string "boot-9.scm" "use-modules")
298 @deffn syntax use-modules spec @dots{}
299 Resolve each interface specification @var{spec} into an interface and
300 arrange for these to be accessible by the current module. The return
301 value is unspecified.
302
303 @var{spec} can be a list of symbols, in which case it names a module
304 whose public interface is found and used.
305
306 @var{spec} can also be of the form:
307
308 @smalllisp
309 (MODULE-NAME [:select SELECTION] [:renamer RENAMER])
310 @end smalllisp
311
312 in which case a custom interface is newly created and used.
313 @var{module-name} is a list of symbols, as above; @var{selection} is a
314 list of selection-specs; and @var{renamer} is a procedure that takes a
315 symbol and returns its new name. A selection-spec is either a symbol or
316 a pair of symbols @code{(ORIG . SEEN)}, where @var{orig} is the name in
317 the used module and @var{seen} is the name in the using module. Note
318 that @var{seen} is also passed through @var{renamer}.
319
320 The @code{:select} and @code{:renamer} clauses are optional. If both are
321 omitted, the returned interface has no bindings. If the @code{:select}
322 clause is omitted, @var{renamer} operates on the used module's public
323 interface.
324
325 Signal error if module name is not resolvable.
326 @end deffn
327
328
329 @c FIXME::martin: Is this correct, and is there more to say?
330 @c FIXME::martin: Define term and concept `system transformer' somewhere.
331
332 @deffn syntax use-syntax module-name
333 Load the module @code{module-name} and use its system
334 transformer as the system transformer for the currently defined module,
335 as well as installing it as the current system transformer.
336 @end deffn
337
338 @deffn syntax @@ module-name binding-name
339 Refer to the binding named @var{binding-name} in module
340 @var{module-name}. The binding must have been exported by the module.
341 @end deffn
342
343 @deffn syntax @@@@ module-name binding-name
344 Refer to the binding named @var{binding-name} in module
345 @var{module-name}. The binding must not have been exported by the
346 module. This syntax is only intended for debugging purposes or as a
347 last resort.
348 @end deffn
349
350 @node Creating Guile Modules
351 @subsubsection Creating Guile Modules
352
353 When you want to create your own modules, you have to take the following
354 steps:
355
356 @itemize @bullet
357 @item
358 Create a Scheme source file and add all variables and procedures you wish
359 to export, or which are required by the exported procedures.
360
361 @item
362 Add a @code{define-module} form at the beginning.
363
364 @item
365 Export all bindings which should be in the public interface, either
366 by using @code{define-public} or @code{export} (both documented below).
367 @end itemize
368
369 @c begin (scm-doc-string "boot-9.scm" "define-module")
370 @deffn syntax define-module module-name [options @dots{}]
371 @var{module-name} is of the form @code{(hierarchy file)}. One
372 example of this is
373
374 @smalllisp
375 (define-module (ice-9 popen))
376 @end smalllisp
377
378 @code{define-module} makes this module available to Guile programs under
379 the given @var{module-name}.
380
381 The @var{options} are keyword/value pairs which specify more about the
382 defined module. The recognized options and their meaning is shown in
383 the following table.
384
385 @c fixme: Should we use "#:" or ":"?
386
387 @table @code
388 @item #:use-module @var{interface-specification}
389 Equivalent to a @code{(use-modules @var{interface-specification})}
390 (@pxref{Using Guile Modules}).
391
392 @item #:use-syntax @var{module}
393 Use @var{module} when loading the currently defined module, and install
394 it as the syntax transformer.
395
396 @item #:autoload @var{module} @var{symbol-list}
397 @cindex autoload
398 Load @var{module} when any of @var{symbol-list} are accessed. For
399 example,
400
401 @example
402 (define-module (my mod)
403 #:autoload (srfi srfi-1) (partition delete-duplicates))
404 ...
405 (if something
406 (set! foo (delete-duplicates ...)))
407 @end example
408
409 When a module is autoloaded, all it's bindings become available.
410 @var{symbol-list} is just those that will first trigger the load.
411
412 An autoload is a good way to put off loading a big module until it's
413 really needed, for instance for faster startup or if it will only be
414 needed in certain circumstances.
415
416 @code{@@} can do a similar thing (@pxref{Using Guile Modules}), but in
417 that case an @code{@@} form must be written every time a binding from
418 the module is used.
419
420 @item #:export @var{list}
421 @cindex export
422 Export all identifiers in @var{list}, which must be a list of symbols.
423 This is equivalent to @code{(export @var{list})} in the module body.
424
425 @item #:no-backtrace
426 @cindex no backtrace
427 Tell Guile not to record information for procedure backtraces when
428 executing the procedures in this module.
429
430 @item #:pure
431 @cindex pure module
432 Create a @dfn{pure} module, that is a module which does not contain any
433 of the standard procedure bindings except for the syntax forms. This is
434 useful if you want to create @dfn{safe} modules, that is modules which
435 do not know anything about dangerous procedures.
436 @end table
437
438 @end deffn
439 @c end
440
441 @deffn syntax export variable @dots{}
442 Add all @var{variable}s (which must be symbols) to the list of exported
443 bindings of the current module.
444 @end deffn
445
446 @c begin (scm-doc-string "boot-9.scm" "define-public")
447 @deffn syntax define-public @dots{}
448 Equivalent to @code{(begin (define foo ...) (export foo))}.
449 @end deffn
450 @c end
451
452 @node Module System Reflection
453 @subsubsection Module System Reflection
454
455 The previous sections have described a declarative view of the module
456 system. You can also work with it programmatically by accessing and
457 modifying various parts of the Scheme objects that Guile uses to
458 implement the module system.
459
460 At any time, there is a @dfn{current module}. This module is the one
461 where a top-level @code{define} and similar syntax will add new
462 bindings. You can find other module objects with @code{resolve-module},
463 for example.
464
465 These module objects can be used as the second argument to @code{eval}.
466
467 @deffn {Scheme Procedure} current-module
468 Return the current module object.
469 @end deffn
470
471 @deffn {Scheme Procedure} set-current-module module
472 Set the current module to @var{module} and return
473 the previous current module.
474 @end deffn
475
476 @deffn {Scheme Procedure} resolve-module name
477 Find the module named @var{name} and return it. When it has not already
478 been defined, try to auto-load it. When it can't be found that way
479 either, create an empty module. The name is a list of symbols.
480 @end deffn
481
482 @deffn {Scheme Procedure} resolve-interface name
483 Find the module named @var{name} as with @code{resolve-module} and
484 return its interface. The interface of a module is also a module
485 object, but it contains only the exported bindings.
486 @end deffn
487
488 @deffn {Scheme Procedure} module-use! module interface
489 Add @var{interface} to the front of the use-list of @var{module}. Both
490 arguments should be module objects, and @var{interface} should very
491 likely be a module returned by @code{resolve-interface}.
492 @end deffn
493
494 @node Module System Quirks
495 @subsubsection Module System Quirks
496
497 Although the programming interfaces are relatively stable, the Guile
498 module system itself is still evolving. Here are some situations where
499 usage surpasses design.
500
501 @itemize @bullet
502
503 @item
504 When using a module which exports a macro definition, the other module
505 must export all bindings the macro expansion uses, too, because the
506 expanded code would otherwise not be able to see these definitions and
507 issue a ``variable unbound'' error, or worse, would use another binding
508 which might be present in the scope of the expansion.
509
510 @item
511 When two or more used modules export bindings with the same names, the
512 last accessed module wins, and the exported binding of that last module
513 will silently be used. This might lead to hard-to-find errors because
514 wrong procedures or variables are used. To avoid this kind of
515 @dfn{name-clash} situation, use a custom interface specification
516 (@pxref{Using Guile Modules}). (We include this entry for the possible
517 benefit of users of Guile versions previous to 1.5.0, when custom
518 interfaces were added to the module system.)
519
520 @item
521 [Add other quirks here.]
522
523 @end itemize
524
525
526 @node Included Guile Modules
527 @subsubsection Included Guile Modules
528
529 @c FIXME::martin: Review me!
530
531 Some modules are included in the Guile distribution; here are references
532 to the entries in this manual which describe them in more detail:
533
534 @table @strong
535 @item boot-9
536 boot-9 is Guile's initialization module, and it is always loaded when
537 Guile starts up.
538
539 @item (ice-9 debug)
540 Mikael Djurfeldt's source-level debugging support for Guile
541 (@pxref{Debugging Features}).
542
543 @item (ice-9 threads)
544 Guile's support for multi threaded execution (@pxref{Scheduling}).
545
546 @item (ice-9 rdelim)
547 Line- and character-delimited input (@pxref{Line/Delimited}).
548
549 @item (ice-9 rw)
550 Block string input/output (@pxref{Block Reading and Writing}).
551
552 @item (ice-9 documentation)
553 Online documentation (REFFIXME).
554
555 @item (srfi srfi-1)
556 A library providing a lot of useful list and pair processing
557 procedures (@pxref{SRFI-1}).
558
559 @item (srfi srfi-2)
560 Support for @code{and-let*} (@pxref{SRFI-2}).
561
562 @item (srfi srfi-4)
563 Support for homogeneous numeric vectors (@pxref{SRFI-4}).
564
565 @item (srfi srfi-6)
566 Support for some additional string port procedures (@pxref{SRFI-6}).
567
568 @item (srfi srfi-8)
569 Multiple-value handling with @code{receive} (@pxref{SRFI-8}).
570
571 @item (srfi srfi-9)
572 Record definition with @code{define-record-type} (@pxref{SRFI-9}).
573
574 @item (srfi srfi-10)
575 Read hash extension @code{#,()} (@pxref{SRFI-10}).
576
577 @item (srfi srfi-11)
578 Multiple-value handling with @code{let-values} and @code{let-values*}
579 (@pxref{SRFI-11}).
580
581 @item (srfi srfi-13)
582 String library (@pxref{SRFI-13}).
583
584 @item (srfi srfi-14)
585 Character-set library (@pxref{SRFI-14}).
586
587 @item (srfi srfi-17)
588 Getter-with-setter support (@pxref{SRFI-17}).
589
590 @item (srfi srfi-26)
591 Convenient syntax for partial application (@pxref{SRFI-26})
592
593 @item (ice-9 slib)
594 This module contains hooks for using Aubrey Jaffer's portable Scheme
595 library SLIB from Guile (@pxref{SLIB}).
596
597 @c FIXME::martin: This module is not in the distribution. Remove it
598 @c from here?
599 @item (ice-9 jacal)
600 This module contains hooks for using Aubrey Jaffer's symbolic math
601 package Jacal from Guile (@pxref{JACAL}).
602 @end table
603
604
605 @node Accessing Modules from C
606 @subsubsection Accessing Modules from C
607
608 The last sections have described how modules are used in Scheme code,
609 which is the recommended way of creating and accessing modules. You
610 can also work with modules from C, but it is more cumbersome.
611
612 The following procedures are available.
613
614 @deftypefn {C Procedure} SCM scm_current_module ()
615 Return the module that is the @emph{current module}.
616 @end deftypefn
617
618 @deftypefn {C Procedure} SCM scm_set_current_module (SCM @var{module})
619 Set the current module to @var{module} and return the previous current
620 module.
621 @end deftypefn
622
623 @deftypefn {C Procedure} SCM scm_c_call_with_current_module (SCM @var{module}, SCM (*@var{func})(void *), void *@var{data})
624 Call @var{func} and make @var{module} the current module during the
625 call. The argument @var{data} is passed to @var{func}. The return
626 value of @code{scm_c_call_with_current_module} is the return value of
627 @var{func}.
628 @end deftypefn
629
630 @deftypefn {C Procedure} SCM scm_c_lookup (const char *@var{name})
631 Return the variable bound to the symbol indicated by @var{name} in the
632 current module. If there is no such binding or the symbol is not
633 bound to a variable, signal an error.
634 @end deftypefn
635
636 @deftypefn {C Procedure} SCM scm_lookup (SCM @var{name})
637 Like @code{scm_c_lookup}, but the symbol is specified directly.
638 @end deftypefn
639
640 @deftypefn {C Procedure} SCM scm_c_module_lookup (SCM @var{module}, const char *@var{name})
641 @deftypefnx {C Procedure} SCM scm_module_lookup (SCM @var{module}, SCM @var{name})
642 Like @code{scm_c_lookup} and @code{scm_lookup}, but the specified
643 module is used instead of the current one.
644 @end deftypefn
645
646 @deftypefn {C Procedure} SCM scm_c_define (const char *@var{name}, SCM @var{val})
647 Bind the symbol indicated by @var{name} to a variable in the current
648 module and set that variable to @var{val}. When @var{name} is already
649 bound to a variable, use that. Else create a new variable.
650 @end deftypefn
651
652 @deftypefn {C Procedure} SCM scm_define (SCM @var{name}, SCM @var{val})
653 Like @code{scm_c_define}, but the symbol is specified directly.
654 @end deftypefn
655
656 @deftypefn {C Procedure} SCM scm_c_module_define (SCM @var{module}, const char *@var{name}, SCM @var{val})
657 @deftypefnx {C Procedure} SCM scm_module_define (SCM @var{module}, SCM @var{name}, SCM @var{val})
658 Like @code{scm_c_define} and @code{scm_define}, but the specified
659 module is used instead of the current one.
660 @end deftypefn
661
662 @deftypefn {C Procedure} SCM scm_module_reverse_lookup (SCM @var{module}, SCM @var{variable})
663 Find the symbol that is bound to @var{variable} in @var{module}. When no such binding is found, return @var{#f}.
664 @end deftypefn
665
666 @deftypefn {C Procedure} SCM scm_c_define_module (const char *@var{name}, void (*@var{init})(void *), void *@var{data})
667 Define a new module named @var{name} and make it current while
668 @var{init} is called, passing it @var{data}. Return the module.
669
670 The parameter @var{name} is a string with the symbols that make up
671 the module name, separated by spaces. For example, @samp{"foo bar"} names
672 the module @samp{(foo bar)}.
673
674 When there already exists a module named @var{name}, it is used
675 unchanged, otherwise, an empty module is created.
676 @end deftypefn
677
678 @deftypefn {C Procedure} SCM scm_c_resolve_module (const char *@var{name})
679 Find the module name @var{name} and return it. When it has not
680 already been defined, try to auto-load it. When it can't be found
681 that way either, create an empty module. The name is interpreted as
682 for @code{scm_c_define_module}.
683 @end deftypefn
684
685 @deftypefn {C Procedure} SCM scm_resolve_module (SCM @var{name})
686 Like @code{scm_c_resolve_module}, but the name is given as a real list
687 of symbols.
688 @end deftypefn
689
690 @deftypefn {C Procedure} SCM scm_c_use_module (const char *@var{name})
691 Add the module named @var{name} to the uses list of the current
692 module, as with @code{(use-modules @var{name})}. The name is
693 interpreted as for @code{scm_c_define_module}.
694 @end deftypefn
695
696 @deftypefn {C Procedure} SCM scm_c_export (const char *@var{name}, ...)
697 Add the bindings designated by @var{name}, ... to the public interface
698 of the current module. The list of names is terminated by
699 @code{NULL}.
700 @end deftypefn
701
702 @node Dynamic Libraries
703 @subsection Dynamic Libraries
704
705 Most modern Unices have something called @dfn{shared libraries}. This
706 ordinarily means that they have the capability to share the executable
707 image of a library between several running programs to save memory and
708 disk space. But generally, shared libraries give a lot of additional
709 flexibility compared to the traditional static libraries. In fact,
710 calling them `dynamic' libraries is as correct as calling them `shared'.
711
712 Shared libraries really give you a lot of flexibility in addition to the
713 memory and disk space savings. When you link a program against a shared
714 library, that library is not closely incorporated into the final
715 executable. Instead, the executable of your program only contains
716 enough information to find the needed shared libraries when the program
717 is actually run. Only then, when the program is starting, is the final
718 step of the linking process performed. This means that you need not
719 recompile all programs when you install a new, only slightly modified
720 version of a shared library. The programs will pick up the changes
721 automatically the next time they are run.
722
723 Now, when all the necessary machinery is there to perform part of the
724 linking at run-time, why not take the next step and allow the programmer
725 to explicitly take advantage of it from within his program? Of course,
726 many operating systems that support shared libraries do just that, and
727 chances are that Guile will allow you to access this feature from within
728 your Scheme programs. As you might have guessed already, this feature
729 is called @dfn{dynamic linking}.@footnote{Some people also refer to the
730 final linking stage at program startup as `dynamic linking', so if you
731 want to make yourself perfectly clear, it is probably best to use the
732 more technical term @dfn{dlopening}, as suggested by Gordon Matzigkeit
733 in his libtool documentation.}
734
735 As with many aspects of Guile, there is a low-level way to access the
736 dynamic linking apparatus, and a more high-level interface that
737 integrates dynamically linked libraries into the module system.
738
739 @menu
740 * Low level dynamic linking::
741 * Compiled Code Modules::
742 * Dynamic Linking and Compiled Code Modules::
743 @end menu
744
745 @node Low level dynamic linking
746 @subsubsection Low level dynamic linking
747
748 When using the low level procedures to do your dynamic linking, you have
749 complete control over which library is loaded when and what gets done
750 with it.
751
752 @deffn {Scheme Procedure} dynamic-link library
753 @deffnx {C Function} scm_dynamic_link (library)
754 Find the shared library denoted by @var{library} (a string) and link it
755 into the running Guile application. When everything works out, return a
756 Scheme object suitable for representing the linked object file.
757 Otherwise an error is thrown. How object files are searched is system
758 dependent.
759
760 Normally, @var{library} is just the name of some shared library file
761 that will be searched for in the places where shared libraries usually
762 reside, such as in @file{/usr/lib} and @file{/usr/local/lib}.
763 @end deffn
764
765 @deffn {Scheme Procedure} dynamic-object? obj
766 @deffnx {C Function} scm_dynamic_object_p (obj)
767 Return @code{#t} if @var{obj} is a dynamic library handle, or @code{#f}
768 otherwise.
769 @end deffn
770
771 @deffn {Scheme Procedure} dynamic-unlink dobj
772 @deffnx {C Function} scm_dynamic_unlink (dobj)
773 Unlink the indicated object file from the application. The
774 argument @var{dobj} must have been obtained by a call to
775 @code{dynamic-link}. After @code{dynamic-unlink} has been
776 called on @var{dobj}, its content is no longer accessible.
777 @end deffn
778
779 @deffn {Scheme Procedure} dynamic-func name dobj
780 @deffnx {C Function} scm_dynamic_func (name, dobj)
781 Search the dynamic object @var{dobj} for the C function
782 indicated by the string @var{name} and return some Scheme
783 handle that can later be used with @code{dynamic-call} to
784 actually call the function.
785
786 Regardless whether your C compiler prepends an underscore @samp{_} to
787 the global names in a program, you should @strong{not} include this
788 underscore in @var{function}. Guile knows whether the underscore is
789 needed or not and will add it when necessary.
790 @end deffn
791
792 @deffn {Scheme Procedure} dynamic-call func dobj
793 @deffnx {C Function} scm_dynamic_call (func, dobj)
794 Call the C function indicated by @var{func} and @var{dobj}.
795 The function is passed no arguments and its return value is
796 ignored. When @var{function} is something returned by
797 @code{dynamic-func}, call that function and ignore @var{dobj}.
798 When @var{func} is a string , look it up in @var{dynobj}; this
799 is equivalent to
800 @smallexample
801 (dynamic-call (dynamic-func @var{func} @var{dobj}) #f)
802 @end smallexample
803
804 Interrupts are deferred while the C function is executing (with
805 @code{SCM_DEFER_INTS}/@code{SCM_ALLOW_INTS}).
806 @end deffn
807
808 @deffn {Scheme Procedure} dynamic-args-call func dobj args
809 @deffnx {C Function} scm_dynamic_args_call (func, dobj, args)
810 Call the C function indicated by @var{func} and @var{dobj},
811 just like @code{dynamic-call}, but pass it some arguments and
812 return its return value. The C function is expected to take
813 two arguments and return an @code{int}, just like @code{main}:
814 @smallexample
815 int c_func (int argc, char **argv);
816 @end smallexample
817
818 The parameter @var{args} must be a list of strings and is
819 converted into an array of @code{char *}. The array is passed
820 in @var{argv} and its size in @var{argc}. The return value is
821 converted to a Scheme number and returned from the call to
822 @code{dynamic-args-call}.
823 @end deffn
824
825 When dynamic linking is disabled or not supported on your system,
826 the above functions throw errors, but they are still available.
827
828 Here is a small example that works on GNU/Linux:
829
830 @smallexample
831 (define libc-obj (dynamic-link "libc.so"))
832 libc-obj
833 @result{} #<dynamic-object "libc.so">
834 (dynamic-args-call 'rand libc-obj '())
835 @result{} 269167349
836 (dynamic-unlink libc-obj)
837 libc-obj
838 @result{} #<dynamic-object "libc.so" (unlinked)>
839 @end smallexample
840
841 As you can see, after calling @code{dynamic-unlink} on a dynamically
842 linked library, it is marked as @samp{(unlinked)} and you are no longer
843 able to use it with @code{dynamic-call}, etc. Whether the library is
844 really removed from you program is system-dependent and will generally
845 not happen when some other parts of your program still use it. In the
846 example above, @code{libc} is almost certainly not removed from your
847 program because it is badly needed by almost everything.
848
849 The functions to call a function from a dynamically linked library,
850 @code{dynamic-call} and @code{dynamic-args-call}, are not very powerful.
851 They are mostly intended to be used for calling specially written
852 initialization functions that will then add new primitives to Guile.
853 For example, we do not expect that you will dynamically link
854 @file{libX11} with @code{dynamic-link} and then construct a beautiful
855 graphical user interface just by using @code{dynamic-call} and
856 @code{dynamic-args-call}. Instead, the usual way would be to write a
857 special Guile<->X11 glue library that has intimate knowledge about both
858 Guile and X11 and does whatever is necessary to make them inter-operate
859 smoothly. This glue library could then be dynamically linked into a
860 vanilla Guile interpreter and activated by calling its initialization
861 function. That function would add all the new types and primitives to
862 the Guile interpreter that it has to offer.
863
864 From this setup the next logical step is to integrate these glue
865 libraries into the module system of Guile so that you can load new
866 primitives into a running system just as you can load new Scheme code.
867
868 There is, however, another possibility to get a more thorough access to
869 the functions contained in a dynamically linked library. Anthony Green
870 has written @file{libffi}, a library that implements a @dfn{foreign
871 function interface} for a number of different platforms. With it, you
872 can extend the Spartan functionality of @code{dynamic-call} and
873 @code{dynamic-args-call} considerably. There is glue code available in
874 the Guile contrib archive to make @file{libffi} accessible from Guile.
875
876 @node Compiled Code Modules
877 @subsubsection Putting Compiled Code into Modules
878
879 The new primitives that you add to Guile with
880 @code{scm_c_define_gsubr} (@pxref{Primitive Procedures}) or with any
881 of the other mechanisms are placed into the @code{(guile-user)} module
882 by default. However, it is also possible to put new primitives into
883 other modules.
884
885 The mechanism for doing so is not very well thought out and is likely to
886 change when the module system of Guile itself is revised, but it is
887 simple and useful enough to document it as it stands.
888
889 What @code{scm_c_define_gsubr} and the functions used by the snarfer
890 really do is to add the new primitives to whatever module is the
891 @emph{current module} when they are called. This is analogous to the
892 way Scheme code is put into modules: the @code{define-module} expression
893 at the top of a Scheme source file creates a new module and makes it the
894 current module while the rest of the file is evaluated. The
895 @code{define} expressions in that file then add their new definitions to
896 this current module.
897
898 Therefore, all we need to do is to make sure that the right module is
899 current when calling @code{scm_c_define_gsubr} for our new primitives.
900
901 @node Dynamic Linking and Compiled Code Modules
902 @subsubsection Dynamic Linking and Compiled Code Modules
903
904 The most interesting application of dynamically linked libraries is
905 probably to use them for providing @emph{compiled code modules} to
906 Scheme programs. As much fun as programming in Scheme is, every now and
907 then comes the need to write some low-level C stuff to make Scheme even
908 more fun.
909
910 Not only can you put these new primitives into their own module (see the
911 previous section), you can even put them into a shared library that is
912 only then linked to your running Guile image when it is actually
913 needed.
914
915 An example will hopefully make everything clear. Suppose we want to
916 make the Bessel functions of the C library available to Scheme in the
917 module @samp{(math bessel)}. First we need to write the appropriate
918 glue code to convert the arguments and return values of the functions
919 from Scheme to C and back. Additionally, we need a function that will
920 add them to the set of Guile primitives. Because this is just an
921 example, we will only implement this for the @code{j0} function.
922
923 @c FIXME::martin: Change all gh_ references to their scm_ equivalents.
924
925 @smallexample
926 #include <math.h>
927 #include <libguile.h>
928
929 SCM
930 j0_wrapper (SCM x)
931 @{
932 return scm_double2num (j0 (scm_num2dbl (x, "j0")));
933 @}
934
935 void
936 init_math_bessel ()
937 @{
938 scm_c_define_gsubr ("j0", 1, 0, 0, j0_wrapper);
939 @}
940 @end smallexample
941
942 We can already try to bring this into action by manually calling the low
943 level functions for performing dynamic linking. The C source file needs
944 to be compiled into a shared library. Here is how to do it on
945 GNU/Linux, please refer to the @code{libtool} documentation for how to
946 create dynamically linkable libraries portably.
947
948 @smallexample
949 gcc -shared -o libbessel.so -fPIC bessel.c
950 @end smallexample
951
952 Now fire up Guile:
953
954 @smalllisp
955 (define bessel-lib (dynamic-link "./libbessel.so"))
956 (dynamic-call "init_math_bessel" bessel-lib)
957 (j0 2)
958 @result{} 0.223890779141236
959 @end smalllisp
960
961 The filename @file{./libbessel.so} should be pointing to the shared
962 library produced with the @code{gcc} command above, of course. The
963 second line of the Guile interaction will call the
964 @code{init_math_bessel} function which in turn will register the C
965 function @code{j0_wrapper} with the Guile interpreter under the name
966 @code{j0}. This function becomes immediately available and we can call
967 it from Scheme.
968
969 Fun, isn't it? But we are only half way there. This is what
970 @code{apropos} has to say about @code{j0}:
971
972 @smallexample
973 (apropos "j0")
974 @print{} (guile-user): j0 #<primitive-procedure j0>
975 @end smallexample
976
977 As you can see, @code{j0} is contained in the root module, where all
978 the other Guile primitives like @code{display}, etc live. In general,
979 a primitive is put into whatever module is the @dfn{current module} at
980 the time @code{scm_c_define_gsubr} is called.
981
982 A compiled module should have a specially named @dfn{module init
983 function}. Guile knows about this special name and will call that
984 function automatically after having linked in the shared library. For
985 our example, we replace @code{init_math_bessel} with the following code in
986 @file{bessel.c}:
987
988 @smallexample
989 void
990 init_math_bessel (void *unused)
991 @{
992 scm_c_define_gsubr ("j0", 1, 0, 0, j0_wrapper);
993 scm_c_export ("j0", NULL);
994 @}
995
996 void
997 scm_init_math_bessel_module ()
998 @{
999 scm_c_define_module ("math bessel", init_math_bessel, NULL);
1000 @}
1001 @end smallexample
1002
1003 The general pattern for the name of a module init function is:
1004 @samp{scm_init_}, followed by the name of the module where the
1005 individual hierarchical components are concatenated with underscores,
1006 followed by @samp{_module}.
1007
1008 After @file{libbessel.so} has been rebuilt, we need to place the shared
1009 library into the right place.
1010
1011 Once the module has been correctly installed, it should be possible to
1012 use it like this:
1013
1014 @smallexample
1015 guile> (load-extension "./libbessel.so" "scm_init_math_bessel_module")
1016 guile> (use-modules (math bessel))
1017 guile> (j0 2)
1018 0.223890779141236
1019 guile> (apropos "j0")
1020 @print{} (math bessel): j0 #<primitive-procedure j0>
1021 @end smallexample
1022
1023 That's it!
1024
1025 @deffn {Scheme Procedure} load-extension lib init
1026 @deffnx {C Function} scm_load_extension (lib, init)
1027 Load and initialize the extension designated by LIB and INIT.
1028 When there is no pre-registered function for LIB/INIT, this is
1029 equivalent to
1030
1031 @lisp
1032 (dynamic-call INIT (dynamic-link LIB))
1033 @end lisp
1034
1035 When there is a pre-registered function, that function is called
1036 instead.
1037
1038 Normally, there is no pre-registered function. This option exists
1039 only for situations where dynamic linking is unavailable or unwanted.
1040 In that case, you would statically link your program with the desired
1041 library, and register its init function right after Guile has been
1042 initialized.
1043
1044 LIB should be a string denoting a shared library without any file type
1045 suffix such as ".so". The suffix is provided automatically. It
1046 should also not contain any directory components. Libraries that
1047 implement Guile Extensions should be put into the normal locations for
1048 shared libraries. We recommend to use the naming convention
1049 libguile-bla-blum for a extension related to a module `(bla blum)'.
1050
1051 The normal way for a extension to be used is to write a small Scheme
1052 file that defines a module, and to load the extension into this
1053 module. When the module is auto-loaded, the extension is loaded as
1054 well. For example,
1055
1056 @lisp
1057 (define-module (bla blum))
1058
1059 (load-extension "libguile-bla-blum" "bla_init_blum")
1060 @end lisp
1061 @end deffn
1062
1063 @node Variables
1064 @subsection Variables
1065 @tpindex Variables
1066
1067 Each module has its own hash table, sometimes known as an @dfn{obarray},
1068 that maps the names defined in that module to their corresponding
1069 variable objects.
1070
1071 A variable is a box-like object that can hold any Scheme value. It is
1072 said to be @dfn{undefined} if its box holds a special Scheme value that
1073 denotes undefined-ness (which is different from all other Scheme values,
1074 including for example @code{#f}); otherwise the variable is
1075 @dfn{defined}.
1076
1077 On its own, a variable object is anonymous. A variable is said to be
1078 @dfn{bound} when it is associated with a name in some way, usually a
1079 symbol in a module obarray. When this happens, the relationship is
1080 mutual: the variable is bound to the name (in that module), and the name
1081 (in that module) is bound to the variable.
1082
1083 (That's the theory, anyway. In practice, defined-ness and bound-ness
1084 sometimes get confused, because Lisp and Scheme implementations have
1085 often conflated --- or deliberately drawn no distinction between --- a
1086 name that is unbound and a name that is bound to a variable whose value
1087 is undefined. We will try to be clear about the difference and explain
1088 any confusion where it is unavoidable.)
1089
1090 Variables do not have a read syntax. Most commonly they are created and
1091 bound implicitly by @code{define} expressions: a top-level @code{define}
1092 expression of the form
1093
1094 @lisp
1095 (define @var{name} @var{value})
1096 @end lisp
1097
1098 @noindent
1099 creates a variable with initial value @var{value} and binds it to the
1100 name @var{name} in the current module. But they can also be created
1101 dynamically by calling one of the constructor procedures
1102 @code{make-variable} and @code{make-undefined-variable}.
1103
1104 First-class variables are especially useful for interacting with the
1105 current module system (@pxref{The Guile module system}).
1106
1107 @deffn {Scheme Procedure} make-undefined-variable
1108 @deffnx {C Function} scm_make_undefined_variable ()
1109 Return a variable that is initially unbound.
1110 @end deffn
1111
1112 @deffn {Scheme Procedure} make-variable init
1113 @deffnx {C Function} scm_make_variable (init)
1114 Return a variable initialized to value @var{init}.
1115 @end deffn
1116
1117 @deffn {Scheme Procedure} variable-bound? var
1118 @deffnx {C Function} scm_variable_bound_p (var)
1119 Return @code{#t} iff @var{var} is bound to a value.
1120 Throws an error if @var{var} is not a variable object.
1121 @end deffn
1122
1123 @deffn {Scheme Procedure} variable-ref var
1124 @deffnx {C Function} scm_variable_ref (var)
1125 Dereference @var{var} and return its value.
1126 @var{var} must be a variable object; see @code{make-variable}
1127 and @code{make-undefined-variable}.
1128 @end deffn
1129
1130 @deffn {Scheme Procedure} variable-set! var val
1131 @deffnx {C Function} scm_variable_set_x (var, val)
1132 Set the value of the variable @var{var} to @var{val}.
1133 @var{var} must be a variable object, @var{val} can be any
1134 value. Return an unspecified value.
1135 @end deffn
1136
1137 @deffn {Scheme Procedure} variable? obj
1138 @deffnx {C Function} scm_variable_p (obj)
1139 Return @code{#t} iff @var{obj} is a variable object, else
1140 return @code{#f}.
1141 @end deffn
1142
1143
1144 @c Local Variables:
1145 @c TeX-master: "guile.texi"
1146 @c End: