Merge from trunk; add Bug#.
[bpt/emacs.git] / lisp / completion.el
CommitLineData
c0274f38 1;;; completion.el --- dynamic word-completion code
b578f267 2
acaf905b 3;; Copyright (C) 1990, 1993, 1995, 1997, 2001-2012
95df8112 4;; Free Software Foundation, Inc.
c0274f38 5
af4d5234 6;; Maintainer: FSF
f5f727f8 7;; Keywords: abbrev convenience
32168d16 8;; Author: Jim Salem <alem@bbnplanet.com> of Thinking Machines Inc.
9d0eba57 9;; (ideas suggested by Brewster Kahle)
d1c7011d 10
1add72b5 11;; This file is part of GNU Emacs.
d1c7011d 12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
1add72b5 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
1add72b5
RS
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
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1add72b5
RS
25
26;;; Commentary:
b578f267
EN
27
28;; What to put in .emacs
29;;-----------------------
bb310d1e 30;; (dynamic-completion-mode)
59ca07b5 31\f
b578f267
EN
32;;---------------------------------------------------------------------------
33;; Documentation [Slightly out of date]
34;;---------------------------------------------------------------------------
35;; (also check the documentation string of the functions)
36;;
37;; Introduction
38;;---------------
71296446 39;;
b578f267 40;; After you type a few characters, pressing the "complete" key inserts
71296446 41;; the rest of the word you are likely to type.
b578f267 42;;
71296446 43;; This watches all the words that you type and remembers them. When
b578f267 44;; typing a new word, pressing "complete" (meta-return) "completes" the
71296446 45;; word by inserting the most recently used word that begins with the
b578f267
EN
46;; same characters. If you press meta-return repeatedly, it cycles
47;; through all the words it knows about.
48;;
49;; If you like the completion then just continue typing, it is as if you
71296446 50;; entered the text by hand. If you want the inserted extra characters
b578f267
EN
51;; to go away, type control-w or delete. More options are described below.
52;;
53;; The guesses are made in the order of the most recently "used". Typing
71296446
JB
54;; in a word and then typing a separator character (such as a space) "uses"
55;; the word. So does moving a cursor over the word. If no words are found,
b578f267
EN
56;; it uses an extended version of the dabbrev style completion.
57;;
71296446
JB
58;; You automatically save the completions you use to a file between
59;; sessions.
b578f267 60;;
71296446 61;; Completion enables programmers to enter longer, more descriptive
b578f267
EN
62;; variable names while typing fewer keystrokes than they normally would.
63;;
64;;
65;; Full documentation
66;;---------------------
67;;
71296446 68;; A "word" is any string containing characters with either word or symbol
b578f267
EN
69;; syntax. [E.G. Any alphanumeric string with hyphens, underscores, etc.]
70;; Unless you change the constants, you must type at least three characters
71;; for the word to be recognized. Only words longer than 6 characters are
72;; saved.
73;;
74;; When you load this file, completion will be on. I suggest you use the
75;; compiled version (because it is noticeably faster).
76;;
7975cb9f 77;; M-x completion-mode toggles whether or not new words are added to the
b578f267
EN
78;; database by changing the value of enable-completion.
79;;
80;; SAVING/LOADING COMPLETIONS
81;; Completions are automatically saved from one session to another
82;; (unless save-completions-flag or enable-completion is nil).
699ee5f5
LT
83;; Activating this minor-mode (calling completion-initialize) loads
84;; a completions database for a saved completions file
36cc948e 85;; (default: ~/.completions). When you exit, Emacs saves a copy of the
699ee5f5
LT
86;; completions that you often use. When you next start, Emacs loads in
87;; the saved completion file.
b578f267 88;;
71296446
JB
89;; The number of completions saved depends loosely on
90;; *saved-completions-decay-factor*. Completions that have never been
b578f267
EN
91;; inserted via "complete" are not saved. You are encouraged to experiment
92;; with different functions (see compute-completion-min-num-uses).
93;;
71296446
JB
94;; Some completions are permanent and are always saved out. These
95;; completions have their num-uses slot set to T. Use
b578f267
EN
96;; add-permanent-completion to do this
97;;
98;; Completions are saved only if enable-completion is T. The number of old
71296446 99;; versions kept of the saved completions file is controlled by
b578f267
EN
100;; completions-file-versions-kept.
101;;
102;; COMPLETE KEY OPTIONS
71296446
JB
103;; The complete function takes a numeric arguments.
104;; control-u :: leave the point at the beginning of the completion rather
b578f267
EN
105;; than the middle.
106;; a number :: rotate through the possible completions by that amount
107;; `-' :: same as -1 (insert previous completion)
108;;
109;; HOW THE DATABASE IS MAINTAINED
110;; <write>
111;;
112;; UPDATING THE DATABASE MANUALLY
71296446 113;; m-x kill-completion
b578f267
EN
114;; kills the completion at point.
115;; m-x add-completion
116;; m-x add-permanent-completion
71296446 117;;
b578f267
EN
118;; UPDATING THE DATABASE FROM A SOURCE CODE FILE
119;; m-x add-completions-from-buffer
120;; Parses all the definition names from a C or LISP mode buffer and
121;; adds them to the completion database.
122;;
71296446 123;; m-x add-completions-from-lisp-file
b578f267
EN
124;; Parses all the definition names from a C or Lisp mode file and
125;; adds them to the completion database.
126;;
127;; UPDATING THE DATABASE FROM A TAGS TABLE
128;; m-x add-completions-from-tags-table
129;; Adds completions from the current tags-table-buffer.
130;;
131;; HOW A COMPLETION IS FOUND
132;; <write>
133;;
134;; STRING CASING
71296446 135;; Completion is string case independent if case-fold-search has its
b578f267 136;; normal default of T. Also when the completion is inserted the case of the
71296446
JB
137;; entry is coerced appropriately.
138;; [E.G. APP --> APPROPRIATELY app --> appropriately
b578f267
EN
139;; App --> Appropriately]
140;;
141;; INITIALIZATION
36cc948e
SM
142;; The form `(completion-initialize)' initializes the completion system by
143;; trying to load in the user's completions. After the first call, further
71296446 144;; calls have no effect so one should be careful not to put the form in a
b578f267
EN
145;; site's standard site-init file.
146;;
147;;---------------------------------------------------------------------------
148;;
149;;
59ca07b5 150\f
b578f267
EN
151;;---------------------------------------------------------------------------
152;; Functions you might like to call
153;;---------------------------------------------------------------------------
154;;
155;; add-completion string &optional num-uses
156;; Adds a new string to the database
157;;
158;; add-permanent-completion string
159;; Adds a new string to the database with num-uses = T
160;;
161
162;; kill-completion string
163;; Kills the completion from the database.
164;;
165;; clear-all-completions
166;; Clears the database
167;;
168;; list-all-completions
169;; Returns a list of all completions.
170;;
171;;
172;; next-completion string &optional index
173;; Returns a completion entry that starts with string.
174;;
175;; find-exact-completion string
176;; Returns a completion entry that exactly matches string.
177;;
178;; complete
179;; Inserts a completion at point
180;;
36cc948e 181;; completion-initialize
71296446 182;; Loads the completions file and sets up so that exiting emacs will
b578f267
EN
183;; save them.
184;;
71296446 185;; save-completions-to-file &optional filename
b578f267
EN
186;; load-completions-from-file &optional filename
187;;
188;;-----------------------------------------------
189;; Other functions
190;;-----------------------------------------------
191;;
192;; get-completion-list string
193;;
194;; These things are for manipulating the structure
195;; make-completion string num-uses
71296446 196;; completion-num-uses completion
b578f267
EN
197;; completion-string completion
198;; set-completion-num-uses completion num-uses
199;; set-completion-string completion string
71296446 200;;
b578f267 201;;
59ca07b5 202\f
b578f267
EN
203;;-----------------------------------------------
204;; To Do :: (anybody ?)
205;;-----------------------------------------------
206;;
207;; Implement Lookup and keyboard interface in C
208;; Add package prefix smarts (for Common Lisp)
209;; Add autoprompting of possible completions after every keystroke (fast
210;; terminals only !)
211;; Add doc. to texinfo
212;;
213;;
214;;-----------------------------------------------
717e06e5 215;;; Change Log:
b578f267 216;;-----------------------------------------------
71296446 217;; Sometime in '84 Brewster implemented a somewhat buggy version for
b578f267 218;; Symbolics LISPMs.
71296446 219;; Jan. '85 Jim became enamored of the idea and implemented a faster,
b578f267
EN
220;; more robust version.
221;; With input from many users at TMC, (rose, craig, and gls come to mind),
71296446
JB
222;; the current style of interface was developed.
223;; 9/87, Jim and Brewster took terminals home. Yuck. After
224;; complaining for a while Brewster implemented a subset of the current
225;; LISPM version for GNU Emacs.
226;; 8/88 After complaining for a while (and with sufficient
b578f267
EN
227;; promised rewards), Jim reimplemented a version of GNU completion
228;; superior to that of the LISPM version.
229;;
230;;-----------------------------------------------
231;; Acknowledgements
232;;-----------------------------------------------
233;; Cliff Lasser (cal@think.com), Kevin Herbert (kph@cisco.com),
234;; eero@media-lab, kgk@cs.brown.edu, jla@ai.mit.edu,
235;;
236;;-----------------------------------------------
237;; Change Log
238;;-----------------------------------------------
239;; From version 9 to 10
240;; - Allowance for non-integral *completion-version* nos.
241;; - Fix cmpl-apply-as-top-level for keyboard macros
242;; - Fix broken completion merging (in save-completions-to-file)
243;; - More misc. fixes for version 19.0 of emacs
244;;
245;; From Version 8 to 9
246;; - Ported to version 19.0 of emacs (backcompatible with version 18)
247;; - Added add-completions-from-tags-table (with thanks to eero@media-lab)
248;;
249;; From Version 7 to 8
250;; - Misc. changes to comments
251;; - new completion key bindings: c-x o, M->, M-<, c-a, c-e
252;; - cdabbrev now checks all the visible window buffers and the "other buffer"
253;; - `%' is now a symbol character rather than a separator (except in C mode)
254;;
255;; From Version 6 to 7
256;; - Fixed bug with saving out .completion file the first time
257;;
258;; From Version 5 to 6
259;; - removed statistics recording
260;; - reworked advise to handle autoloads
261;; - Fixed fortran mode support
262;; - Added new cursor motion triggers
263;;
264;; From Version 4 to 5
265;; - doesn't bother saving if nothing has changed
266;; - auto-save if haven't used for a 1/2 hour
267;; - save period extended to two weeks
268;; - minor fix to capitalization code
269;; - added *completion-auto-save-period* to variables recorded.
270;; - added reenter protection to cmpl-record-statistics-filter
71296446 271;; - added backup protection to save-completions-to-file (prevents
b578f267 272;; problems with disk full errors)
59ca07b5 273\f
d1c7011d
ER
274;;; Code:
275
b578f267
EN
276;;---------------------------------------------------------------------------
277;; User changeable parameters
278;;---------------------------------------------------------------------------
59ca07b5 279
00ed33e7
RS
280(defgroup completion nil
281 "Dynamic word-completion code."
f5f727f8
DN
282 :group 'matching
283 :group 'convenience)
00ed33e7
RS
284
285
286(defcustom enable-completion t
36cc948e 287 "Non-nil means enable recording and saving of completions.
d2c49fd8 288If nil, no new words are added to the database or saved to the init file."
00ed33e7
RS
289 :type 'boolean
290 :group 'completion)
59ca07b5 291
00ed33e7 292(defcustom save-completions-flag t
36cc948e 293 "Non-nil means save most-used completions when exiting Emacs.
5c510e70 294See also `save-completions-retention-time'."
00ed33e7
RS
295 :type 'boolean
296 :group 'completion)
59ca07b5 297
36cc948e 298(defcustom save-completions-file-name
d6c180c4 299 (locate-user-emacs-file "completions" ".completions")
36cc948e 300 "The filename to save completions to."
00ed33e7
RS
301 :type 'file
302 :group 'completion)
59ca07b5 303
00ed33e7 304(defcustom save-completions-retention-time 336
36cc948e 305 "Discard a completion if unused for this many hours.
a7a2b1f6 306\(1 day = 24, 1 week = 168). If this is 0, non-permanent completions
00ed33e7
RS
307will not be saved unless these are used. Default is two weeks."
308 :type 'integer
309 :group 'completion)
59ca07b5 310
00ed33e7 311(defcustom completion-on-separator-character nil
36cc948e 312 "Non-nil means separator characters mark previous word as used.
00ed33e7
RS
313This means the word will be saved as a completion."
314 :type 'boolean
315 :group 'completion)
59ca07b5 316
00ed33e7 317(defcustom completions-file-versions-kept kept-new-versions
36cc948e 318 "Number of versions to keep for the saved completions file."
00ed33e7
RS
319 :type 'integer
320 :group 'completion)
59ca07b5 321
00ed33e7 322(defcustom completion-prompt-speed-threshold 4800
36cc948e 323 "Minimum output speed at which to display next potential completion."
00ed33e7
RS
324 :type 'integer
325 :group 'completion)
59ca07b5 326
00ed33e7 327(defcustom completion-cdabbrev-prompt-flag nil
36cc948e 328 "If non-nil, the next completion prompt does a cdabbrev search.
00ed33e7
RS
329This can be time consuming."
330 :type 'boolean
331 :group 'completion)
59ca07b5 332
00ed33e7 333(defcustom completion-search-distance 15000
36cc948e 334 "How far to search in the buffer when looking for completions.
00ed33e7
RS
335In number of characters. If nil, search the whole buffer."
336 :type 'integer
337 :group 'completion)
59ca07b5 338
00ed33e7 339(defcustom completions-merging-modes '(lisp c)
36cc948e 340 "List of modes {`c' or `lisp'} for automatic completions merging.
a7a2b1f6 341Definitions from visited files which have these modes
00ed33e7
RS
342are automatically added to the completion database."
343 :type '(set (const lisp) (const c))
344 :group 'completion)
59ca07b5 345
b578f267 346;;(defvar *record-cmpl-statistics-p* nil
fb7ada5f 347;; "If non-nil, record completion statistics.")
59ca07b5 348
b578f267 349;;(defvar *completion-auto-save-period* 1800
fb7ada5f 350;; "The period in seconds to wait for emacs to be idle before autosaving
b578f267 351;;the completions. Default is a 1/2 hour.")
59ca07b5 352
7975cb9f 353(defvar completion-min-length 6
fb7ada5f 354 "The minimum length of a stored completion.
59ca07b5
RS
355DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
356
7975cb9f 357(defvar completion-max-length 200
fb7ada5f 358 "The maximum length of a stored completion.
59ca07b5
RS
359DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
360
7975cb9f 361(defvar completion-prefix-min-length 3
59ca07b5
RS
362 "The minimum length of a completion search string.
363DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
364
b578f267
EN
365;;---------------------------------------------------------------------------
366;; Internal Variables
367;;---------------------------------------------------------------------------
59ca07b5
RS
368
369(defvar cmpl-initialized-p nil
a7a2b1f6
RS
370 "Set to t when the completion system is initialized.
371Indicates that the old completion file has been read in.")
59ca07b5
RS
372
373(defvar cmpl-completions-accepted-p nil
a7a2b1f6
RS
374 "Set to t as soon as the first completion has been accepted.
375Used to decide whether to save completions.")
59ca07b5 376
136f8f67 377(defvar cmpl-preceding-syntax)
438c6ef0
RS
378
379(defvar completion-string)
59ca07b5 380\f
b578f267
EN
381;;---------------------------------------------------------------------------
382;; Low level tools
383;;---------------------------------------------------------------------------
59ca07b5 384
b578f267
EN
385;;-----------------------------------------------
386;; String case coercion
387;;-----------------------------------------------
59ca07b5
RS
388
389(defun cmpl-string-case-type (string)
d2c49fd8 390 "Return :capitalized, :up, :down, :mixed, or :neither for case of STRING."
59ca07b5 391 (let ((case-fold-search nil))
d2c49fd8
DL
392 (cond ((string-match "[[:lower:]]" string)
393 (cond ((string-match "[[:upper:]]" string)
59ca07b5 394 (cond ((and (> (length string) 1)
d2c49fd8
DL
395 (null (string-match "[[:upper:]]" string 1)))
396 :capitalized)
59ca07b5 397 (t
d2c49fd8
DL
398 :mixed)))
399 (t :down)))
59ca07b5 400 (t
d2c49fd8
DL
401 (cond ((string-match "[[:upper:]]" string)
402 :up)
403 (t :neither))))))
59ca07b5 404
b578f267
EN
405;; Tests -
406;; (cmpl-string-case-type "123ABCDEF456") --> :up
407;; (cmpl-string-case-type "123abcdef456") --> :down
408;; (cmpl-string-case-type "123aBcDeF456") --> :mixed
409;; (cmpl-string-case-type "123456") --> :neither
410;; (cmpl-string-case-type "Abcde123") --> :capitalized
59ca07b5
RS
411
412(defun cmpl-coerce-string-case (string case-type)
d2c49fd8
DL
413 (cond ((eq case-type :down) (downcase string))
414 ((eq case-type :up) (upcase string))
415 ((eq case-type :capitalized)
59ca07b5
RS
416 (setq string (downcase string))
417 (aset string 0 (logand ?\337 (aref string 0)))
418 string)
d2c49fd8 419 (t string)))
59ca07b5
RS
420
421(defun cmpl-merge-string-cases (string-to-coerce given-string)
d2c49fd8 422 (let ((string-case-type (cmpl-string-case-type string-to-coerce)))
59ca07b5
RS
423 (cond ((memq string-case-type '(:down :up :capitalized))
424 ;; Found string is in a standard case. Coerce to a type based on
425 ;; the given string
426 (cmpl-coerce-string-case string-to-coerce
d2c49fd8 427 (cmpl-string-case-type given-string)))
59ca07b5
RS
428 (t
429 ;; If the found string is in some unusual case, just insert it
430 ;; as is
d2c49fd8 431 string-to-coerce))))
59ca07b5 432
b578f267
EN
433;; Tests -
434;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456
435;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456
436;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456
437;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456
59ca07b5
RS
438
439\f
a7a2b1f6
RS
440(defun cmpl-hours-since-origin ()
441 (let ((time (current-time)))
5a3d3a16 442 (floor (+ (* 65536.0 (nth 0 time)) (nth 1 time)) 3600)))
59ca07b5 443\f
b578f267
EN
444;;---------------------------------------------------------------------------
445;; "Symbol" parsing functions
446;;---------------------------------------------------------------------------
447;; The functions symbol-before-point, symbol-under-point, etc. quickly return
448;; an appropriate symbol string. The strategy is to temporarily change
449;; the syntax table to enable fast symbol searching. There are three classes
450;; of syntax in these "symbol" syntax tables ::
451;;
452;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
71296446 453;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
b578f267
EN
454;; syntax (? ) - everything else
455;;
456;; Thus by judicious use of scan-sexps and forward-word, we can get
71296446 457;; the word we want relatively fast and without consing.
b578f267
EN
458;;
459;; Why do we need a separate category for "symbol chars to ignore at ends" ?
71296446 460;; For example, in LISP we want starting :'s trimmed
b578f267
EN
461;; so keyword argument specifiers also define the keyword completion. And,
462;; for example, in C we want `.' appearing in a structure ref. to
71296446 463;; be kept intact in order to store the whole structure ref.; however, if
b578f267
EN
464;; it appears at the end of a symbol it should be discarded because it is
465;; probably used as a period.
466
467;; Here is the default completion syntax ::
468;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
469;; Symbol chars to ignore at ends :: _ : . -
470;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
471;; , ? <Everything else>
472
473;; Mode specific differences and notes ::
474;; LISP diffs ->
475;; Symbol chars :: ! & ? = ^
476;;
477;; C diffs ->
478;; Separator chars :: + * / : %
479;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
71296446 480;; char., however, we wanted to have completion symbols include pointer
b578f267
EN
481;; references. For example, "foo->bar" is a symbol as far as completion is
482;; concerned.
483;;
484;; FORTRAN diffs ->
485;; Separator chars :: + - * / :
486;;
487;; Pathname diffs ->
488;; Symbol chars :: .
489;; Of course there is no pathname "mode" and in fact we have not implemented
490;; this table. However, if there was such a mode, this is what it would look
491;; like.
492
493;;-----------------------------------------------
494;; Table definitions
495;;-----------------------------------------------
59ca07b5 496
36cc948e 497(defconst completion-standard-syntax-table
1aa323ac 498 (let ((table (make-syntax-table))
136f8f67 499 i)
1aa323ac
RS
500 ;; Default syntax is whitespace.
501 (setq i 0)
502 (while (< i 256)
503 (modify-syntax-entry i " " table)
504 (setq i (1+ i)))
59ca07b5 505 ;; alpha chars
136f8f67
RS
506 (setq i 0)
507 (while (< i 26)
59ca07b5 508 (modify-syntax-entry (+ ?a i) "_" table)
136f8f67
RS
509 (modify-syntax-entry (+ ?A i) "_" table)
510 (setq i (1+ i)))
59ca07b5 511 ;; digit chars.
136f8f67
RS
512 (setq i 0)
513 (while (< i 10)
514 (modify-syntax-entry (+ ?0 i) "_" table)
515 (setq i (1+ i)))
59ca07b5
RS
516 ;; Other ones
517 (let ((symbol-chars '(?@ ?/ ?\\ ?* ?+ ?~ ?$ ?< ?> ?%))
d2c49fd8 518 (symbol-chars-ignore '(?_ ?- ?: ?.)))
3f429351 519 (dolist (char symbol-chars)
59ca07b5 520 (modify-syntax-entry char "_" table))
3f429351 521 (dolist (char symbol-chars-ignore)
d2c49fd8 522 (modify-syntax-entry char "w" table)))
59ca07b5
RS
523 table))
524
36cc948e 525(defvar completion-syntax-table completion-standard-syntax-table
59ca07b5 526 "This variable holds the current completion syntax table.")
36cc948e 527(make-variable-buffer-local 'completion-syntax-table)
59ca07b5 528
b578f267
EN
529;;-----------------------------------------------
530;; Symbol functions
531;;-----------------------------------------------
59ca07b5 532(defvar cmpl-symbol-start nil
a7a2b1f6 533 "Holds first character of symbol, after any completion symbol function.")
59ca07b5 534(defvar cmpl-symbol-end nil
a7a2b1f6 535 "Holds last character of symbol, after any completion symbol function.")
59ca07b5
RS
536
537(defun symbol-under-point ()
7975cb9f 538 "Return the symbol that the point is currently on.
a7a2b1f6 539But only if it is longer than `completion-min-length'."
36cc948e
SM
540 (with-syntax-table completion-syntax-table
541 (when (memq (char-syntax (following-char)) '(?w ?_))
542 ;; Cursor is on following-char and after preceding-char
543 (let ((saved-point (point)))
544 (setq cmpl-symbol-start (scan-sexps (1+ saved-point) -1)
545 cmpl-symbol-end (scan-sexps saved-point 1))
546 ;; Remove chars to ignore at the start.
547 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
548 (goto-char cmpl-symbol-start)
549 (forward-word 1)
550 (setq cmpl-symbol-start (point))
551 (goto-char saved-point)))
552 ;; Remove chars to ignore at the end.
553 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end))) ?w)
554 (goto-char cmpl-symbol-end)
555 (forward-word -1)
556 (setq cmpl-symbol-end (point))
557 (goto-char saved-point)))
558 ;; Return completion if the length is reasonable.
559 (if (and (<= completion-min-length
560 (- cmpl-symbol-end cmpl-symbol-start))
561 (<= (- cmpl-symbol-end cmpl-symbol-start)
562 completion-max-length))
5757dd51
GM
563 (buffer-substring-no-properties
564 cmpl-symbol-start cmpl-symbol-end))))))
59ca07b5 565
b578f267
EN
566;; tests for symbol-under-point
567;; `^' indicates cursor pos. where value is returned
568;; simple-word-test
569;; ^^^^^^^^^^^^^^^^ --> simple-word-test
570;; _harder_word_test_
571;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
572;; .___.______.
573;; --> nil
574;; /foo/bar/quux.hello
575;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
576;;
59ca07b5
RS
577
578(defun symbol-before-point ()
7975cb9f 579 "Return a string of the symbol immediately before point.
71296446 580Returns nil if there isn't one longer than `completion-min-length'."
59ca07b5 581 ;; This is called when a word separator is typed so it must be FAST !
36cc948e
SM
582 (with-syntax-table completion-syntax-table
583 ;; Cursor is on following-char and after preceding-char
584 (cond ((= (setq cmpl-preceding-syntax (char-syntax (preceding-char))) ?_)
585 ;; Number of chars to ignore at end.
586 (setq cmpl-symbol-end (point)
587 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1))
588 ;; Remove chars to ignore at the start.
589 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
590 (goto-char cmpl-symbol-start)
591 (forward-word 1)
592 (setq cmpl-symbol-start (point))
593 (goto-char cmpl-symbol-end)))
594 ;; Return value if long enough.
595 (if (>= cmpl-symbol-end
596 (+ cmpl-symbol-start completion-min-length))
5757dd51
GM
597 (buffer-substring-no-properties
598 cmpl-symbol-start cmpl-symbol-end)))
36cc948e
SM
599 ((= cmpl-preceding-syntax ?w)
600 ;; chars to ignore at end
601 (let ((saved-point (point)))
602 (setq cmpl-symbol-start (scan-sexps saved-point -1))
603 ;; take off chars. from end
604 (forward-word -1)
605 (setq cmpl-symbol-end (point))
606 ;; remove chars to ignore at the start
607 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
608 (goto-char cmpl-symbol-start)
609 (forward-word 1)
610 (setq cmpl-symbol-start (point))))
611 ;; Restore state.
612 (goto-char saved-point)
613 ;; Return completion if the length is reasonable
614 (if (and (<= completion-min-length
615 (- cmpl-symbol-end cmpl-symbol-start))
616 (<= (- cmpl-symbol-end cmpl-symbol-start)
617 completion-max-length))
5757dd51
GM
618 (buffer-substring-no-properties
619 cmpl-symbol-start cmpl-symbol-end)))))))
59ca07b5 620
b578f267
EN
621;; tests for symbol-before-point
622;; `^' indicates cursor pos. where value is returned
623;; simple-word-test
624;; ^ --> nil
625;; ^ --> nil
626;; ^ --> simple-w
627;; ^ --> simple-word-test
628;; _harder_word_test_
629;; ^ --> harder_word_test
630;; ^ --> harder_word_test
631;; ^ --> harder
632;; .___....
633;; --> nil
59ca07b5
RS
634
635(defun symbol-under-or-before-point ()
b578f267
EN
636 ;; This could be made slightly faster but it is better to avoid
637 ;; copying all the code.
638 ;; However, it is only used by the completion string prompter.
639 ;; If it comes into common use, it could be rewritten.
36cc948e
SM
640 (if (memq (with-syntax-table completion-syntax-table
641 (char-syntax (following-char)))
642 '(?w ?_))
643 (symbol-under-point)
644 (symbol-before-point)))
59ca07b5
RS
645
646
647(defun symbol-before-point-for-complete ()
648 ;; "Returns a string of the symbol immediately before point
649 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
650 ;; end chars."
651 ;; Cursor is on following-char and after preceding-char
36cc948e
SM
652 (with-syntax-table completion-syntax-table
653 (cond ((memq (setq cmpl-preceding-syntax (char-syntax (preceding-char)))
654 '(?_ ?w))
655 (setq cmpl-symbol-end (point)
656 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1))
657 ;; Remove chars to ignore at the start.
658 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
659 (goto-char cmpl-symbol-start)
660 (forward-word 1)
661 (setq cmpl-symbol-start (point))
662 (goto-char cmpl-symbol-end)))
663 ;; Return completion if the length is reasonable.
664 (if (and (<= completion-prefix-min-length
665 (- cmpl-symbol-end cmpl-symbol-start))
666 (<= (- cmpl-symbol-end cmpl-symbol-start)
667 completion-max-length))
5757dd51
GM
668 (buffer-substring-no-properties
669 cmpl-symbol-start cmpl-symbol-end))))))
59ca07b5 670
b578f267
EN
671;; tests for symbol-before-point-for-complete
672;; `^' indicates cursor pos. where value is returned
673;; simple-word-test
674;; ^ --> nil
675;; ^ --> nil
676;; ^ --> simple-w
677;; ^ --> simple-word-test
678;; _harder_word_test_
679;; ^ --> harder_word_test
680;; ^ --> harder_word_test_
681;; ^ --> harder_
682;; .___....
683;; --> nil
59ca07b5
RS
684
685
686\f
b578f267
EN
687;;---------------------------------------------------------------------------
688;; Statistics Recording
689;;---------------------------------------------------------------------------
59ca07b5 690
b578f267
EN
691;; Note that the guts of this has been turned off. The guts
692;; are in completion-stats.el.
59ca07b5 693
b578f267
EN
694;;-----------------------------------------------
695;; Conditionalizing code on *record-cmpl-statistics-p*
696;;-----------------------------------------------
697;; All statistics code outside this block should use this
06b60517 698(defmacro cmpl-statistics-block (&rest _body))
b578f267
EN
699;; "Only executes body if we are recording statistics."
700;; (list 'cond
701;; (list* '*record-cmpl-statistics-p* body)
71296446 702;; ))
59ca07b5 703
b578f267
EN
704;;-----------------------------------------------
705;; Completion Sources
706;;-----------------------------------------------
59ca07b5
RS
707
708;; ID numbers
709(defconst cmpl-source-unknown 0)
710(defconst cmpl-source-init-file 1)
711(defconst cmpl-source-file-parsing 2)
712(defconst cmpl-source-separator 3)
713(defconst cmpl-source-cursor-moves 4)
714(defconst cmpl-source-interactive 5)
715(defconst cmpl-source-cdabbrev 6)
716(defconst num-cmpl-sources 7)
717(defvar current-completion-source cmpl-source-unknown)
718
719
720\f
b578f267
EN
721;;---------------------------------------------------------------------------
722;; Completion Method #2: dabbrev-expand style
723;;---------------------------------------------------------------------------
724;;
71296446 725;; This method is used if there are no useful stored completions. It is
b578f267
EN
726;; based on dabbrev-expand with these differences :
727;; 1) Faster (we don't use regexps)
728;; 2) case coercion handled correctly
729;; This is called cdabbrev to differentiate it.
730;; We simply search backwards through the file looking for words which
731;; start with the same letters we are trying to complete.
732;;
59ca07b5
RS
733
734(defvar cdabbrev-completions-tried nil)
b578f267 735;; "A list of all the cdabbrev completions since the last reset.")
59ca07b5
RS
736
737(defvar cdabbrev-current-point 0)
b578f267 738;; "The current point position the cdabbrev search is at.")
59ca07b5
RS
739
740(defvar cdabbrev-current-window nil)
bb310d1e
RS
741;; "The current window we are looking for cdabbrevs in.
742;; Return t if looking in (other-buffer), nil if no more cdabbrevs.")
59ca07b5
RS
743
744(defvar cdabbrev-wrapped-p nil)
bb310d1e 745;; "Return t if the cdabbrev search has wrapped around the file.")
59ca07b5
RS
746
747(defvar cdabbrev-abbrev-string "")
748(defvar cdabbrev-start-point 0)
136f8f67 749(defvar cdabbrev-stop-point)
59ca07b5 750
b578f267
EN
751;; Test strings for cdabbrev
752;; cdat-upcase ;;same namestring
753;; CDAT-UPCASE ;;ok
754;; cdat2 ;;too short
755;; cdat-1-2-3-4 ;;ok
756;; a-cdat-1 ;;doesn't start correctly
757;; cdat-simple ;;ok
59ca07b5
RS
758
759
760(defun reset-cdabbrev (abbrev-string &optional initial-completions-tried)
7975cb9f 761 "Reset the cdabbrev search to search for ABBREV-STRING.
a7a2b1f6 762INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
59ca07b5
RS
763during the search."
764 (setq cdabbrev-abbrev-string abbrev-string
765 cdabbrev-completions-tried
d2c49fd8
DL
766 (cons (downcase abbrev-string) initial-completions-tried))
767 (reset-cdabbrev-window t))
59ca07b5
RS
768
769(defun set-cdabbrev-buffer ()
0ff9b955 770 ;; cdabbrev-current-window must not be nil
59ca07b5
RS
771 (set-buffer (if (eq cdabbrev-current-window t)
772 (other-buffer)
d2c49fd8 773 (window-buffer cdabbrev-current-window))))
59ca07b5
RS
774
775
776(defun reset-cdabbrev-window (&optional initializep)
7975cb9f 777 "Reset the cdabbrev search to search for abbrev-string."
59ca07b5
RS
778 ;; Set the window
779 (cond (initializep
d2c49fd8 780 (setq cdabbrev-current-window (selected-window)))
59ca07b5
RS
781 ((eq cdabbrev-current-window t)
782 ;; Everything has failed
783 (setq cdabbrev-current-window nil))
784 (cdabbrev-current-window
785 (setq cdabbrev-current-window (next-window cdabbrev-current-window))
786 (if (eq cdabbrev-current-window (selected-window))
787 ;; No more windows, try other buffer.
d2c49fd8 788 (setq cdabbrev-current-window t))))
136f8f67
RS
789 (if cdabbrev-current-window
790 (save-excursion
791 (set-cdabbrev-buffer)
792 (setq cdabbrev-current-point (point)
793 cdabbrev-start-point cdabbrev-current-point
794 cdabbrev-stop-point
795 (if completion-search-distance
796 (max (point-min)
797 (- cdabbrev-start-point completion-search-distance))
798 (point-min))
d2c49fd8 799 cdabbrev-wrapped-p nil))))
59ca07b5
RS
800
801(defun next-cdabbrev ()
802 "Return the next possible cdabbrev expansion or nil if there isn't one.
a7a2b1f6
RS
803`reset-cdabbrev' must've been called already.
804This is sensitive to `case-fold-search'."
59ca07b5
RS
805 ;; note that case-fold-search affects the behavior of this function
806 ;; Bug: won't pick up an expansion that starts at the top of buffer
136f8f67 807 (if cdabbrev-current-window
71296446 808 (let (saved-point
136f8f67
RS
809 saved-syntax
810 (expansion nil)
811 downcase-expansion tried-list syntax saved-point-2)
812 (save-excursion
813 (unwind-protect
814 (progn
815 ;; Switch to current completion buffer
816 (set-cdabbrev-buffer)
817 ;; Save current buffer state
818 (setq saved-point (point)
819 saved-syntax (syntax-table))
820 ;; Restore completion state
36cc948e 821 (set-syntax-table completion-syntax-table)
136f8f67
RS
822 (goto-char cdabbrev-current-point)
823 ;; Loop looking for completions
824 (while
825 ;; This code returns t if it should loop again
826 (cond
827 (;; search for the string
828 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t)
829 ;; return nil if the completion is valid
830 (not
831 (and
832 ;; does it start with a separator char ?
833 (or (= (setq syntax (char-syntax (preceding-char))) ? )
834 (and (= syntax ?w)
835 ;; symbol char to ignore at end. Are we at end ?
836 (progn
837 (setq saved-point-2 (point))
838 (forward-word -1)
839 (prog1
840 (= (char-syntax (preceding-char)) ? )
d2c49fd8 841 (goto-char saved-point-2)))))
136f8f67
RS
842 ;; is the symbol long enough ?
843 (setq expansion (symbol-under-point))
844 ;; have we not tried this one before
845 (progn
846 ;; See if we've already used it
847 (setq tried-list cdabbrev-completions-tried
848 downcase-expansion (downcase expansion))
849 (while (and tried-list
850 (not (string-equal downcase-expansion
851 (car tried-list))))
852 ;; Already tried, don't choose this one
d2c49fd8 853 (setq tried-list (cdr tried-list)))
136f8f67
RS
854 ;; at this point tried-list will be nil if this
855 ;; expansion has not yet been tried
856 (if tried-list
857 (setq expansion nil)
d2c49fd8 858 t)))))
136f8f67
RS
859 ;; search failed
860 (cdabbrev-wrapped-p
861 ;; If already wrapped, then we've failed completely
862 nil)
863 (t
864 ;; need to wrap
865 (goto-char (setq cdabbrev-current-point
866 (if completion-search-distance
867 (min (point-max) (+ cdabbrev-start-point completion-search-distance))
868 (point-max))))
869
d2c49fd8 870 (setq cdabbrev-wrapped-p t))))
136f8f67
RS
871 ;; end of while loop
872 (cond (expansion
873 ;; successful
874 (setq cdabbrev-completions-tried
875 (cons downcase-expansion cdabbrev-completions-tried)
d2c49fd8 876 cdabbrev-current-point (point)))))
136f8f67 877 (set-syntax-table saved-syntax)
d2c49fd8 878 (goto-char saved-point)))
136f8f67
RS
879 ;; If no expansion, go to next window
880 (cond (expansion)
881 (t (reset-cdabbrev-window)
882 (next-cdabbrev))))))
59ca07b5 883
b578f267
EN
884;; The following must be eval'd in the minibuffer ::
885;; (reset-cdabbrev "cdat")
886;; (next-cdabbrev) --> "cdat-simple"
887;; (next-cdabbrev) --> "cdat-1-2-3-4"
888;; (next-cdabbrev) --> "CDAT-UPCASE"
889;; (next-cdabbrev) --> "cdat-wrapping"
890;; (next-cdabbrev) --> "cdat_start_sym"
891;; (next-cdabbrev) --> nil
892;; (next-cdabbrev) --> nil
893;; (next-cdabbrev) --> nil
59ca07b5 894
b578f267
EN
895;; _cdat_start_sym
896;; cdat-wrapping
59ca07b5
RS
897
898\f
b578f267
EN
899;;---------------------------------------------------------------------------
900;; Completion Database
901;;---------------------------------------------------------------------------
902
903;; We use two storage modes for the two search types ::
904;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
905;; Used by search-completion-next
906;; the value of the symbol is nil or a cons of head and tail pointers
907;; 2) Interning {cmpl-obarray} to see if it's in the database
908;; Used by find-exact-completion, completion-in-database-p
909;; The value of the symbol is the completion entry
910
911;; bad things may happen if this length is changed due to the way
912;; GNU implements obarrays
59ca07b5
RS
913(defconst cmpl-obarray-length 511)
914
915(defvar cmpl-prefix-obarray (make-vector cmpl-obarray-length 0)
eb8c3be9 916 "An obarray used to store the downcased completion prefixes.
59ca07b5
RS
917Each symbol is bound to a list of completion entries.")
918
919(defvar cmpl-obarray (make-vector cmpl-obarray-length 0)
920 "An obarray used to store the downcased completions.
921Each symbol is bound to a single completion entry.")
922
b578f267
EN
923;;-----------------------------------------------
924;; Completion Entry Structure Definition
925;;-----------------------------------------------
59ca07b5 926
b578f267
EN
927;; A completion entry is a LIST of string, prefix-symbol num-uses, and
928;; last-use-time (the time the completion was last used)
0ff9b955 929;; last-use-time is t if the string should be kept permanently
b578f267 930;; num-uses is incremented every time the completion is used.
59ca07b5 931
71296446 932;; We chose lists because (car foo) is faster than (aref foo 0) and the
b578f267 933;; creation time is about the same.
59ca07b5 934
b578f267 935;; READER MACROS
59ca07b5
RS
936
937(defmacro completion-string (completion-entry)
938 (list 'car completion-entry))
939
940(defmacro completion-num-uses (completion-entry)
71296446 941 ;; "The number of times it has used. Used to decide whether to save
59ca07b5
RS
942 ;; it."
943 (list 'car (list 'cdr completion-entry)))
944
945(defmacro completion-last-use-time (completion-entry)
a7a2b1f6 946 ;; "The time it was last used. In hours since origin. Used to decide
0ff9b955 947 ;; whether to save it. t if one should always save it."
59ca07b5
RS
948 (list 'nth 2 completion-entry))
949
950(defmacro completion-source (completion-entry)
951 (list 'nth 3 completion-entry))
952
b578f267 953;; WRITER MACROS
59ca07b5
RS
954(defmacro set-completion-string (completion-entry string)
955 (list 'setcar completion-entry string))
956
957(defmacro set-completion-num-uses (completion-entry num-uses)
958 (list 'setcar (list 'cdr completion-entry) num-uses))
959
960(defmacro set-completion-last-use-time (completion-entry last-use-time)
961 (list 'setcar (list 'cdr (list 'cdr completion-entry)) last-use-time))
962
b578f267 963;; CONSTRUCTOR
59ca07b5 964(defun make-completion (string)
36cc948e
SM
965 "Return a completion entry."
966 (list string 0 nil current-completion-source))
59ca07b5
RS
967
968;; Obsolete
969;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
970;; (list 'car (list 'cdr completion-entry)))
971
972
973\f
b578f267
EN
974;;-----------------------------------------------
975;; Prefix symbol entry definition
976;;-----------------------------------------------
977;; A cons of (head . tail)
59ca07b5 978
b578f267 979;; READER Macros
59ca07b5 980
36cc948e 981(defalias 'cmpl-prefix-entry-head 'car)
59ca07b5 982
36cc948e 983(defalias 'cmpl-prefix-entry-tail 'cdr)
59ca07b5 984
b578f267 985;; WRITER Macros
59ca07b5
RS
986
987(defmacro set-cmpl-prefix-entry-head (prefix-entry new-head)
988 (list 'setcar prefix-entry new-head))
989
990(defmacro set-cmpl-prefix-entry-tail (prefix-entry new-tail)
991 (list 'setcdr prefix-entry new-tail))
992
b578f267 993;; Constructor
59ca07b5
RS
994
995(defun make-cmpl-prefix-entry (completion-entry-list)
7975cb9f 996 "Make a new prefix entry containing only completion-entry."
59ca07b5
RS
997 (cons completion-entry-list completion-entry-list))
998
b578f267
EN
999;;-----------------------------------------------
1000;; Completion Database - Utilities
1001;;-----------------------------------------------
59ca07b5
RS
1002
1003(defun clear-all-completions ()
d2c49fd8 1004 "Initialize the completion storage. All existing completions are lost."
59ca07b5
RS
1005 (interactive)
1006 (setq cmpl-prefix-obarray (make-vector cmpl-obarray-length 0))
1007 (setq cmpl-obarray (make-vector cmpl-obarray-length 0))
1008 (cmpl-statistics-block
d2c49fd8 1009 (record-clear-all-completions)))
59ca07b5 1010
136f8f67
RS
1011(defvar completions-list-return-value)
1012
59ca07b5 1013(defun list-all-completions ()
d2c49fd8 1014 "Return a list of all the known completion entries."
136f8f67 1015 (let ((completions-list-return-value nil))
59ca07b5 1016 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray)
136f8f67 1017 completions-list-return-value))
59ca07b5
RS
1018
1019(defun list-all-completions-1 (prefix-symbol)
1020 (if (boundp prefix-symbol)
136f8f67 1021 (setq completions-list-return-value
59ca07b5 1022 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol))
136f8f67 1023 completions-list-return-value))))
59ca07b5
RS
1024
1025(defun list-all-completions-by-hash-bucket ()
a7a2b1f6 1026 "Return list of lists of known completion entries, organized by hash bucket."
136f8f67 1027 (let ((completions-list-return-value nil))
59ca07b5 1028 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray)
136f8f67 1029 completions-list-return-value))
59ca07b5
RS
1030
1031(defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1032 (if (boundp prefix-symbol)
136f8f67 1033 (setq completions-list-return-value
59ca07b5 1034 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol))
136f8f67 1035 completions-list-return-value))))
59ca07b5
RS
1036
1037\f
b578f267
EN
1038;;-----------------------------------------------
1039;; Updating the database
1040;;-----------------------------------------------
1041;;
1042;; These are the internal functions used to update the datebase
1043;;
1044;;
36cc948e
SM
1045(defvar completion-to-accept nil
1046 "Set to a string that is pending its acceptance.")
59ca07b5
RS
1047 ;; this checked by the top level reading functions
1048
36cc948e
SM
1049(defvar cmpl-db-downcase-string nil
1050 "Setup by `find-exact-completion', etc. The given string, downcased.")
1051(defvar cmpl-db-symbol nil
1052 "The interned symbol corresponding to `cmpl-db-downcase-string'.
1053Set up by `cmpl-db-symbol'.")
1054(defvar cmpl-db-prefix-symbol nil
1055 "The interned prefix symbol corresponding to `cmpl-db-downcase-string'.")
59ca07b5
RS
1056(defvar cmpl-db-entry nil)
1057(defvar cmpl-db-debug-p nil
0ff9b955 1058 "Set to t if you want to debug the database.")
59ca07b5 1059
b578f267 1060;; READS
59ca07b5 1061(defun find-exact-completion (string)
d2c49fd8 1062 "Return the completion entry for STRING or nil.
a7a2b1f6 1063Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
59ca07b5
RS
1064 (and (boundp (setq cmpl-db-symbol
1065 (intern (setq cmpl-db-downcase-string (downcase string))
1066 cmpl-obarray)))
d2c49fd8 1067 (symbol-value cmpl-db-symbol)))
59ca07b5
RS
1068
1069(defun find-cmpl-prefix-entry (prefix-string)
d2c49fd8 1070 "Return the prefix entry for string.
a7a2b1f6
RS
1071Sets `cmpl-db-prefix-symbol'.
1072Prefix-string must be exactly `completion-prefix-min-length' long
1073and downcased. Sets up `cmpl-db-prefix-symbol'."
59ca07b5
RS
1074 (and (boundp (setq cmpl-db-prefix-symbol
1075 (intern prefix-string cmpl-prefix-obarray)))
1076 (symbol-value cmpl-db-prefix-symbol)))
1077
1078(defvar inside-locate-completion-entry nil)
1079;; used to trap lossage in silent error correction
1080
1081(defun locate-completion-entry (completion-entry prefix-entry)
d2c49fd8 1082 "Locate the completion entry.
c2ced5d8
CZ
1083Returns a pointer to the element before the completion entry or nil if
1084the completion entry is at the head.
a7a2b1f6 1085Must be called after `find-exact-completion'."
59ca07b5 1086 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry))
d2c49fd8 1087 next-prefix-list)
59ca07b5
RS
1088 (cond
1089 ((not (eq (car prefix-list) completion-entry))
1090 ;; not already at head
1091 (while (and prefix-list
1092 (not (eq completion-entry
d2c49fd8 1093 (car (setq next-prefix-list (cdr prefix-list))))))
59ca07b5
RS
1094 (setq prefix-list next-prefix-list))
1095 (cond (;; found
1096 prefix-list)
1097 ;; Didn't find it. Database is messed up.
1098 (cmpl-db-debug-p
1099 ;; not found, error if debug mode
1100 (error "Completion entry exists but not on prefix list - %s"
136f8f67 1101 completion-string))
59ca07b5
RS
1102 (inside-locate-completion-entry
1103 ;; recursive error: really scrod
1104 (locate-completion-db-error))
1105 (t
1106 ;; Patch out
1107 (set cmpl-db-symbol nil)
1108 ;; Retry
d2c49fd8 1109 (locate-completion-entry-retry completion-entry)))))))
59ca07b5
RS
1110
1111(defun locate-completion-entry-retry (old-entry)
1112 (let ((inside-locate-completion-entry t))
1113 (add-completion (completion-string old-entry)
1114 (completion-num-uses old-entry)
1115 (completion-last-use-time old-entry))
136f8f67
RS
1116 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry)))
1117 (pref-entry
1118 (if cmpl-entry
1119 (find-cmpl-prefix-entry
1120 (substring cmpl-db-downcase-string
d2c49fd8 1121 0 completion-prefix-min-length)))))
59ca07b5
RS
1122 (if (and cmpl-entry pref-entry)
1123 ;; try again
1124 (locate-completion-entry cmpl-entry pref-entry)
1125 ;; still losing
d2c49fd8 1126 (locate-completion-db-error)))))
59ca07b5
RS
1127
1128(defun locate-completion-db-error ()
1129 ;; recursive error: really scrod
55535639 1130 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report"))
59ca07b5 1131
b578f267 1132;; WRITES
59ca07b5 1133(defun add-completion-to-tail-if-new (string)
c2ced5d8 1134 "If STRING is not in the database add it to appropriate prefix list.
eb8c3be9 1135STRING is added to the end of the appropriate prefix list with
c2ced5d8 1136num-uses = 0. The database is unchanged if it is there. STRING must be
a7a2b1f6 1137longer than `completion-prefix-min-length'.
59ca07b5
RS
1138This must be very fast.
1139Returns the completion entry."
1140 (or (find-exact-completion string)
1141 ;; not there
1142 (let (;; create an entry
36cc948e 1143 (entry (list (make-completion string)))
59ca07b5
RS
1144 ;; setup the prefix
1145 (prefix-entry (find-cmpl-prefix-entry
1146 (substring cmpl-db-downcase-string 0
7975cb9f 1147 completion-prefix-min-length))))
59ca07b5
RS
1148 ;; The next two forms should happen as a unit (atomically) but
1149 ;; no fatal errors should result if that is not the case.
1150 (cond (prefix-entry
1151 ;; These two should be atomic, but nothing fatal will happen
1152 ;; if they're not.
1153 (setcdr (cmpl-prefix-entry-tail prefix-entry) entry)
1154 (set-cmpl-prefix-entry-tail prefix-entry entry))
1155 (t
d2c49fd8 1156 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))))
59ca07b5
RS
1157 ;; statistics
1158 (cmpl-statistics-block
1159 (note-added-completion))
1160 ;; set symbol
d2c49fd8 1161 (set cmpl-db-symbol (car entry)))))
59ca07b5 1162
136f8f67
RS
1163(defun add-completion-to-head (completion-string)
1164 "If COMPLETION-STRING is not in the database, add it to prefix list.
1165We add COMPLETION-STRING to the head of the appropriate prefix list,
ea6c930a 1166or to the head of the list.
136f8f67 1167COMPLETION-STRING must be longer than `completion-prefix-min-length'.
59ca07b5
RS
1168Updates the saved string with the supplied string.
1169This must be very fast.
1170Returns the completion entry."
1171 ;; Handle pending acceptance
1172 (if completion-to-accept (accept-completion))
1173 ;; test if already in database
136f8f67 1174 (if (setq cmpl-db-entry (find-exact-completion completion-string))
59ca07b5
RS
1175 ;; found
1176 (let* ((prefix-entry (find-cmpl-prefix-entry
1177 (substring cmpl-db-downcase-string 0
7975cb9f 1178 completion-prefix-min-length)))
59ca07b5 1179 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry))
d2c49fd8 1180 (cmpl-ptr (cdr splice-ptr)))
59ca07b5 1181 ;; update entry
136f8f67 1182 (set-completion-string cmpl-db-entry completion-string)
59ca07b5
RS
1183 ;; move to head (if necessary)
1184 (cond (splice-ptr
1185 ;; These should all execute atomically but it is not fatal if
1186 ;; they don't.
1187 ;; splice it out
1188 (or (setcdr splice-ptr (cdr cmpl-ptr))
1189 ;; fix up tail if necessary
1190 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr))
1191 ;; splice in at head
1192 (setcdr cmpl-ptr (cmpl-prefix-entry-head prefix-entry))
d2c49fd8 1193 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr)))
59ca07b5
RS
1194 cmpl-db-entry)
1195 ;; not there
1196 (let (;; create an entry
36cc948e 1197 (entry (list (make-completion completion-string)))
59ca07b5
RS
1198 ;; setup the prefix
1199 (prefix-entry (find-cmpl-prefix-entry
1200 (substring cmpl-db-downcase-string 0
7975cb9f 1201 completion-prefix-min-length))))
59ca07b5
RS
1202 (cond (prefix-entry
1203 ;; Splice in at head
1204 (setcdr entry (cmpl-prefix-entry-head prefix-entry))
1205 (set-cmpl-prefix-entry-head prefix-entry entry))
1206 (t
1207 ;; Start new prefix entry
d2c49fd8 1208 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))))
59ca07b5
RS
1209 ;; statistics
1210 (cmpl-statistics-block
1211 (note-added-completion))
1212 ;; Add it to the symbol
d2c49fd8 1213 (set cmpl-db-symbol (car entry)))))
71296446 1214
136f8f67 1215(defun delete-completion (completion-string)
d2c49fd8 1216 "Delete the completion from the database.
a7a2b1f6 1217String must be longer than `completion-prefix-min-length'."
59ca07b5
RS
1218 ;; Handle pending acceptance
1219 (if completion-to-accept (accept-completion))
136f8f67 1220 (if (setq cmpl-db-entry (find-exact-completion completion-string))
59ca07b5 1221 ;; found
71296446 1222 (let* ((prefix-entry (find-cmpl-prefix-entry
59ca07b5 1223 (substring cmpl-db-downcase-string 0
7975cb9f 1224 completion-prefix-min-length)))
d2c49fd8 1225 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry)))
59ca07b5
RS
1226 ;; delete symbol reference
1227 (set cmpl-db-symbol nil)
1228 ;; remove from prefix list
1229 (cond (splice-ptr
1230 ;; not at head
1231 (or (setcdr splice-ptr (cdr (cdr splice-ptr)))
1232 ;; fix up tail if necessary
d2c49fd8 1233 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr)))
59ca07b5
RS
1234 (t
1235 ;; at head
1236 (or (set-cmpl-prefix-entry-head
1237 prefix-entry (cdr (cmpl-prefix-entry-head prefix-entry)))
1238 ;; List is now empty
d2c49fd8 1239 (set cmpl-db-prefix-symbol nil))))
59ca07b5 1240 (cmpl-statistics-block
d2c49fd8
DL
1241 (note-completion-deleted)))
1242 (error "Unknown completion `%s'" completion-string)))
59ca07b5 1243
b578f267
EN
1244;; Tests --
1245;; - Add and Find -
1246;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1247;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1248;; (find-exact-completion "bana") --> nil
1249;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1250;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1251;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1252;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1253;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1254;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1255;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1256;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1257;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1258;;
1259;; - Deleting -
1260;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
71296446 1261;; (delete-completion "banner")
b578f267
EN
1262;; (find-exact-completion "banner") --> nil
1263;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1264;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
71296446
JB
1265;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1266;; (delete-completion "banana")
b578f267
EN
1267;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1268;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
71296446
JB
1269;; (delete-completion "banner")
1270;; (delete-completion "banish")
b578f267
EN
1271;; (find-cmpl-prefix-entry "ban") --> nil
1272;; (delete-completion "banner") --> error
1273;;
1274;; - Tail -
1275;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1276;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1277;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1278;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1279;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1280;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1281;;
59ca07b5
RS
1282
1283\f
b578f267
EN
1284;;---------------------------------------------------------------------------
1285;; Database Update :: Interface level routines
1286;;---------------------------------------------------------------------------
71296446 1287;;
b578f267
EN
1288;; These lie on top of the database ref. functions but below the standard
1289;; user interface level
59ca07b5
RS
1290
1291
1292(defun interactive-completion-string-reader (prompt)
1293 (let* ((default (symbol-under-or-before-point))
1294 (new-prompt
1295 (if default
5b76833f 1296 (format "%s (default %s): " prompt default)
d2c49fd8
DL
1297 (format "%s: " prompt)))
1298 (read (completing-read new-prompt cmpl-obarray)))
59ca07b5 1299 (if (zerop (length read)) (setq read (or default "")))
d2c49fd8 1300 (list read)))
59ca07b5
RS
1301
1302(defun check-completion-length (string)
a7a2b1f6 1303 (if (< (length string) completion-min-length)
136f8f67 1304 (error "The string `%s' is too short to be saved as a completion"
59ca07b5
RS
1305 string)
1306 (list string)))
1307
1308(defun add-completion (string &optional num-uses last-use-time)
a7a2b1f6 1309 "Add STRING to completion list, or move it to head of list.
ea6c930a
JB
1310The completion is altered appropriately if NUM-USES and/or LAST-USE-TIME
1311are specified."
59ca07b5
RS
1312 (interactive (interactive-completion-string-reader "Completion to add"))
1313 (check-completion-length string)
32226619 1314 (let* ((current-completion-source (if (called-interactively-p 'interactive)
59ca07b5
RS
1315 cmpl-source-interactive
1316 current-completion-source))
1317 (entry (add-completion-to-head string)))
71296446 1318
59ca07b5
RS
1319 (if num-uses (set-completion-num-uses entry num-uses))
1320 (if last-use-time
d2c49fd8 1321 (set-completion-last-use-time entry last-use-time))))
59ca07b5
RS
1322
1323(defun add-permanent-completion (string)
a7a2b1f6 1324 "Add STRING if it isn't already listed, and mark it permanent."
59ca07b5
RS
1325 (interactive
1326 (interactive-completion-string-reader "Completion to add permanently"))
32226619 1327 (let ((current-completion-source (if (called-interactively-p 'interactive)
59ca07b5 1328 cmpl-source-interactive
d2c49fd8
DL
1329 current-completion-source)))
1330 (add-completion string nil t)))
59ca07b5
RS
1331
1332(defun kill-completion (string)
1333 (interactive (interactive-completion-string-reader "Completion to kill"))
1334 (check-completion-length string)
d2c49fd8 1335 (delete-completion string))
59ca07b5
RS
1336
1337(defun accept-completion ()
a7a2b1f6 1338 "Accepts the pending completion in `completion-to-accept'.
71296446 1339This bumps num-uses. Called by `add-completion-to-head' and
a7a2b1f6 1340`completion-search-reset'."
59ca07b5
RS
1341 (let ((string completion-to-accept)
1342 ;; if this is added afresh here, then it must be a cdabbrev
1343 (current-completion-source cmpl-source-cdabbrev)
d2c49fd8 1344 entry)
59ca07b5
RS
1345 (setq completion-to-accept nil)
1346 (setq entry (add-completion-to-head string))
1347 (set-completion-num-uses entry (1+ (completion-num-uses entry)))
d2c49fd8 1348 (setq cmpl-completions-accepted-p t)))
59ca07b5
RS
1349
1350(defun use-completion-under-point ()
a7a2b1f6
RS
1351 "Add the completion symbol underneath the point into the completion buffer."
1352 (let ((string (and enable-completion (symbol-under-point)))
59ca07b5
RS
1353 (current-completion-source cmpl-source-cursor-moves))
1354 (if string (add-completion-to-head string))))
71296446 1355
59ca07b5 1356(defun use-completion-before-point ()
a7a2b1f6
RS
1357 "Add the completion symbol before point into the completion buffer."
1358 (let ((string (and enable-completion (symbol-before-point)))
59ca07b5
RS
1359 (current-completion-source cmpl-source-cursor-moves))
1360 (if string (add-completion-to-head string))))
1361
1362(defun use-completion-under-or-before-point ()
a7a2b1f6
RS
1363 "Add the completion symbol before point into the completion buffer."
1364 (let ((string (and enable-completion (symbol-under-or-before-point)))
59ca07b5
RS
1365 (current-completion-source cmpl-source-cursor-moves))
1366 (if string (add-completion-to-head string))))
1367
1368(defun use-completion-before-separator ()
a7a2b1f6 1369 "Add the completion symbol before point into the completion buffer.
c2ced5d8 1370Completions added this way will automatically be saved if
a7a2b1f6
RS
1371`completion-on-separator-character' is non-nil."
1372 (let ((string (and enable-completion (symbol-before-point)))
59ca07b5
RS
1373 (current-completion-source cmpl-source-separator)
1374 entry)
1375 (cmpl-statistics-block
d2c49fd8 1376 (note-separator-character string))
59ca07b5
RS
1377 (cond (string
1378 (setq entry (add-completion-to-head string))
136f8f67 1379 (if (and completion-on-separator-character
59ca07b5 1380 (zerop (completion-num-uses entry)))
136f8f67
RS
1381 (progn
1382 (set-completion-num-uses entry 1)
d2c49fd8 1383 (setq cmpl-completions-accepted-p t)))))))
59ca07b5 1384
b578f267
EN
1385;; Tests --
1386;; - Add and Find -
71296446 1387;; (add-completion "banana" 5 10)
b578f267 1388;; (find-exact-completion "banana") --> ("banana" 5 10 0)
71296446 1389;; (add-completion "banana" 6)
b578f267
EN
1390;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1391;; (add-completion "banish")
1392;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1393;;
1394;; - Accepting -
1395;; (setq completion-to-accept "banana")
71296446 1396;; (accept-completion)
b578f267
EN
1397;; (find-exact-completion "banana") --> ("banana" 7 10)
1398;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1399;; (setq completion-to-accept "banish")
71296446 1400;; (add-completion "banner")
b578f267
EN
1401;; (car (find-cmpl-prefix-entry "ban"))
1402;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1403;;
1404;; - Deleting -
71296446 1405;; (kill-completion "banish")
b578f267 1406;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
59ca07b5
RS
1407
1408\f
b578f267
EN
1409;;---------------------------------------------------------------------------
1410;; Searching the database
1411;;---------------------------------------------------------------------------
1412;; Functions outside this block must call completion-search-reset followed
1413;; by calls to completion-search-next or completion-search-peek
1414;;
1415
1416;; Status variables
59ca07b5
RS
1417;; Commented out to improve loading speed
1418(defvar cmpl-test-string "")
1419;; "The current string used by completion-search-next."
1420(defvar cmpl-test-regexp "")
71296446 1421;; "The current regexp used by completion-search-next.
59ca07b5
RS
1422;; (derived from cmpl-test-string)"
1423(defvar cmpl-last-index 0)
1424;; "The last index that completion-search-next was called with."
1425(defvar cmpl-cdabbrev-reset-p nil)
1426;; "Set to t when cdabbrevs have been reset."
1427(defvar cmpl-next-possibilities nil)
1428;; "A pointer to the element BEFORE the next set of possible completions.
1429;; cadr of this is the cmpl-next-possibility"
1430(defvar cmpl-starting-possibilities nil)
1431;; "The initial list of starting possibilities."
1432(defvar cmpl-next-possibility nil)
1433;; "The cached next possibility."
1434(defvar cmpl-tried-list nil)
1435;; "A downcased list of all the completions we have tried."
1436
1437
1438(defun completion-search-reset (string)
a7a2b1f6
RS
1439 "Set up the for completion searching for STRING.
1440STRING must be longer than `completion-prefix-min-length'."
59ca07b5
RS
1441 (if completion-to-accept (accept-completion))
1442 (setq cmpl-starting-possibilities
1443 (cmpl-prefix-entry-head
46f950ca
RS
1444 (find-cmpl-prefix-entry
1445 (downcase (substring string 0 completion-prefix-min-length))))
59ca07b5
RS
1446 cmpl-test-string string
1447 cmpl-test-regexp (concat (regexp-quote string) "."))
d2c49fd8 1448 (completion-search-reset-1))
59ca07b5
RS
1449
1450(defun completion-search-reset-1 ()
1451 (setq cmpl-next-possibilities cmpl-starting-possibilities
1452 cmpl-next-possibility nil
1453 cmpl-cdabbrev-reset-p nil
1454 cmpl-last-index -1
d2c49fd8 1455 cmpl-tried-list nil))
59ca07b5
RS
1456
1457(defun completion-search-next (index)
a7a2b1f6
RS
1458 "Return the next completion entry.
1459If INDEX is out of sequence, reset and start from the top.
ea6c930a 1460If there are no more entries, try cdabbrev and return only a string."
59ca07b5
RS
1461 (cond
1462 ((= index (setq cmpl-last-index (1+ cmpl-last-index)))
1463 (completion-search-peek t))
136f8f67 1464 ((< index 0)
59ca07b5
RS
1465 (completion-search-reset-1)
1466 (setq cmpl-last-index index)
1467 ;; reverse the possibilities list
1468 (setq cmpl-next-possibilities (reverse cmpl-starting-possibilities))
1469 ;; do a "normal" search
1470 (while (and (completion-search-peek nil)
136f8f67 1471 (< (setq index (1+ index)) 0))
d2c49fd8 1472 (setq cmpl-next-possibility nil))
59ca07b5
RS
1473 (cond ((not cmpl-next-possibilities))
1474 ;; If no more possibilities, leave it that way
1475 ((= -1 cmpl-last-index)
71296446 1476 ;; next completion is at index 0. reset next-possibility list
59ca07b5
RS
1477 ;; to start at beginning
1478 (setq cmpl-next-possibilities cmpl-starting-possibilities))
1479 (t
1480 ;; otherwise point to one before current
1481 (setq cmpl-next-possibilities
1482 (nthcdr (- (length cmpl-starting-possibilities)
1483 (length cmpl-next-possibilities))
d2c49fd8 1484 cmpl-starting-possibilities)))))
59ca07b5
RS
1485 (t
1486 ;; non-negative index, reset and search
1487 ;;(prin1 'reset)
1488 (completion-search-reset-1)
1489 (setq cmpl-last-index index)
1490 (while (and (completion-search-peek t)
136f8f67 1491 (not (< (setq index (1- index)) 0)))
d2c49fd8 1492 (setq cmpl-next-possibility nil))))
59ca07b5
RS
1493 (prog1
1494 cmpl-next-possibility
d2c49fd8 1495 (setq cmpl-next-possibility nil)))
71296446 1496
59ca07b5
RS
1497
1498(defun completion-search-peek (use-cdabbrev)
7975cb9f 1499 "Return the next completion entry without actually moving the pointers.
71296446 1500Calling this again or calling `completion-search-next' results in the same
a7a2b1f6
RS
1501string being returned. Depends on `case-fold-search'.
1502If there are no more entries, try cdabbrev and then return only a string."
59ca07b5
RS
1503 (cond
1504 ;; return the cached value if we have it
1505 (cmpl-next-possibility)
1506 ((and cmpl-next-possibilities
1507 ;; still a few possibilities left
1508 (progn
1509 (while
1510 (and (not (eq 0 (string-match cmpl-test-regexp
1511 (completion-string (car cmpl-next-possibilities)))))
d2c49fd8
DL
1512 (setq cmpl-next-possibilities (cdr cmpl-next-possibilities))))
1513 cmpl-next-possibilities))
59ca07b5
RS
1514 ;; successful match
1515 (setq cmpl-next-possibility (car cmpl-next-possibilities)
1516 cmpl-tried-list (cons (downcase (completion-string cmpl-next-possibility))
1517 cmpl-tried-list)
d2c49fd8 1518 cmpl-next-possibilities (cdr cmpl-next-possibilities))
59ca07b5
RS
1519 cmpl-next-possibility)
1520 (use-cdabbrev
1521 ;; unsuccessful, use cdabbrev
1522 (cond ((not cmpl-cdabbrev-reset-p)
1523 (reset-cdabbrev cmpl-test-string cmpl-tried-list)
d2c49fd8
DL
1524 (setq cmpl-cdabbrev-reset-p t)))
1525 (setq cmpl-next-possibility (next-cdabbrev)))
59ca07b5
RS
1526 ;; Completely unsuccessful, return nil
1527 ))
1528
b578f267
EN
1529;; Tests --
1530;; - Add and Find -
71296446
JB
1531;; (add-completion "banana")
1532;; (completion-search-reset "ban")
b578f267
EN
1533;; (completion-search-next 0) --> "banana"
1534;;
1535;; - Discrimination -
71296446
JB
1536;; (add-completion "cumberland")
1537;; (add-completion "cumberbund")
1538;; cumbering
b578f267
EN
1539;; (completion-search-reset "cumb")
1540;; (completion-search-peek t) --> "cumberbund"
1541;; (completion-search-next 0) --> "cumberbund"
1542;; (completion-search-peek t) --> "cumberland"
1543;; (completion-search-next 1) --> "cumberland"
1544;; (completion-search-peek nil) --> nil
1545;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1546;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1547;; (completion-search-next 1) --> "cumberland"
1548;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1549;;
1550;; - Accepting -
1551;; (completion-search-next 1) --> "cumberland"
1552;; (setq completion-to-accept "cumberland")
1553;; (completion-search-reset "foo")
1554;; (completion-search-reset "cum")
1555;; (completion-search-next 0) --> "cumberland"
1556;;
1557;; - Deleting -
1558;; (kill-completion "cumberland")
71296446 1559;; cummings
b578f267
EN
1560;; (completion-search-reset "cum")
1561;; (completion-search-next 0) --> "cumberbund"
1562;; (completion-search-next 1) --> "cummings"
1563;;
1564;; - Ignoring Capitalization -
1565;; (completion-search-reset "CuMb")
1566;; (completion-search-next 0) --> "cumberbund"
59ca07b5
RS
1567
1568
1569\f
b578f267
EN
1570;;-----------------------------------------------
1571;; COMPLETE
1572;;-----------------------------------------------
59ca07b5
RS
1573
1574(defun completion-mode ()
d2c49fd8 1575 "Toggle whether or not to add new words to the completion database."
59ca07b5 1576 (interactive)
a7a2b1f6 1577 (setq enable-completion (not enable-completion))
d2c49fd8 1578 (message "Completion mode is now %s." (if enable-completion "ON" "OFF")))
71296446 1579
59ca07b5
RS
1580(defvar cmpl-current-index 0)
1581(defvar cmpl-original-string nil)
1582(defvar cmpl-last-insert-location -1)
1583(defvar cmpl-leave-point-at-start nil)
1584
1585(defun complete (&optional arg)
71296446 1586 "Fill out a completion of the word before point.
eb8c3be9 1587Point is left at end. Consecutive calls rotate through all possibilities.
59ca07b5 1588Prefix args ::
71296446 1589 control-u :: leave the point at the beginning of the completion rather
59ca07b5
RS
1590 than at the end.
1591 a number :: rotate through the possible completions by that amount
1592 `-' :: same as -1 (insert previous completion)
a7a2b1f6 1593 {See the comments at the top of `completion.el' for more info.}"
59ca07b5
RS
1594 (interactive "*p")
1595 ;;; Set up variables
1596 (cond ((eq last-command this-command)
1597 ;; Undo last one
1598 (delete-region cmpl-last-insert-location (point))
1599 ;; get next completion
d2c49fd8 1600 (setq cmpl-current-index (+ cmpl-current-index (or arg 1))))
59ca07b5
RS
1601 (t
1602 (if (not cmpl-initialized-p)
36cc948e 1603 (completion-initialize)) ;; make sure everything's loaded
59ca07b5
RS
1604 (cond ((consp current-prefix-arg) ;; control-u
1605 (setq arg 0)
d2c49fd8 1606 (setq cmpl-leave-point-at-start t))
59ca07b5 1607 (t
d2c49fd8 1608 (setq cmpl-leave-point-at-start nil)))
59ca07b5
RS
1609 ;; get string
1610 (setq cmpl-original-string (symbol-before-point-for-complete))
1611 (cond ((not cmpl-original-string)
1612 (setq this-command 'failed-complete)
136f8f67 1613 (error "To complete, point must be after a symbol at least %d character long"
a7a2b1f6 1614 completion-prefix-min-length)))
71296446 1615 ;; get index
59ca07b5
RS
1616 (setq cmpl-current-index (if current-prefix-arg arg 0))
1617 ;; statistics
1618 (cmpl-statistics-block
1619 (note-complete-entered-afresh cmpl-original-string))
1620 ;; reset database
1621 (completion-search-reset cmpl-original-string)
1622 ;; erase what we've got
d2c49fd8 1623 (delete-region cmpl-symbol-start cmpl-symbol-end)))
59ca07b5
RS
1624
1625 ;; point is at the point to insert the new symbol
1626 ;; Get the next completion
1627 (let* ((print-status-p
a7a2b1f6 1628 (and (>= baud-rate completion-prompt-speed-threshold)
7975cb9f 1629 (not (window-minibuffer-p (selected-window)))))
59ca07b5
RS
1630 (insert-point (point))
1631 (entry (completion-search-next cmpl-current-index))
d2c49fd8 1632 string)
59ca07b5
RS
1633 ;; entry is either a completion entry or a string (if cdabbrev)
1634
1635 ;; If found, insert
1636 (cond (entry
1637 ;; Setup for proper case
1638 (setq string (if (stringp entry)
1639 entry (completion-string entry)))
1640 (setq string (cmpl-merge-string-cases
1641 string cmpl-original-string))
1642 ;; insert
1643 (insert string)
1644 ;; accept it
1645 (setq completion-to-accept string)
1646 ;; fixup and cache point
1647 (cond (cmpl-leave-point-at-start
1648 (setq cmpl-last-insert-location (point))
1649 (goto-char insert-point))
1650 (t;; point at end,
d2c49fd8 1651 (setq cmpl-last-insert-location insert-point)))
59ca07b5
RS
1652 ;; statistics
1653 (cmpl-statistics-block
1654 (note-complete-inserted entry cmpl-current-index))
1655 ;; Done ! cmpl-stat-complete-successful
1656 ;;display the next completion
1657 (cond
1658 ((and print-status-p
1659 ;; This updates the display and only prints if there
1660 ;; is no typeahead
a7a2b1f6 1661 (sit-for 0)
59ca07b5
RS
1662 (setq entry
1663 (completion-search-peek
a7a2b1f6 1664 completion-cdabbrev-prompt-flag)))
59ca07b5
RS
1665 (setq string (if (stringp entry)
1666 entry (completion-string entry)))
1667 (setq string (cmpl-merge-string-cases
1668 string cmpl-original-string))
d2c49fd8 1669 (message "Next completion: %s" string))))
71296446 1670 (t;; none found, insert old
59ca07b5
RS
1671 (insert cmpl-original-string)
1672 ;; Don't accept completions
1673 (setq completion-to-accept nil)
1674 ;; print message
23b97eb9
RS
1675 ;; This used to call cmpl19-sit-for, an undefined function.
1676 ;; I hope that sit-for does the right thing; I don't know -- rms.
1677 (if (and print-status-p (sit-for 0))
59ca07b5
RS
1678 (message "No %scompletions."
1679 (if (eq this-command last-command) "more " "")))
1680 ;; statistics
1681 (cmpl-statistics-block
1682 (record-complete-failed cmpl-current-index))
1683 ;; Pretend that we were never here
d2c49fd8 1684 (setq this-command 'failed-complete)))))
59ca07b5 1685\f
b578f267
EN
1686;;---------------------------------------------------------------------------
1687;; Parsing definitions from files into the database
1688;;---------------------------------------------------------------------------
59ca07b5 1689
b578f267
EN
1690;;-----------------------------------------------
1691;; Top Level functions ::
1692;;-----------------------------------------------
59ca07b5 1693
b578f267 1694;; User interface
59ca07b5 1695(defun add-completions-from-file (file)
ea6c930a 1696 "Parse possible completions from a FILE and add them to database."
59ca07b5 1697 (interactive "fFile: ")
a7a2b1f6 1698 (setq file (expand-file-name file))
59ca07b5 1699 (let* ((buffer (get-file-buffer file))
d2c49fd8 1700 (buffer-already-there-p buffer))
136f8f67
RS
1701 (if (not buffer-already-there-p)
1702 (let ((completions-merging-modes nil))
1703 (setq buffer (find-file-noselect file))))
59ca07b5 1704 (unwind-protect
36cc948e
SM
1705 (with-current-buffer buffer
1706 (add-completions-from-buffer))
136f8f67
RS
1707 (if (not buffer-already-there-p)
1708 (kill-buffer buffer)))))
59ca07b5
RS
1709
1710(defun add-completions-from-buffer ()
1711 (interactive)
1712 (let ((current-completion-source cmpl-source-file-parsing)
1713 (start-num
1714 (cmpl-statistics-block
1715 (aref completion-add-count-vector cmpl-source-file-parsing)))
d2c49fd8 1716 mode)
59ca07b5
RS
1717 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode))
1718 (add-completions-from-lisp-buffer)
d2c49fd8 1719 (setq mode 'lisp))
59ca07b5
RS
1720 ((memq major-mode '(c-mode))
1721 (add-completions-from-c-buffer)
d2c49fd8 1722 (setq mode 'c))
59ca07b5 1723 (t
136f8f67 1724 (error "Cannot parse completions in %s buffers"
d2c49fd8 1725 major-mode)))
59ca07b5
RS
1726 (cmpl-statistics-block
1727 (record-cmpl-parse-file
1728 mode (point-max)
1729 (- (aref completion-add-count-vector cmpl-source-file-parsing)
d2c49fd8 1730 start-num)))))
59ca07b5 1731
b578f267 1732;; Find file hook
36cc948e 1733(defun completion-find-file-hook ()
a7a2b1f6 1734 (cond (enable-completion
59ca07b5 1735 (cond ((and (memq major-mode '(emacs-lisp-mode lisp-mode))
d2c49fd8 1736 (memq 'lisp completions-merging-modes))
59ca07b5
RS
1737 (add-completions-from-buffer))
1738 ((and (memq major-mode '(c-mode))
d2c49fd8
DL
1739 (memq 'c completions-merging-modes))
1740 (add-completions-from-buffer))))))
59ca07b5 1741
b578f267
EN
1742;;-----------------------------------------------
1743;; Tags Table Completions
1744;;-----------------------------------------------
59ca07b5
RS
1745
1746(defun add-completions-from-tags-table ()
1747 ;; Inspired by eero@media-lab.media.mit.edu
a7a2b1f6 1748 "Add completions from the current tags table."
59ca07b5
RS
1749 (interactive)
1750 (visit-tags-table-buffer) ;this will prompt if no tags-table
1751 (save-excursion
1752 (goto-char (point-min))
1753 (let (string)
06b60517 1754 (condition-case nil
59ca07b5
RS
1755 (while t
1756 (search-forward "\177")
1757 (backward-char 3)
1758 (and (setq string (symbol-under-point))
1759 (add-completion-to-tail-if-new string))
d2c49fd8
DL
1760 (forward-char 3))
1761 (search-failed)))))
59ca07b5
RS
1762
1763\f
b578f267
EN
1764;;-----------------------------------------------
1765;; Lisp File completion parsing
1766;;-----------------------------------------------
1767;; This merely looks for phrases beginning with (def.... or
1768;; (package:def ... and takes the next word.
1769;;
1770;; We tried using forward-lines and explicit searches but the regexp technique
1771;; was faster. (About 100K characters per second)
1772;;
59ca07b5
RS
1773(defconst *lisp-def-regexp*
1774 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
d2c49fd8 1775 "A regexp that searches for Lisp definition form.")
59ca07b5 1776
b578f267
EN
1777;; Tests -
1778;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1779;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1780;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1781;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
59ca07b5 1782
71296446 1783;; Parses all the definition names from a Lisp mode buffer and adds them to
b578f267 1784;; the completion database.
59ca07b5 1785(defun add-completions-from-lisp-buffer ()
59ca07b5
RS
1786 ;;; Benchmarks
1787 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
1788 (let (string)
1789 (save-excursion
1790 (goto-char (point-min))
06b60517 1791 (condition-case nil
59ca07b5
RS
1792 (while t
1793 (re-search-forward *lisp-def-regexp*)
1794 (and (setq string (symbol-under-point))
d2c49fd8
DL
1795 (add-completion-to-tail-if-new string)))
1796 (search-failed)))))
59ca07b5
RS
1797
1798\f
b578f267
EN
1799;;-----------------------------------------------
1800;; C file completion parsing
1801;;-----------------------------------------------
1802;; C :
1803;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
1804;; or structure, array or pointer defs.
1805;; It gets most of the definition names.
1806;;
1807;; As you might suspect by now, we use some symbol table hackery
1808;;
1809;; Symbol separator chars (have whitespace syntax) --> , ; * = (
1810;; Opening char --> [ {
1811;; Closing char --> ] }
1812;; opening and closing must be skipped over
1813;; Whitespace chars (have symbol syntax)
1814;; Everything else has word syntax
59ca07b5 1815
36cc948e 1816(defconst completion-c-def-syntax-table
32168d16 1817 (let ((table (make-syntax-table))
59ca07b5 1818 (whitespace-chars '(? ?\n ?\t ?\f ?\v ?\r))
eb8c3be9 1819 ;; unfortunately the ?( causes the parens to appear unbalanced
d2c49fd8 1820 (separator-chars '(?, ?* ?= ?\( ?\;))
136f8f67 1821 i)
59ca07b5 1822 ;; default syntax is whitespace
136f8f67
RS
1823 (setq i 0)
1824 (while (< i 256)
1825 (modify-syntax-entry i "w" table)
1826 (setq i (1+ i)))
3f429351 1827 (dolist (char whitespace-chars)
59ca07b5 1828 (modify-syntax-entry char "_" table))
3f429351 1829 (dolist (char separator-chars)
59ca07b5
RS
1830 (modify-syntax-entry char " " table))
1831 (modify-syntax-entry ?\[ "(]" table)
1832 (modify-syntax-entry ?\{ "(}" table)
1833 (modify-syntax-entry ?\] ")[" table)
1834 (modify-syntax-entry ?\} "){" table)
1835 table))
1836
b578f267 1837;; Regexps
59ca07b5
RS
1838(defconst *c-def-regexp*
1839 ;; This stops on lines with possible definitions
1840 "\n[_a-zA-Z#]"
1841 ;; This stops after the symbol to add.
1842 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
1843 ;; This stops before the symbol to add. {Test cases in parens. below}
1844 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
1845 ;; this simple version picks up too much extraneous stuff
1846 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
d2c49fd8 1847 "A regexp that searches for a definition form.")
59ca07b5
RS
1848;
1849;(defconst *c-cont-regexp*
1850; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
1851; "This regexp should be used in a looking-at to parse for lists of variables.")
1852;
1853;(defconst *c-struct-regexp*
1854; "\\(*\\|\\s \\)*\\b"
1855; "This regexp should be used to test whether a symbol follows a structure definition.")
1856
1857;(defun test-c-def-regexp (regexp string)
1858; (and (eq 0 (string-match regexp string)) (match-end 0))
1859; )
1860
b578f267
EN
1861;; Tests -
1862;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
1863;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
1864;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
1865;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
1866;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
1867;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
1868;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
1869;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
1870;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
1871;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
1872;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
1873
71296446 1874;; Parses all the definition names from a C mode buffer and adds them to the
b578f267 1875;; completion database.
59ca07b5 1876(defun add-completions-from-c-buffer ()
59ca07b5
RS
1877 ;; Benchmark --
1878 ;; Sun 3/280-- 1250 lines/sec.
1879
36cc948e 1880 (let (string next-point char)
59ca07b5
RS
1881 (save-excursion
1882 (goto-char (point-min))
1883 (catch 'finish-add-completions
612f91f0 1884 (with-syntax-table completion-c-def-syntax-table
36cc948e
SM
1885 (while t
1886 ;; we loop here only when scan-sexps fails
1887 ;; (i.e. unbalance exps.)
1888 (condition-case e
1889 (while t
1890 (re-search-forward *c-def-regexp*)
1891 (cond
1892 ((= (preceding-char) ?#)
1893 ;; preprocessor macro, see if it's one we handle
612f91f0 1894 (cond ((looking-at "\\(define\\|ifdef\\)\\>")
36cc948e
SM
1895 ;; skip forward over definition symbol
1896 ;; and add it to database
1897 (and (forward-word 2)
1898 (setq string (symbol-before-point))
1899 ;;(push string foo)
1900 (add-completion-to-tail-if-new string)))))
1901 (t
1902 ;; C definition
1903 (setq next-point (point))
1904 (while (and
1905 next-point
1906 ;; scan to next separator char.
1907 (setq next-point (scan-sexps next-point 1)))
1908 ;; position the point on the word we want to add
1909 (goto-char next-point)
1910 (while (= (setq char (following-char)) ?*)
1911 ;; handle pointer ref
1912 ;; move to next separator char.
1913 (goto-char
1914 (setq next-point (scan-sexps (point) 1))))
1915 (forward-word -1)
1916 ;; add to database
1917 (if (setq string (symbol-under-point))
1918 ;; (push string foo)
1919 (add-completion-to-tail-if-new string)
1920 ;; Local TMC hack (useful for parsing paris.h)
1921 (if (and (looking-at "_AP") ;; "ansi prototype"
1922 (progn
1923 (forward-word -1)
1924 (setq string
1925 (symbol-under-point))))
1926 (add-completion-to-tail-if-new string)))
1927 ;; go to next
1928 (goto-char next-point)
1929 ;; (push (format "%c" (following-char)) foo)
1930 (if (= (char-syntax char) ?\()
1931 ;; if on an opening delimiter, go to end
1932 (while (= (char-syntax char) ?\()
1933 (setq next-point (scan-sexps next-point 1)
1934 char (char-after next-point)))
1935 (or (= char ?,)
1936 ;; Current char is an end char.
1937 (setq next-point nil)))))))
1938 (search-failed ;;done
1939 (throw 'finish-add-completions t))
1940 (error
1941 ;; Check for failure in scan-sexps
612f91f0
SM
1942 (if (member (nth 1 e)
1943 '("Containing expression ends prematurely"
1944 "Unbalanced parentheses"))
36cc948e
SM
1945 ;; unbalanced paren., keep going
1946 ;;(ding)
1947 (forward-line 1)
1948 (message "Error parsing C buffer for completions--please send bug report")
1949 (throw 'finish-add-completions t))))))))))
59ca07b5
RS
1950
1951\f
b578f267
EN
1952;;---------------------------------------------------------------------------
1953;; Init files
1954;;---------------------------------------------------------------------------
59ca07b5 1955
b578f267 1956;; The version of save-completions-to-file called at kill-emacs time.
59ca07b5 1957(defun kill-emacs-save-completions ()
136f8f67
RS
1958 (if (and save-completions-flag enable-completion cmpl-initialized-p)
1959 (cond
1960 ((not cmpl-completions-accepted-p)
1961 (message "Completions database has not changed - not writing."))
1962 (t
36cc948e
SM
1963 (save-completions-to-file))))
1964 (cmpl-statistics-block (record-cmpl-kill-emacs)))
59ca07b5 1965
1add72b5
RS
1966;; There is no point bothering to change this again
1967;; unless the package changes so much that it matters
1968;; for people that have saved completions.
1969(defconst completion-version "11")
1970
59ca07b5
RS
1971(defconst saved-cmpl-file-header
1972 ";;; Completion Initialization file.
b578f267
EN
1973;; Version = %s
1974;; Format is (<string> . <last-use-time>)
1975;; <string> is the completion
1976;; <last-use-time> is the time the completion was last used
1977;; If it is t, the completion will never be pruned from the file.
1978;; Otherwise it is in hours since origin.
59ca07b5
RS
1979\n")
1980
1981(defun completion-backup-filename (filename)
1982 (concat filename ".BAK"))
1983
1984(defun save-completions-to-file (&optional filename)
a7a2b1f6
RS
1985 "Save completions in init file FILENAME.
1986If file name is not specified, use `save-completions-file-name'."
59ca07b5 1987 (interactive)
a7a2b1f6 1988 (setq filename (expand-file-name (or filename save-completions-file-name)))
136f8f67
RS
1989 (if (file-writable-p filename)
1990 (progn
1991 (if (not cmpl-initialized-p)
36cc948e 1992 (completion-initialize)) ;; make sure everything's loaded
136f8f67
RS
1993 (message "Saving completions to file %s" filename)
1994
1995 (let* ((delete-old-versions t)
1996 (kept-old-versions 0)
1997 (kept-new-versions completions-file-versions-kept)
1998 last-use-time
1999 (current-time (cmpl-hours-since-origin))
2000 (total-in-db 0)
2001 (total-perm 0)
2002 (total-saved 0)
d2c49fd8 2003 (backup-filename (completion-backup-filename filename)))
71296446 2004
36cc948e 2005 (with-current-buffer (get-buffer-create " *completion-save-buffer*")
136f8f67
RS
2006 (setq buffer-file-name filename)
2007
2008 (if (not (verify-visited-file-modtime (current-buffer)))
2009 (progn
2010 ;; file has changed on disk. Bring us up-to-date
2011 (message "Completion file has changed. Merging. . .")
2012 (load-completions-from-file filename t)
2013 (message "Merging finished. Saving completions to file %s" filename)))
2014
2015 ;; prepare the buffer to be modified
2016 (clear-visited-file-modtime)
2017 (erase-buffer)
2018 ;; (/ 1 0)
2019 (insert (format saved-cmpl-file-header completion-version))
3f429351 2020 (dolist (completion (list-all-completions))
136f8f67
RS
2021 (setq total-in-db (1+ total-in-db))
2022 (setq last-use-time (completion-last-use-time completion))
2023 ;; Update num uses and maybe write completion to a file
2024 (cond ((or;; Write to file if
2025 ;; permanent
2026 (and (eq last-use-time t)
2027 (setq total-perm (1+ total-perm)))
2028 ;; or if
2029 (if (> (completion-num-uses completion) 0)
2030 ;; it's been used
2031 (setq last-use-time current-time)
2032 ;; or it was saved before and
2033 (and last-use-time
2034 ;; save-completions-retention-time is nil
2035 (or (not save-completions-retention-time)
2036 ;; or time since last use is < ...retention-time*
2037 (< (- current-time last-use-time)
d2c49fd8 2038 save-completions-retention-time)))))
136f8f67
RS
2039 ;; write to file
2040 (setq total-saved (1+ total-saved))
2041 (insert (prin1-to-string (cons (completion-string completion)
d2c49fd8 2042 last-use-time)) "\n"))))
71296446 2043
136f8f67 2044 ;; write the buffer
06b60517 2045 (condition-case nil
136f8f67
RS
2046 (let ((file-exists-p (file-exists-p filename)))
2047 (if file-exists-p
2048 (progn
2049 ;; If file exists . . .
2050 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2051 ;; (GNU leaves a 0 length file if it gets a disk full error!)
71296446 2052
136f8f67
RS
2053 ;; If backup doesn't exit, Rename current to backup
2054 ;; {If backup exists the primary file is probably messed up}
2055 (or (file-exists-p backup-filename)
2056 (rename-file filename backup-filename))
2057 ;; Copy the backup back to the current name
2058 ;; (so versioning works)
2059 (copy-file backup-filename filename t)))
2060 ;; Save it
2061 (save-buffer)
2062 (if file-exists-p
2063 ;; If successful, remove backup
2064 (delete-file backup-filename)))
2065 (error
2066 (set-buffer-modified-p nil)
d2c49fd8 2067 (message "Couldn't save completion file `%s'" filename)))
136f8f67 2068 ;; Reset accepted-p flag
d2c49fd8 2069 (setq cmpl-completions-accepted-p nil) )
136f8f67 2070 (cmpl-statistics-block
d2c49fd8 2071 (record-save-completions total-in-db total-perm total-saved))))))
59ca07b5 2072
4e0c8650 2073;;(defun auto-save-completions ()
b578f267
EN
2074;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2075;; *completion-auto-save-period*
2076;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2077;; cmpl-completions-accepted-p)
2078;; (save-completions-to-file)))
59ca07b5 2079
4e0c8650 2080;;(add-hook 'cmpl-emacs-idle-time-hooks 'auto-save-completions)
59ca07b5
RS
2081
2082(defun load-completions-from-file (&optional filename no-message-p)
d2c49fd8 2083 "Load a completion init file FILENAME.
a7a2b1f6 2084If file is not specified, then use `save-completions-file-name'."
59ca07b5 2085 (interactive)
a7a2b1f6 2086 (setq filename (expand-file-name (or filename save-completions-file-name)))
59ca07b5 2087 (let* ((backup-filename (completion-backup-filename filename))
d2c49fd8 2088 (backup-readable-p (file-readable-p backup-filename)))
136f8f67
RS
2089 (if backup-readable-p (setq filename backup-filename))
2090 (if (file-readable-p filename)
2091 (progn
2092 (if (not no-message-p)
2093 (message "Loading completions from %sfile %s . . ."
2094 (if backup-readable-p "backup " "") filename))
36cc948e 2095 (with-current-buffer (get-buffer-create " *completion-save-buffer*")
136f8f67
RS
2096 (setq buffer-file-name filename)
2097 ;; prepare the buffer to be modified
2098 (clear-visited-file-modtime)
2099 (erase-buffer)
71296446 2100
136f8f67
RS
2101 (let ((insert-okay-p nil)
2102 (buffer (current-buffer))
36cc948e 2103 string entry last-use-time
136f8f67
RS
2104 cmpl-entry cmpl-last-use-time
2105 (current-completion-source cmpl-source-init-file)
2106 (start-num
2107 (cmpl-statistics-block
2108 (aref completion-add-count-vector cmpl-source-file-parsing)))
d2c49fd8 2109 (total-in-file 0) (total-perm 0))
136f8f67 2110 ;; insert the file into a buffer
06b60517 2111 (condition-case nil
136f8f67
RS
2112 (progn (insert-file-contents filename t)
2113 (setq insert-okay-p t))
2114
71296446 2115 (file-error
136f8f67
RS
2116 (message "File error trying to load completion file %s."
2117 filename)))
71296446 2118 ;; parse it
136f8f67
RS
2119 (if insert-okay-p
2120 (progn
2121 (goto-char (point-min))
2122
06b60517 2123 (condition-case nil
136f8f67
RS
2124 (while t
2125 (setq entry (read buffer))
2126 (setq total-in-file (1+ total-in-file))
2127 (cond
2128 ((and (consp entry)
2129 (stringp (setq string (car entry)))
2130 (cond
2131 ((eq (setq last-use-time (cdr entry)) 'T)
2132 ;; handle case sensitivity
2133 (setq total-perm (1+ total-perm))
2134 (setq last-use-time t))
2135 ((eq last-use-time t)
2136 (setq total-perm (1+ total-perm)))
d2c49fd8 2137 ((integerp last-use-time))))
136f8f67
RS
2138 ;; Valid entry
2139 ;; add it in
2140 (setq cmpl-last-use-time
2141 (completion-last-use-time
2142 (setq cmpl-entry
d2c49fd8 2143 (add-completion-to-tail-if-new string))))
71296446 2144 (if (or (eq last-use-time t)
136f8f67
RS
2145 (and (> last-use-time 1000);;backcompatibility
2146 (not (eq cmpl-last-use-time t))
2147 (or (not cmpl-last-use-time)
2148 ;; more recent
d2c49fd8 2149 (> last-use-time cmpl-last-use-time))))
136f8f67 2150 ;; update last-use-time
d2c49fd8 2151 (set-completion-last-use-time cmpl-entry last-use-time)))
136f8f67
RS
2152 (t
2153 ;; Bad format
2154 (message "Error: invalid saved completion - %s"
2155 (prin1-to-string entry))
2156 ;; try to get back in sync
d2c49fd8 2157 (search-forward "\n("))))
136f8f67 2158 (search-failed
d2c49fd8 2159 (message "End of file while reading completions."))
136f8f67
RS
2160 (end-of-file
2161 (if (= (point) (point-max))
2162 (if (not no-message-p)
2163 (message "Loading completions from file %s . . . Done."
2164 filename))
d2c49fd8 2165 (message "End of file while reading completions."))))))
59ca07b5 2166
136f8f67
RS
2167 (cmpl-statistics-block
2168 (record-load-completions
2169 total-in-file total-perm
2170 (- (aref completion-add-count-vector cmpl-source-init-file)
2171 start-num)))
d2c49fd8 2172))))))
59ca07b5 2173
36cc948e 2174(defun completion-initialize ()
a7a2b1f6 2175 "Load the default completions file.
7975cb9f 2176Also sets up so that exiting Emacs will automatically save the file."
59ca07b5 2177 (interactive)
36cc948e
SM
2178 (unless cmpl-initialized-p
2179 (load-completions-from-file)
2180 (setq cmpl-initialized-p t)))
59ca07b5 2181\f
b578f267
EN
2182;;-----------------------------------------------
2183;; Kill region patch
2184;;-----------------------------------------------
59ca07b5 2185
a7a2b1f6 2186(defun completion-kill-region (&optional beg end)
59ca07b5
RS
2187 "Kill between point and mark.
2188The text is deleted but saved in the kill ring.
2189The command \\[yank] can retrieve it from there.
2190/(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2191
2192This is the primitive for programs to kill text (as opposed to deleting it).
0c53eb03 2193Supply two arguments, character positions indicating the stretch of text
59ca07b5
RS
2194 to be killed.
2195Any command that calls this function is a \"kill command\".
2196If the previous command was also a kill command,
2197the text killed this time appends to the text killed last time
2198to make one entry in the kill ring.
2199Patched to remove the most recent completion."
71296446 2200 (interactive "r")
a7a2b1f6 2201 (cond ((eq last-command 'complete)
59ca07b5
RS
2202 (delete-region (point) cmpl-last-insert-location)
2203 (insert cmpl-original-string)
2204 (setq completion-to-accept nil)
2205 (cmpl-statistics-block
a7a2b1f6 2206 (record-complete-failed)))
59ca07b5 2207 (t
a7a2b1f6 2208 (kill-region beg end))))
59ca07b5 2209
a7a2b1f6 2210\f
b578f267
EN
2211;;-----------------------------------------------
2212;; Patches to self-insert-command.
2213;;-----------------------------------------------
59ca07b5 2214
b578f267
EN
2215;; Need 2 versions: generic separator chars. and space (to get auto fill
2216;; to work)
59ca07b5 2217
b578f267
EN
2218;; All common separators (eg. space "(" ")" """) characters go through a
2219;; function to add new words to the list of words to complete from:
2220;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
71296446 2221;; If the character before this was an alpha-numeric then this adds the
b578f267 2222;; symbol before point to the completion list (using ADD-COMPLETION).
59ca07b5
RS
2223
2224(defun completion-separator-self-insert-command (arg)
2225 (interactive "p")
3e7a2d67
RS
2226 (if (command-remapping 'self-insert-command)
2227 (funcall (command-remapping 'self-insert-command) arg)
2228 (use-completion-before-separator)
2229 (self-insert-command arg)))
59ca07b5
RS
2230
2231(defun completion-separator-self-insert-autofilling (arg)
2232 (interactive "p")
3e7a2d67
RS
2233 (if (command-remapping 'self-insert-command)
2234 (funcall (command-remapping 'self-insert-command) arg)
2235 (use-completion-before-separator)
2236 (self-insert-command arg)
2237 (and auto-fill-function
2238 (funcall auto-fill-function))))
59ca07b5 2239
b578f267
EN
2240;;-----------------------------------------------
2241;; Wrapping Macro
2242;;-----------------------------------------------
59ca07b5 2243
71296446 2244;; Note that because of the way byte compiling works, none of
b578f267 2245;; the functions defined with this macro get byte compiled.
59ca07b5 2246
36cc948e 2247(defun completion-def-wrapper (function-name type)
c2ced5d8
CZ
2248 "Add a call to update the completion database before function execution.
2249TYPE is the type of the wrapper to be added. Can be :before or :under."
36cc948e
SM
2250 (put function-name 'completion-function
2251 (cdr (assq type
699ee5f5
LT
2252 '((:separator . use-completion-before-separator)
2253 (:before . use-completion-before-point)
2254 (:backward-under . use-completion-backward-under)
2255 (:backward . use-completion-backward)
2256 (:under . use-completion-under-point)
2257 (:under-or-before . use-completion-under-or-before-point)
2258 (:minibuffer-separator
2259 . use-completion-minibuffer-separator))))))
a7a2b1f6
RS
2260
2261(defun use-completion-minibuffer-separator ()
36cc948e 2262 (let ((completion-syntax-table completion-standard-syntax-table))
a7a2b1f6
RS
2263 (use-completion-before-separator)))
2264
2265(defun use-completion-backward-under ()
2266 (use-completion-under-point)
2267 (if (eq last-command 'complete)
2268 ;; probably a failed completion if you have to back up
2269 (cmpl-statistics-block (record-complete-failed))))
2270
2271(defun use-completion-backward ()
2272 (if (eq last-command 'complete)
2273 ;; probably a failed completion if you have to back up
2274 (cmpl-statistics-block (record-complete-failed))))
2275
2276(defun completion-before-command ()
76e91049
RS
2277 (funcall (or (and (symbolp this-command)
2278 (get this-command 'completion-function))
a7a2b1f6 2279 'use-completion-under-or-before-point)))
bb310d1e 2280\f
36cc948e
SM
2281;; Lisp mode diffs.
2282
2283(defconst completion-lisp-syntax-table
2284 (let ((table (copy-syntax-table completion-standard-syntax-table))
2285 (symbol-chars '(?! ?& ?? ?= ?^)))
2286 (dolist (char symbol-chars)
2287 (modify-syntax-entry char "_" table))
2288 table))
2289
2290(defun completion-lisp-mode-hook ()
2291 (setq completion-syntax-table completion-lisp-syntax-table)
2292 ;; Lisp Mode diffs
2293 (local-set-key "!" 'self-insert-command)
2294 (local-set-key "&" 'self-insert-command)
2295 (local-set-key "%" 'self-insert-command)
2296 (local-set-key "?" 'self-insert-command)
2297 (local-set-key "=" 'self-insert-command)
2298 (local-set-key "^" 'self-insert-command))
2299
b578f267 2300;; C mode diffs.
603715b0 2301
36cc948e
SM
2302(defconst completion-c-syntax-table
2303 (let ((table (copy-syntax-table completion-standard-syntax-table))
2304 (separator-chars '(?+ ?* ?/ ?: ?%)))
2305 (dolist (char separator-chars)
2306 (modify-syntax-entry char " " table))
2307 table))
603715b0 2308
36cc948e 2309(completion-def-wrapper 'electric-c-semi :separator)
32168d16 2310(defun completion-c-mode-hook ()
36cc948e
SM
2311 (setq completion-syntax-table completion-c-syntax-table)
2312 (local-set-key "+" 'completion-separator-self-insert-command)
2313 (local-set-key "*" 'completion-separator-self-insert-command)
2314 (local-set-key "/" 'completion-separator-self-insert-command))
59ca07b5 2315
b578f267 2316;; FORTRAN mode diffs. (these are defined when fortran is called)
603715b0 2317
36cc948e
SM
2318(defconst completion-fortran-syntax-table
2319 (let ((table (copy-syntax-table completion-standard-syntax-table))
2320 (separator-chars '(?+ ?- ?* ?/ ?:)))
2321 (dolist (char separator-chars)
2322 (modify-syntax-entry char " " table))
2323 table))
603715b0 2324
59ca07b5 2325(defun completion-setup-fortran-mode ()
36cc948e
SM
2326 (setq completion-syntax-table completion-fortran-syntax-table)
2327 (local-set-key "+" 'completion-separator-self-insert-command)
2328 (local-set-key "-" 'completion-separator-self-insert-command)
2329 (local-set-key "*" 'completion-separator-self-insert-command)
2330 (local-set-key "/" 'completion-separator-self-insert-command))
bb310d1e 2331\f
36cc948e
SM
2332;; Enable completion mode.
2333
2334(defvar fortran-mode-hook)
2335
2336(defvar completion-saved-bindings nil)
71296446 2337
bb310d1e 2338;;;###autoload
36cc948e 2339(define-minor-mode dynamic-completion-mode
e1ac4066
GM
2340 "Toggle dynamic word-completion on or off.
2341With a prefix argument ARG, enable the mode if ARG is positive,
2342and disable it otherwise. If called from Lisp, enable the mode
2343if ARG is omitted or nil."
36cc948e
SM
2344 :global t
2345 ;; This is always good, not specific to dynamic-completion-mode.
bb310d1e
RS
2346 (define-key function-key-map [C-return] [?\C-\r])
2347
36cc948e
SM
2348 (dolist (x '((find-file-hook . completion-find-file-hook)
2349 (pre-command-hook . completion-before-command)
2350 ;; Save completions when killing Emacs.
2351 (kill-emacs-hook . kill-emacs-save-completions)
2352
2353 ;; Install the appropriate mode tables.
2354 (lisp-mode-hook . completion-lisp-mode-hook)
2355 (c-mode-hook . completion-c-mode-hook)
2356 (fortran-mode-hook . completion-setup-fortran-mode)))
2357 (if dynamic-completion-mode
2358 (add-hook (car x) (cdr x))
2359 (remove-hook (car x) (cdr x))))
699ee5f5 2360
36cc948e
SM
2361 ;; "Complete" Key Keybindings. We don't want to use a minor-mode
2362 ;; map because these have too high a priority. We could/should
2363 ;; probably change the interpretation of minor-mode-map-alist such
2364 ;; that a map has lower precedence if the symbol is not buffer-local.
2365 (while completion-saved-bindings
2366 (let ((binding (pop completion-saved-bindings)))
2367 (global-set-key (car binding) (cdr binding))))
2368 (when dynamic-completion-mode
2369 (dolist (binding
2370 '(("\M-\r" . complete)
2371 ([?\C-\r] . complete)
2372
2373 ;; Tests -
2374 ;; (add-completion "cumberland")
2375 ;; (add-completion "cumberbund")
2376 ;; cum
2377 ;; Cumber
2378 ;; cumbering
2379 ;; cumb
2380
2381 ;; Patches to standard keymaps insert completions
2382 ([remap kill-region] . completion-kill-region)
2383
2384 ;; Separators
2385 ;; We've used the completion syntax table given as a guide.
2386 ;;
2387 ;; Global separator chars.
2388 ;; We left out <tab> because there are too many special
2389 ;; cases for it. Also, in normal coding it's rarely typed
2390 ;; after a word.
2391 (" " . completion-separator-self-insert-autofilling)
2392 ("!" . completion-separator-self-insert-command)
2393 ("%" . completion-separator-self-insert-command)
2394 ("^" . completion-separator-self-insert-command)
2395 ("&" . completion-separator-self-insert-command)
2396 ("(" . completion-separator-self-insert-command)
2397 (")" . completion-separator-self-insert-command)
2398 ("=" . completion-separator-self-insert-command)
2399 ("`" . completion-separator-self-insert-command)
2400 ("|" . completion-separator-self-insert-command)
2401 ("{" . completion-separator-self-insert-command)
2402 ("}" . completion-separator-self-insert-command)
2403 ("[" . completion-separator-self-insert-command)
2404 ("]" . completion-separator-self-insert-command)
2405 (";" . completion-separator-self-insert-command)
2406 ("\"". completion-separator-self-insert-command)
2407 ("'" . completion-separator-self-insert-command)
2408 ("#" . completion-separator-self-insert-command)
2409 ("," . completion-separator-self-insert-command)
2410 ("?" . completion-separator-self-insert-command)
2411
2412 ;; We include period and colon even though they are symbol
2413 ;; chars because :
2414 ;; - in text we want to pick up the last word in a sentence.
2415 ;; - in C pointer refs. we want to pick up the first symbol
2416 ;; - it won't make a difference for lisp mode (package names
2417 ;; are short)
2418 ("." . completion-separator-self-insert-command)
2419 (":" . completion-separator-self-insert-command)))
2420 (push (cons (car binding) (lookup-key global-map (car binding)))
2421 completion-saved-bindings)
2422 (global-set-key (car binding) (cdr binding)))
2423
2424 ;; Tests --
2425 ;; foobarbiz
2426 ;; foobar
2427 ;; fooquux
2428 ;; fooper
bb310d1e 2429
36cc948e
SM
2430 (cmpl-statistics-block
2431 (record-completion-file-loaded))
59ca07b5 2432
36cc948e
SM
2433 (completion-initialize)))
2434
2435;;-----------------------------------------------
2436;; End of line chars.
2437;;-----------------------------------------------
2438(completion-def-wrapper 'newline :separator)
2439(completion-def-wrapper 'newline-and-indent :separator)
2440(completion-def-wrapper 'comint-send-input :separator)
2441(completion-def-wrapper 'exit-minibuffer :minibuffer-separator)
2442(completion-def-wrapper 'eval-print-last-sexp :separator)
2443(completion-def-wrapper 'eval-last-sexp :separator)
2444;;(completion-def-wrapper 'minibuffer-complete-and-exit :minibuffer)
59ca07b5 2445
36cc948e
SM
2446;;-----------------------------------------------
2447;; Cursor movement
2448;;-----------------------------------------------
c0274f38 2449
36cc948e
SM
2450(completion-def-wrapper 'next-line :under-or-before)
2451(completion-def-wrapper 'previous-line :under-or-before)
2452(completion-def-wrapper 'beginning-of-buffer :under-or-before)
2453(completion-def-wrapper 'end-of-buffer :under-or-before)
2454(completion-def-wrapper 'beginning-of-line :under-or-before)
2455(completion-def-wrapper 'end-of-line :under-or-before)
2456(completion-def-wrapper 'forward-char :under-or-before)
2457(completion-def-wrapper 'forward-word :under-or-before)
2458(completion-def-wrapper 'forward-sexp :under-or-before)
2459(completion-def-wrapper 'backward-char :backward-under)
2460(completion-def-wrapper 'backward-word :backward-under)
2461(completion-def-wrapper 'backward-sexp :backward-under)
2462
2463(completion-def-wrapper 'delete-backward-char :backward)
2464(completion-def-wrapper 'delete-backward-char-untabify :backward)
2465
2466;; Old names, non-namespace-clean.
2467(defvaralias 'cmpl-syntax-table 'completion-syntax-table)
2468(defalias 'initialize-completions 'completion-initialize)
2469
2470(dolist (x '("^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
d2c49fd8 2471 "^The string \".*\" is too short to be saved as a completion\\.$"))
36cc948e 2472 (add-to-list 'debug-ignored-errors x))
d2c49fd8 2473
1aa323ac
RS
2474(provide 'completion)
2475
c0274f38 2476;;; completion.el ends here