Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / emacs-lisp / assoc.el
1 ;;; assoc.el --- insert/delete functions on association lists
2
3 ;; Copyright (C) 1996, 2001-2012 Free Software Foundation, Inc.
4
5 ;; Author: Barry A. Warsaw <bwarsaw@cen.com>
6 ;; Keywords: extensions
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; Association list utilities providing insertion, deletion, sorting
26 ;; fetching off key-value pairs in association lists.
27
28 ;;; Code:
29 (eval-when-compile (require 'cl))
30
31 (defun asort (alist-symbol key)
32 "Move a specified key-value pair to the head of an alist.
33 The alist is referenced by ALIST-SYMBOL. Key-value pair to move to
34 head is one matching KEY. Returns the sorted list and doesn't affect
35 the order of any other key-value pair. Side effect sets alist to new
36 sorted list."
37 (set alist-symbol
38 (sort (copy-alist (symbol-value alist-symbol))
39 (function (lambda (a b) (equal (car a) key))))))
40
41
42 (defun aelement (key value)
43 "Make a list of a cons cell containing car of KEY and cdr of VALUE.
44 The returned list is suitable for concatenating with an existing
45 alist, via `nconc'."
46 (list (cons key value)))
47
48
49 (defun aheadsym (alist)
50 "Return the key symbol at the head of ALIST."
51 (car (car alist)))
52
53
54 (defun anot-head-p (alist key)
55 "Find out if a specified key-value pair is not at the head of an alist.
56 The alist to check is specified by ALIST and the key-value pair is the
57 one matching the supplied KEY. Returns nil if ALIST is nil, or if
58 key-value pair is at the head of the alist. Returns t if key-value
59 pair is not at the head of alist. ALIST is not altered."
60 (not (equal (aheadsym alist) key)))
61
62
63 (defun aput (alist-symbol key &optional value)
64 "Insert a key-value pair into an alist.
65 The alist is referenced by ALIST-SYMBOL. The key-value pair is made
66 from KEY and optionally, VALUE. Returns the altered alist.
67
68 If the key-value pair referenced by KEY can be found in the alist, and
69 VALUE is supplied non-nil, then the value of KEY will be set to VALUE.
70 If VALUE is not supplied, or is nil, the key-value pair will not be
71 modified, but will be moved to the head of the alist. If the key-value
72 pair cannot be found in the alist, it will be inserted into the head
73 of the alist (with value nil if VALUE is nil or not supplied)."
74 (lexical-let ((elem (aelement key value))
75 alist)
76 (asort alist-symbol key)
77 (setq alist (symbol-value alist-symbol))
78 (cond ((null alist) (set alist-symbol elem))
79 ((anot-head-p alist key) (set alist-symbol (nconc elem alist)))
80 (value (setcar alist (car elem)) alist)
81 (t alist))))
82
83
84 (defun adelete (alist-symbol key)
85 "Delete a key-value pair from the alist.
86 Alist is referenced by ALIST-SYMBOL and the key-value pair to remove
87 is pair matching KEY. Returns the altered alist."
88 (asort alist-symbol key)
89 (lexical-let ((alist (symbol-value alist-symbol)))
90 (cond ((null alist) nil)
91 ((anot-head-p alist key) alist)
92 (t (set alist-symbol (cdr alist))))))
93
94
95 (defun aget (alist key &optional keynil-p)
96 "Return the value in ALIST that is associated with KEY.
97 Optional KEYNIL-P describes what to do if the value associated with
98 KEY is nil. If KEYNIL-P is not supplied or is nil, and the value is
99 nil, then KEY is returned. If KEYNIL-P is non-nil, then nil would be
100 returned.
101
102 If no key-value pair matching KEY could be found in ALIST, or ALIST is
103 nil then nil is returned. ALIST is not altered."
104 (let ((copy (copy-alist alist)))
105 (cond ((null alist) nil)
106 ((progn (asort 'copy key)
107 (anot-head-p copy key)) nil)
108 ((cdr (car copy)))
109 (keynil-p nil)
110 ((car (car copy)))
111 (t nil))))
112
113
114 (defun amake (alist-symbol keylist &optional valuelist)
115 "Make an association list.
116 The association list is attached to the alist referenced by
117 ALIST-SYMBOL. Each element in the KEYLIST becomes a key and is
118 associated with the value in VALUELIST with the same index. If
119 VALUELIST is not supplied or is nil, then each key in KEYLIST is
120 associated with nil.
121
122 KEYLIST and VALUELIST should have the same number of elements, but
123 this isn't enforced. If VALUELIST is smaller than KEYLIST, remaining
124 keys are associated with nil. If VALUELIST is larger than KEYLIST,
125 extra values are ignored. Returns the created alist."
126 (lexical-let ((keycar (car keylist))
127 (keycdr (cdr keylist))
128 (valcar (car valuelist))
129 (valcdr (cdr valuelist)))
130 (cond ((null keycdr)
131 (aput alist-symbol keycar valcar))
132 (t
133 (amake alist-symbol keycdr valcdr)
134 (aput alist-symbol keycar valcar))))
135 (symbol-value alist-symbol))
136
137 (provide 'assoc)
138
139 ;;; assoc.el ends here