guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-10-135-g7


From: Julian Graham
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-10-135-g7119448
Date: Fri, 21 May 2010 00:38:20 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=71194485d67733cc47c642832b2c9e1de97b6c12

The branch, master has been updated
       via  71194485d67733cc47c642832b2c9e1de97b6c12 (commit)
      from  520caaeba4aa217688f046f4298978d45ffcf4e3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 71194485d67733cc47c642832b2c9e1de97b6c12
Author: Julian Graham <address@hidden(none)>
Date:   Sat May 8 17:15:52 2010 -0400

    Documentation for the R6RS `library' and `import' forms.
    
    * doc/ref/api-modules.texi (R6RS Libraries): New section, documents
      `library' and `import'.

-----------------------------------------------------------------------

Summary of changes:
 doc/ref/api-modules.texi |  139 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 139 insertions(+), 0 deletions(-)

diff --git a/doc/ref/api-modules.texi b/doc/ref/api-modules.texi
index 618f5fa..28656d7 100644
--- a/doc/ref/api-modules.texi
+++ b/doc/ref/api-modules.texi
@@ -47,6 +47,7 @@ be used for interacting with the module system.
 * Module System Reflection::    Accessing module objects at run-time.
 * Included Guile Modules::      Which modules come with Guile?
 * R6RS Version References::     Using version numbers with modules.
+* R6RS Libraries::              The library and import forms.
 * Accessing Modules from C::    How to work with modules with C code.
 * Variables::                   First-class variables.
 * provide and require::         The SLIB feature mechanism.
@@ -778,6 +779,144 @@ expressions:
 @end lisp
 
 
address@hidden R6RS Libraries
address@hidden R6RS Libraries
+
+In addition to the API described in the previous sections, you also
+have the option to create modules using the portable ``library'' form
+described in R6RS (@pxref{Library form, R6RS Library Form,, r6rs, The
+Revised^6 Report on the Algorithmic Language Scheme}), and to import 
+libraries created in this format by other programmers.  Guile's R6RS 
+libraries implementation takes advantage of the flexibility built 
+into the module system by expanding the R6RS library form into a 
+corresponding Guile ``define-module'' form that specifies equivalent
+import and export requirements and includes the same body 
+expressions.  The library expression:
+
address@hidden
+  (library (mylib (1 2))
+    (import (otherlib (3)))
+    (export mybinding))
address@hidden lisp
+
+is equivalent to the module definition:
+
address@hidden
+  (define-module (mylib)
+    #:version (1 2)
+    #:use-module ((otherlib) #:version (3))
+    #:export (mybinding))
address@hidden lisp
+
+Central to the mechanics of R6RS libraries is the concept of import
+and export ``levels,'' which control the visibility of bindings at
+various phases of a library's lifecycle --- macros necessary to 
+expand forms in the library's body need to be available at expand 
+time; variables used in the body of a procedure exported by the
+library must be available at runtime.  R6RS specifies the optional
address@hidden sub-form of an @emph{import set} specification (see below)
+as a mechanism by which a library author can indicate that a
+particular library import should take place at a particular phase 
+with respect to the lifecycle of the importing library.  
+
+Guile's libraries implementation uses a technique called ``implicit 
+phasing'' (see @cite{Implicit Phasing for R6RS Libraries} by 
+Abdulaziz Ghuloum and R. Kent Dybvig), which allows the expander and
+compiler to automatically determine the necessary visibility of a 
+binding imported from another library.  As such, the @code{for} 
+sub-form described below is ignored by Guile (but may be required by
+Schemes in which phasing is explicit).
+
address@hidden syntax library name (export export-spec ...) (import import-spec 
...) body ...
+Defines a new library with the specified name, exports, and imports,
+and evaluates the specified body expressions in this library's 
+environment.
+
+The library @var{name} is a non-empty list of identifiers, optionally
+ending with a version specification of the form described above
+(@pxref{Creating Guile Modules}).
+
+Each @var{export-spec} is the name of a variable defined or imported
+by the library, or must take the form 
address@hidden(rename (internal-name external-name) ...)}, where the 
+identifier @var{internal-name} names a variable defined or imported 
+by the library and @var{external-name} is the name by which the
+variable is seen by importing libraries.
+
+Each @var{import-spec} must be either an ``import set'' (see below) 
+or must be of the form @code{(for import-set import-level ...)}, 
+where each @var{import-level} is one of:
+
address@hidden
+  run
+  expand
+  (meta @var{level})
address@hidden lisp
+
+where @var{level} is an integer.  Note that since Guile does not
+require explicit phase specification, any @var{import-set}s found 
+inside of @code{for} sub-forms will be ``unwrapped'' during 
+expansion and processed as if they had been specified directly.
+
+Import sets in turn take one of the following forms:
+
address@hidden
+  @var{library-reference}
+  (library @var{library-reference})
+  (only @var{import-set} @var{identifier} ...)
+  (except @var{import-set} @var{identifier} ...)
+  (prefix @var{import-set} @var{identifier})
+  (rename @var{import-set} (@var{internal-identifier} 
@var{external-identifier}) ...)
address@hidden lisp
+
+where @var{library-reference} is a non-empty list of identifiers
+ending with an optional version reference (@pxref{R6RS Version 
+References}), and the other sub-forms have the following semantics,
+defined recursively on nested @var{import-set}s:
+
address@hidden @bullet
+
address@hidden
+The @code{library} sub-form is used to specify libraries for import
+whose names begin with the identifier ``library.''
+
address@hidden
+The @code{only} sub-form imports only the specified @var{identifier}s
+from the given @var{import-set}.
+
address@hidden
+The @code{except} sub-form imports all of the bindings exported by 
address@hidden except for those that appear in the specified list
+of @var{identifier}s.
+
address@hidden
+The @code{prefix} sub-form imports all of the bindings exported
+by @var{import-set}, first prefixing them with the specified
address@hidden
+
address@hidden
+The @code{rename} sub-form imports all of the identifiers exported
+by @var{import-set}.  The binding for each @var{internal-identifier}
+among these identifiers is made visible to the importing library as
+the corresponding @var{external-identifier}; all other bindings are
+imported using the names provided by @var{import-set}.
+
address@hidden itemize
+
+Note that because Guile translates R6RS libraries into module 
+definitions, an import specification may be used to declare a
+dependency on a native Guile module --- although doing so may make 
+your libraries less portable to other Schemes.
+
address@hidden deffn
+
address@hidden syntax import import-spec ...
+Import into the current environment the libraries specified by the
+given import specifications, where each @var{import-spec} takes the
+same form as in the ``library'' form described above.
address@hidden deffn
+
+
 @node Accessing Modules from C
 @subsection Accessing Modules from C
 


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]