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