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