* intro.texi (Using Guile Modules): Wrote intro to using modules.
[bpt/guile.git] / doc / intro.texi
1 @c $Id: intro.texi,v 1.6 2001-04-20 07:31:25 mgrabmue Exp $
2
3 @page
4 @node What is Guile?
5 @chapter What is Guile?
6
7 Guile is an interpreter for the Scheme programming language, packaged
8 for use in a wide variety of environments. Guile implements Scheme as
9 described in the
10 @tex
11 Revised$^5$
12 @end tex
13 @ifinfo
14 Revised^5
15 @end ifinfo
16 Report on the Algorithmic Language Scheme (usually known as R5RS),
17 providing clean and general data and control structures. Guile goes
18 beyond the rather austere language presented in R5RS, extending it with
19 a module system, full access to POSIX system calls, networking support,
20 multiple threads, dynamic linking, a foreign function call interface,
21 powerful string processing, and many other features needed for
22 programming in the real world.
23
24 Like a shell, Guile can run interactively, reading expressions from the
25 user, evaluating them, and displaying the results, or as a script
26 interpreter, reading and executing Scheme code from a file. However,
27 Guile is also packaged as an object library, allowing other applications
28 to easily incorporate a complete Scheme interpreter. An application can
29 use Guile as an extension language, a clean and powerful configuration
30 language, or as multi-purpose ``glue'', connecting primitives provided
31 by the application. It is easy to call Scheme code from C code and vice
32 versa, giving the application designer full control of how and when to
33 invoke the interpreter. Applications can add new functions, data types,
34 control structures, and even syntax to Guile, creating a domain-specific
35 language tailored to the task at hand, but based on a robust language
36 design.
37
38 Guile's module system allows one to break up a large program into
39 manageable sections with well-defined interfaces between them. Modules
40 may contain a mixture of interpreted and compiled code; Guile can use
41 either static or dynamic linking to incorporate compiled code. Modules
42 also encourage developers to package up useful collections of routines
43 for general distribution; as of this writing, one can find Emacs
44 interfaces, database access routines, compilers, GUI toolkit interfaces,
45 and HTTP client functions, among others.
46
47 In the future, we hope to expand Guile to support other languages like
48 Tcl and Perl by translating them to Scheme code. This means that users
49 can program applications which use Guile in the language of their
50 choice, rather than having the tastes of the application's author
51 imposed on them.
52
53
54 @page
55 @node Whirlwind Tour
56 @chapter A Whirlwind Tour
57
58 This chapter presents a quick tour of all the ways that Guile can be
59 used.
60
61 @menu
62 * Running Guile Interactively::
63 * Guile Scripts::
64 * Linking Programs With Guile::
65 * Writing Extensions for Guile::
66 * Guile Modules::
67 @end menu
68
69
70 @node Running Guile Interactively
71 @section Running Guile Interactively
72
73 In its simplest form, Guile acts as an interactive interpreter for the
74 Scheme programming language, reading and evaluating Scheme expressions
75 the user enters from the terminal. Here is a sample interaction between
76 Guile and a user; the user's input appears after the @code{$} and
77 @code{guile>} prompts:
78
79 @example
80 $ guile
81 guile> (+ 1 2 3) ; add some numbers
82 6
83 guile> (define (factorial n) ; define a function
84 (if (zero? n) 1 (* n (factorial (- n 1)))))
85 guile> (factorial 20)
86 2432902008176640000
87 guile> (getpwnam "jimb") ; find my entry in /etc/passwd
88 #("jimb" ".0krIpK2VqNbU" 4008 10 "Jim Blandy" "/u/jimb"
89 "/usr/local/bin/bash")
90 guile> @kbd{C-d}
91 $
92 @end example
93
94 @c [[When we get a fancier read-eval-print loop, with features for bouncing
95 @c around among modules, referring to the value of the last expression,
96 @c etc. then this section will get longer.]]
97
98
99 @node Guile Scripts
100 @section Guile Scripts
101
102 Like AWK, Perl, or any shell, Guile can interpret script files. A Guile
103 script is simply a file of Scheme code with some extra information at
104 the beginning which tells the operating system how to invoke Guile, and
105 then tells Guile how to handle the Scheme code.
106
107 Before we present the details, here is a trivial Guile script:
108
109 @example
110 #!/usr/local/bin/guile -s
111 !#
112 (display "Hello, world!")
113 (newline)
114 @end example
115
116 @menu
117 * The Top of a Script File:: How to start a Guile script.
118 * Scripting Examples:: Simple Guile scripts, explained.
119 @end menu
120
121
122 @node The Top of a Script File
123 @subsection The Top of a Script File
124
125 The first line of a Guile script must tell the operating system to use
126 Guile to evaluate the script, and then tell Guile how to go about doing
127 that. Here is the simplest case:
128
129 @itemize @bullet
130
131 @item
132 The first two characters of the file must be @samp{#!}.
133
134 The operating system interprets this to mean that the rest of the line
135 is the name of an executable that can interpret the script. Guile,
136 however, interprets these characters as the beginning of a multi-line
137 comment, terminated by the characters @samp{!#} on a line by themselves.
138 (This is an extension to the syntax described in R5RS, added to support
139 shell scripts.)
140
141 @item
142 Immediately after those two characters must come the full pathname to
143 the Guile interpreter. On most systems, this would be
144 @samp{/usr/local/bin/guile}.
145
146 @item
147 Then must come a space, followed by a command-line argument to pass to
148 Guile; this should be @samp{-s}. This switch tells Guile to run a
149 script, instead of soliciting the user for input from the terminal.
150 There are more elaborate things one can do here; see @ref{The Meta
151 Switch}.
152
153 @item
154 Follow this with a newline.
155
156 @item
157 The second line of the script should contain only the characters
158 @samp{!#} --- just like the top of the file, but reversed. The
159 operating system never reads this far, but Guile treats this as the end
160 of the comment begun on the first line by the @samp{#!} characters.
161
162 @item
163 The rest of the file should be a Scheme program.
164
165 @end itemize
166
167 Guile reads the program, evaluating expressions in the order that they
168 appear. Upon reaching the end of the file, Guile exits.
169
170 The function @code{command-line} returns the name of the script file and
171 any command-line arguments passed by the user, as a list of strings.
172
173 For example, consider the following script file:
174 @example
175 #!/usr/local/bin/guile -s
176 !#
177 (write (command-line))
178 (newline)
179 @end example
180
181 If you put that text in a file called @file{foo} in the current
182 directory, then you could make it executable and try it out like this:
183 @example
184 $ chmod a+x foo
185 $ ./foo
186 ("./foo")
187 $ ./foo bar baz
188 ("./foo" "bar" "baz")
189 $
190 @end example
191
192 As another example, here is a simple replacement for the POSIX
193 @code{echo} command:
194 @example
195 #!/usr/local/bin/guile -s
196 !#
197 (for-each (lambda (s) (display s) (display " "))
198 (cdr (command-line)))
199 (newline)
200 @end example
201
202 @deffn procedure command-line
203 @deffnx primitive program-arguments
204 Return a list of the command-line arguments passed to the currently
205 running program. If the program invoked Guile with the @samp{-s},
206 @samp{-c} or @samp{--} switches, these procedures ignore everything up
207 to and including those switches.
208 @end deffn
209
210
211 @node Scripting Examples
212 @subsection Scripting Examples
213
214 To start with, here are some examples of invoking Guile directly:
215
216 @table @code
217
218 @item guile -- a b c
219 Run Guile interactively; @code{(command-line)} will return @*
220 @code{("/usr/local/bin/guile" "a" "b" "c")}.
221
222 @item guile -s /u/jimb/ex2 a b c
223 Load the file @file{/u/jimb/ex2}; @code{(command-line)} will return @*
224 @code{("/u/jimb/ex2" "a" "b" "c")}.
225
226 @item guile -c '(write %load-path) (newline)'
227 Write the value of the variable @code{%load-path}, print a newline,
228 and exit.
229
230 @item guile -e main -s /u/jimb/ex4 foo
231 Load the file @file{/u/jimb/ex4}, and then call the function
232 @code{main}, passing it the list @code{("/u/jimb/ex4" "foo")}.
233
234 @item guile -l first -ds -l last -s script
235 Load the files @file{first}, @file{script}, and @file{last}, in that
236 order. The @code{-ds} switch says when to process the @code{-s}
237 switch. For a more motivated example, see the scripts below.
238
239 @end table
240
241
242 Here is a very simple Guile script:
243 @example
244 #!/usr/local/bin/guile -s
245 !#
246 (display "Hello, world!")
247 (newline)
248 @end example
249 The first line marks the file as a Guile script. When the user invokes
250 it, the system runs @file{/usr/local/bin/guile} to interpret the script,
251 passing @code{-s}, the script's filename, and any arguments given to the
252 script as command-line arguments. When Guile sees @code{-s
253 @var{script}}, it loads @var{script}. Thus, running this program
254 produces the output:
255 @example
256 Hello, world!
257 @end example
258
259 Here is a script which prints the factorial of its argument:
260 @example
261 #!/usr/local/bin/guile -s
262 !#
263 (define (fact n)
264 (if (zero? n) 1
265 (* n (fact (- n 1)))))
266
267 (display (fact (string->number (cadr (command-line)))))
268 (newline)
269 @end example
270 In action:
271 @example
272 $ fact 5
273 120
274 $
275 @end example
276
277 However, suppose we want to use the definition of @code{fact} in this
278 file from another script. We can't simply @code{load} the script file,
279 and then use @code{fact}'s definition, because the script will try to
280 compute and display a factorial when we load it. To avoid this problem,
281 we might write the script this way:
282
283 @example
284 #!/usr/local/bin/guile \
285 -e main -s
286 !#
287 (define (fact n)
288 (if (zero? n) 1
289 (* n (fact (- n 1)))))
290
291 (define (main args)
292 (display (fact (string->number (cadr args))))
293 (newline))
294 @end example
295 This version packages the actions the script should perform in a
296 function, @code{main}. This allows us to load the file purely for its
297 definitions, without any extraneous computation taking place. Then we
298 used the meta switch @code{\} and the entry point switch @code{-e} to
299 tell Guile to call @code{main} after loading the script.
300 @example
301 $ fact 50
302 30414093201713378043612608166064768844377641568960512000000000000
303 @end example
304
305 Suppose that we now want to write a script which computes the
306 @code{choose} function: given a set of @var{m} distinct objects,
307 @code{(choose @var{n} @var{m})} is the number of distinct subsets
308 containing @var{n} objects each. It's easy to write @code{choose} given
309 @code{fact}, so we might write the script this way:
310 @example
311 #!/usr/local/bin/guile \
312 -l fact -e main -s
313 !#
314 (define (choose n m)
315 (/ (fact m) (* (fact (- m n)) (fact n))))
316
317 (define (main args)
318 (let ((n (string->number (cadr args)))
319 (m (string->number (caddr args))))
320 (display (choose n m))
321 (newline)))
322 @end example
323
324 The command-line arguments here tell Guile to first load the file
325 @file{fact}, and then run the script, with @code{main} as the entry
326 point. In other words, the @code{choose} script can use definitions
327 made in the @code{fact} script. Here are some sample runs:
328 @example
329 $ choose 0 4
330 1
331 $ choose 1 4
332 4
333 $ choose 2 4
334 6
335 $ choose 3 4
336 4
337 $ choose 4 4
338 1
339 $ choose 50 100
340 100891344545564193334812497256
341 @end example
342
343
344 @node Linking Programs With Guile
345 @section Linking Programs With Guile
346
347 The Guile interpreter is available as an object library, to be linked
348 into applications using Scheme as a configuration or extension
349 language. This chapter covers the mechanics of linking your program
350 with Guile on a typical POSIX system.
351
352 Parts III and IV of this manual describe the C functions Guile provides.
353 Furthermore, any Scheme function described in this manual as a
354 ``Primitive'' is also callable from C; see @ref{Scheme Primitives}.
355
356 The header file @code{<libguile.h>} provides declarations for all of
357 Guile's functions and constants. You should @code{#include} it at the
358 head of any C source file that uses identifiers described in this
359 manual. Once you've compiled your source files, you need to link them
360 against the Guile object code library, @code{libguile}.
361
362 On most systems, you should not need to do tell the compiler and linker
363 explicitely where they can find @file{libguile.h} and @file{libguile}.
364 When Guile has been installed in a peculiar way, or when you are on a
365 peculiar system, things might not be so easy and you might need to pass
366 additional @code{-I} or @code{-L} options to the compiler. Guile
367 provides the utility program @code{guile-config} to help you find the
368 right values for these options. You would typically run
369 @code{guile-config} during the configuration phase of your program and
370 use the obtained information in the Makefile.
371
372 @menu
373 * Guile Initialization Functions:: What to call first.
374 * A Sample Guile Main Program:: Sources and makefiles.
375 @end menu
376
377
378 @node Guile Initialization Functions
379 @subsection Guile Initialization Functions
380
381 To initialize Guile, you can use one of two functions. The first,
382 @code{scm_boot_guile}, is the most portable way to initialize Guile. It
383 should be used whenever you have control over the main function of your
384 program because it never returns. The second function,
385 @code{scm_init_guile}, does return and can thus be used in more
386 situations. However, @code{scm_init_guile} is not as widely available
387 as @code{scm_boot_guile} because it needs to rely on non-portable code
388 to find the stack bounds. When Guile does not know how to find these
389 bounds on your system, it will not provide @code{scm_init_guile}.
390
391 When you can tolerate the limits of @code{scm_boot_guile}, you should
392 use it in favor of @code{scm_init_guile} since that will make your
393 program more portable.
394
395 @deftypefun void scm_boot_guile (int @var{argc}, char **@var{argv}, void (*@var{main_func}) (), void *@var{closure})
396 Initialize the Guile Scheme interpreter. Then call @var{main_func},
397 passing it @var{closure}, @var{argc}, and @var{argv}. @var{main_func}
398 should do all the work of the program (initializing other packages,
399 defining application-specific functions, reading user input, and so on)
400 before returning. When @var{main_func} returns, call @code{exit (0)};
401 @code{scm_boot_guile} never returns. If you want some other exit value,
402 have @var{main_func} call exit itself.
403
404 @code{scm_boot_guile} arranges for the Scheme @code{command-line}
405 function to return the strings given by @var{argc} and @var{argv}. If
406 @var{main_func} modifies @var{argc} or @var{argv}, it should call
407 @code{scm_set_program_arguments} with the final list, so Scheme code
408 will know which arguments have been processed.
409
410 Why must the caller do all the real work from @var{main_func}? Guile's
411 garbage collector scans the stack to find all local variables that
412 reference Scheme objects. To do this, it needs to know the bounds of
413 the stack that might contain such references. Because there is no
414 protable way in C to find the base of the stack, @code{scm_boot_guile}
415 assumes that all references are above its own stack frame. If you try
416 to manipulate Scheme objects after this function returns, it's the luck
417 of the draw whether Guile's storage manager will be able to find the
418 objects you allocate. So, @code{scm_boot_guile} function exits, rather
419 than returning, to discourage you from making that mistake.
420
421 See @code{scm_init_guile}, below, for a function that can find the real
422 base of the stack, but not in a portable way.
423 @end deftypefun
424
425 @deftypefun void scm_init_guile ()
426 Initialize the Guile Scheme interpreter.
427
428 In contrast to @code{scm_boot_guile}, this function knows how to find
429 the true base of the stack and thus does not need to usurp the control
430 flow of your program. However, since finding the stack base can not be
431 done portably, this function might not be available in all installations
432 of Guile. If you can, you should use @code{scm_boot_guile} instead.
433
434 Note that @code{scm_init_guile} does not inform Guile about the command
435 line arguments that should be returned by the Scheme function
436 @code{comamnd-line}. You can use @code{scm_set_program_arguments} to do
437 this.
438 @end deftypefun
439
440 One common way to use Guile is to write a set of C functions which
441 perform some useful task, make them callable from Scheme, and then link
442 the program with Guile. This yields a Scheme interpreter just like
443 @code{guile}, but augmented with extra functions for some specific
444 application --- a special-purpose scripting language.
445
446 In this situation, the application should probably process its
447 command-line arguments in the same manner as the stock Guile
448 interpreter. To make that straightforward, Guile provides this
449 function:
450
451 @deftypefun void scm_shell (int @var{argc}, char **@var{argv})
452 Process command-line arguments in the manner of the @code{guile}
453 executable. This includes loading the normal Guile initialization
454 files, interacting with the user or running any scripts or expressions
455 specified by @code{-s} or @code{-e} options, and then exiting.
456 @xref{Invoking Guile}, for more details.
457
458 Since this function does not return, you must do all
459 application-specific initialization before calling this function.
460 @end deftypefun
461
462
463 @node A Sample Guile Main Program
464 @subsection A Sample Guile Main Program
465
466 Here is @file{simple-guile.c}, source code for a @code{main} and an
467 @code{inner_main} function that will produce a complete Guile
468 interpreter.
469
470 @example
471 /* simple-guile.c --- how to start up the Guile
472 interpreter from C code. */
473
474 /* Get declarations for all the scm_ functions. */
475 #include <libguile.h>
476
477 static void
478 inner_main (void *closure, int argc, char **argv)
479 @{
480 /* module initializations would go here */
481 scm_shell (argc, argv);
482 @}
483
484 int
485 main (int argc, char **argv)
486 @{
487 scm_boot_guile (argc, argv, inner_main, 0);
488 return 0; /* never reached */
489 @}
490 @end example
491
492 The @code{main} function calls @code{scm_boot_guile} to initialize
493 Guile, passing it @code{inner_main}. Once @code{scm_boot_guile} is
494 ready, it invokes @code{inner_main}, which calls @code{scm_shell} to
495 process the command-line arguments in the usual way.
496
497 Here is a Makefile which you can use to compile the above program. It
498 uses @code{guile-config} to learn about the necessary compiler and
499 linker flags.
500 @example
501 # Use GCC, if you have it installed.
502 CC=gcc
503
504 # Tell the C compiler where to find <libguile.h>
505 CFLAGS=`guile-config compile`
506
507 # Tell the linker what libraries to use and where to find them.
508 LIBS=`guile-config link`
509
510 simple-guile: simple-guile.o
511 $@{CC@} simple-guile.o $@{LIBS@} -o simple-guile
512
513 simple-guile.o: simple-guile.c
514 $@{CC@} -c $@{CFLAGS@} simple-guile.c
515 @end example
516
517 If you are using the GNU Autoconf package to make your application more
518 portable, Autoconf will settle many of the details in the Makefile above
519 automatically, making it much simpler and more portable; we recommend
520 using Autoconf with Guile. Guile also provides the @code{GUILE_FLAGS}
521 macro for autoconf that performs all necessary checks. Here is a
522 @file{configure.in} file for @code{simple-guile} that uses this macro.
523 Autoconf can use as this file as template to generate a @code{configure}
524 script. In order for Autoconf to find the @code{GUILE_FLAGS} macro, you
525 will need to run @code{aclocal} first. This is not really Guile
526 specific, so you should refer to the Autoconf documentation REFFIXME
527 when in doubt.
528 @example
529 AC_INIT(simple-guile.c)
530
531 # Find a C compiler.
532 AC_PROG_CC
533
534 # Check for Guile
535 GUILE_FLAGS
536
537 # Generate a Makefile, based on the results.
538 AC_OUTPUT(Makefile)
539 @end example
540
541 Here is a @code{Makefile.in} template, from which the @code{configure}
542 script produces a Makefile customized for the host system:
543 @example
544 # The configure script fills in these values.
545 CC=@@CC@@
546 CFLAGS=@@GUILE_CFLAGS@@
547 LIBS=@@GUILE_LDFLAGS@@
548
549 simple-guile: simple-guile.o
550 $@{CC@} simple-guile.o $@{LIBS@} -o simple-guile
551 simple-guile.o: simple-guile.c
552 $@{CC@} -c $@{CFLAGS@} simple-guile.c
553 @end example
554
555 The developer should use Autoconf to generate the @file{configure}
556 script from the @file{configure.in} template, and distribute
557 @file{configure} with the application. Here's how a user might go about
558 building the application:
559
560 @example
561 $ ls
562 Makefile.in configure* configure.in simple-guile.c
563 $ ./configure
564 creating cache ./config.cache
565 checking for gcc... (cached) gcc
566 checking whether the C compiler (gcc ) works... yes
567 checking whether the C compiler (gcc ) is a cross-compiler... no
568 checking whether we are using GNU C... (cached) yes
569 checking whether gcc accepts -g... (cached) yes
570 checking for Guile... yes
571 creating ./config.status
572 creating Makefile
573 $ make
574 gcc -c -I/usr/local/include simple-guile.c
575 gcc simple-guile.o -L/usr/local/lib -lguile -lqthreads -lpthread -lm -o simple-guile
576 $ ./simple-guile
577 guile> (+ 1 2 3)
578 6
579 guile> (getpwnam "jimb")
580 #("jimb" "83Z7d75W2tyJQ" 4008 10 "Jim Blandy" "/u/jimb"
581 "/usr/local/bin/bash")
582 guile> (exit)
583 $
584 @end example
585
586 @node Writing Extensions for Guile
587 @section Writing Extensions for Guile
588
589 The previous sections have briefly explained how to write programs that
590 make use of an embedded Guile interpreter. But sometimes, all you want
591 to do is make new primitive procedures and data types available to the
592 Scheme programmer. Writing a new version of @code{guile} is
593 inconvenient in this case and it would in fact make the life of the
594 users of your new features needlessly hard.
595
596 @c [[ the following is probably a bit longwinded ]]
597
598 For example, suppose that there is a program @code{guile-db} that is a
599 version of Guile with additional features for accessing a database.
600 People who want to write Scheme programs that use these features would
601 have to use @code{guile-db} instead of the usual @code{guile} program.
602 Now suppose that there is also a program @code{guile-gtk} that extends
603 Guile with access to the popular Gtk+ toolkit for graphical user
604 interfaces. People who want to write GUIs in Scheme would have to use
605 @code{guile-gtk}. Now, what happens when you want to write a Scheme
606 application that uses a GUI to let the user accessa a database? You
607 would have to write a @emph{third} program that incorporates both the
608 database stuff and the GUI stuff. This might not be easy (because
609 @code{guile-gtk} might be a quite obscure program, say) and taking this
610 example further makes it easy to see that this approach can not work in
611 practice.
612
613 It would have been much better if both the database features and the GUI
614 feature had been provided as libraries that can just be linked with
615 @code{guile}. Guile makes it easy to do just this, and we encourage you
616 to make your extensions to Guile available as libraries whenever
617 possible.
618
619 You write the new primitive procedures and data types in the normal
620 fashion, and link them into a shared library instead of into a
621 standalone program. The shared library can then be loaded dynamically
622 by Guile.
623
624 @menu
625 * A Sample Guile Extension::
626 @end menu
627
628 @node A Sample Guile Extension
629 @subsection A Sample Guile Extension
630
631 This section explains how to make the Bessel functions of the C library
632 available to Scheme. First we need to write the appropriate glue code
633 to convert the arguments and return values of the functions from Scheme
634 to C and back. Additionally, we need a function that will add them to
635 the set of Guile primitives. Because this is just an example, we will
636 only implement this for the @code{j0} function, tho.
637
638 Consider the following file @file{bessel.c}.
639
640 @smallexample
641 #include <math.h>
642 #include <libguile.h>
643
644 SCM
645 j0_wrapper (SCM x)
646 @{
647 return scm_make_real (j0 (scm_num2dbl (x, "j0")));
648 @}
649
650 void
651 init_bessel ()
652 @{
653 scm_make_gsubr ("j0", 1, 0, 0, j0_wrapper);
654 @}
655 @end smallexample
656
657 This C source file needs to be compiled into a shared library. Here is
658 how to do it on GNU/Linux:
659
660 @smallexample
661 gcc -shared -o libguile-bessel.so -fPIC bessel.c
662 @end smallexample
663
664 For creating shared libraries portably, we recommend the use of
665 @code{GNU Libtool}.
666
667 A shared library can be loaded into a running Guile process with
668 @code{dynamic-link}. After it has been linked you can call its exported
669 functions via @code{dynamic-call}. For our example, we are going to
670 call the function @code{init_bessel} which will make @code{j0_wrapper}
671 available to Scheme programs with the name @code{j0}. Note that we do
672 not specify a filename extension such as @file{.so} when invoking
673 @code{dynamic-link}. The right extension for the host platform will be
674 provided automatically.
675
676 @smalllisp
677 (define bessel-lib (dynamic-link "libguile-bessel"))
678 (dynamic-call "init_bessel" bessel-lib)
679 (j0 2)
680 @result{} 0.223890779141236
681 @end smalllisp
682
683 For this to work, @code{dynamic-link} must be able to find
684 @file{libguile-bessel}, of course. It will look in the places that are
685 usual for your operating system, and it will additionally look into the
686 directories listed in the @code{LTDL_LIBRRAY_PATH} environment variable.
687
688 To see how these Guile extensions via shared libraries relate to the
689 module system, see below REFFIXME.
690
691 @node Guile Modules
692 @section Guile Modules
693
694 Guile has support for dividing a program into @dfn{modules}. By using
695 modules, you can group related code together and manage the
696 composition of complete programs from largely independent parts.
697
698 (The module system is in flux, and will likely look very different in
699 the future. Feel free to use the existing system anyway. Guile will
700 provide reasonable backwards compatability.)
701
702 @menu
703 * Using Guile Modules::
704 * Writing New Modules::
705 * Modules and Extensions::
706 @end menu
707
708 @node Using Guile Modules
709 @subsection Using Existing Modules
710
711 @c FIXME::martin: Review me!
712
713 @c FIXME::martin: More? Or leave the rest to the module chapter?
714
715 Guile comes with a lot of useful modules, for example for string
716 processing or command line parsing. Additionally, there exist many
717 Guile modules written by other Guile hackers, but which have to be
718 installed manually.
719
720 Existing modules have to be placed in places where Guile looks for them
721 by default or in directories in the environment variable
722 @code{GUILE_LOAD_PATH}.
723
724 Suppose you want to use the procedures and variables exported by the
725 module @code{(ice-9 popen)}, which provides the means for communicating
726 with other processes over pipes. Add the following line to your
727 currently running Guile REPL or the top of you script file.
728
729 @lisp
730 (use-modules (ice-9 popen))
731 @end lisp
732
733 This will load the module and make the procedures exported by
734 @code{(ice-9 popen)} automatically available. The next step could be to
735 open a pipe to @file{ls} and read the contents of the current directory,
736 one line at a time.
737
738 @lisp
739 (define p (open-input-pipe "ls -l"))
740 (read-line p)
741 @result{}
742 "total 30"
743 (read-line p)
744 @result{}
745 "drwxr-sr-x 2 mgrabmue mgrabmue 1024 Mar 29 19:57 CVS"
746 @end lisp
747
748 More details of module usage can be found in (REFFIXME).
749
750
751 @node Writing New Modules
752 @subsection Writing New Modules
753
754 Of course it is possible to write modules yourself. Using modules for
755 structuring your programs makes them more readable and lets you
756 distribute them more easily. Also, explicitly defining the procedures
757 and variables which are exported from a module adds documentation to the
758 source and specifies the interface a module provides.
759
760 In Guile, you can create new modules and switch to exisiting modules in
761 order to add bindings to them using the syntactic form
762 @code{define-module}.
763
764 @lisp
765 (define-module (foo bar))
766
767 (define (frob x) x)
768 @end lisp
769
770 Will create the module @code{(foo bar)}.@footnote{It is only convention
771 that the module names in this section have two elements. One or more
772 than two elements are perfectly fine, such as @code{(foo)} or @code{(foo
773 bar braz)}} All definitions following this statement will add bindings
774 to the module @code{(foo bar)}, and these bindings will not be visible
775 outside of the module. To make the bindings accessible to other
776 modules, you have to export them explicitly using one of the following
777 means:
778
779 @itemize @bullet
780 @item
781 Export them with the @code{export} form:
782 @lisp
783 (export frob)
784 @end lisp
785
786 @item
787 Include them into the @code{define-module} form with the keyword
788 @code{export}:
789 @lisp
790 (define-module (foo bar)
791 #:export (frob))
792 @end lisp
793
794 @item
795 Change the definition of @code{frob} to use @code{define-public}, which
796 is a combination of @code{define} and @code{export}.
797 @lisp
798 (define-public (frob x) x)
799 @end lisp
800 @end itemize
801
802 After exporting, other modules can access the exported items simply by
803 using @code{use-modules} to load the module @code{(foo bar)}.
804
805
806 @node Modules and Extensions
807 @subsection Modules and Extensions
808
809 In addition to Scheme code you can also put new procedures and other
810 named features that are provided by an extension into a module.
811
812 You do this by writing a small Scheme file that defines the module.
813 That Scheme file in turn invokes @code{dynamic-link} and
814 @code{dynamic-call} as explained above to make the extension
815 available.
816
817 Suppose we want to put the Bessel function @code{j0} from the example
818 extension into a module called @code{(math bessel)}. We would have to
819 write a Scheme file with this contents
820
821 @smallexample
822 (define-module (math bessel))
823
824 (dynamic-call "init_bessel" (dynamic-link "libguile-bessel"))
825 @end smallexample
826
827 The file should of course be saved in the right place for autoloading,
828 for example as @file{/usr/local/share/guile/math/bessel.scm}.
829
830 @page
831 @node Reporting Bugs
832 @chapter Reporting Bugs
833
834 @c FIXME::martin: Review me!
835
836 @c FIXME::martin: A lot of this was taken from the Emacs reference
837 @c manual and adapted. I guess that is okay?
838
839 Any problems with the installation should be reported to
840 @email{bug-guile@@gnu.org}.
841
842 Whenever you have found a bug in Guile you are encouraged to report it
843 to the Guile developers, so they can fix it. They may probably have
844 also advice what to do to work around a bug when it is not possible for
845 you to apply the bugfix or install a new version of Guile yourself.
846
847 Before sending in bug reports, please check with the following list that
848 you really have found a bug.
849
850 @itemize @bullet
851 @item
852 Whenever documentation and actual behaviour differ, you have certainly
853 found a bug, either in the documentation or in the program.
854
855 @item
856 When Guile crashes, it is a bug.
857
858 @item
859 When Guile hangs or takes forever to complete a task, it is a bug.
860
861 @item
862 When calculations produce wrong results, it is a bug.
863
864 @item
865 When Guile signals an error for valid Scheme programs, it is a bug.
866
867 @item
868 @c FIXME::martin: Too strict?
869 When Guile does not signal an error for invalid Scheme programs, it may
870 be a bug, unless this is explicitly documented.
871
872 @item
873 When some part of the documentation is not clear and does not make sense
874 to you even after re--reading the section, it is a bug.
875 @end itemize
876
877 When you write a bug report, please make sure to include as much of the
878 information described below in the report. If you can't figure out some
879 of the items, it is not a problem, but the more information we get, the
880 better are chances we can diagnose and fix the bug.
881
882 @itemize @bullet
883 @item
884 The version number of Guile. Without this, we won't know whether there
885 is any point in looking for the bug in the current version of Guile.
886
887 You can get the version number by invoking the command
888
889 @example
890 $ guile --version
891 Guile 1.4.1
892 Copyright (c) 1995, 1996, 1997, 2000 Free Software Foundation
893 Guile may be distributed under the terms of the GNU General Public Licence;
894 certain other uses are permitted as well. For details, see the file
895 `COPYING', which is included in the Guile distribution.
896 There is no warranty, to the extent permitted by law.
897 @end example
898
899 @item
900 The type of machine you are using, and the operating system name and
901 version number. On GNU systems, you can get it with @file{uname}.
902
903 @example
904 $ uname -a
905 Linux tortoise 2.2.17 #1 Thu Dec 21 17:29:05 CET 2000 i586 unknown
906 @end example
907
908 @item
909 The operands given to the @file{configure} command when Guile was
910 installed.
911
912 @item
913 A complete list of any modifications you have made to the Guile source.
914 (We may not have time to investigate the bug unless it happens in an
915 unmodified Guile. But if you've made modifications and you don't tell
916 us, you are sending us on a wild goose chase.)
917
918 Be precise about these changes. A description in English is not
919 enough--send a context diff for them.
920
921 Adding files of your own, or porting to another machine, is a
922 modification of the source.
923
924 @item
925 Details of any other deviations from the standard procedure for
926 installing Guile.
927
928 @item
929 The complete text of any source files needed to reproduce the bug.
930
931 If you can tell us a way to cause the problem without loading any source
932 files, please do so. This makes it much easier to debug. If you do
933 need files, make sure you arrange for us to see their exact contents.
934
935 @item
936 The precise Guile invocation command line we need to type to reproduce
937 the bug.
938
939 @item
940 A description of what behavior you observe that you believe is
941 incorrect. For example, "The Guile process gets a fatal signal," or,
942 "The resulting output is as follows, which I think is wrong."
943
944 Of course, if the bug is that Guile gets a fatal signal, then one can't
945 miss it. But if the bug is incorrect results, the maintainer might fail
946 to notice what is wrong. Why leave it to chance?
947
948 If the manifestation of the bug is an Guile error message, it is
949 important to report the precise text of the error message, and a
950 backtrace showing how the Scheme program arrived at the error.
951
952 This can be done using the procedure @code{backtrace} in the REPL.
953
954 @item
955 Check whether any programs you have loaded into Guile, including your
956 `.guile' file, set any variables that may affect the functioning of
957 Guile. Also, see whether the problem happens in a freshly started Guile
958 without loading your `.guile file (start Guile with the `-q' switch to
959 prevent loading the init file). If the problem does _not_ occur then,
960 you must report the precise contents of any programs that you must load
961 into Guile in order to cause the problem to occur.
962
963 @item
964 If the problem does depend on an init file or other Lisp programs that
965 are not part of the standard Guile distribution, then you should make
966 sure it is not a bug in those programs by complaining to their
967 maintainers first. After they verify that they are using Guile in a way
968 that is supposed to work, they should report the bug.
969
970 @item
971 If you wish to mention something in the Guile source, show the line of
972 code with a few lines of context. Don't just give a line number.
973
974 The line numbers in the development sources don't match those in your
975 sources. It would take extra work for the maintainers to determine what
976 code is in your version at a given line number, and we could not be
977 certain.
978
979 @item
980 Additional information from a C debugger such as GDB might enable
981 someone to find a problem on a machine which he does not have available.
982 If you don't know how to use GDB, please read the GDB manual--it is not
983 very long, and using GDB is easy. You can find the GDB distribution,
984 including the GDB manual in online form, in most of the same places you
985 can find the Guile distribution. To run Guile under GDB, you should
986 switch to the `libguile' subdirectory in which Guile was compiled, then
987 do `gdb guile'.
988
989 However, you need to think when you collect the additional information
990 if you want it to show what causes the bug.
991
992 For example, many people send just a backtrace, but that is not very
993 useful by itself. A simple backtrace with arguments often conveys
994 little about what is happening inside Guile, because most of the
995 arguments listed in the backtrace are pointers to Scheme objects. The
996 numeric values of these pointers have no significance whatever; all that
997 matters is the contents of the objects they point to (and most of the
998 contents are themselves pointers).
999 @end itemize
1000
1001
1002
1003 @c Local Variables:
1004 @c TeX-master: "guile.texi"
1005 @c End: