summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-09-20 06:31:41 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-09-20 06:31:41 -0700
commit9bf70a553426b49ae0a2967207472bcd35b2754c (patch)
tree82feb69595a0aff616992b8712287c284ef19157
parent8b3c5afed5d60c2e12deffcf463448c26c79c953 (diff)
downloadtxr-9bf70a553426b49ae0a2967207472bcd35b2754c.tar.gz
txr-9bf70a553426b49ae0a2967207472bcd35b2754c.tar.bz2
txr-9bf70a553426b49ae0a2967207472bcd35b2754c.zip
New library feature: imperative list building.
* lisplib.c (build_set_entries, build_instantiate): New static functions. (dlt_register): Register dynamic loading of build.tl via the two new functions. * share/txr/stdlib/build.tl: New file. * txr.1: Documented everything.
-rw-r--r--lisplib.c19
-rw-r--r--share/txr/stdlib/build.tl85
-rw-r--r--txr.1299
3 files changed, 403 insertions, 0 deletions
diff --git a/lisplib.c b/lisplib.c
index e74c925e..b33cd593 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -353,6 +353,24 @@ static val awk_instantiate(val set_fun)
return nil;
}
+static val build_set_entries(val dlt, val fun)
+{
+ val name[] = {
+ lit("list-builder"), lit("build-list"), lit("build"), nil
+ };
+ set_dlt_entries(dlt, name, fun);
+ return nil;
+}
+
+static val build_instantiate(val set_fun)
+{
+ funcall1(set_fun, nil);
+ load(format(nil, lit("~abuild.tl"), stdlib_path, nao));
+ sock_load_init();
+ return nil;
+}
+
+
val dlt_register(val dlt,
val (*instantiate)(val),
val (*set_entries)(val, val))
@@ -383,6 +401,7 @@ void lisplib_init(void)
dlt_register(dl_table, termios_instantiate, termios_set_entries);
#endif
dlt_register(dl_table, awk_instantiate, awk_set_entries);
+ dlt_register(dl_table, build_instantiate, build_set_entries);
}
val lisplib_try_load(val sym)
diff --git a/share/txr/stdlib/build.tl b/share/txr/stdlib/build.tl
new file mode 100644
index 00000000..4a121760
--- /dev/null
+++ b/share/txr/stdlib/build.tl
@@ -0,0 +1,85 @@
+;; Copyright 2016
+;; Kaz Kylheku <kaz@kylheku.com>
+;; Vancouver, Canada
+;; All rights reserved.
+;;
+;; Redistribution of this software in source and binary forms, with or without
+;; modification, is permitted provided that the following two conditions are met.
+;;
+;; Use of this software in any manner constitutes agreement with the disclaimer
+;; which follows the two conditions.
+;;
+;; 1. Redistributions of source code must retain the above copyright
+;; notice, this list of conditions and the following disclaimer.
+;; 2. Redistributions in binary form must reproduce the above copyright
+;; notice, this list of conditions and the following disclaimer in
+;; the documentation and/or other materials provided with the
+;; distribution.
+;;
+;; THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+;; WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+;; MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE
+;; COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DAMAGES, HOWEVER CAUSED,
+;; AND UNDER ANY THEORY OF LIABILITY, ARISING IN ANY WAY OUT OF THE USE OF THIS
+;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+(defstruct list-builder ()
+ head tail
+
+ (:postinit (bc)
+ (set bc.head (cons nil bc.head)
+ bc.tail (last bc.head)))
+
+ (:method add (self . items)
+ (set self.tail (last (rplacd self.tail (copy items)))))
+
+ (:method add* (self . items)
+ (let ((ic (copy items))
+ (h self.head))
+ (rplacd (last ic) (cdr h))
+ (rplacd h ic)))
+
+ (:method pend (self . lists)
+ (while lists
+ (set self.tail (last (rplacd self.tail (copy (car lists)))))
+ (set lists (cdr lists))))
+
+ (:method pend* (self . lists)
+ (let* ((h self.head)
+ (nh (cons nil nil))
+ (tl nh))
+ (while lists
+ (set tl (last (rplacd tl (copy (car lists)))))
+ (set lists (cdr lists)))
+ (rplacd tl (cdr h))
+ (set self.head nh)))
+
+ (:method ncon (self . lists)
+ (set self.tail (last (rplacd self.tail (nconc . lists)))))
+
+ (:method ncon* (self . lists)
+ (let ((h self.head))
+ (set (cdr h) (nconc (nconc . lists) (cdr h)))
+ (if (eq self.tail h)
+ (set self.tail (last h)))))
+
+ (:method get (self)
+ (cdr self.head)))
+
+(defun sys:list-builder-macrolets (lb-form)
+ (nconc
+ (collect-each ((op '(add add* pend pend* ncon ncon*)))
+ ^(,op (. forms)
+ ^(qref ,',lb-form (,',op ,*forms))))
+ ^((get ()
+ ^(qref ,',lb-form (get))))))
+
+(defun build-list (: init)
+ (new list-builder head init))
+
+(defmacro build (. forms)
+ (with-gensyms (name)
+ ^(let ((,name (new list-builder)))
+ (macrolet ,(sys:list-builder-macrolets name)
+ ,*forms
+ (qref ,name (get))))))
diff --git a/txr.1 b/txr.1
index 31fcedbf..3f682130 100644
--- a/txr.1
+++ b/txr.1
@@ -24734,6 +24734,305 @@ sequences using
and tests for termination with
.codn nil .
+.SS* Procedural List Construction
+
+\*(TL provides an a structure type called
+.code list-builder
+which encapsulates state and methods for constructing lists procedurally.
+Among the advantages of using
+.code list-builder
+is that lists can be constructed in the left to right direction without
+requiring multiple traversals or reversal. For example,
+.code list-builder
+naturally combines with iteration or recursion: items visited in an
+iterative or recursive process can be collected easily using
+.code list-builder
+in the order they are visited.
+
+The basic workflow begins with the instantiation of a
+.code list-builder
+object. This object may be initialized with a piece of list material which
+begins the to-be-constructed list, or it may be initialized to begin with an
+empty list. Methods such as
+.code add
+and
+.code pend
+are invoked on this object to extend the list with new elements. At any point,
+the list constructed so far is available using the
+.code get
+method, which is also how the final version of the list is eventually
+retrieved.
+
+The
+.code build
+macro is provided which syntactically streamlines the process.
+It implicitly creates a
+.code list-builder
+instance and binds it to a hidden lexical variable.
+It then evaluates forms in a lexical scope in which
+short-hand macros are available for building the list.
+
+.coNP Structure @ list-builder
+.synb
+.mets (defstruct list-builder nil
+.mets \ \ head tail)
+.syne
+.desc
+The
+.code list-builder
+structure encapsulates the state for a list building process.
+Programs should use the
+.code build-list
+function for creating an instance of
+.codn list-builder .
+The
+.code head
+and
+.code tail
+members should be regarded as internal variables.
+
+.coNP Function @ build-list
+.synb
+.mets (build-list <> [ initial-list ])
+.syne
+.desc
+The
+.code build-list
+function instantiates and returns an object of struct type
+.codn list-builder .
+
+If no
+.meta initial-list
+argument is supplied, then the object is implicitly
+with an empty list.
+
+If the argument is supplied, then it is equivalent
+to calling
+.code build-list
+without an argument to produce an object
+.meta obj
+the invoking the method call
+.cblk
+.meti << obj .(ncon << list )
+.cble
+on this object. The object produced by the expression
+.meta list
+is installed (without being copied) into the
+object as the prefix of the list to be constructed.
+
+.TP* Example:
+
+.cblk
+ ;; build the list (a b) trivially
+
+ (let ((lb (build-list '(a b))))
+ lb.(get)
+ -> (a b)
+.cble
+
+.coNP Methods @ add and @ add*
+.synb
+.mets << list-builder .(add << element *)
+.mets << list-builder .(add* << element *)
+.syne
+.desc
+The
+.code add
+and
+.code add*
+methods extend the list being constructed by a
+.code list-builder
+object by adding individual
+elements to it. The
+.code add
+method adds elements at the tail of the list,
+whereas
+.code add*
+adds elements at the front.
+
+.TP* Example:
+
+.cblk
+ ;; Build the list (1 2 3 4)
+
+ (let ((lb (build-list)))
+ lb.(add 3 4)
+ lb.(add* 1 2)
+ lb.(get))
+ -> (1 2 3 4)
+.cble
+
+.coNP Methods @ pend and @ pend*
+.synb
+.mets << list-builder .(pend << list *)
+.mets << list-builder .(pend* << list *)
+.syne
+.desc
+The
+.code pend
+and
+.code pend*
+methods extend the list being constructed by a
+.code list-builder
+object by adding lists to it. The
+.code pend
+method catenates the
+.code list
+arguments together as if by the
+.code append
+function, then appends the resulting list to
+the end of the list being constructed.
+The
+.code pend*
+method is similar, except it prepends the
+catenated lists to the front of the list
+being constructed.
+
+Both methods have the property that the
+constructed list does not share structure
+with the input lists.
+
+.TP* Example:
+
+.cblk
+ ;; Build the list (1 2 3 4)
+
+ (let ((lb (build-list)))
+ lb.(pend '(3 4))
+ lb.(pend* '(1 2))
+ lb.(get))
+ -> (1 2 3 4)
+.cble
+
+.coNP Methods @ ncon and @ ncon*
+.synb
+.mets << list-builder .(ncon << list *)
+.mets << list-builder .(ncon* << list *)
+.syne
+.desc
+The
+.code ncon
+and
+.code ncon*
+methods extend the list being constructed by a
+.code list-builder
+object by adding lists to it. The
+.code ncon
+method destructively catenates the
+.meta list
+arguments as if by the
+.code nconc
+function. The resulting list is appended
+to the list being constructed.
+The
+.code ncon*
+method is similar, except it prepends
+the catenated lists to the front of the
+list being constructed.
+
+These methods destructively manipulate
+the input lists. Moreover, they cause the
+list being constructed to share substructure
+with the input lists.
+
+Additionally, the
+.code ncon*
+function can be called with a single argument
+which is an atom. This atom will simply be
+installed as the terminating atom of the
+list being constructed.
+
+.TP* Example:
+
+.cblk
+ ;; Build the list (1 2 3 4 . 5)
+
+ (let ((lb (build-list)))
+ lb.(ncon* (list 1 2))
+ lb.(ncon (list 3 4))
+ lb.(ncon 5)
+ lb.(get))
+ -> (1 2 3 4 . 5)
+.cble
+
+.coNP Method @ get
+.synb
+.mets << list-builder .(get)
+.syne
+.desc
+The
+.code get
+method retrieves the list constructed so far by a
+.code list-builder
+object. It doesn't change the state of the object.
+The retrieved list may be passed as an argument
+into the construction methods on the same object.
+
+.TP* Examples:
+
+.cblk
+ ;; Build the circular list (1 1 1 1 ...)
+ ;; by appending (1) to itself destructively:
+
+ (let ((lb (build-list '(1))))
+ lb.(ncon* lb.(get))
+ lb.(get))
+ -> (1 1 1 1 ...)
+
+ ;; build the list (1 2 1 2 1 2 1 2)
+ ;; by doubling (1 2) twice:
+
+ (let ((lb (build-list)))
+ lb.(add 1 2)
+ lb.(pend lb.(get))
+ lb.(pend lb.(get))
+ lb.(get))
+ -> (1 2 1 2 1 2 1 2)
+.cble
+
+.coNP Macro @ build
+.synb
+.mets (build << form *)
+.syne
+.desc
+The
+.code build
+macro provides a shorthand notation for constructing lists using the
+.code list-builder
+structure. It eliminates the explicit call to the
+.code build-list
+function to construct the object, and eliminates the explicit
+references to the object.
+
+Instead,
+.code build
+creates a lexical environment in which a
+.code list-builder
+object is implicitly constructed and bound to a hidden variable.
+Local macros which mimic the
+.code list-builder
+methods operate implicitly on this hidden variable, so that
+the object need not be mentioned as an argument.
+
+.TP* Examples:
+
+.cblk
+ ;; Build the circular list (1 1 1 1 ...)
+ ;; by appending (1) to itself destructively:
+
+ (build
+ (add 1)
+ (ncon* (get))) -> (1 1 1 1 ...)
+
+ ;; build the list (1 2 1 2 1 2 1 2)
+ ;; by doubling (1 2) twice:
+
+ (build
+ (add 1 2)
+ (pend (get))
+ (pend (get))) -> (1 2 1 2 1 2 1 2)
+.cble
+
.SS* Permutations and Combinations
.coNP Function @ perm