2e48dcbe2a076a1b5c8ed7cf4786441c9999b13d
[bpt/guile.git] / doc / ref / api-evaluation.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, 2005, 2006, 2009, 2010, 2011, 2012
4 @c Free Software Foundation, Inc.
5 @c See the file guile.texi for copying conditions.
6
7 @node Read/Load/Eval/Compile
8 @section Reading and Evaluating Scheme Code
9
10 This chapter describes Guile functions that are concerned with reading,
11 loading, evaluating, and compiling Scheme code at run time.
12
13 @menu
14 * Scheme Syntax:: Standard and extended Scheme syntax.
15 * Scheme Read:: Reading Scheme code.
16 * Scheme Write:: Writing Scheme values to a port.
17 * Fly Evaluation:: Procedures for on the fly evaluation.
18 * Compilation:: How to compile Scheme files and procedures.
19 * Loading:: Loading Scheme code from file.
20 * Character Encoding of Source Files:: Loading non-ASCII Scheme code from file.
21 * Delayed Evaluation:: Postponing evaluation until it is needed.
22 @end menu
23
24
25 @node Scheme Syntax
26 @subsection Scheme Syntax: Standard and Guile Extensions
27
28 @menu
29 * Expression Syntax::
30 * Comments::
31 * Block Comments::
32 * Case Sensitivity::
33 * Keyword Syntax::
34 * Reader Extensions::
35 @end menu
36
37
38 @node Expression Syntax
39 @subsubsection Expression Syntax
40
41 An expression to be evaluated takes one of the following forms.
42
43 @table @nicode
44
45 @item @var{symbol}
46 A symbol is evaluated by dereferencing. A binding of that symbol is
47 sought and the value there used. For example,
48
49 @example
50 (define x 123)
51 x @result{} 123
52 @end example
53
54 @item (@var{proc} @var{args}@dots{})
55 A parenthesised expression is a function call. @var{proc} and each
56 argument are evaluated, then the function (which @var{proc} evaluated
57 to) is called with those arguments.
58
59 The order in which @var{proc} and the arguments are evaluated is
60 unspecified, so be careful when using expressions with side effects.
61
62 @example
63 (max 1 2 3) @result{} 3
64
65 (define (get-some-proc) min)
66 ((get-some-proc) 1 2 3) @result{} 1
67 @end example
68
69 The same sort of parenthesised form is used for a macro invocation,
70 but in that case the arguments are not evaluated. See the
71 descriptions of macros for more on this (@pxref{Macros}, and
72 @pxref{Syntax Rules}).
73
74 @item @var{constant}
75 Number, string, character and boolean constants evaluate ``to
76 themselves'', so can appear as literals.
77
78 @example
79 123 @result{} 123
80 99.9 @result{} 99.9
81 "hello" @result{} "hello"
82 #\z @result{} #\z
83 #t @result{} #t
84 @end example
85
86 Note that an application must not attempt to modify literal strings,
87 since they may be in read-only memory.
88
89 @item (quote @var{data})
90 @itemx '@var{data}
91 @findex quote
92 @findex '
93 Quoting is used to obtain a literal symbol (instead of a variable
94 reference), a literal list (instead of a function call), or a literal
95 vector. @nicode{'} is simply a shorthand for a @code{quote} form.
96 For example,
97
98 @example
99 'x @result{} x
100 '(1 2 3) @result{} (1 2 3)
101 '#(1 (2 3) 4) @result{} #(1 (2 3) 4)
102 (quote x) @result{} x
103 (quote (1 2 3)) @result{} (1 2 3)
104 (quote #(1 (2 3) 4)) @result{} #(1 (2 3) 4)
105 @end example
106
107 Note that an application must not attempt to modify literal lists or
108 vectors obtained from a @code{quote} form, since they may be in
109 read-only memory.
110
111 @item (quasiquote @var{data})
112 @itemx `@var{data}
113 @findex quasiquote
114 @findex `
115 Backquote quasi-quotation is like @code{quote}, but selected
116 sub-expressions are evaluated. This is a convenient way to construct
117 a list or vector structure most of which is constant, but at certain
118 points should have expressions substituted.
119
120 The same effect can always be had with suitable @code{list},
121 @code{cons} or @code{vector} calls, but quasi-quoting is often easier.
122
123 @table @nicode
124
125 @item (unquote @var{expr})
126 @itemx ,@var{expr}
127 @findex unquote
128 @findex ,
129 Within the quasiquote @var{data}, @code{unquote} or @code{,} indicates
130 an expression to be evaluated and inserted. The comma syntax @code{,}
131 is simply a shorthand for an @code{unquote} form. For example,
132
133 @example
134 `(1 2 ,(* 9 9) 3 4) @result{} (1 2 81 3 4)
135 `(1 (unquote (+ 1 1)) 3) @result{} (1 2 3)
136 `#(1 ,(/ 12 2)) @result{} #(1 6)
137 @end example
138
139 @item (unquote-splicing @var{expr})
140 @itemx ,@@@var{expr}
141 @findex unquote-splicing
142 @findex ,@@
143 Within the quasiquote @var{data}, @code{unquote-splicing} or
144 @code{,@@} indicates an expression to be evaluated and the elements of
145 the returned list inserted. @var{expr} must evaluate to a list. The
146 ``comma-at'' syntax @code{,@@} is simply a shorthand for an
147 @code{unquote-splicing} form.
148
149 @example
150 (define x '(2 3))
151 `(1 ,@@x 4) @result{} (1 2 3 4)
152 `(1 (unquote-splicing (map 1+ x))) @result{} (1 3 4)
153 `#(9 ,@@x 9) @result{} #(9 2 3 9)
154 @end example
155
156 Notice @code{,@@} differs from plain @code{,} in the way one level of
157 nesting is stripped. For @code{,@@} the elements of a returned list
158 are inserted, whereas with @code{,} it would be the list itself
159 inserted.
160 @end table
161
162 @c
163 @c FIXME: What can we say about the mutability of a quasiquote
164 @c result? R5RS doesn't seem to specify anything, though where it
165 @c says backquote without commas is the same as plain quote then
166 @c presumably the "fixed" portions of a quasiquote expression must be
167 @c treated as immutable.
168 @c
169
170 @end table
171
172
173 @node Comments
174 @subsubsection Comments
175
176 @c FIXME::martin: Review me!
177
178 Comments in Scheme source files are written by starting them with a
179 semicolon character (@code{;}). The comment then reaches up to the end
180 of the line. Comments can begin at any column, and the may be inserted
181 on the same line as Scheme code.
182
183 @lisp
184 ; Comment
185 ;; Comment too
186 (define x 1) ; Comment after expression
187 (let ((y 1))
188 ;; Display something.
189 (display y)
190 ;;; Comment at left margin.
191 (display (+ y 1)))
192 @end lisp
193
194 It is common to use a single semicolon for comments following
195 expressions on a line, to use two semicolons for comments which are
196 indented like code, and three semicolons for comments which start at
197 column 0, even if they are inside an indented code block. This
198 convention is used when indenting code in Emacs' Scheme mode.
199
200
201 @node Block Comments
202 @subsubsection Block Comments
203 @cindex multiline comments
204 @cindex block comments
205 @cindex #!
206 @cindex !#
207
208 @c FIXME::martin: Review me!
209
210 In addition to the standard line comments defined by R5RS, Guile has
211 another comment type for multiline comments, called @dfn{block
212 comments}. This type of comment begins with the character sequence
213 @code{#!} and ends with the characters @code{!#}, which must appear on a
214 line of their own. These comments are compatible with the block
215 comments in the Scheme Shell @file{scsh} (@pxref{The Scheme shell
216 (scsh)}). The characters @code{#!} were chosen because they are the
217 magic characters used in shell scripts for indicating that the name of
218 the program for executing the script follows on the same line.
219
220 Thus a Guile script often starts like this.
221
222 @lisp
223 #! /usr/local/bin/guile -s
224 !#
225 @end lisp
226
227 More details on Guile scripting can be found in the scripting section
228 (@pxref{Guile Scripting}).
229
230 @cindex R6RS block comments
231 @cindex SRFI-30 block comments
232 Similarly, Guile (starting from version 2.0) supports nested block
233 comments as specified by R6RS and
234 @url{http://srfi.schemers.org/srfi-30/srfi-30.html, SRFI-30}:
235
236 @lisp
237 (+ #| this is a #| nested |# block comment |# 2)
238 @result{} 3
239 @end lisp
240
241 For backward compatibility, this syntax can be overridden with
242 @code{read-hash-extend} (@pxref{Reader Extensions,
243 @code{read-hash-extend}}).
244
245 There is one special case where the contents of a comment can actually
246 affect the interpretation of code. When a character encoding
247 declaration, such as @code{coding: utf-8} appears in one of the first
248 few lines of a source file, it indicates to Guile's default reader
249 that this source code file is not ASCII. For details see @ref{Character
250 Encoding of Source Files}.
251
252 @node Case Sensitivity
253 @subsubsection Case Sensitivity
254
255 @c FIXME::martin: Review me!
256
257 Scheme as defined in R5RS is not case sensitive when reading symbols.
258 Guile, on the contrary is case sensitive by default, so the identifiers
259
260 @lisp
261 guile-whuzzy
262 Guile-Whuzzy
263 @end lisp
264
265 are the same in R5RS Scheme, but are different in Guile.
266
267 It is possible to turn off case sensitivity in Guile by setting the
268 reader option @code{case-insensitive}. For more information on reader
269 options, @xref{Scheme Read}.
270
271 @lisp
272 (read-enable 'case-insensitive)
273 @end lisp
274
275 Note that this is seldom a problem, because Scheme programmers tend not
276 to use uppercase letters in their identifiers anyway.
277
278
279 @node Keyword Syntax
280 @subsubsection Keyword Syntax
281
282
283 @node Reader Extensions
284 @subsubsection Reader Extensions
285
286 @deffn {Scheme Procedure} read-hash-extend chr proc
287 @deffnx {C Function} scm_read_hash_extend (chr, proc)
288 Install the procedure @var{proc} for reading expressions
289 starting with the character sequence @code{#} and @var{chr}.
290 @var{proc} will be called with two arguments: the character
291 @var{chr} and the port to read further data from. The object
292 returned will be the return value of @code{read}.
293 Passing @code{#f} for @var{proc} will remove a previous setting.
294
295 @end deffn
296
297
298 @node Scheme Read
299 @subsection Reading Scheme Code
300
301 @rnindex read
302 @deffn {Scheme Procedure} read [port]
303 @deffnx {C Function} scm_read (port)
304 Read an s-expression from the input port @var{port}, or from
305 the current input port if @var{port} is not specified.
306 Any whitespace before the next token is discarded.
307 @end deffn
308
309 The behaviour of Guile's Scheme reader can be modified by manipulating
310 its read options.
311
312 @cindex options - read
313 @cindex read options
314 @deffn {Scheme Procedure} read-options [setting]
315 Display the current settings of the read options. If @var{setting} is
316 omitted, only a short form of the current read options is printed.
317 Otherwise if @var{setting} is the symbol @code{help}, a complete options
318 description is displayed.
319 @end deffn
320
321 The set of available options, and their default values, may be had by
322 invoking @code{read-options} at the prompt.
323
324 @smalllisp
325 scheme@@(guile-user)> (read-options)
326 (square-brackets keywords #f positions)
327 scheme@@(guile-user)> (read-options 'help)
328 copy no Copy source code expressions.
329 positions yes Record positions of source code expressions.
330 case-insensitive no Convert symbols to lower case.
331 keywords #f Style of keyword recognition: #f, 'prefix or 'postfix.
332 r6rs-hex-escapes no Use R6RS variable-length character and string hex escapes.
333 square-brackets yes Treat `[' and `]' as parentheses, for R6RS compatibility.
334 hungry-eol-escapes no In strings, consume leading whitespace after an
335 escaped end-of-line.
336 @end smalllisp
337
338 The boolean options may be toggled with @code{read-enable} and
339 @code{read-disable}. The non-boolean @code{keywords} option must be set
340 using @code{read-set!}.
341
342 @deffn {Scheme Procedure} read-enable option-name
343 @deffnx {Scheme Procedure} read-disable option-name
344 @deffnx {Scheme Syntax} read-set! option-name value
345 Modify the read options. @code{read-enable} should be used with boolean
346 options and switches them on, @code{read-disable} switches them off.
347
348 @code{read-set!} can be used to set an option to a specific value. Due
349 to historical oddities, it is a macro that expects an unquoted option
350 name.
351 @end deffn
352
353 For example, to make @code{read} fold all symbols to their lower case
354 (perhaps for compatibility with older Scheme code), you can enter:
355
356 @lisp
357 (read-enable 'case-insensitive)
358 @end lisp
359
360 For more information on the effect of the @code{r6rs-hex-escapes} and
361 @code{hungry-eol-escapes} options, see (@pxref{String Syntax}).
362
363
364 @node Scheme Write
365 @subsection Writing Scheme Values
366
367 Any scheme value may be written to a port. Not all values may be read
368 back in (@pxref{Scheme Read}), however.
369
370 @rnindex write
371 @rnindex print
372 @deffn {Scheme Procedure} write obj [port]
373 Send a representation of @var{obj} to @var{port} or to the current
374 output port if not given.
375
376 The output is designed to be machine readable, and can be read back
377 with @code{read} (@pxref{Scheme Read}). Strings are printed in
378 double quotes, with escapes if necessary, and characters are printed in
379 @samp{#\} notation.
380 @end deffn
381
382 @rnindex display
383 @deffn {Scheme Procedure} display obj [port]
384 Send a representation of @var{obj} to @var{port} or to the current
385 output port if not given.
386
387 The output is designed for human readability, it differs from
388 @code{write} in that strings are printed without double quotes and
389 escapes, and characters are printed as per @code{write-char}, not in
390 @samp{#\} form.
391 @end deffn
392
393 As was the case with the Scheme reader, there are a few options that
394 affect the behavior of the Scheme printer.
395
396 @cindex options - print
397 @cindex print options
398 @deffn {Scheme Procedure} print-options [setting]
399 Display the current settings of the read options. If @var{setting} is
400 omitted, only a short form of the current read options is
401 printed. Otherwise if @var{setting} is the symbol @code{help}, a
402 complete options description is displayed.
403 @end deffn
404
405 The set of available options, and their default values, may be had by
406 invoking @code{print-options} at the prompt.
407
408 @smalllisp
409 scheme@@(guile-user)> (print-options)
410 (quote-keywordish-symbols reader highlight-suffix "@}" highlight-prefix "@{")
411 scheme@@(guile-user)> (print-options 'help)
412 highlight-prefix @{ The string to print before highlighted values.
413 highlight-suffix @} The string to print after highlighted values.
414 quote-keywordish-symbols reader How to print symbols that have a colon
415 as their first or last character. The
416 value '#f' does not quote the colons;
417 '#t' quotes them; 'reader' quotes them
418 when the reader option 'keywords' is
419 not '#f'.
420 escape-newlines yes Render newlines as \n when printing
421 using `write'.
422 @end smalllisp
423
424 These options may be modified with the print-set! syntax.
425
426 @deffn {Scheme Syntax} print-set! option-name value
427 Modify the print options. Due to historical oddities, @code{print-set!}
428 is a macro that expects an unquoted option name.
429 @end deffn
430
431
432 @node Fly Evaluation
433 @subsection Procedures for On the Fly Evaluation
434
435 Scheme has the lovely property that its expressions may be represented
436 as data. The @code{eval} procedure takes a Scheme datum and evaluates
437 it as code.
438
439 @rnindex eval
440 @c ARGFIXME environment/environment specifier
441 @deffn {Scheme Procedure} eval exp module_or_state
442 @deffnx {C Function} scm_eval (exp, module_or_state)
443 Evaluate @var{exp}, a list representing a Scheme expression,
444 in the top-level environment specified by @var{module}.
445 While @var{exp} is evaluated (using @code{primitive-eval}),
446 @var{module} is made the current module. The current module
447 is reset to its previous value when @var{eval} returns.
448 XXX - dynamic states.
449 Example: (eval '(+ 1 2) (interaction-environment))
450 @end deffn
451
452 @rnindex interaction-environment
453 @deffn {Scheme Procedure} interaction-environment
454 @deffnx {C Function} scm_interaction_environment ()
455 Return a specifier for the environment that contains
456 implementation--defined bindings, typically a superset of those
457 listed in the report. The intent is that this procedure will
458 return the environment in which the implementation would
459 evaluate expressions dynamically typed by the user.
460 @end deffn
461
462 @xref{Environments}, for other environments.
463
464 One does not always receive code as Scheme data, of course, and this is
465 especially the case for Guile's other language implementations
466 (@pxref{Other Languages}). For the case in which all you have is a
467 string, we have @code{eval-string}. There is a legacy version of this
468 procedure in the default environment, but you really want the one from
469 @code{(ice-9 eval-string)}, so load it up:
470
471 @example
472 (use-modules (ice-9 eval-string))
473 @end example
474
475 @deffn {Scheme Procedure} eval-string string [module=#f] [file=#f] [line=#f] [column=#f] [lang=(current-language)] [compile?=#f]
476 Parse @var{string} according to the current language, normally Scheme.
477 Evaluate or compile the expressions it contains, in order, returning the
478 last expression.
479
480 If the @var{module} keyword argument is set, save a module excursion
481 (@pxref{Module System Reflection}) and set the current module to
482 @var{module} before evaluation.
483
484 The @var{file}, @var{line}, and @var{column} keyword arguments can be
485 used to indicate that the source string begins at a particular source
486 location.
487
488 Finally, @var{lang} is a language, defaulting to the current language,
489 and the expression is compiled if @var{compile?} is true or there is no
490 evaluator for the given language.
491 @end deffn
492
493 @deffn {C Function} scm_eval_string (string)
494 @deffnx {C Function} scm_eval_string_in_module (string, module)
495 These C bindings call @code{eval-string} from @code{(ice-9
496 eval-string)}, evaluating within @var{module} or the current module.
497 @end deffn
498
499 @deftypefn {C Function} SCM scm_c_eval_string (const char *string)
500 @code{scm_eval_string}, but taking a C string in locale encoding instead
501 of an @code{SCM}.
502 @end deftypefn
503
504 @deffn {Scheme Procedure} apply proc arg1 @dots{} argN arglst
505 @deffnx {C Function} scm_apply_0 (proc, arglst)
506 @deffnx {C Function} scm_apply_1 (proc, arg1, arglst)
507 @deffnx {C Function} scm_apply_2 (proc, arg1, arg2, arglst)
508 @deffnx {C Function} scm_apply_3 (proc, arg1, arg2, arg3, arglst)
509 @deffnx {C Function} scm_apply (proc, arg, rest)
510 @rnindex apply
511 Call @var{proc} with arguments @var{arg1} @dots{} @var{argN} plus the
512 elements of the @var{arglst} list.
513
514 @code{scm_apply} takes parameters corresponding to a Scheme level
515 @code{(lambda (proc arg . rest) ...)}. So @var{arg} and all but the
516 last element of the @var{rest} list make up
517 @var{arg1}@dots{}@var{argN} and the last element of @var{rest} is the
518 @var{arglst} list. Or if @var{rest} is the empty list @code{SCM_EOL}
519 then there's no @var{arg1}@dots{}@var{argN} and @var{arg} is the
520 @var{arglst}.
521
522 @var{arglst} is not modified, but the @var{rest} list passed to
523 @code{scm_apply} is modified.
524 @end deffn
525
526 @deffn {C Function} scm_call_0 (proc)
527 @deffnx {C Function} scm_call_1 (proc, arg1)
528 @deffnx {C Function} scm_call_2 (proc, arg1, arg2)
529 @deffnx {C Function} scm_call_3 (proc, arg1, arg2, arg3)
530 @deffnx {C Function} scm_call_4 (proc, arg1, arg2, arg3, arg4)
531 @deffnx {C Function} scm_call_5 (proc, arg1, arg2, arg3, arg4, arg5)
532 @deffnx {C Function} scm_call_6 (proc, arg1, arg2, arg3, arg4, arg5, arg6)
533 Call @var{proc} with the given arguments.
534 @end deffn
535
536 @deffn {C Function} scm_call_n (proc, argv, nargs)
537 Call @var{proc} with the array of arguments @var{argv}, as a
538 @code{SCM*}. The length of the arguments should be passed in
539 @var{nargs}, as a @code{size_t}.
540 @end deffn
541
542 @deffn {Scheme Procedure} apply:nconc2last lst
543 @deffnx {C Function} scm_nconc2last (lst)
544 @var{lst} should be a list (@var{arg1} @dots{} @var{argN}
545 @var{arglst}), with @var{arglst} being a list. This function returns
546 a list comprising @var{arg1} to @var{argN} plus the elements of
547 @var{arglst}. @var{lst} is modified to form the return. @var{arglst}
548 is not modified, though the return does share structure with it.
549
550 This operation collects up the arguments from a list which is
551 @code{apply} style parameters.
552 @end deffn
553
554 @deffn {Scheme Procedure} primitive-eval exp
555 @deffnx {C Function} scm_primitive_eval (exp)
556 Evaluate @var{exp} in the top-level environment specified by
557 the current module.
558 @end deffn
559
560
561 @node Compilation
562 @subsection Compiling Scheme Code
563
564 The @code{eval} procedure directly interprets the S-expression
565 representation of Scheme. An alternate strategy for evaluation is to
566 determine ahead of time what computations will be necessary to
567 evaluate the expression, and then use that recipe to produce the
568 desired results. This is known as @dfn{compilation}.
569
570 While it is possible to compile simple Scheme expressions such as
571 @code{(+ 2 2)} or even @code{"Hello world!"}, compilation is most
572 interesting in the context of procedures. Compiling a lambda expression
573 produces a compiled procedure, which is just like a normal procedure
574 except typically much faster, because it can bypass the generic
575 interpreter.
576
577 Functions from system modules in a Guile installation are normally
578 compiled already, so they load and run quickly.
579
580 @cindex automatic compilation
581 Note that well-written Scheme programs will not typically call the
582 procedures in this section, for the same reason that it is often bad
583 taste to use @code{eval}. By default, Guile automatically compiles any
584 files it encounters that have not been compiled yet (@pxref{Invoking
585 Guile, @code{--auto-compile}}). The compiler can also be invoked
586 explicitly from the shell as @code{guild compile foo.scm}.
587
588 (Why are calls to @code{eval} and @code{compile} usually in bad taste?
589 Because they are limited, in that they can only really make sense for
590 top-level expressions. Also, most needs for ``compile-time''
591 computation are fulfilled by macros and closures. Of course one good
592 counterexample is the REPL itself, or any code that reads expressions
593 from a port.)
594
595 Automatic compilation generally works transparently, without any need
596 for user intervention. However Guile does not yet do proper dependency
597 tracking, so that if file @file{@var{a}.scm} uses macros from
598 @file{@var{b}.scm}, and @var{@var{b}.scm} changes, @code{@var{a}.scm}
599 would not be automatically recompiled. To forcibly invalidate the
600 auto-compilation cache, pass the @code{--fresh-auto-compile} option to
601 Guile, or set the @code{GUILE_AUTO_COMPILE} environment variable to
602 @code{fresh} (instead of to @code{0} or @code{1}).
603
604 For more information on the compiler itself, see @ref{Compiling to the
605 Virtual Machine}. For information on the virtual machine, see @ref{A
606 Virtual Machine for Guile}.
607
608 The command-line interface to Guile's compiler is the @command{guild
609 compile} command:
610
611 @deffn {Command} {guild compile} [@option{option}...] @var{file}...
612 Compile @var{file}, a source file, and store bytecode in the compilation cache
613 or in the file specified by the @option{-o} option. The following options are
614 available:
615
616 @table @option
617
618 @item -L @var{dir}
619 @itemx --load-path=@var{dir}
620 Add @var{dir} to the front of the module load path.
621
622 @item -o @var{ofile}
623 @itemx --output=@var{ofile}
624 Write output bytecode to @var{ofile}. By convention, bytecode file
625 names end in @code{.go}. When @option{-o} is omitted, the output file
626 name is as for @code{compile-file} (see below).
627
628 @item -W @var{warning}
629 @itemx --warn=@var{warning}
630 Emit warnings of type @var{warning}; use @code{--warn=help} for a list
631 of available warnings and their description. Currently recognized
632 warnings include @code{unused-variable}, @code{unused-toplevel},
633 @code{unbound-variable}, @code{arity-mismatch}, and @code{format}.
634
635 @item -f @var{lang}
636 @itemx --from=@var{lang}
637 Use @var{lang} as the source language of @var{file}. If this option is omitted,
638 @code{scheme} is assumed.
639
640 @item -t @var{lang}
641 @itemx --to=@var{lang}
642 Use @var{lang} as the target language of @var{file}. If this option is omitted,
643 @code{objcode} is assumed.
644
645 @item -T @var{target}
646 @itemx --target=@var{target}
647 Produce bytecode for @var{target} instead of @var{%host-type}
648 (@pxref{Build Config, %host-type}). Target must be a valid GNU triplet,
649 such as @code{armv5tel-unknown-linux-gnueabi} (@pxref{Specifying Target
650 Triplets,,, autoconf, GNU Autoconf Manual}).
651
652 @end table
653
654 Each @var{file} is assumed to be UTF-8-encoded, unless it contains a
655 coding declaration as recognized by @code{file-encoding}
656 (@pxref{Character Encoding of Source Files}).
657 @end deffn
658
659 The compiler can also be invoked directly by Scheme code using the procedures
660 below:
661
662 @deffn {Scheme Procedure} compile exp [env=#f] [from=(current-language)] [to=value] [opts=()]
663 Compile the expression @var{exp} in the environment @var{env}. If
664 @var{exp} is a procedure, the result will be a compiled procedure;
665 otherwise @code{compile} is mostly equivalent to @code{eval}.
666
667 For a discussion of languages and compiler options, @xref{Compiling to
668 the Virtual Machine}.
669 @end deffn
670
671 @deffn {Scheme Procedure} compile-file file [output-file=#f] @
672 [from=(current-language)] [to='objcode] @
673 [env=(default-environment from)] [opts='()] @
674 [canonicalization 'relative]
675 Compile the file named @var{file}.
676
677 Output will be written to a @var{output-file}. If you do not supply an
678 output file name, output is written to a file in the cache directory, as
679 computed by @code{(compiled-file-name @var{file})}.
680
681 @var{from} and @var{to} specify the source and target languages.
682 @xref{Compiling to the Virtual Machine}, for more information on these
683 options, and on @var{env} and @var{opts}.
684
685 As with @command{guild compile}, @var{file} is assumed to be
686 UTF-8-encoded unless it contains a coding declaration.
687 @end deffn
688
689 @deffn {Scheme Procedure} compiled-file-name file
690 Compute a cached location for a compiled version of a Scheme file named
691 @var{file}.
692
693 This file will usually be below the @file{$HOME/.cache/guile/ccache}
694 directory, depending on the value of the @env{XDG_CACHE_HOME}
695 environment variable. The intention is that @code{compiled-file-name}
696 provides a fallback location for caching auto-compiled files. If you
697 want to place a compile file in the @code{%load-compiled-path}, you
698 should pass the @var{output-file} option to @code{compile-file},
699 explicitly.
700 @end deffn
701
702 @defvr {Scheme Variable} %auto-compilation-options
703 This variable contains the options passed to the @code{compile-file}
704 procedure when auto-compiling source files. By default, it enables
705 useful compilation warnings. It can be customized from @file{~/.guile}.
706 @end defvr
707
708 @node Loading
709 @subsection Loading Scheme Code from File
710
711 @rnindex load
712 @deffn {Scheme Procedure} load filename [reader]
713 Load @var{filename} and evaluate its contents in the top-level
714 environment. The load paths are not searched.
715
716 @var{reader} if provided should be either @code{#f}, or a procedure with
717 the signature @code{(lambda (port) @dots{})} which reads the next
718 expression from @var{port}. If @var{reader} is @code{#f} or absent,
719 Guile's built-in @code{read} procedure is used (@pxref{Scheme Read}).
720
721 The @var{reader} argument takes effect by setting the value of the
722 @code{current-reader} fluid (see below) before loading the file, and
723 restoring its previous value when loading is complete. The Scheme code
724 inside @var{filename} can itself change the current reader procedure on
725 the fly by setting @code{current-reader} fluid.
726
727 If the variable @code{%load-hook} is defined, it should be bound to a
728 procedure that will be called before any code is loaded. See
729 documentation for @code{%load-hook} later in this section.
730 @end deffn
731
732 @deffn {Scheme Procedure} load-compiled filename
733 Load the compiled file named @var{filename}. The load paths are not
734 searched.
735
736 Compiling a source file (@pxref{Read/Load/Eval/Compile}) and then
737 calling @code{load-compiled} on the resulting file is equivalent to
738 calling @code{load} on the source file.
739 @end deffn
740
741 @deffn {Scheme Procedure} load-from-path filename
742 Similar to @code{load}, but searches for @var{filename} in the load
743 paths. Preferentially loads a compiled version of the file, if it is
744 available and up-to-date.
745 @end deffn
746
747 @deffn {Scheme Procedure} primitive-load filename
748 @deffnx {C Function} scm_primitive_load (filename)
749 Load the file named @var{filename} and evaluate its contents in
750 the top-level environment. The load paths are not searched;
751 @var{filename} must either be a full pathname or be a pathname
752 relative to the current directory. If the variable
753 @code{%load-hook} is defined, it should be bound to a procedure
754 that will be called before any code is loaded. See the
755 documentation for @code{%load-hook} later in this section.
756 @end deffn
757
758 @deftypefn {C Function} SCM scm_c_primitive_load (const char *filename)
759 @code{scm_primitive_load}, but taking a C string instead of an
760 @code{SCM}.
761 @end deftypefn
762
763 @deffn {Scheme Procedure} primitive-load-path filename [exception-on-not-found]
764 @deffnx {C Function} scm_primitive_load_path (filename)
765 Search @code{%load-path} for the file named @var{filename} and
766 load it into the top-level environment. If @var{filename} is a
767 relative pathname and is not found in the list of search paths,
768 an error is signalled. Preferentially loads a compiled version of the
769 file, if it is available and up-to-date.
770
771 By default or if @var{exception-on-not-found} is true, an exception is
772 raised if @var{filename} is not found. If @var{exception-on-not-found}
773 is @code{#f} and @var{filename} is not found, no exception is raised and
774 @code{#f} is returned. For compatibility with Guile 1.8 and earlier,
775 the C function takes only one argument, which can be either a string
776 (the file name) or an argument list.
777 @end deffn
778
779 @deffn {Scheme Procedure} %search-load-path filename
780 @deffnx {C Function} scm_sys_search_load_path (filename)
781 Search @code{%load-path} for the file named @var{filename},
782 which must be readable by the current user. If @var{filename}
783 is found in the list of paths to search or is an absolute
784 pathname, return its full pathname. Otherwise, return
785 @code{#f}. Filenames may have any of the optional extensions
786 in the @code{%load-extensions} list; @code{%search-load-path}
787 will try each extension automatically.
788 @end deffn
789
790 @defvar current-reader
791 @code{current-reader} holds the read procedure that is currently being
792 used by the above loading procedures to read expressions (from the file
793 that they are loading). @code{current-reader} is a fluid, so it has an
794 independent value in each dynamic root and should be read and set using
795 @code{fluid-ref} and @code{fluid-set!} (@pxref{Fluids and Dynamic
796 States}).
797
798 Changing @code{current-reader} is typically useful to introduce local
799 syntactic changes, such that code following the @code{fluid-set!} call
800 is read using the newly installed reader. The @code{current-reader}
801 change should take place at evaluation time when the code is evaluated,
802 or at compilation time when the code is compiled:
803
804 @findex eval-when
805 @example
806 (eval-when (compile eval)
807 (fluid-set! current-reader my-own-reader))
808 @end example
809
810 The @code{eval-when} form above ensures that the @code{current-reader}
811 change occurs at the right time.
812 @end defvar
813
814 @defvar %load-hook
815 A procedure to be called @code{(%load-hook @var{filename})} whenever a
816 file is loaded, or @code{#f} for no such call. @code{%load-hook} is
817 used by all of the above loading functions (@code{load},
818 @code{load-path}, @code{primitive-load} and
819 @code{primitive-load-path}).
820
821 For example an application can set this to show what's loaded,
822
823 @example
824 (set! %load-hook (lambda (filename)
825 (format #t "Loading ~a ...\n" filename)))
826 (load-from-path "foo.scm")
827 @print{} Loading /usr/local/share/guile/site/foo.scm ...
828 @end example
829 @end defvar
830
831 @deffn {Scheme Procedure} current-load-port
832 @deffnx {C Function} scm_current_load_port ()
833 Return the current-load-port.
834 The load port is used internally by @code{primitive-load}.
835 @end deffn
836
837 @defvar %load-extensions
838 A list of default file extensions for files containing Scheme code.
839 @code{%search-load-path} tries each of these extensions when looking for
840 a file to load. By default, @code{%load-extensions} is bound to the
841 list @code{("" ".scm")}.
842 @end defvar
843
844 @node Character Encoding of Source Files
845 @subsection Character Encoding of Source Files
846
847 @cindex source file encoding
848 @cindex primitive-load
849 @cindex load
850 Scheme source code files are usually encoded in ASCII, but, the
851 built-in reader can interpret other character encodings. The
852 procedure @code{primitive-load}, and by extension the functions that
853 call it, such as @code{load}, first scan the top 500 characters of the
854 file for a coding declaration.
855
856 A coding declaration has the form @code{coding: XXXXXX}, where
857 @code{XXXXXX} is the name of a character encoding in which the source
858 code file has been encoded. The coding declaration must appear in a
859 scheme comment. It can either be a semicolon-initiated comment or a block
860 @code{#!} comment.
861
862 The name of the character encoding in the coding declaration is
863 typically lower case and containing only letters, numbers, and hyphens,
864 as recognized by @code{set-port-encoding!} (@pxref{Ports,
865 @code{set-port-encoding!}}). Common examples of character encoding
866 names are @code{utf-8} and @code{iso-8859-1},
867 @url{http://www.iana.org/assignments/character-sets, as defined by
868 IANA}. Thus, the coding declaration is mostly compatible with Emacs.
869
870 However, there are some differences in encoding names recognized by
871 Emacs and encoding names defined by IANA, the latter being essentially a
872 subset of the former. For instance, @code{latin-1} is a valid encoding
873 name for Emacs, but it's not according to the IANA standard, which Guile
874 follows; instead, you should use @code{iso-8859-1}, which is both
875 understood by Emacs and dubbed by IANA (IANA writes it uppercase but
876 Emacs wants it lowercase and Guile is case insensitive.)
877
878 For source code, only a subset of all possible character encodings can
879 be interpreted by the built-in source code reader. Only those
880 character encodings in which ASCII text appears unmodified can be
881 used. This includes @code{UTF-8} and @code{ISO-8859-1} through
882 @code{ISO-8859-15}. The multi-byte character encodings @code{UTF-16}
883 and @code{UTF-32} may not be used because they are not compatible with
884 ASCII.
885
886 @cindex read
887 @cindex encoding
888 @cindex port encoding
889 @findex set-port-encoding!
890 There might be a scenario in which one would want to read non-ASCII
891 code from a port, such as with the function @code{read}, instead of
892 with @code{load}. If the port's character encoding is the same as the
893 encoding of the code to be read by the port, not other special
894 handling is necessary. The port will automatically do the character
895 encoding conversion. The functions @code{setlocale} or by
896 @code{set-port-encoding!} are used to set port encodings
897 (@pxref{Ports}).
898
899 If a port is used to read code of unknown character encoding, it can
900 accomplish this in three steps. First, the character encoding of the
901 port should be set to ISO-8859-1 using @code{set-port-encoding!}.
902 Then, the procedure @code{file-encoding}, described below, is used to
903 scan for a coding declaration when reading from the port. As a side
904 effect, it rewinds the port after its scan is complete. After that,
905 the port's character encoding should be set to the encoding returned
906 by @code{file-encoding}, if any, again by using
907 @code{set-port-encoding!}. Then the code can be read as normal.
908
909 @deffn {Scheme Procedure} file-encoding port
910 @deffnx {C Function} scm_file_encoding port
911 Scan the port for an Emacs-like character coding declaration near the
912 top of the contents of a port with random-accessible contents
913 (@pxref{Recognize Coding, how Emacs recognizes file encoding,, emacs,
914 The GNU Emacs Reference Manual}). The coding declaration is of the form
915 @code{coding: XXXXX} and must appear in a Scheme comment. Return a
916 string containing the character encoding of the file if a declaration
917 was found, or @code{#f} otherwise. The port is rewound.
918 @end deffn
919
920
921 @node Delayed Evaluation
922 @subsection Delayed Evaluation
923 @cindex delayed evaluation
924 @cindex promises
925
926 Promises are a convenient way to defer a calculation until its result
927 is actually needed, and to run such a calculation only once.
928
929 @deffn syntax delay expr
930 @rnindex delay
931 Return a promise object which holds the given @var{expr} expression,
932 ready to be evaluated by a later @code{force}.
933 @end deffn
934
935 @deffn {Scheme Procedure} promise? obj
936 @deffnx {C Function} scm_promise_p (obj)
937 Return true if @var{obj} is a promise.
938 @end deffn
939
940 @rnindex force
941 @deffn {Scheme Procedure} force p
942 @deffnx {C Function} scm_force (p)
943 Return the value obtained from evaluating the @var{expr} in the given
944 promise @var{p}. If @var{p} has previously been forced then its
945 @var{expr} is not evaluated again, instead the value obtained at that
946 time is simply returned.
947
948 During a @code{force}, an @var{expr} can call @code{force} again on
949 its own promise, resulting in a recursive evaluation of that
950 @var{expr}. The first evaluation to return gives the value for the
951 promise. Higher evaluations run to completion in the normal way, but
952 their results are ignored, @code{force} always returns the first
953 value.
954 @end deffn
955
956
957 @c Local Variables:
958 @c TeX-master: "guile.texi"
959 @c End: