1 ;;; cookie1.el --- retrieve random phrases from fortune cookie files
3 ;; Copyright (C) 1993, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: games, extensions
8 ;; Created: Mon Mar 22 17:06:26 1993
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Support for random cookie fetches from phrase files, used for such
28 ;; critical applications as confounding the NSA Trunk Trawler.
30 ;; The two entry points are `cookie' and `cookie-insert'. The helper
31 ;; function `cookie-shuffle-vector' may be of interest to programmers.
33 ;; The code expects phrase files to be in one of two formats:
35 ;; * ITS-style LINS format (strings terminated by ASCII 0 characters,
36 ;; leading whitespace ignored).
38 ;; * UNIX fortune file format (quotes terminated by %% on a line by itself).
40 ;; Everything up to the first delimiter is treated as a comment. Other
41 ;; formats could be supported by adding alternates to the regexp
42 ;; `cookie-delimiter'.
44 ;; strfile(1) is the program used to compile the files for fortune(6).
45 ;; In order to achieve total compatibility with strfile(1), cookie files
46 ;; should start with two consecutive delimiters (and no comment).
48 ;; This code derives from Steve Strassmann's 1987 spook.el package, but
49 ;; has been generalized so that it supports multiple simultaneous
50 ;; cookie databases and fortune files. It is intended to be called
51 ;; from other packages such as spook.el.
56 "Random cookies from phrase files."
60 (defcustom cookie-file nil
61 "Default phrase file for cookie functions."
62 :type
'(choice (const nil
) file
)
66 (defconst cookie-delimiter
"\n%%\n\\|\n%\n\\|\0"
67 "Delimiter used to separate cookie file entries.")
69 (defvar cookie-cache
(make-vector 511 0)
70 "Cache of cookie files that have already been snarfed.")
72 (defun cookie-check-file (file)
73 "Return either FILE or `cookie-file'.
74 Signal an error if the result is nil or not readable."
75 (or (setq file
(or file cookie-file
)) (user-error "No phrase file specified"))
76 (or (file-readable-p file
) (user-error "Cannot read file `%s'" file
))
80 (defun cookie (phrase-file &optional startmsg endmsg
)
81 "Return a random phrase from PHRASE-FILE.
82 When the phrase file is read in, display STARTMSG at the beginning
83 of load, ENDMSG at the end.
84 Interactively, PHRASE-FILE defaults to `cookie-file', unless that
85 is nil or a prefix argument is used."
86 (interactive (list (if (or current-prefix-arg
(not cookie-file
))
87 (read-file-name "Cookie file: " nil
88 cookie-file t cookie-file
)
89 cookie-file
) nil nil
))
90 (setq phrase-file
(cookie-check-file phrase-file
))
91 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg
))
93 (cookie-shuffle-vector cookie-vector
)
94 (setq res
(aref cookie-vector
0))
95 (if (called-interactively-p 'interactive
)
100 (defun cookie-insert (phrase-file &optional count startmsg endmsg
)
101 "Insert random phrases from PHRASE-FILE; COUNT of them.
102 When the phrase file is read in, display STARTMSG at the beginning
103 of load, ENDMSG at the end."
104 (setq phrase-file
(cookie-check-file phrase-file
))
105 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg
)))
106 (cookie-shuffle-vector cookie-vector
)
107 (let ((start (point)))
109 (cookie1 (min (- (length cookie-vector
) 1) (or count
1)) cookie-vector
)
111 (fill-region-as-paragraph start
(point) nil
))))
113 (defun cookie1 (arg cookie-vec
)
114 "Inserts a cookie phrase ARG times."
115 (cond ((zerop arg
) t
)
116 (t (insert (aref cookie-vec arg
))
118 (cookie1 (1- arg
) cookie-vec
))))
121 (defun cookie-snarf (phrase-file &optional startmsg endmsg
)
122 "Reads in the PHRASE-FILE, returns it as a vector of strings.
123 Emit STARTMSG and ENDMSG before and after. Caches the result; second
124 and subsequent calls on the same file won't go to disk."
125 (setq phrase-file
(cookie-check-file phrase-file
))
126 (let ((sym (intern-soft phrase-file cookie-cache
)))
127 (and sym
(not (equal (symbol-function sym
)
128 (nth 5 (file-attributes phrase-file
))))
129 (yes-or-no-p (concat phrase-file
130 " has changed. Read new contents? "))
134 (setq sym
(intern phrase-file cookie-cache
))
135 (if startmsg
(message "%s" startmsg
))
136 (fset sym
(nth 5 (file-attributes phrase-file
)))
139 (insert-file-contents (expand-file-name phrase-file
))
140 (re-search-forward cookie-delimiter
)
141 (while (progn (skip-chars-forward " \t\n\r\f") (not (eobp)))
143 (re-search-forward cookie-delimiter
)
144 (setq result
(cons (buffer-substring beg
(match-beginning 0))
146 (if endmsg
(message "%s" endmsg
))
147 (set sym
(apply 'vector result
))))))
149 (defun cookie-read (prompt phrase-file
&optional startmsg endmsg require-match
)
150 "Prompt with PROMPT and read with completion among cookies in PHRASE-FILE.
151 STARTMSG and ENDMSG are passed along to `cookie-snarf'.
152 Argument REQUIRE-MATCH non-nil forces a matching cookie."
153 (setq phrase-file
(cookie-check-file phrase-file
))
154 ;; Make sure the cookies are in the cache.
155 (or (intern-soft phrase-file cookie-cache
)
156 (cookie-snarf phrase-file startmsg endmsg
))
157 (completing-read prompt
158 (let ((sym (intern phrase-file cookie-cache
)))
159 ;; We cache the alist form of the cookie in a property.
160 (or (get sym
'completion-alist
)
162 (vec (cookie-snarf phrase-file
165 (while (>= (setq i
(1- i
)) 0)
166 (setq alist
(cons (list (aref vec i
)) alist
)))
167 (put sym
'completion-alist alist
))))
168 nil require-match nil nil
))
170 (define-obsolete-function-alias 'read-cookie
'cookie-read
"24.4")
172 ;; Thanks to Ian G Batten <BattenIG@CS.BHAM.AC.UK>
173 ;; [of the University of Birmingham Computer Science Department]
174 ;; for the iterative version of this shuffle.
175 (defun cookie-shuffle-vector (vector)
176 "Randomly permute the elements of VECTOR (all permutations equally likely)."
177 (let ((len (length vector
))
179 (dotimes (i len vector
)
180 (setq j
(+ i
(random (- len i
)))
181 temp
(aref vector i
))
182 (aset vector i
(aref vector j
))
183 (aset vector j temp
))))
185 (define-obsolete-function-alias 'shuffle-vector
'cookie-shuffle-vector
"24.4")
188 (defun cookie-apropos (regexp phrase-file
&optional display
)
189 "Return a list of all entries matching REGEXP from PHRASE-FILE.
190 Interactively, uses `read-regexp' to read REGEXP.
191 Interactively, PHRASE-FILE defaults to `cookie-file', unless that
192 is nil or a prefix argument is used.
193 If called interactively, or if DISPLAY is non-nil, display a list of matches."
194 (interactive (list (read-regexp "Apropos phrase (regexp): ")
195 (if (or current-prefix-arg
(not cookie-file
))
196 (read-file-name "Cookie file: " nil
197 cookie-file t cookie-file
)
199 (setq phrase-file
(cookie-check-file phrase-file
))
200 ;; Make sure phrases are loaded.
202 (let* ((case-fold-search t
)
203 (cookie-table-symbol (intern phrase-file cookie-cache
))
204 (string-table (symbol-value cookie-table-symbol
))
206 (and (dotimes (i (length string-table
) matches
)
207 (and (string-match-p regexp
(aref string-table i
))
208 (setq matches
(cons (aref string-table i
) matches
))))
209 (setq matches
(sort matches
'string-lessp
)))
213 (with-output-to-temp-buffer "*Cookie Apropos*"
217 (and l
(princ "\n\n")))
218 (help-print-return-message)))
219 (message "No matches found.")))
223 (declare-function doctor-ret-or-read
"doctor" (arg))
225 (defun cookie-doctor (phrase-file)
226 "Feed cookie phrases from PHRASE-FILE to the doctor.
227 Interactively, PHRASE-FILE defaults to `cookie-file', unless that
228 is nil or a prefix argument is used."
229 (interactive (list (if (or current-prefix-arg
(not cookie-file
))
230 (read-file-name "Cookie file: " nil
231 cookie-file t cookie-file
)
233 (setq phrase-file
(cookie-check-file phrase-file
))
234 (doctor) ; start the psychotherapy
236 (switch-to-buffer "*doctor*")
238 (while (not (input-pending-p))
239 (insert (cookie phrase-file
))
241 (doctor-ret-or-read 1)
242 (doctor-ret-or-read 1)))
247 ;;; cookie1.el ends here