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