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