Mercurial > emacs
annotate lisp/play/cookie1.el @ 87864:54863df609a3
(vc-svn-registered): Make it work for non-existent
files.
| author | Dan Nicolaescu <dann@ics.uci.edu> |
|---|---|
| date | Sun, 20 Jan 2008 19:56:43 +0000 |
| parents | 54006a859bcc |
| children | 606f2d163a64 1e3a407766b9 |
| rev | line source |
|---|---|
| 3383 | 1 ;;; cookie1.el --- retrieve random phrases from fortune cookie files |
| 2321 | 2 |
| 75347 | 3 ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, |
| 79716 | 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc. |
| 2321 | 5 |
| 6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
| 7 ;; Maintainer: FSF | |
|
30858
b9f0d1526fea
Add `extensions' to keywords, since it's internal.
Dave Love <fx@gnu.org>
parents:
30514
diff
changeset
|
8 ;; Keywords: games, extensions |
| 2321 | 9 ;; Created: Mon Mar 22 17:06:26 1993 |
| 10 | |
| 11 ;; This file is part of GNU Emacs. | |
| 12 | |
| 13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 14 ;; it under the terms of the GNU General Public License as published by | |
|
78227
527f752989fc
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
| 2321 | 16 ;; any later version. |
| 17 | |
| 18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 ;; GNU General Public License for more details. | |
| 22 | |
| 23 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 26 ;; Boston, MA 02110-1301, USA. | |
| 2321 | 27 |
| 28 ;;; Commentary: | |
| 29 | |
| 30 ;; Support for random cookie fetches from phrase files, used for such | |
| 31 ;; critical applications as emulating Zippy the Pinhead and confounding | |
| 32 ;; the NSA Trunk Trawler. | |
| 33 ;; | |
| 34 ;; The two entry points are `cookie' and `cookie-insert'. The helper | |
| 4405 | 35 ;; function `shuffle-vector' may be of interest to programmers. |
| 2321 | 36 ;; |
|
2381
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
37 ;; The code expects phrase files to be in one of two formats: |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
38 ;; |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
39 ;; * ITS-style LINS format (strings terminated by ASCII 0 characters, |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
40 ;; leading whitespace ignored). |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
41 ;; |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
42 ;; * UNIX fortune file format (quotes terminated by %% on a line by itself). |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
43 ;; |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
44 ;; Everything up to the first delimiter is treated as a comment. Other |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
45 ;; formats could be supported by adding alternates to the regexp |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
46 ;; `cookie-delimiter'. |
| 2321 | 47 ;; |
|
30514
42bf9adb59a3
Add explanation of how to make cookie.el
Gerd Moellmann <gerd@gnu.org>
parents:
20887
diff
changeset
|
48 ;; strfile(1) is the program used to compile the files for fortune(6). |
|
42bf9adb59a3
Add explanation of how to make cookie.el
Gerd Moellmann <gerd@gnu.org>
parents:
20887
diff
changeset
|
49 ;; In order to achieve total compatibility with strfile(1), cookie files |
|
42bf9adb59a3
Add explanation of how to make cookie.el
Gerd Moellmann <gerd@gnu.org>
parents:
20887
diff
changeset
|
50 ;; should start with two consecutive delimiters (and no comment). |
|
42bf9adb59a3
Add explanation of how to make cookie.el
Gerd Moellmann <gerd@gnu.org>
parents:
20887
diff
changeset
|
51 ;; |
| 2321 | 52 ;; This code derives from Steve Strassman's 1987 spook.el package, but |
|
2381
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
53 ;; has been generalized so that it supports multiple simultaneous |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
54 ;; cookie databases and fortune files. It is intended to be called |
|
f8ae5fc2c196
(cookie) Enhanced it to handle both LINS files and UNIX fortune files.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2322
diff
changeset
|
55 ;; from other packages such as yow.el and spook.el. |
| 2322 | 56 ;; |
| 57 ;; TO DO: teach cookie-snarf to auto-detect ITS PINS or UNIX fortune(6) | |
| 58 ;; format and do the right thing. | |
| 2321 | 59 |
| 60 ;;; Code: | |
| 61 | |
| 62 ; Randomize the seed in the random number generator. | |
| 63 (random t) | |
| 64 | |
|
20887
bb0f5fde5973
(cookie-snarf): Use match-beginning on the delimiter.
Richard M. Stallman <rms@gnu.org>
parents:
14307
diff
changeset
|
65 (defconst cookie-delimiter "\n%%\n\\|\n%\n\\|\0" |
| 2321 | 66 "Delimiter used to separate cookie file entries.") |
| 67 | |
|
4090
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
68 (defvar cookie-cache (make-vector 511 0) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
69 "Cache of cookie files that have already been snarfed.") |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
70 |
|
4151
e6d5beaca907
(cookie, cookie-insert, cookie-snarf, shuffle-vector): Autoload these.
Roland McGrath <roland@gnu.org>
parents:
4090
diff
changeset
|
71 ;;;###autoload |
| 2321 | 72 (defun cookie (phrase-file startmsg endmsg) |
|
41666
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
73 "Return a random phrase from PHRASE-FILE. |
|
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
74 When the phrase file is read in, display STARTMSG at the beginning |
|
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
75 of load, ENDMSG at the end." |
| 2321 | 76 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg))) |
| 77 (shuffle-vector cookie-vector) | |
|
71413
e04e474d258e
lisp/play/cookie1.el (cookie): Work properly when there's only one entry
Miles Bader <miles@gnu.org>
parents:
68634
diff
changeset
|
78 (aref cookie-vector 0))) |
| 2321 | 79 |
|
4151
e6d5beaca907
(cookie, cookie-insert, cookie-snarf, shuffle-vector): Autoload these.
Roland McGrath <roland@gnu.org>
parents:
4090
diff
changeset
|
80 ;;;###autoload |
| 2321 | 81 (defun cookie-insert (phrase-file &optional count startmsg endmsg) |
|
41666
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
82 "Insert random phrases from PHRASE-FILE; COUNT of them. |
|
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
83 When the phrase file is read in, display STARTMSG at the beginning |
|
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
84 of load, ENDMSG at the end." |
| 2321 | 85 (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg))) |
| 86 (shuffle-vector cookie-vector) | |
| 87 (let ((start (point))) | |
| 88 (insert ?\n) | |
| 89 (cookie1 (min (- (length cookie-vector) 1) (or count 1)) cookie-vector) | |
| 90 (insert ?\n) | |
| 91 (fill-region-as-paragraph start (point) nil)))) | |
| 92 | |
| 93 (defun cookie1 (arg cookie-vec) | |
| 94 "Inserts a cookie phrase ARG times." | |
| 95 (cond ((zerop arg) t) | |
| 96 (t (insert (aref cookie-vec arg)) | |
| 97 (insert " ") | |
| 98 (cookie1 (1- arg) cookie-vec)))) | |
| 99 | |
|
4151
e6d5beaca907
(cookie, cookie-insert, cookie-snarf, shuffle-vector): Autoload these.
Roland McGrath <roland@gnu.org>
parents:
4090
diff
changeset
|
100 ;;;###autoload |
| 2321 | 101 (defun cookie-snarf (phrase-file startmsg endmsg) |
|
4736
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
102 "Reads in the PHRASE-FILE, returns it as a vector of strings. |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
103 Emit STARTMSG and ENDMSG before and after. Caches the result; second |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
104 and subsequent calls on the same file won't go to disk." |
|
4090
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
105 (let ((sym (intern-soft phrase-file cookie-cache))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
106 (and sym (not (equal (symbol-function sym) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
107 (nth 5 (file-attributes phrase-file)))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
108 (yes-or-no-p (concat phrase-file |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
109 " has changed. Read new contents? ")) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
110 (setq sym nil)) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
111 (if sym |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
112 (symbol-value sym) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
113 (setq sym (intern phrase-file cookie-cache)) |
|
14307
8f846c3889c8
(cookie-snarf): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
114 (message "%s" startmsg) |
|
4090
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
115 (save-excursion |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
116 (let ((buf (generate-new-buffer "*cookie*")) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
117 (result nil)) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
118 (set-buffer buf) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
119 (fset sym (nth 5 (file-attributes phrase-file))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
120 (insert-file-contents (expand-file-name phrase-file)) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
121 (re-search-forward cookie-delimiter) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
122 (while (progn (skip-chars-forward " \t\n\r\f") (not (eobp))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
123 (let ((beg (point))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
124 (re-search-forward cookie-delimiter) |
|
20887
bb0f5fde5973
(cookie-snarf): Use match-beginning on the delimiter.
Richard M. Stallman <rms@gnu.org>
parents:
14307
diff
changeset
|
125 (setq result (cons (buffer-substring beg (match-beginning 0)) |
|
4090
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
126 result)))) |
|
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
127 (kill-buffer buf) |
|
14307
8f846c3889c8
(cookie-snarf): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
128 (message "%s" endmsg) |
|
4090
afa2afad53c4
(cookie-cache): New defvar.
Roland McGrath <roland@gnu.org>
parents:
3432
diff
changeset
|
129 (set sym (apply 'vector result))))))) |
| 2321 | 130 |
|
4736
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
131 (defun read-cookie (prompt phrase-file startmsg endmsg &optional require-match) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
132 "Prompt with PROMPT and read with completion among cookies in PHRASE-FILE. |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
133 STARTMSG and ENDMSG are passed along to `cookie-snarf'. |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
134 Optional fifth arg REQUIRE-MATCH non-nil forces a matching cookie." |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
135 ;; Make sure the cookies are in the cache. |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
136 (or (intern-soft phrase-file cookie-cache) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
137 (cookie-snarf phrase-file startmsg endmsg)) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
138 (completing-read prompt |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
139 (let ((sym (intern phrase-file cookie-cache))) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
140 ;; We cache the alist form of the cookie in a property. |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
141 (or (get sym 'completion-alist) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
142 (let* ((alist nil) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
143 (vec (cookie-snarf phrase-file |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
144 startmsg endmsg)) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
145 (i (length vec))) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
146 (while (> (setq i (1- i)) 0) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
147 (setq alist (cons (list (aref vec i)) alist))) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
148 (put sym 'completion-alist alist)))) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
149 nil require-match nil nil)) |
|
6aeb2227ed30
(read-cookie): New function.
Roland McGrath <roland@gnu.org>
parents:
4405
diff
changeset
|
150 |
| 2321 | 151 ; Thanks to Ian G Batten <BattenIG@CS.BHAM.AC.UK> |
| 152 ; [of the University of Birmingham Computer Science Department] | |
| 153 ; for the iterative version of this shuffle. | |
| 154 ; | |
|
4151
e6d5beaca907
(cookie, cookie-insert, cookie-snarf, shuffle-vector): Autoload these.
Roland McGrath <roland@gnu.org>
parents:
4090
diff
changeset
|
155 ;;;###autoload |
| 2321 | 156 (defun shuffle-vector (vector) |
|
41666
5cd64b3e28c3
(cookie, cookie-insert, shuffle-vector): Doc fixes.
Pavel Jan?k <Pavel@Janik.cz>
parents:
30858
diff
changeset
|
157 "Randomly permute the elements of VECTOR (all permutations equally likely)." |
| 2321 | 158 (let ((i 0) |
| 159 j | |
| 160 temp | |
| 161 (len (length vector))) | |
| 162 (while (< i len) | |
| 4405 | 163 (setq j (+ i (random (- len i)))) |
| 2321 | 164 (setq temp (aref vector i)) |
| 165 (aset vector i (aref vector j)) | |
| 166 (aset vector j temp) | |
| 167 (setq i (1+ i)))) | |
| 168 vector) | |
| 169 | |
| 3388 | 170 (provide 'cookie1) |
| 2321 | 171 |
| 52401 | 172 ;;; arch-tag: 4a8a8712-df6a-4f34-b030-108a1b47f9f2 |
| 3432 | 173 ;;; cookie1.el ends here |
