Mercurial > hg > xemacs-beta
annotate man/lispref/databases.texi @ 5327:d1b17a33450b
Move the heavy lifting from cl-seq.el to C.
src/ChangeLog addition:
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
Move the heavy lifting from cl-seq.el to C, finally making those
functions first-class XEmacs citizens, with circularity checking,
built-in support for tests other than #'eql, and as much
compatibility with current Common Lisp as Paul Dietz' tests require.
* fns.c (check_eq_nokey, check_eq_key, check_eql_nokey)
(check_eql_key, check_equal_nokey, check_equal_key)
(check_equalp_nokey, check_equalp_key, check_string_match_nokey)
(check_string_match_key, check_other_nokey, check_other_key)
(check_if_nokey, check_if_key, check_match_eq_key)
(check_match_eql_key, check_match_equal_key)
(check_match_equalp_key, check_match_other_key): New. These are
basically to provide function pointers to be used by Lisp
functions that take TEST, TEST-NOT and KEY arguments.
(get_check_match_function_1, get_check_test_function)
(get_check_match_function): These functions work out which of the
previous list of functions to use, given the keywords supplied by
the user.
(count_with_tail): New. This is the bones of #'count.
(list_count_from_end, string_count_from_end): Utility functions
for #'count.
(Fcount): New, moved from cl-seq.el.
(list_position_cons_before): New. The implementation of #'member*,
and important in implementing various other functions.
(FmemberX, Fadjoin, FassocX, FrassocX, Fposition, Ffind)
(FdeleteX, FremoveX, Fdelete_duplicates, Fremove_duplicates)
(Fnsubstitute, Fsubstitute, Fsublis, Fnsublis, Fsubst, Fnsubst)
(Ftree_equal, Fmismatch, Fsearch, Fintersection, Fnintersection)
(Fsubsetp, Fset_difference, Fnset_difference, Fnunion, Funion)
(Fset_exclusive_or, Fnset_exclusive_or): New, moved here from
cl-seq.el.
(position): New. The implementation of #'find and #'position.
(list_delete_duplicates_from_end, subst, sublis, nsublis)
(tree_equal, mismatch_from_end, mismatch_list_list)
(mismatch_list_string, mismatch_list_array)
(mismatch_string_array, mismatch_string_string)
(mismatch_array_array, get_mismatch_func): Helper C functions for
the Lisp-visible functions.
(venn, nvenn): New. The implementation of the main Lisp functions that
treat lists as sets.
lisp/ChangeLog addition:
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* cl-seq.el:
Move the heavy lifting from this file to C. Dump the
cl-parsing-keywords macro, but don't use defun* for the functions
we define that do take keywords, dynamic scope lossage makes that
not practical.
* subr.el (sort, fillarray): Move these aliases here.
(map-plist): #'nsublis is now built-in, but at this point #'eql
isn't necessarily available as a test; use #'eq.
* obsolete.el (cl-delete-duplicates): Make this available for old
compiler macros and old code.
(memql): Document that this is equivalent to #'member*, and worse.
* cl.el (adjoin, subst): Removed. These are in C.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 30 Dec 2010 01:59:52 +0000 |
parents | 576fb035e263 |
children | 9fae6227ede5 |
rev | line source |
---|---|
428 | 1 @c -*-texinfo-*- |
2 @c This is part of the XEmacs Lisp Reference Manual. | |
3 @c Copyright (C) 1996 Ben Wing. | |
4 @c See the file lispref.texi for copying conditions. | |
5 @setfilename ../../info/databases.info | |
6 @node Databases, Processes, Range Tables, top | |
7 @chapter Databases | |
8 @cindex database | |
9 | |
10 @defun databasep object | |
11 This function returns non-@code{nil} if @var{object} is a database. | |
12 @end defun | |
13 | |
14 @menu | |
15 * Connecting to a Database:: | |
16 * Working With a Database:: | |
17 * Other Database Functions:: | |
18 @end menu | |
19 | |
20 @node Connecting to a Database | |
21 @section Connecting to a Database | |
22 | |
23 @defun open-database file &optional type subtype access mode | |
24 This function opens database @var{file}, using database method | |
25 @var{type} and @var{subtype}, with access rights @var{access} and | |
26 permissions @var{mode}. @var{access} can be any combination of @code{r} | |
27 @code{w} and @code{+}, for read, write, and creation flags. | |
28 | |
442 | 29 @var{type} can have the value @code{'dbm} or @code{'berkeley-db} to |
428 | 30 select the type of database file to use. (Note: XEmacs may not |
31 support both of these types.) | |
32 | |
33 For a @var{type} of @code{'dbm}, there are no subtypes, so | |
442 | 34 @var{subtype} should be @code{nil}. |
428 | 35 |
442 | 36 For a @var{type} of @code{'berkeley-db}, the following subtypes are |
428 | 37 available: @code{'hash}, @code{'btree}, and @code{'recno}. See the |
444 | 38 manpages for the Berkeley DB functions for more information about these |
428 | 39 types. |
40 @end defun | |
41 | |
444 | 42 @defun close-database database |
43 This function closes database @var{database}. | |
428 | 44 @end defun |
45 | |
444 | 46 @defun database-live-p object |
47 This function returns @code{t} if @var{object} is an active database, else | |
428 | 48 @code{nil}. |
49 @end defun | |
50 | |
51 @node Working With a Database | |
52 @section Working With a Database | |
53 | |
444 | 54 @defun get-database key database &optional default |
428 | 55 This function finds the value for @var{key} in @var{database}. If there is no |
56 corresponding value, @var{default} is returned (@code{nil} if @var{default} is | |
57 omitted). | |
58 @end defun | |
59 | |
444 | 60 @defun map-database function database |
428 | 61 This function maps @var{function} over entries in @var{database}, |
62 calling it with two args, each key and value in the database. | |
63 @end defun | |
64 | |
444 | 65 @defun put-database key value database &optional replace |
66 This function stores @var{key} and @var{value} in @var{database}. | |
67 If optional fourth arg @var{replace} is non-@code{nil}, replace any | |
428 | 68 existing entry in the database. |
69 @end defun | |
70 | |
444 | 71 @defun remove-database key database |
428 | 72 This function removes @var{key} from @var{database}. |
73 @end defun | |
74 | |
75 @node Other Database Functions | |
76 @section Other Database Functions | |
77 | |
444 | 78 @defun database-file-name database |
79 This function returns the filename associated with @var{database}. | |
428 | 80 @end defun |
81 | |
444 | 82 @defun database-last-error &optional database |
83 This function returns the last error associated with @var{database}. | |
428 | 84 @end defun |
85 | |
444 | 86 @defun database-subtype database |
87 This function returns the subtype of @var{database}, if any. | |
428 | 88 @end defun |
89 | |
444 | 90 @defun database-type database |
91 This function returns the type of @var{database}. | |
428 | 92 @end defun |