1be9d6604630c197bb0d2a1cd1bb07c6317770db
[gnus] / lisp / ecomplete.el
1 ;;; ecomplete.el --- electric completion of addresses and the like
2 ;; Copyright (C) 2006 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Keywords: mail
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile
29   (require 'cl))
30
31 (defgroup ecomplete nil
32   "Suppression of duplicate articles."
33   :group 'mail)
34
35 (defcustom ecomplete-database-file "~/.ecompleterc"
36   "*The name of the file to store the ecomplete data."
37   :group 'ecomplete
38   :type 'file)
39
40 ;;; Internal variables.
41
42 (defvar ecomplete-database nil)
43 (defvar ecomplete-current-matches nil)
44 (defvar ecomplete-match-length nil)
45 (defvar ecomplete-current-line nil)
46 (defvar ecomplete-current-match nil)
47
48 (defun ecomplete-setup ()
49   (when (file-exists-p ecomplete-database-file)
50     (with-temp-buffer
51       (insert-file-contents ecomplete-database-file)
52       (setq ecomplete-database (read (current-buffer))))))
53
54 (defun ecomplete-add-item (type key text)
55   (let ((elems (assq type ecomplete-database))
56         (now (string-to-number
57               (format "%.0f" (time-to-seconds (current-time)))))
58         entry)
59     (unless elems
60       (push (setq elems (list type)) ecomplete-database))
61     (if (setq entry (assoc key (cdr elems)))
62         (setcdr entry (list (1+ (cadr entry)) now text))
63       (nconc elems (list (list key 1 now text))))))
64
65 (defun ecomplete-get-item (type key)
66   (assoc key (cdr (assq type ecomplete-database))))
67
68 (defun ecomplete-save ()
69   (with-temp-buffer
70     (insert "(")
71     (loop for (type . elems) in ecomplete-database
72           do
73           (insert (format "(%s\n" type))
74           (dolist (entry elems)
75             (prin1 entry (current-buffer))
76             (insert "\n"))
77           (insert ")\n"))
78     (insert ")")
79     (write-region (point-min) (point-max) ecomplete-database-file nil 'silent)))
80
81 (defun ecomplete-get-matches (type match)
82   (setq ecomplete-current-match match)
83   (let* ((elems (cdr (assq type ecomplete-database)))
84          (match (regexp-quote match))
85          (candidates
86           (sort 
87            (loop for (key count time text) in elems
88                  when (string-match match text)
89                  collect (list count time text))
90            (lambda (l1 l2)
91              (> (car l1) (car l2))))))
92     (when (> (length candidates) 10)
93       (setcdr (nthcdr 10 candidates) nil))
94     (unless (zerop (length candidates))
95       (with-temp-buffer
96         (dolist (candidate candidates)
97           (insert (caddr candidate) "\n"))
98         (goto-char (point-min))
99         (put-text-property (point) (1+ (point)) 'ecomplete t)
100         (while (re-search-forward match nil t)
101           (put-text-property (match-beginning 0) (match-end 0)
102                              'face 'isearch))
103         (buffer-string)))))
104
105 (defun ecomplete-display-matches (type word)
106   (let* ((matches (ecomplete-get-matches type word))
107          (line 0)
108          (max-lines (length (split-string matches "\n")))
109          command)
110     (while (not (memq (setq command (read-char)) '(?  ?\r)))
111       (cond
112        ((eq command ?n)
113         (setq line (min (1+ line) max-lines)))
114        ((eq command ?p)
115         (setq line (max (1- line) 0))))
116       (ecomplete-highlight-match-line matches line))
117     (when (eq command ?\r)
118       (nth line (split-string ecomplete-current-matches "\n")))))
119
120 (defun ecomplete-highlight-match-line (matches line)
121   (with-temp-buffer
122     (insert matches)
123     (goto-char (point-min))
124     (forward-line line)
125     (save-restriction
126       (narrow-to-region (point) (line-end-position))
127       (while (not (eobp))
128         ;; Put the 'region face on any charactes on this line that
129         ;; aren't already highlighted.
130         (unless (get-text-property (point) 'face)
131           (put-text-property (point) (1+ (point)) 'face 'region))
132         (forward-char 1)))
133     (message "%s" (buffer-string))))
134
135 (provide 'ecomplete)
136
137 ;;; ecomplete.el ends here