T-gnus 6.15.18 revision 00.
[elisp/gnus.git-] / lisp / gnus-namazu.el
1 ;;; gnus-namazu.el --- Search mail with Namazu -*- coding: iso-2022-7bit; -*-
2
3 ;; Copyright (C) 2000,2001,2002 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
4
5 ;; Author: TSUCHIYA Masatoshi <tsuchiya@namazu.org>
6 ;; Keywords: mail searching namazu
7
8 ;; This file is a part of Semi-Gnus.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; if not, you can either send email to this
22 ;; program's maintainer or write to: The Free Software Foundation,
23 ;; Inc.; 59 Temple Place, Suite 330; Boston, MA 02111-1307, USA.
24
25
26 ;;; Commentary:
27
28 ;; This file defines the command to search mails and persistent
29 ;; articles with Namazu and to browse its results with Gnus.
30 ;;
31 ;; Namazu is a full-text search engine intended for easy use.  For
32 ;; more detail about Namazu, visit the following page:
33 ;;
34 ;;     http://namazu.org/
35
36
37 ;;; Quick Start:
38
39 ;; If this module has already been installed, only 3 steps are
40 ;; required to search articles with this module.
41 ;;
42 ;;   (1) Install Namazu.
43 ;;   (2) Start Gnus and type M-x gnus-namazu-create-index RET to make
44 ;;       index of articles.
45 ;;   (3) In group buffer or in summary buffer, type C-c C-n query RET.
46
47
48 ;;; Install:
49
50 ;; Before installing this module, you must install Namazu.
51 ;;
52 ;; This file is a part of T-gnus but is not *YET* a part of Gnus.
53 ;; When you would like to use this module in Gnus (not T-gnus), put
54 ;; this file into the lisp/ directory in the Gnus source tree and run
55 ;; `make install'.  And then, put the following expression into your
56 ;; ~/.gnus.
57 ;;
58 ;;      (require 'gnus-namazu)
59 ;;      (gnus-namazu-insinuate)
60 ;;
61 ;; In order to make index of articles with Namazu before using this
62 ;; module, type M-x gnus-namazu-create-index RET.  Otherwise, you can
63 ;; create index by yourself with the following commands:
64 ;;
65 ;;      % mkdir ~/News/namazu
66 ;;      % mknmz -a -h -O ~/News/namazu ~/Mail ~/News/cache
67 ;;
68 ;; The first command makes the directory for index files, and the
69 ;; second command generates index files of mails and persistent
70 ;; articles.
71 ;;
72 ;; In order to update indices for incoming articles, this module
73 ;; automatically runs mknmz, the indexer of Namazu, at an interval of
74 ;; 3 days; this period is set to `gnus-namazu-index-update-interval'.
75 ;;
76 ;; Indices will be updated when `gnus-namazu-search' is called.  If
77 ;; you want to update indices everywhen Gnus is started, you can put
78 ;; the following expression to your ~/.gnus.
79 ;;
80 ;;      (add-hook 'gnus-startup-hook 'gnus-namazu-update-all-indices)
81 ;;
82 ;; In order to control mknmz closely, disable the automatic updating
83 ;; feature and run mknmz by yourself.  In this case, set nil to the
84 ;; above option.
85 ;;
86 ;;      (setq gnus-namazu-index-update-interval nil)
87 ;;
88 ;; When your index is put into the directory other than the default
89 ;; one (~/News/namazu), it is necessary to set its place to
90 ;; `gnus-namazu-index-directories' as follows:
91 ;;
92 ;;      (setq gnus-namazu-index-directories
93 ;;            (list (expand-file-name "~/namazu")))
94
95
96 ;;; Code:
97
98 (eval-when-compile (require 'cl))
99 (require 'nnoo)
100 (require 'nnheader)
101 (require 'nnmail)
102 (require 'gnus-sum)
103
104 ;; It is required for Mule 2.3.  See the file Mule23@1934.en.
105 (eval-and-compile
106   (autoload 'regexp-opt "regexp-opt"))
107
108 ;; To suppress byte-compile warning.
109 (eval-when-compile
110   (defvar nnml-directory)
111   (defvar nnmh-directory))
112
113
114 (defgroup gnus-namazu nil
115   "Search nnmh and nnml groups in Gnus with Namazu."
116   :group 'namazu
117   :group 'gnus
118   :prefix "gnus-namazu-")
119
120 (defconst gnus-namazu-default-index-directory
121   (expand-file-name "namazu" gnus-directory)
122   "Default place of Namazu index files.")
123
124 (defcustom gnus-namazu-index-directories
125   (list
126    (or (and (boundp 'gnus-namazu-index-directory)
127             (symbol-value 'gnus-namazu-index-directory))
128        (and (boundp 'nnir-namazu-index-directory)
129             (symbol-value 'nnir-namazu-index-directory))
130        gnus-namazu-default-index-directory))
131   "*Places of Namazu index files."
132   :type '(repeat directory)
133   :group 'gnus-namazu)
134
135 (defcustom gnus-namazu-command
136   (or (and (boundp 'namazu-command)
137            (symbol-value 'namazu-command))
138       (and (boundp 'nnir-namazu-program)
139            (symbol-value 'nnir-namazu-program))
140       "namazu")
141   "*Name of the executable file of Namazu."
142   :type 'string
143   :group 'gnus-namazu)
144
145 (defcustom gnus-namazu-additional-arguments nil
146   "*Additional arguments of Namazu.
147 The options `-q', `-a', and `-l' are always used, very few other
148 options make any sense in this context."
149   :type '(repeat string)
150   :group 'gnus-namazu)
151
152 (defcustom gnus-namazu-index-update-interval
153   259200                                ; 3 days == 259200 seconds.
154   "*Number of seconds between running the indexer of Namazu."
155   :type '(choice (const :tag "Never run the indexer" nil)
156                  (integer :tag "Number of seconds"))
157   :group 'gnus-namazu)
158
159 (defcustom gnus-namazu-make-index-command "mknmz"
160   "*Name of the executable file of the indexer of Namazu."
161   :type 'string
162   :group 'gnus-namazu)
163
164 (defcustom gnus-namazu-make-index-arguments
165   (nconc
166    (list "--all" "--mailnews" "--deny=^.*[^0-9].*$")
167    (when (or (and (boundp 'current-language-environment)
168                   (string= "Japanese"
169                            (symbol-value 'current-language-environment)))
170              (boundp 'MULE))
171      (list "--indexing-lang=ja")))
172   "*Arguments of the indexer of Namazu."
173   :type '(repeat string)
174   :group 'gnus-namazu)
175
176 (defcustom gnus-namazu-field-keywords
177   '("date" "from" "newsgroups" "size" "subject" "summary" "to" "uri")
178   "*List of keywords to do field-search."
179   :type '(repeat string)
180   :group 'gnus-namazu)
181
182 (defcustom gnus-namazu-coding-system
183   (if (memq system-type '(windows-nt OS/2 emx))
184       (if (boundp 'MULE) '*sjis* 'shift_jis)
185     (if (boundp 'MULE) '*euc-japan* 'euc-japan))
186   "*Coding system for Namazu process."
187   :type 'coding-system
188   :group 'gnus-namazu)
189
190 (defcustom gnus-namazu-need-path-normalization
191   (and (memq system-type '(windows-nt OS/2 emx)) t)
192   "*Non-nil means that outputs of namazu may contain drive letters."
193   :type 'boolean
194   :group 'gnus-namazu)
195
196 (defcustom gnus-namazu-case-sensitive-filesystem
197   (not (eq system-type 'windows-nt))
198   "*Non-nil means that the using file system distinguishes cases of characters."
199   :type 'boolean
200   :group 'gnus-namazu)
201
202 (defcustom gnus-namazu-query-highlight t
203   "Non-nil means that queried words is highlighted."
204   :type 'boolean
205   :group 'gnus-namazu)
206
207 (defface gnus-namazu-query-highlight-face
208   '((((type tty pc) (class color))
209      (:background "magenta4" :foreground "cyan1"))
210     (((class color) (background light))
211      (:background "magenta4" :foreground "lightskyblue1"))
212     (((class color) (background dark))
213      (:background "palevioletred2" :foreground "brown4"))
214     (t (:inverse-video t)))
215   "Face used for namazu query matching words."
216   :group 'gnus-namazu)
217
218 ;;; Internal Variable:
219 (defconst gnus-namazu/group-name-regexp "\\`nnvirtual:namazu-search\\?")
220
221 ;; Multibyte group name:
222 (and
223  (fboundp 'gnus-group-decoded-name)
224  (let ((gnus-group-name-charset-group-alist
225         (list (cons gnus-namazu/group-name-regexp gnus-namazu-coding-system)))
226        (query (decode-coding-string
227                (string 27 36 66 52 65 59 122 27 40 66)
228                (if (boundp 'MULE) '*iso-2022-jp* 'iso-2022-7bit))))
229    (not (string-match query
230                       (gnus-summary-buffer-name
231                        (encode-coding-string
232                         (concat "nnvirtual:namazu-search?query=" query)
233                         gnus-namazu-coding-system)))))
234  (let (current-load-list)
235    (defadvice gnus-summary-buffer-name
236      (before gnus-namazu-summary-buffer-name activate compile)
237      "Advised by `gnus-namazu' to handle encoded group names."
238      (ad-set-arg 0 (gnus-group-decoded-name (ad-get-arg 0))))))
239
240 (defmacro gnus-namazu/make-article (group number)
241   `(cons ,group ,number))
242 (defmacro gnus-namazu/article-group  (x) `(car ,x))
243 (defmacro gnus-namazu/article-number (x) `(cdr ,x))
244
245 (defsubst gnus-namazu/indexed-servers ()
246   "Choice appropriate servers from opened ones, and return thier list."
247   (append
248    (gnus-servers-using-backend 'nnml)
249    (gnus-servers-using-backend 'nnmh)))
250
251 (defsubst gnus-namazu/default-index-directory ()
252   (if (member gnus-namazu-default-index-directory
253               gnus-namazu-index-directories)
254       gnus-namazu-default-index-directory
255     (car gnus-namazu-index-directories)))
256
257 (defun gnus-namazu/setup ()
258   (and (boundp 'gnus-group-name-charset-group-alist)
259        (not (member (cons gnus-namazu/group-name-regexp
260                           gnus-namazu-coding-system)
261                     gnus-group-name-charset-group-alist))
262        (let ((pair (assoc gnus-namazu/group-name-regexp
263                           gnus-group-name-charset-group-alist)))
264          (if pair
265              (setcdr pair gnus-namazu-coding-system)
266            (push (cons gnus-namazu/group-name-regexp
267                        gnus-namazu-coding-system)
268                  gnus-group-name-charset-group-alist))))
269   (gnus-namazu-update-all-indices))
270
271 (defun gnus-namazu/server-directory (server)
272   "Return the top directory of the server SERVER."
273   (and (memq (car server) '(nnml nnmh))
274        (nnoo-change-server (car server) (nth 1 server) (nthcdr 2 server))
275        (file-name-as-directory
276         (expand-file-name (if (eq 'nnml (car server))
277                               nnml-directory
278                             nnmh-directory)))))
279
280 ;;; Functions to call Namazu.
281 (defsubst gnus-namazu/normalize-results ()
282   "Normalize file names returned by Namazu in this current buffer."
283   (goto-char (point-min))
284   (while (not (eobp))
285     (when (looking-at "file://")
286       (delete-region (point) (match-end 0)))
287     (when (if gnus-namazu-need-path-normalization
288               (or (not (looking-at "/\\(.\\)|/"))
289                   (replace-match "\\1:/"))
290             (eq ?~ (char-after (point))))
291       (insert (expand-file-name
292                (buffer-substring (gnus-point-at-bol) (gnus-point-at-eol))))
293       (delete-region (point) (gnus-point-at-eol)))
294     (forward-line 1)))
295
296 (defsubst gnus-namazu/call-namazu (query)
297   (let ((coding-system-for-read gnus-namazu-coding-system)
298         (coding-system-for-write gnus-namazu-coding-system)
299         (input-coding-system gnus-namazu-coding-system)
300         (output-coding-system gnus-namazu-coding-system)
301         (default-process-coding-system
302           (cons gnus-namazu-coding-system gnus-namazu-coding-system))
303         program-coding-system-alist
304         (file-name-coding-system gnus-namazu-coding-system)
305         (pathname-coding-system gnus-namazu-coding-system))
306     (apply 'call-process
307            `(,gnus-namazu-command
308              nil                        ; input from /dev/null
309              t                          ; output
310              nil                        ; don't redisplay
311              "-q"                       ; don't be verbose
312              "-a"                       ; show all matches
313              "-l"                       ; use list format
314              ,@gnus-namazu-additional-arguments
315              ,query
316              ,@gnus-namazu-index-directories))))
317
318 (defsubst gnus-namazu/group-prefixed-name (group method)
319   "Return the whole name from GROUP and METHOD."
320   (if gnus-namazu-case-sensitive-filesystem
321       (gnus-group-prefixed-name group method)
322     (let* ((orig (gnus-group-prefixed-name group method))
323            (name (downcase orig)))
324       (catch 'found-group
325         (mapatoms (lambda (sym)
326                     (when (string= name (downcase (symbol-name sym)))
327                       (throw 'found-group (symbol-name sym))))
328                   gnus-newsrc-hashtb)
329         orig))))
330
331 (defun gnus-namazu/real-group-name (cond str)
332   "Generate the real group name from the partial path, STR."
333   (if cond
334       str
335     (catch 'found-group
336       (dolist (group (gnus-namazu/possible-real-groups
337                       (nnheader-replace-chars-in-string str ?/ ?.)))
338         (when (gnus-gethash group gnus-newsrc-hashtb)
339           (throw 'found-group group))))))
340
341 (defun gnus-namazu/possible-real-groups (str)
342   "Regard the string STR as the partial path of the cached article and
343 generate possible group names from it."
344   (if (string-match "_\\(_\\(_\\)?\\)?" str)
345       (let ((prefix (substring str 0 (match-beginning 0)))
346             (suffix (substring str (match-end 0))))
347         (cond
348          ((match-beginning 2) ;; The number of discoverd underscores = 3
349           (nconc
350            (gnus-namazu/possible-real-groups (concat prefix "/__" suffix))
351            (gnus-namazu/possible-real-groups (concat prefix ".._" suffix))))
352          ((match-beginning 1) ;; The number of discoverd underscores = 2
353           (nconc
354            (gnus-namazu/possible-real-groups (concat prefix "//" suffix))
355            (gnus-namazu/possible-real-groups (concat prefix ".." suffix))))
356          (t ;; The number of discoverd underscores = 1
357           (gnus-namazu/possible-real-groups (concat prefix "/" suffix)))))
358     (if (string-match "\\." str)
359         ;; Handle the first occurence of period.
360         (list (concat (substring str 0 (match-beginning 0))
361                       ":"
362                       (substring str (match-end 0)))
363               str)
364       (list str))))
365
366 (defun gnus-namazu/search (groups query)
367   (with-temp-buffer
368     (let ((exit-status (gnus-namazu/call-namazu query)))
369       (unless (zerop exit-status)
370         (error "Namazu finished abnormally: %d" exit-status))
371       (let* ((articles)
372              (server-alist
373               (delq nil
374                     (let (dir)
375                       (mapcar
376                        (lambda (s)
377                          (when (setq dir (gnus-namazu/server-directory s))
378                            (cons (file-name-as-directory dir) s)))
379                        (gnus-namazu/indexed-servers)))))
380              (topdir-regexp (regexp-opt (mapcar 'car server-alist)))
381              (cache-regexp (concat
382                             (regexp-quote
383                              (file-name-as-directory
384                               (expand-file-name gnus-cache-directory)))
385                             "\\(.*\\)/\\([0-9]+\\)$"))
386              (agent-regexp (concat
387                             (regexp-quote
388                              (file-name-as-directory
389                               (expand-file-name gnus-agent-directory)))
390                             "\\(.*\\)/\\([0-9]+\\)$")))
391         (gnus-namazu/normalize-results)
392         (goto-char (point-min))
393         (while (not (eobp))
394           (let (server group file)
395             (and (or
396                   ;; Check the discoverd file is the persistent article.
397                   (and (looking-at cache-regexp)
398                        (setq file (match-string-no-properties 2)
399                              group (gnus-namazu/real-group-name
400                                     (gnus-use-long-file-name 'not-cache)
401                                     (match-string-no-properties 1))))
402                   ;; Check the discoverd file is covered by the agent.
403                   (and (looking-at agent-regexp)
404                        (setq file (match-string-no-properties 2)
405                              group (gnus-namazu/real-group-name
406                                     nnmail-use-long-file-names
407                                     (match-string-no-properties 1))))
408                   ;; Check the discovered file is managed by Gnus servers.
409                   (and (looking-at topdir-regexp)
410                        (setq file (buffer-substring-no-properties
411                                    (match-end 0) (gnus-point-at-eol))
412                              server (cdr (assoc (match-string-no-properties 0)
413                                                 server-alist)))
414                        ;; Check validity of the file name.
415                        (string-match "/\\([0-9]+\\)\\'" file)
416                        (progn
417                          (setq group (substring file 0 (match-beginning 0))
418                                file (match-string 1 file))
419                          (setq group
420                                (gnus-namazu/group-prefixed-name
421                                 (if nnmail-use-long-file-names
422                                     group
423                                   (nnheader-replace-chars-in-string group
424                                                                     ?/ ?.))
425                                 server)))))
426                  (or (not groups)
427                      (member group groups))
428                  (push (gnus-namazu/make-article group (string-to-number file))
429                        articles)))
430           (forward-line 1))
431         (nreverse articles)))))
432
433
434 ;;; User Interface:
435 (defun gnus-namazu/get-target-groups ()
436   (cond
437    ((eq major-mode 'gnus-group-mode)
438     ;; In Group buffer.
439     (cond
440      (current-prefix-arg
441       (gnus-group-process-prefix current-prefix-arg))
442      (gnus-group-marked
443       (prog1 gnus-group-marked (gnus-group-unmark-all-groups)))))
444    ((eq major-mode 'gnus-summary-mode)
445     ;; In Summary buffer.
446     (if current-prefix-arg
447         (list (gnus-read-group "Group: "))
448       (if (and
449            (gnus-ephemeral-group-p gnus-newsgroup-name)
450            (string-match gnus-namazu/group-name-regexp gnus-newsgroup-name))
451           (cadr (assq 'gnus-namazu-target-groups
452                       (gnus-info-method (gnus-get-info gnus-newsgroup-name))))
453         (list gnus-newsgroup-name))))))
454
455 (defun gnus-namazu/get-current-query ()
456   (and (eq major-mode 'gnus-summary-mode)
457        (gnus-ephemeral-group-p gnus-newsgroup-name)
458        (string-match gnus-namazu/group-name-regexp gnus-newsgroup-name)
459        (cadr (assq 'gnus-namazu-current-query
460                    (gnus-info-method (gnus-get-info gnus-newsgroup-name))))))
461
462 (defvar gnus-namazu/read-query-original-buffer nil)
463 (defvar gnus-namazu/read-query-prompt nil)
464 (defvar gnus-namazu/read-query-history nil)
465
466 (defun gnus-namazu/get-current-subject ()
467   (and gnus-namazu/read-query-original-buffer
468        (bufferp gnus-namazu/read-query-original-buffer)
469        (with-current-buffer gnus-namazu/read-query-original-buffer
470          (when (eq major-mode 'gnus-summary-mode)
471            (let ((s (gnus-summary-article-subject)))
472              ;; Remove typically prefixes of mailing lists.
473              (when (string-match
474                     "^\\(\\[[^]]*[0-9]+\\]\\|([^)]*[0-9]+)\\)\\s-*" s)
475                (setq s (substring s (match-end 0))))
476              (when (string-match
477                     "^\\(Re\\(\\^?\\([0-9]+\\|\\[[0-9]+\\]\\)\\)?:\\s-*\\)+" s)
478                (setq s (substring s (match-end 0))))
479              (when (string-match "\\s-*(\\(re\\|was\\)\\b" s)
480                (setq s (substring s 0 (match-beginning 0))))
481              s)))))
482
483 (defun gnus-namazu/get-current-from ()
484   (and gnus-namazu/read-query-original-buffer
485        (bufferp gnus-namazu/read-query-original-buffer)
486        (with-current-buffer gnus-namazu/read-query-original-buffer
487          (when (eq major-mode 'gnus-summary-mode)
488            (cadr (mail-extract-address-components
489                   (mail-header-from
490                    (gnus-summary-article-header))))))))
491
492 (defun gnus-namazu/get-current-to ()
493   (and gnus-namazu/read-query-original-buffer
494        (bufferp gnus-namazu/read-query-original-buffer)
495        (with-current-buffer gnus-namazu/read-query-original-buffer
496          (when (eq major-mode 'gnus-summary-mode)
497            (cadr (mail-extract-address-components
498                   (cdr (assq 'To (mail-header-extra
499                                   (gnus-summary-article-header))))))))))
500
501 (defmacro gnus-namazu/minibuffer-prompt-end ()
502   (if (fboundp 'minibuffer-prompt-end)
503       '(minibuffer-prompt-end)
504     '(point-min)))
505
506 (defun gnus-namazu/message (string &rest arguments)
507   (let* ((s1 (concat
508               gnus-namazu/read-query-prompt
509               (buffer-substring (gnus-namazu/minibuffer-prompt-end)
510                                 (point-max))))
511          (s2 (apply (function format) string arguments))
512          (w (- (window-width)
513                (string-width s1)
514                (string-width s2)
515                1)))
516     (message (if (>= w 0)
517                  (concat s1 (make-string w ?\ ) s2)
518                s2))
519     (if (sit-for 0.3) (message s1))
520     s2))
521
522 (defun gnus-namazu/complete-query ()
523   (interactive)
524   (let ((pos (point)))
525     (cond
526      ((and (re-search-backward "\\+\\([-a-z]*\\)" nil t)
527            (= pos (match-end 0)))
528       (let* ((partial (match-string 1))
529              (completions
530               (all-completions
531                partial
532                (mapcar 'list gnus-namazu-field-keywords))))
533         (cond
534          ((null completions)
535           (gnus-namazu/message "No completions of %s" partial))
536          ((= 1 (length completions))
537           (goto-char (match-beginning 1))
538           (delete-region (match-beginning 1) (match-end 1))
539           (insert (car completions) ":")
540           (setq pos (point))
541           (gnus-namazu/message "Completed"))
542          (t
543           (let ((x (try-completion partial (mapcar 'list completions))))
544             (if (string= x partial)
545                 (if (and (eq last-command
546                              'gnus-namazu/field-keyword-completion)
547                          completion-auto-help)
548                     (with-output-to-temp-buffer "*Completions*"
549                       (display-completion-list completions))
550                   (gnus-namazu/message "Sole completion"))
551               (goto-char (match-beginning 1))
552               (delete-region (match-beginning 1) (match-end 1))
553               (insert x)
554               (setq pos (point))))))))
555      ((and (looking-at "\\+subject:")
556            (= pos (match-end 0)))
557       (let ((s (gnus-namazu/get-current-subject)))
558         (when s
559           (goto-char pos)
560           (insert "\"" s "\"")
561           (setq pos (point)))))
562      ((and (looking-at "\\+from:")
563            (= pos (match-end 0)))
564       (let ((f (gnus-namazu/get-current-from)))
565         (when f
566           (goto-char pos)
567           (insert "\"" f "\"")
568           (setq pos (point)))))
569      ((and (looking-at "\\+to:")
570            (= pos (match-end 0)))
571       (let ((to (gnus-namazu/get-current-to)))
572         (when to
573           (goto-char pos)
574           (insert "\"" to "\"")
575           (setq pos (point))))))
576     (goto-char pos)))
577
578 (defvar gnus-namazu/read-query-map
579   (let ((keymap (copy-keymap minibuffer-local-map)))
580     (define-key keymap "\t" 'gnus-namazu/complete-query)
581     keymap))
582
583 (defun gnus-namazu/read-query (prompt &optional initial)
584   (let ((gnus-namazu/read-query-original-buffer (current-buffer))
585         (gnus-namazu/read-query-prompt prompt))
586     (unless initial
587       (when (setq initial (gnus-namazu/get-current-query))
588         (setq initial (cons initial 0))))
589     (read-from-minibuffer prompt initial gnus-namazu/read-query-map nil
590                           'gnus-namazu/read-query-history)))
591
592 (defun gnus-namazu/highlight-words (query)
593   (with-temp-buffer
594     (insert " " query)
595     ;; Remove tokens for NOT search
596     (goto-char (point-min))
597     (while (re-search-forward "[\e$B!!\e(B \t\r\f\n]+not[\e$B!!\e(B \t\r\f\n]+\
598 \\([^\e$B!!\e(B \t\r\f\n\"{(/]+\\|\"[^\"]+\"\\|{[^}]+}\\|([^)]+)\\|/[^/]+/\\)+" nil t)
599       (delete-region (match-beginning 0) (match-end 0)))
600     ;; Remove tokens for Field search
601     (goto-char (point-min))
602     (while (re-search-forward "[\e$B!!\e(B \t\r\f\n]+\\+[^\e$B!!\e(B \t\r\f\n:]+:\
603 \\([^\e$B!!\e(B \t\r\f\n\"{(/]+\\|\"[^\"]+\"\\|{[^}]+}\\|([^)]+)\\|/[^/]+/\\)+" nil t)
604       (delete-region (match-beginning 0) (match-end 0)))
605     ;; Remove tokens for Regexp search
606     (goto-char (point-min))
607     (while (re-search-forward "/[^/]+/" nil t)
608       (delete-region (match-beginning 0) (match-end 0)))
609     ;; Remove brackets, double quote, asterisk and operators
610     (goto-char (point-min))
611     (while (re-search-forward "\\([(){}\"*]\\|\\b\\(and\\|or\\)\\b\\)" nil t)
612       (delete-region (match-beginning 0) (match-end 0)))
613     ;; Collect all keywords
614     (setq query nil)
615     (goto-char (point-min))
616     (while (re-search-forward "[^\e$B!!\e(B \t\r\f\n]+" nil t)
617       (push (match-string 0) query))
618     (when query
619       (let (en ja)
620         (dolist (q query)
621           (if (string-match "\\cj" q)
622               (push q ja)
623             (push q en)))
624         (append
625          (when en
626            (list (list (concat "\\b\\(" (regexp-opt en) "\\)\\b")
627                        0 0 'gnus-namazu-query-highlight-face)))
628          (when ja
629            (list (list (regexp-opt ja)
630                        0 0 'gnus-namazu-query-highlight-face))))))))
631
632 (defun gnus-namazu/truncate-article-list (articles)
633   (let ((hit (length articles)))
634     (when (and gnus-large-newsgroup
635                (> hit gnus-large-newsgroup))
636       (let* ((cursor-in-echo-area nil)
637              (input (read-from-minibuffer
638                      (format "\
639 Too many articles were retrieved.  How many articles (max %d): "
640                              hit)
641                      (cons (number-to-string gnus-large-newsgroup) 0))))
642         (unless (string-match "\\`[ \t]*\\'" input)
643           (setcdr (nthcdr (min (1- (string-to-number input)) hit) articles)
644                   nil)))))
645   articles)
646
647 ;;;###autoload
648 (defun gnus-namazu-search (groups query)
649   "Search QUERY through GROUPS with Namazu,
650 and make a virtual group contains its results."
651   (interactive
652    (list
653     (gnus-namazu/get-target-groups)
654     (gnus-namazu/read-query "Enter query: ")))
655   (gnus-namazu/setup)
656   (let ((articles (gnus-namazu/search groups query)))
657     (if articles
658         (let ((real-groups groups)
659               (vgroup
660                (apply (function format)
661                       "nnvirtual:namazu-search?query=%s&groups=%s&id=%d%d%d"
662                       query
663                       (if groups (mapconcat 'identity groups ",") "ALL")
664                       (current-time))))
665           (gnus-namazu/truncate-article-list articles)
666           (unless real-groups
667             (dolist (a articles)
668               (add-to-list 'real-groups (gnus-namazu/article-group a))))
669           ;; Generate virtual group which includes all results.
670           (when (fboundp 'gnus-group-decoded-name)
671             (setq vgroup
672                   (encode-coding-string vgroup gnus-namazu-coding-system)))
673           (setq vgroup
674                 (gnus-group-read-ephemeral-group
675                  vgroup
676                  `(nnvirtual ,vgroup
677                              (nnvirtual-component-groups ,real-groups)
678                              (gnus-namazu-target-groups ,groups)
679                              (gnus-namazu-current-query ,query))
680                  t (cons (current-buffer) (current-window-configuration)) t))
681           (when gnus-namazu-query-highlight
682             (gnus-group-set-parameter vgroup 'highlight-words
683                                       (gnus-namazu/highlight-words query)))
684           ;; Generate new summary buffer which contains search results.
685           (gnus-group-read-group
686            t t vgroup
687            (sort (delq nil ;; Ad-hoc fix, to avoid wrong-type-argument error.
688                        (mapcar
689                         (lambda (a)
690                           (nnvirtual-reverse-map-article
691                            (gnus-namazu/article-group a)
692                            (gnus-namazu/article-number a)))
693                         articles))
694                  '<)))
695       (message "No entry."))))
696
697 (defmacro gnus-namazu/lock-file-name (&optional directory)
698   `(expand-file-name "NMZ.lock2" ,directory))
699
700 (defmacro gnus-namazu/status-file-name (&optional directory)
701   `(expand-file-name "NMZ.status" ,directory))
702
703 (defmacro gnus-namazu/index-file-name (&optional directory)
704   `(expand-file-name "NMZ.i" ,directory))
705
706 (defun gnus-namazu/mknmz-cleanup (directory)
707   (let ((lockfile (gnus-namazu/lock-file-name directory)))
708     (when (file-exists-p lockfile)
709       (delete-file lockfile)
710       (dolist (tmpfile (directory-files directory t "\\`NMZ\\..*\\.tmp\\'" t))
711         (delete-file tmpfile)))))
712
713 ;;;###autoload
714 (defun gnus-namazu-create-index (directory &optional target-directories force)
715   "Create index under DIRECTORY."
716   (interactive
717    (list
718     (if (and current-prefix-arg (> (length gnus-namazu-index-directories) 1))
719         (completing-read "Directory: "
720                          (mapcar 'list gnus-namazu-index-directories) nil t)
721       (gnus-namazu/default-index-directory))
722     nil t))
723   (setq directory (file-name-as-directory (expand-file-name directory)))
724   (unless target-directories
725     (setq target-directories
726           (delq nil
727                 (mapcar (lambda (dir)
728                           (when (file-directory-p dir) dir))
729                         (append
730                          (mapcar 'gnus-namazu/server-directory
731                                  (gnus-namazu/indexed-servers))
732                          (list
733                           (expand-file-name gnus-cache-directory)
734                           (expand-file-name gnus-agent-directory)))))))
735   (if (file-exists-p (gnus-namazu/lock-file-name directory))
736       (when force
737         (error "Found lock file: %s" (gnus-namazu/lock-file-name directory)))
738     (with-current-buffer
739         (get-buffer-create (concat " *mknmz*" directory))
740       (erase-buffer)
741       (unless (file-directory-p directory)
742         (make-directory directory t))
743       (setq default-directory directory)
744       (let ((args (append gnus-namazu-make-index-arguments
745                           target-directories)))
746         (insert "% " gnus-namazu-make-index-command " "
747                 (mapconcat 'identity args " ") "\n")
748         (goto-char (point-max))
749         (when force
750           (pop-to-buffer (current-buffer)))
751         (message "Make index at %s..." directory)
752         (unwind-protect
753             (apply 'call-process gnus-namazu-make-index-command nil t t args)
754           (gnus-namazu/mknmz-cleanup directory))
755         (message "Make index at %s...done" directory)
756         (unless force
757           (kill-buffer (current-buffer)))))))
758
759 (defun gnus-namazu/lapse-seconds (start end)
760   "Return lapse seconds from START to END.
761 START and END are lists which represent time in Emacs-style."
762   (+ (* (- (car end) (car start)) 65536)
763      (cadr end)
764      (- (cadr start))))
765
766 (defun gnus-namazu/index-old-p (directory)
767   "Return non-nil value when the index under the DIRECTORY is older
768 than the period that is set to `gnus-namazu-index-update-interval'"
769   (let ((file (gnus-namazu/index-file-name directory)))
770     (or (not (file-exists-p file))
771         (and (integerp gnus-namazu-index-update-interval)
772              (>= (gnus-namazu/lapse-seconds
773                   (nth 5 (file-attributes file))
774                   (current-time))
775                  gnus-namazu-index-update-interval)))))
776
777 (defvar gnus-namazu/update-directories nil)
778 (defvar gnus-namazu/update-process nil)
779
780 (defun gnus-namazu/update-p (directory &optional force)
781   "Return the DIRECTORY when the index undef the DIRECTORY should be updated."
782   (setq directory (file-name-as-directory (expand-file-name directory)))
783   (labels ((error-message (format &rest args)
784                           (apply (if force 'error 'message) format args)
785                           nil))
786     (if gnus-namazu/update-process
787         (error-message "%s" "Can not run two update processes simultaneously")
788       (and (or force
789                (gnus-namazu/index-old-p directory))
790            (let ((status-file (gnus-namazu/status-file-name directory)))
791              (or (file-exists-p status-file)
792                  (error-message "Can not find status file: %s" status-file)))
793            (let ((lock-file (gnus-namazu/lock-file-name directory)))
794              (or (not (file-exists-p lock-file))
795                  (error-message "Found lock file: %s" lock-file)))
796            directory))))
797
798 ;;;###autoload
799 (defun gnus-namazu-update-index (directory &optional force)
800   "Update the index under the DIRECTORY."
801   (interactive
802    (list
803     (if (and current-prefix-arg (> (length gnus-namazu-index-directories) 1))
804         (completing-read "Directory: "
805                          (mapcar 'list gnus-namazu-index-directories) nil t)
806       (gnus-namazu/default-index-directory))
807     t))
808   (when (setq directory (gnus-namazu/update-p directory force))
809     (with-current-buffer (get-buffer-create (concat " *mknmz*" directory))
810       (buffer-disable-undo)
811       (erase-buffer)
812       (unless (file-directory-p directory)
813         (make-directory directory t))
814       (setq default-directory directory)
815       (let ((proc (start-process gnus-namazu-make-index-command
816                                  (current-buffer)
817                                  gnus-namazu-make-index-command
818                                  (format "--update=%s" directory))))
819         (if (processp proc)
820             (prog1 (setq gnus-namazu/update-process proc)
821               (process-kill-without-query proc)
822               (set-process-sentinel proc 'gnus-namazu/update-sentinel)
823               (add-hook 'kill-emacs-hook 'gnus-namazu-stop-update)
824               (message "Update index at %s..." directory))
825           (goto-char (point-min))
826           (if (re-search-forward "^ERROR:.*$" nil t)
827               (progn
828                 (pop-to-buffer (current-buffer))
829                 (funcall (if force 'error 'message)
830                          "Update index at %s...%s" directory (match-string 0)))
831             (kill-buffer (current-buffer))
832             (funcall (if force 'error 'message)
833                      "Can not start %s" gnus-namazu-make-index-command))
834           nil)))))
835
836 ;;;###autoload
837 (defun gnus-namazu-update-all-indices (&optional directories force)
838   "Update all indices which is set to `gnus-namazu-index-directories'."
839   (interactive (list nil t))
840   (when (setq directories
841               (delq nil (mapcar
842                          (lambda (d) (gnus-namazu/update-p d force))
843                          (or directories gnus-namazu-index-directories))))
844     (setq gnus-namazu/update-directories (cdr directories))
845     (gnus-namazu-update-index (car directories))))
846
847 (defun gnus-namazu/update-sentinel (process event)
848   (let ((buffer (process-buffer process)))
849     (when (buffer-name buffer)
850       (with-current-buffer buffer
851         (gnus-namazu/mknmz-cleanup default-directory)
852         (goto-char (point-min))
853         (cond
854          ((re-search-forward "^ERROR:.*$" nil t)
855           (pop-to-buffer (current-buffer))
856           (message "Update index at %s...%s"
857                    default-directory (match-string 0))
858           (setq gnus-namazu/update-directories nil))
859          ((and (eq 'exit (process-status process))
860                (zerop (process-exit-status process)))
861           (message "Update index at %s...done" default-directory)
862           (unless (or debug-on-error debug-on-quit)
863             (kill-buffer buffer)))))))
864   (setq gnus-namazu/update-process nil)
865   (when gnus-namazu/update-directories
866     (gnus-namazu-update-all-indices gnus-namazu/update-directories)))
867
868 ;;;###autoload
869 (defun gnus-namazu-stop-update ()
870   "Stop the running indexer of Namazu."
871   (interactive)
872   (setq gnus-namazu/update-directories nil)
873   (and gnus-namazu/update-process
874        (processp gnus-namazu/update-process)
875        (kill-process gnus-namazu/update-process)))
876
877 (let (current-load-list)
878   (defadvice gnus-offer-save-summaries
879     (before gnus-namazu-kill-summary-buffers activate compile)
880     "Advised by `gnus-namazu'.
881 In order to avoid annoying questions, kill summary buffers which
882 generated by `gnus-namazu' itself before `gnus-offer-save-summaries'
883 is called."
884     (let ((buffers (buffer-list)))
885       (while buffers
886         (when (with-current-buffer (car buffers)
887                 (and (eq major-mode 'gnus-summary-mode)
888                      (gnus-ephemeral-group-p gnus-newsgroup-name)
889                      (string-match gnus-namazu/group-name-regexp
890                                    gnus-newsgroup-name)))
891           (kill-buffer (car buffers)))
892         (setq buffers (cdr buffers))))))
893
894 ;;;###autoload
895 (defun gnus-namazu-insinuate ()
896   (add-hook
897    'gnus-group-mode-hook
898    (lambda ()
899      (define-key gnus-group-mode-map "\C-c\C-n" 'gnus-namazu-search)))
900   (add-hook
901    'gnus-summary-mode-hook
902    (lambda ()
903      (define-key gnus-summary-mode-map "\C-c\C-n" 'gnus-namazu-search))))
904
905 (provide 'gnus-namazu)
906
907 ;; gnus-namazu.el ends here.