* lisp/xwidget.el (xwidget-query-on-exit-flag): Declare.
[emacs.git] / lisp / gnus / nnir.el
blob560ba8ad2e5e9a12fb1d566ee7f795865966340b
1 ;;; nnir.el --- search mail with various search engines -*- coding: utf-8 -*-
3 ;; Copyright (C) 1998-2016 Free Software Foundation, Inc.
5 ;; Author: Kai Großjohann <grossjohann@ls6.cs.uni-dortmund.de>
6 ;; Swish-e and Swish++ backends by:
7 ;; Christoph Conrad <christoph.conrad@gmx.de>.
8 ;; IMAP backend by: Simon Josefsson <jas@pdc.kth.se>.
9 ;; IMAP search by: Torsten Hilbrich <torsten.hilbrich <at> gmx.net>
10 ;; IMAP search improved by Daniel Pittman <daniel@rimspace.net>.
11 ;; nnmaildir support for Swish++ and Namazu backends by:
12 ;; Justus Piater <Justus <at> Piater.name>
13 ;; Keywords: news mail searching ir
15 ;; This file is part of GNU Emacs.
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;;; Commentary:
32 ;; What does it do? Well, it allows you to search your mail using
33 ;; some search engine (imap, namazu, swish-e, gmane and others -- see
34 ;; later) by typing `G G' in the Group buffer. You will then get a
35 ;; buffer which shows all articles matching the query, sorted by
36 ;; Retrieval Status Value (score).
38 ;; When looking at the retrieval result (in the Summary buffer) you
39 ;; can type `A W' (aka M-x gnus-warp-to-article RET) on an article. You
40 ;; will be warped into the group this article came from. Typing `A T'
41 ;; (aka M-x gnus-summary-refer-thread RET) will warp to the group and
42 ;; also show the thread this article is part of.
44 ;; The Lisp setup may involve setting a few variables and setting up the
45 ;; search engine. You can define the variables in the server definition
46 ;; like this :
47 ;; (setq gnus-secondary-select-methods '(
48 ;; (nnimap "" (nnimap-address "localhost")
49 ;; (nnir-search-engine namazu)
50 ;; )))
51 ;; The main variable to set is `nnir-search-engine'. Choose one of
52 ;; the engines listed in `nnir-engines'. (Actually `nnir-engines' is
53 ;; an alist, type `C-h v nnir-engines RET' for more information; this
54 ;; includes examples for setting `nnir-search-engine', too.)
56 ;; If you use one of the local indices (namazu, find-grep, swish) you
57 ;; must also set up a search engine backend.
59 ;; 1. Namazu
61 ;; The Namazu backend requires you to have one directory containing all
62 ;; index files, this is controlled by the `nnir-namazu-index-directory'
63 ;; variable. To function the `nnir-namazu-remove-prefix' variable must
64 ;; also be correct, see the documentation for `nnir-namazu-remove-prefix'
65 ;; above.
67 ;; It is particularly important not to pass any any switches to namazu
68 ;; that will change the output format. Good switches to use include
69 ;; `--sort', `--ascending', `--early' and `--late'. Refer to the Namazu
70 ;; documentation for further information on valid switches.
72 ;; To index my mail with the `mknmz' program I use the following
73 ;; configuration file:
75 ;; ,----
76 ;; | package conf; # Don't remove this line!
77 ;; |
78 ;; | # Paths which will not be indexed. Don't use `^' or `$' anchors.
79 ;; | $EXCLUDE_PATH = "spam|sent";
80 ;; |
81 ;; | # Header fields which should be searchable. case-insensitive
82 ;; | $REMAIN_HEADER = "from|date|message-id|subject";
83 ;; |
84 ;; | # Searchable fields. case-insensitive
85 ;; | $SEARCH_FIELD = "from|date|message-id|subject";
86 ;; |
87 ;; | # The max length of a word.
88 ;; | $WORD_LENG_MAX = 128;
89 ;; |
90 ;; | # The max length of a field.
91 ;; | $MAX_FIELD_LENGTH = 256;
92 ;; `----
94 ;; My mail is stored in the directories ~/Mail/mail/, ~/Mail/lists/ and
95 ;; ~/Mail/archive/, so to index them I go to the directory set in
96 ;; `nnir-namazu-index-directory' and issue the following command.
98 ;; mknmz --mailnews ~/Mail/archive/ ~/Mail/mail/ ~/Mail/lists/
100 ;; For maximum searching efficiency I have a cron job set to run this
101 ;; command every four hours.
103 ;; 2. find-grep
105 ;; The find-grep engine simply runs find(1) to locate eligible
106 ;; articles and searches them with grep(1). This, of course, is much
107 ;; slower than using a proper search engine but OTOH doesn't require
108 ;; maintenance of an index and is still faster than using any built-in
109 ;; means for searching. The method specification of the server to
110 ;; search must include a directory for this engine to work (E.g.,
111 ;; `nnml-directory'). The tools must be POSIX compliant. GNU Find
112 ;; prior to version 4.2.12 (4.2.26 on Linux due to incorrect ARG_MAX
113 ;; handling) does not work.
114 ;; ,----
115 ;; | ;; find-grep configuration for searching the Gnus Cache
116 ;; |
117 ;; | (nnml "cache"
118 ;; | (nnml-get-new-mail nil)
119 ;; | (nnir-search-engine find-grep)
120 ;; | (nnml-directory "~/News/cache/")
121 ;; | (nnml-active-file "~/News/cache/active"))
122 ;; `----
124 ;; Developer information:
126 ;; I have tried to make the code expandable. Basically, it is divided
127 ;; into two layers. The upper layer is somewhat like the `nnvirtual'
128 ;; backend: given a specification of what articles to show from
129 ;; another backend, it creates a group containing exactly those
130 ;; articles. The lower layer issues a query to a search engine and
131 ;; produces such a specification of what articles to show from the
132 ;; other backend.
134 ;; The interface between the two layers consists of the single
135 ;; function `nnir-run-query', which dispatches the search to the
136 ;; proper search function. The argument of `nnir-run-query' is an
137 ;; alist with two keys: 'nnir-query-spec and 'nnir-group-spec. The
138 ;; value for 'nnir-query-spec is an alist. The only required key/value
139 ;; pair is (query . "query") specifying the search string to pass to
140 ;; the query engine. Individual engines may have other elements. The
141 ;; value of 'nnir-group-spec is a list with the specification of the
142 ;; groups/servers to search. The format of the 'nnir-group-spec is
143 ;; (("server1" ("group11" "group12")) ("server2" ("group21"
144 ;; "group22"))). If any of the group lists is absent then all groups
145 ;; on that server are searched.
147 ;; The output of `nnir-run-query' is supposed to be a vector, each
148 ;; element of which should in turn be a three-element vector. The
149 ;; first element should be full group name of the article, the second
150 ;; element should be the article number, and the third element should
151 ;; be the Retrieval Status Value (RSV) as returned from the search
152 ;; engine. An RSV is the score assigned to the document by the search
153 ;; engine. For Boolean search engines, the RSV is always 1000 (or 1
154 ;; or 100, or whatever you like).
156 ;; The sorting order of the articles in the summary buffer created by
157 ;; nnir is based on the order of the articles in the above mentioned
158 ;; vector, so that's where you can do the sorting you'd like. Maybe
159 ;; it would be nice to have a way of displaying the search result
160 ;; sorted differently?
162 ;; So what do you need to do when you want to add another search
163 ;; engine? You write a function that executes the query. Temporary
164 ;; data from the search engine can be put in `nnir-tmp-buffer'. This
165 ;; function should return the list of articles as a vector, as
166 ;; described above. Then, you need to register this backend in
167 ;; `nnir-engines'. Then, users can choose the backend by setting
168 ;; `nnir-search-engine' as a server variable.
170 ;;; Code:
172 ;;; Setup:
174 (require 'nnoo)
175 (require 'gnus-group)
176 (require 'message)
177 (require 'gnus-util)
178 (eval-when-compile
179 (require 'cl))
181 ;;; Internal Variables:
183 (defvar nnir-memo-query nil
184 "Internal: stores current query.")
186 (defvar nnir-memo-server nil
187 "Internal: stores current server.")
189 (defvar nnir-artlist nil
190 "Internal: stores search result.")
192 (defvar nnir-search-history ()
193 "Internal: the history for querying search options in nnir")
195 (defconst nnir-tmp-buffer " *nnir*"
196 "Internal: temporary buffer.")
199 ;; Imap variables
201 (defvar nnir-imap-search-arguments
202 '(("whole message" . "TEXT")
203 ("subject" . "SUBJECT")
204 ("to" . "TO")
205 ("from" . "FROM")
206 ("body" . "BODY")
207 ("imap" . ""))
208 "Mapping from user readable keys to IMAP search items for use in nnir")
210 (defvar nnir-imap-search-other "HEADER %S"
211 "The IMAP search item to use for anything other than
212 `nnir-imap-search-arguments'. By default this is the name of an
213 email header field")
215 (defvar nnir-imap-search-argument-history ()
216 "The history for querying search options in nnir")
218 ;;; Helper macros
220 ;; Data type article list.
222 (defmacro nnir-artlist-length (artlist)
223 "Returns number of articles in artlist."
224 `(length ,artlist))
226 (defmacro nnir-artlist-article (artlist n)
227 "Returns from ARTLIST the Nth artitem (counting starting at 1)."
228 `(when (> ,n 0)
229 (elt ,artlist (1- ,n))))
231 (defmacro nnir-artitem-group (artitem)
232 "Returns the group from the ARTITEM."
233 `(elt ,artitem 0))
235 (defmacro nnir-artitem-number (artitem)
236 "Returns the number from the ARTITEM."
237 `(elt ,artitem 1))
239 (defmacro nnir-artitem-rsv (artitem)
240 "Returns the Retrieval Status Value (RSV, score) from the ARTITEM."
241 `(elt ,artitem 2))
243 (defmacro nnir-article-group (article)
244 "Returns the group for ARTICLE"
245 `(nnir-artitem-group (nnir-artlist-article nnir-artlist ,article)))
247 (defmacro nnir-article-number (article)
248 "Returns the number for ARTICLE"
249 `(nnir-artitem-number (nnir-artlist-article nnir-artlist ,article)))
251 (defmacro nnir-article-rsv (article)
252 "Returns the rsv for ARTICLE"
253 `(nnir-artitem-rsv (nnir-artlist-article nnir-artlist ,article)))
255 (defsubst nnir-article-ids (article)
256 "Returns the pair `(nnir id . real id)' of ARTICLE"
257 (cons article (nnir-article-number article)))
259 (defmacro nnir-categorize (sequence keyfunc &optional valuefunc)
260 "Sorts a sequence into categories and returns a list of the form
261 `((key1 (element11 element12)) (key2 (element21 element22))'.
262 The category key for a member of the sequence is obtained
263 as `(keyfunc member)' and the corresponding element is just
264 `member'. If `valuefunc' is non-nil, the element of the list
265 is `(valuefunc member)'."
266 `(unless (null ,sequence)
267 (let (value)
268 (mapc
269 (lambda (member)
270 (let ((y (,keyfunc member))
271 (x ,(if valuefunc
272 `(,valuefunc member)
273 'member)))
274 (if (assoc y value)
275 (push x (cadr (assoc y value)))
276 (push (list y (list x)) value))))
277 ,sequence)
278 value)))
280 ;;; Finish setup:
282 (require 'gnus-sum)
284 (nnoo-declare nnir)
285 (nnoo-define-basics nnir)
287 (gnus-declare-backend "nnir" 'mail 'virtual)
290 ;;; User Customizable Variables:
292 (defgroup nnir nil
293 "Search groups in Gnus with assorted search engines."
294 :group 'gnus)
296 (defcustom nnir-ignored-newsgroups ""
297 "*A regexp to match newsgroups in the active file that should
298 be skipped when searching."
299 :version "24.1"
300 :type '(regexp)
301 :group 'nnir)
303 (defcustom nnir-summary-line-format nil
304 "*The format specification of the lines in an nnir summary buffer.
306 All the items from `gnus-summary-line-format' are available, along
307 with three items unique to nnir summary buffers:
309 %Z Search retrieval score value (integer)
310 %G Article original full group name (string)
311 %g Article original short group name (string)
313 If nil this will use `gnus-summary-line-format'."
314 :version "24.1"
315 :type '(choice (const :tag "gnus-summary-line-format" nil) string)
316 :group 'nnir)
318 (defcustom nnir-retrieve-headers-override-function nil
319 "*If non-nil, a function that accepts an article list and group
320 and populates the `nntp-server-buffer' with the retrieved
321 headers. Must return either 'nov or 'headers indicating the
322 retrieved header format.
324 If this variable is nil, or if the provided function returns nil for a search
325 result, `gnus-retrieve-headers' will be called instead."
326 :version "24.1"
327 :type '(choice (const :tag "gnus-retrieve-headers" nil) function)
328 :group 'nnir)
330 (defcustom nnir-imap-default-search-key "whole message"
331 "*The default IMAP search key for an nnir search. Must be one of
332 the keys in `nnir-imap-search-arguments'. To use raw imap queries
333 by default set this to \"imap\"."
334 :version "24.1"
335 :type `(choice ,@(mapcar (lambda (elem) (list 'const (car elem)))
336 nnir-imap-search-arguments))
337 :group 'nnir)
339 (defcustom nnir-swish++-configuration-file
340 (expand-file-name "~/Mail/swish++.conf")
341 "*Configuration file for swish++."
342 :type '(file)
343 :group 'nnir)
345 (defcustom nnir-swish++-program "search"
346 "*Name of swish++ search executable."
347 :type '(string)
348 :group 'nnir)
350 (defcustom nnir-swish++-additional-switches '()
351 "*A list of strings, to be given as additional arguments to swish++.
353 Note that this should be a list. I.e., do NOT use the following:
354 (setq nnir-swish++-additional-switches \"-i -w\") ; wrong
355 Instead, use this:
356 (setq nnir-swish++-additional-switches \\='(\"-i\" \"-w\"))"
357 :type '(repeat (string))
358 :group 'nnir)
360 (defcustom nnir-swish++-remove-prefix (concat (getenv "HOME") "/Mail/")
361 "*The prefix to remove from each file name returned by swish++
362 in order to get a group name (albeit with / instead of .). This is a
363 regular expression.
365 This variable is very similar to `nnir-namazu-remove-prefix', except
366 that it is for swish++, not Namazu."
367 :type '(regexp)
368 :group 'nnir)
370 ;; Swish-E.
371 ;; URL: http://swish-e.org/
372 ;; Variables `nnir-swish-e-index-file', `nnir-swish-e-program' and
373 ;; `nnir-swish-e-additional-switches'
375 (make-obsolete-variable 'nnir-swish-e-index-file
376 'nnir-swish-e-index-files "Emacs 23.1")
377 (defcustom nnir-swish-e-index-file
378 (expand-file-name "~/Mail/index.swish-e")
379 "*Index file for swish-e.
380 This could be a server parameter.
381 It is never consulted once `nnir-swish-e-index-files', which should be
382 used instead, has been customized."
383 :type '(file)
384 :group 'nnir)
386 (defcustom nnir-swish-e-index-files
387 (list nnir-swish-e-index-file)
388 "*List of index files for swish-e.
389 This could be a server parameter."
390 :type '(repeat (file))
391 :group 'nnir)
393 (defcustom nnir-swish-e-program "swish-e"
394 "*Name of swish-e search executable.
395 This cannot be a server parameter."
396 :type '(string)
397 :group 'nnir)
399 (defcustom nnir-swish-e-additional-switches '()
400 "*A list of strings, to be given as additional arguments to swish-e.
402 Note that this should be a list. I.e., do NOT use the following:
403 (setq nnir-swish-e-additional-switches \"-i -w\") ; wrong
404 Instead, use this:
405 (setq nnir-swish-e-additional-switches \\='(\"-i\" \"-w\"))
407 This could be a server parameter."
408 :type '(repeat (string))
409 :group 'nnir)
411 (defcustom nnir-swish-e-remove-prefix (concat (getenv "HOME") "/Mail/")
412 "*The prefix to remove from each file name returned by swish-e
413 in order to get a group name (albeit with / instead of .). This is a
414 regular expression.
416 This variable is very similar to `nnir-namazu-remove-prefix', except
417 that it is for swish-e, not Namazu.
419 This could be a server parameter."
420 :type '(regexp)
421 :group 'nnir)
423 ;; HyREX engine, see <URL:http://ls6-www.cs.uni-dortmund.de/>
425 (defcustom nnir-hyrex-program "nnir-search"
426 "*Name of the nnir-search executable."
427 :type '(string)
428 :group 'nnir)
430 (defcustom nnir-hyrex-additional-switches '()
431 "*A list of strings, to be given as additional arguments for nnir-search.
432 Note that this should be a list. I.e., do NOT use the following:
433 (setq nnir-hyrex-additional-switches \"-ddl ddl.xml -c nnir\") ; wrong !
434 Instead, use this:
435 (setq nnir-hyrex-additional-switches \\='(\"-ddl\" \"ddl.xml\" \"-c\" \"nnir\"))"
436 :type '(repeat (string))
437 :group 'nnir)
439 (defcustom nnir-hyrex-index-directory (getenv "HOME")
440 "*Index directory for HyREX."
441 :type '(directory)
442 :group 'nnir)
444 (defcustom nnir-hyrex-remove-prefix (concat (getenv "HOME") "/Mail/")
445 "*The prefix to remove from each file name returned by HyREX
446 in order to get a group name (albeit with / instead of .).
448 For example, suppose that HyREX returns file names such as
449 \"/home/john/Mail/mail/misc/42\". For this example, use the following
450 setting: (setq nnir-hyrex-remove-prefix \"/home/john/Mail/\")
451 Note the trailing slash. Removing this prefix gives \"mail/misc/42\".
452 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
453 arrive at the correct group name, \"mail.misc\"."
454 :type '(directory)
455 :group 'nnir)
457 ;; Namazu engine, see <URL:http://www.namazu.org/>
459 (defcustom nnir-namazu-program "namazu"
460 "*Name of Namazu search executable."
461 :type '(string)
462 :group 'nnir)
464 (defcustom nnir-namazu-index-directory (expand-file-name "~/Mail/namazu/")
465 "*Index directory for Namazu."
466 :type '(directory)
467 :group 'nnir)
469 (defcustom nnir-namazu-additional-switches '()
470 "*A list of strings, to be given as additional arguments to namazu.
471 The switches `-q', `-a', and `-s' are always used, very few other switches
472 make any sense in this context.
474 Note that this should be a list. I.e., do NOT use the following:
475 (setq nnir-namazu-additional-switches \"-i -w\") ; wrong
476 Instead, use this:
477 (setq nnir-namazu-additional-switches \\='(\"-i\" \"-w\"))"
478 :type '(repeat (string))
479 :group 'nnir)
481 (defcustom nnir-namazu-remove-prefix (concat (getenv "HOME") "/Mail/")
482 "*The prefix to remove from each file name returned by Namazu
483 in order to get a group name (albeit with / instead of .).
485 For example, suppose that Namazu returns file names such as
486 \"/home/john/Mail/mail/misc/42\". For this example, use the following
487 setting: (setq nnir-namazu-remove-prefix \"/home/john/Mail/\")
488 Note the trailing slash. Removing this prefix gives \"mail/misc/42\".
489 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
490 arrive at the correct group name, \"mail.misc\"."
491 :type '(directory)
492 :group 'nnir)
494 (defcustom nnir-notmuch-program "notmuch"
495 "*Name of notmuch search executable."
496 :version "24.1"
497 :type '(string)
498 :group 'nnir)
500 (defcustom nnir-notmuch-additional-switches '()
501 "*A list of strings, to be given as additional arguments to notmuch.
503 Note that this should be a list. I.e., do NOT use the following:
504 (setq nnir-notmuch-additional-switches \"-i -w\") ; wrong
505 Instead, use this:
506 (setq nnir-notmuch-additional-switches \\='(\"-i\" \"-w\"))"
507 :version "24.1"
508 :type '(repeat (string))
509 :group 'nnir)
511 (defcustom nnir-notmuch-remove-prefix (concat (getenv "HOME") "/Mail/")
512 "*The prefix to remove from each file name returned by notmuch
513 in order to get a group name (albeit with / instead of .). This is a
514 regular expression.
516 This variable is very similar to `nnir-namazu-remove-prefix', except
517 that it is for notmuch, not Namazu."
518 :version "24.1"
519 :type '(regexp)
520 :group 'nnir)
522 ;;; Developer Extension Variable:
524 (defvar nnir-engines
525 `((imap nnir-run-imap
526 ((criteria
527 "Imap Search in" ; Prompt
528 ,(mapcar 'car nnir-imap-search-arguments) ; alist for completing
529 nil ; allow any user input
530 nil ; initial value
531 nnir-imap-search-argument-history ; the history to use
532 ,nnir-imap-default-search-key ; default
534 (gmane nnir-run-gmane
535 ((gmane-author . "Gmane Author: ")))
536 (swish++ nnir-run-swish++
537 ((swish++-group . "Swish++ Group spec (regexp): ")))
538 (swish-e nnir-run-swish-e
539 ((swish-e-group . "Swish-e Group spec (regexp): ")))
540 (namazu nnir-run-namazu
542 (notmuch nnir-run-notmuch
544 (hyrex nnir-run-hyrex
545 ((hyrex-group . "Hyrex Group spec (regexp): ")))
546 (find-grep nnir-run-find-grep
547 ((grep-options . "Grep options: "))))
548 "Alist of supported search engines.
549 Each element in the alist is a three-element list (ENGINE FUNCTION ARGS).
550 ENGINE is a symbol designating the searching engine. FUNCTION is also
551 a symbol, giving the function that does the search. The third element
552 ARGS is a list of cons pairs (PARAM . PROMPT). When issuing a query,
553 the FUNCTION will issue a query for each of the PARAMs, using PROMPT.
555 The value of `nnir-search-engine' must be one of the ENGINE symbols.
556 For example, for searching a server using namazu include
557 (nnir-search-engine namazu)
558 in the server definition. Note that you have to set additional
559 variables for most backends. For example, the `namazu' backend
560 needs the variables `nnir-namazu-program',
561 `nnir-namazu-index-directory' and `nnir-namazu-remove-prefix'.
563 Add an entry here when adding a new search engine.")
565 (defcustom nnir-method-default-engines '((nnimap . imap) (nntp . gmane))
566 "*Alist of default search engines keyed by server method."
567 :version "24.1"
568 :group 'nnir
569 :type `(repeat (cons (choice (const nnimap) (const nntp) (const nnspool)
570 (const nneething) (const nndir) (const nnmbox)
571 (const nnml) (const nnmh) (const nndraft)
572 (const nnfolder) (const nnmaildir))
573 (choice
574 ,@(mapcar (lambda (elem) (list 'const (car elem)))
575 nnir-engines)))))
577 ;; Gnus glue.
579 (declare-function gnus-group-topic-name "gnus-topic" ())
581 (defun gnus-group-make-nnir-group (nnir-extra-parms &optional specs)
582 "Create an nnir group. Prompt for a search query and determine
583 the groups to search as follows: if called from the *Server*
584 buffer search all groups belonging to the server on the current
585 line; if called from the *Group* buffer search any marked groups,
586 or the group on the current line, or all the groups under the
587 current topic. Calling with a prefix-arg prompts for additional
588 search-engine specific constraints. A non-nil `specs' arg must be
589 an alist with `nnir-query-spec' and `nnir-group-spec' keys, and
590 skips all prompting."
591 (interactive "P")
592 (let* ((group-spec
593 (or (cdr (assq 'nnir-group-spec specs))
594 (if (gnus-server-server-name)
595 (list (list (gnus-server-server-name)))
596 (nnir-categorize
597 (or gnus-group-marked
598 (if (gnus-group-group-name)
599 (list (gnus-group-group-name))
600 (cdr (assoc (gnus-group-topic-name) gnus-topic-alist))))
601 gnus-group-server))))
602 (query-spec
603 (or (cdr (assq 'nnir-query-spec specs))
604 (apply
605 'append
606 (list (cons 'query
607 (read-string "Query: " nil 'nnir-search-history)))
608 (when nnir-extra-parms
609 (mapcar
610 (lambda (x)
611 (nnir-read-parms (nnir-server-to-search-engine (car x))))
612 group-spec))))))
613 (gnus-group-read-ephemeral-group
614 (concat "nnir-" (message-unique-id))
615 (list 'nnir "nnir")
617 ; (cons (current-buffer) gnus-current-window-configuration)
619 nil nil
620 (list
621 (cons 'nnir-specs (list (cons 'nnir-query-spec query-spec)
622 (cons 'nnir-group-spec group-spec)))
623 (cons 'nnir-artlist nil)))))
625 (defun gnus-summary-make-nnir-group (nnir-extra-parms)
626 "Search a group from the summary buffer."
627 (interactive "P")
628 (gnus-warp-to-article)
629 (let ((spec
630 (list
631 (cons 'nnir-group-spec
632 (list (list
633 (gnus-group-server gnus-newsgroup-name)
634 (list gnus-newsgroup-name)))))))
635 (gnus-group-make-nnir-group nnir-extra-parms spec)))
638 ;; Gnus backend interface functions.
640 (deffoo nnir-open-server (server &optional definitions)
641 ;; Just set the server variables appropriately.
642 (let ((backend (car (gnus-server-to-method server))))
643 (if backend
644 (nnoo-change-server backend server definitions)
645 (add-hook 'gnus-summary-mode-hook 'nnir-mode)
646 (nnoo-change-server 'nnir server definitions))))
648 (deffoo nnir-request-group (group &optional server dont-check info)
649 (nnir-possibly-change-group group server)
650 (let ((pgroup (gnus-group-guess-full-name-from-command-method group))
651 length)
652 ;; Check for cached search result or run the query and cache the
653 ;; result.
654 (unless (and nnir-artlist dont-check)
655 (gnus-group-set-parameter
656 pgroup 'nnir-artlist
657 (setq nnir-artlist
658 (nnir-run-query
659 (gnus-group-get-parameter pgroup 'nnir-specs t))))
660 (nnir-request-update-info pgroup (gnus-get-info pgroup)))
661 (with-current-buffer nntp-server-buffer
662 (if (zerop (setq length (nnir-artlist-length nnir-artlist)))
663 (progn
664 (nnir-close-group group)
665 (nnheader-report 'nnir "Search produced empty results."))
666 (nnheader-insert "211 %d %d %d %s\n"
667 length ; total #
668 1 ; first #
669 length ; last #
670 group)))) ; group name
671 nnir-artlist)
673 (deffoo nnir-retrieve-headers (articles &optional group server fetch-old)
674 (with-current-buffer nntp-server-buffer
675 (let ((gnus-inhibit-demon t)
676 (articles-by-group (nnir-categorize
677 articles nnir-article-group nnir-article-ids))
678 headers)
679 (while (not (null articles-by-group))
680 (let* ((group-articles (pop articles-by-group))
681 (artgroup (car group-articles))
682 (articleids (cadr group-articles))
683 (artlist (sort (mapcar 'cdr articleids) '<))
684 (server (gnus-group-server artgroup))
685 (gnus-override-method (gnus-server-to-method server))
686 parsefunc)
687 ;; (nnir-possibly-change-group nil server)
688 (erase-buffer)
689 (case (setq gnus-headers-retrieved-by
691 (and
692 nnir-retrieve-headers-override-function
693 (funcall nnir-retrieve-headers-override-function
694 artlist artgroup))
695 (gnus-retrieve-headers artlist artgroup nil)))
696 (nov
697 (setq parsefunc 'nnheader-parse-nov))
698 (headers
699 (setq parsefunc 'nnheader-parse-head))
700 (t (error "Unknown header type %s while requesting articles \
701 of group %s" gnus-headers-retrieved-by artgroup)))
702 (goto-char (point-min))
703 (while (not (eobp))
704 (let* ((novitem (funcall parsefunc))
705 (artno (and novitem
706 (mail-header-number novitem)))
707 (art (car (rassq artno articleids))))
708 (when art
709 (mail-header-set-number novitem art)
710 (push novitem headers))
711 (forward-line 1)))))
712 (setq headers
713 (sort headers
714 (lambda (x y)
715 (< (mail-header-number x) (mail-header-number y)))))
716 (erase-buffer)
717 (mapc 'nnheader-insert-nov headers)
718 'nov)))
720 (deffoo nnir-request-article (article &optional group server to-buffer)
721 (nnir-possibly-change-group group server)
722 (if (and (stringp article)
723 (not (eq 'nnimap (car (gnus-server-to-method server)))))
724 (nnheader-report
725 'nnir
726 "nnir-request-article only groks message ids for nnimap servers: %s"
727 server)
728 (save-excursion
729 (let ((article article)
730 query)
731 (when (stringp article)
732 (setq gnus-override-method (gnus-server-to-method server))
733 (setq query
734 (list
735 (cons 'query (format "HEADER Message-ID %s" article))
736 (cons 'criteria "")
737 (cons 'shortcut t)))
738 (unless (and nnir-artlist (equal query nnir-memo-query)
739 (equal server nnir-memo-server))
740 (setq nnir-artlist (nnir-run-imap query server)
741 nnir-memo-query query
742 nnir-memo-server server))
743 (setq article 1))
744 (unless (zerop (nnir-artlist-length nnir-artlist))
745 (let ((artfullgroup (nnir-article-group article))
746 (artno (nnir-article-number article)))
747 (message "Requesting article %d from group %s"
748 artno artfullgroup)
749 (if to-buffer
750 (with-current-buffer to-buffer
751 (let ((gnus-article-decode-hook nil))
752 (gnus-request-article-this-buffer artno artfullgroup)))
753 (gnus-request-article artno artfullgroup))
754 (cons artfullgroup artno)))))))
756 (deffoo nnir-request-move-article (article group server accept-form
757 &optional last internal-move-group)
758 (nnir-possibly-change-group group server)
759 (let* ((artfullgroup (nnir-article-group article))
760 (artno (nnir-article-number article))
761 (to-newsgroup (nth 1 accept-form))
762 (to-method (gnus-find-method-for-group to-newsgroup))
763 (from-method (gnus-find-method-for-group artfullgroup))
764 (move-is-internal (gnus-server-equal from-method to-method)))
765 (unless (gnus-check-backend-function
766 'request-move-article artfullgroup)
767 (error "The group %s does not support article moving" artfullgroup))
768 (gnus-request-move-article
769 artno
770 artfullgroup
771 (nth 1 from-method)
772 accept-form
773 last
774 (and move-is-internal
775 to-newsgroup ; Not respooling
776 (gnus-group-real-name to-newsgroup)))))
778 (deffoo nnir-request-expire-articles (articles group &optional server force)
779 (nnir-possibly-change-group group server)
780 (if force
781 (let ((articles-by-group (nnir-categorize
782 articles nnir-article-group nnir-article-ids))
783 not-deleted)
784 (while (not (null articles-by-group))
785 (let* ((group-articles (pop articles-by-group))
786 (artgroup (car group-articles))
787 (articleids (cadr group-articles))
788 (artlist (sort (mapcar 'cdr articleids) '<)))
789 (unless (gnus-check-backend-function 'request-expire-articles
790 artgroup)
791 (error "The group %s does not support article deletion" artgroup))
792 (unless (gnus-check-server (gnus-find-method-for-group artgroup))
793 (error "Couldn't open server for group %s" artgroup))
794 (push (gnus-request-expire-articles
795 artlist artgroup force)
796 not-deleted)))
797 (sort (delq nil not-deleted) '<))
798 articles))
800 (deffoo nnir-warp-to-article ()
801 (nnir-possibly-change-group gnus-newsgroup-name)
802 (let* ((cur (if (> (gnus-summary-article-number) 0)
803 (gnus-summary-article-number)
804 (error "Can't warp to a pseudo-article")))
805 (backend-article-group (nnir-article-group cur))
806 (backend-article-number (nnir-article-number cur))
807 (quit-config (gnus-ephemeral-group-p gnus-newsgroup-name)))
809 ;; what should we do here? we could leave all the buffers around
810 ;; and assume that we have to exit from them one by one. or we can
811 ;; try to clean up directly
813 ;;first exit from the nnir summary buffer.
814 ; (gnus-summary-exit)
815 ;; and if the nnir summary buffer in turn came from another
816 ;; summary buffer we have to clean that summary up too.
817 ; (when (not (eq (cdr quit-config) 'group))
818 ; (gnus-summary-exit))
819 (gnus-summary-read-group-1 backend-article-group t t nil
820 nil (list backend-article-number))))
822 (deffoo nnir-request-update-mark (group article mark)
823 (let ((artgroup (nnir-article-group article))
824 (artnumber (nnir-article-number article)))
825 (or (and artgroup
826 artnumber
827 (gnus-request-update-mark artgroup artnumber mark))
828 mark)))
830 (deffoo nnir-request-set-mark (group actions &optional server)
831 (nnir-possibly-change-group group server)
832 (let (mlist)
833 (dolist (action actions)
834 (destructuring-bind (range action marks) action
835 (let ((articles-by-group (nnir-categorize
836 (gnus-uncompress-range range)
837 nnir-article-group nnir-article-number)))
838 (dolist (artgroup articles-by-group)
839 (push (list
840 (car artgroup)
841 (list (gnus-compress-sequence
842 (sort (cadr artgroup) '<)) action marks)) mlist)))))
843 (dolist (request (nnir-categorize mlist car cadr))
844 (gnus-request-set-mark (car request) (cadr request)))))
847 (deffoo nnir-request-update-info (group info &optional server)
848 (nnir-possibly-change-group group server)
849 ;; clear out all existing marks.
850 (gnus-info-set-marks info nil)
851 (gnus-info-set-read info nil)
852 (let ((group (gnus-group-guess-full-name-from-command-method group))
853 (articles-by-group
854 (nnir-categorize
855 (gnus-uncompress-range (cons 1 (nnir-artlist-length nnir-artlist)))
856 nnir-article-group nnir-article-ids)))
857 (gnus-set-active group
858 (cons 1 (nnir-artlist-length nnir-artlist)))
859 (while (not (null articles-by-group))
860 (let* ((group-articles (pop articles-by-group))
861 (articleids (reverse (cadr group-articles)))
862 (group-info (gnus-get-info (car group-articles)))
863 (marks (gnus-info-marks group-info))
864 (read (gnus-info-read group-info)))
865 (gnus-info-set-read
866 info
867 (gnus-add-to-range
868 (gnus-info-read info)
869 (delq nil
870 (mapcar
871 #'(lambda (art)
872 (when (gnus-member-of-range (cdr art) read) (car art)))
873 articleids))))
874 (dolist (mark marks)
875 (destructuring-bind (type . range) mark
876 (gnus-add-marked-articles
877 group type
878 (delq nil
879 (mapcar
880 #'(lambda (art)
881 (when (gnus-member-of-range (cdr art) range) (car art)))
882 articleids)))))))))
885 (deffoo nnir-close-group (group &optional server)
886 (nnir-possibly-change-group group server)
887 (let ((pgroup (gnus-group-guess-full-name-from-command-method group)))
888 (when (and nnir-artlist (not (gnus-ephemeral-group-p pgroup)))
889 (gnus-group-set-parameter pgroup 'nnir-artlist nnir-artlist))
890 (setq nnir-artlist nil)
891 (when (gnus-ephemeral-group-p pgroup)
892 (gnus-kill-ephemeral-group pgroup)
893 (setq gnus-ephemeral-servers
894 (delq (assq 'nnir gnus-ephemeral-servers)
895 gnus-ephemeral-servers)))))
896 ;; (gnus-opened-servers-remove
897 ;; (car (assoc '(nnir "nnir-ephemeral" (nnir-address "nnir"))
898 ;; gnus-opened-servers))))
903 (defmacro nnir-add-result (dirnam artno score prefix server artlist)
904 "Ask `nnir-compose-result' to construct a result vector,
905 and if it is non-nil, add it to artlist."
906 `(let ((result (nnir-compose-result ,dirnam ,artno ,score ,prefix ,server)))
907 (when (not (null result))
908 (push result ,artlist))))
910 (autoload 'nnmaildir-base-name-to-article-number "nnmaildir")
912 ;; Helper function currently used by the Swish++ and Namazu backends;
913 ;; perhaps useful for other backends as well
914 (defun nnir-compose-result (dirnam article score prefix server)
915 "Extract the group from dirnam, and create a result vector
916 ready to be added to the list of search results."
918 ;; remove nnir-*-remove-prefix from beginning of dirnam filename
919 (when (string-match (concat "^" prefix) dirnam)
920 (setq dirnam (replace-match "" t t dirnam)))
922 (when (file-readable-p (concat prefix dirnam article))
923 ;; remove trailing slash and, for nnmaildir, cur/new/tmp
924 (setq dirnam
925 (substring dirnam 0
926 (if (string-match "\\`nnmaildir:" (gnus-group-server server))
927 -5 -1)))
929 ;; Set group to dirnam without any leading dots or slashes,
930 ;; and with all subsequent slashes replaced by dots
931 (let ((group (gnus-replace-in-string
932 (gnus-replace-in-string dirnam "^[./\\]" "" t)
933 "[/\\]" "." t)))
935 (vector (gnus-group-full-name group server)
936 (if (string-match "\\`nnmaildir:" (gnus-group-server server))
937 (nnmaildir-base-name-to-article-number
938 (substring article 0 (string-match ":" article))
939 group nil)
940 (string-to-number article))
941 (string-to-number score)))))
943 ;;; Search Engine Interfaces:
945 (autoload 'nnimap-change-group "nnimap")
946 (declare-function nnimap-buffer "nnimap" ())
947 (declare-function nnimap-command "nnimap" (&rest args))
949 ;; imap interface
950 (defun nnir-run-imap (query srv &optional groups)
951 "Run a search against an IMAP back-end server.
952 This uses a custom query language parser; see `nnir-imap-make-query' for
953 details on the language and supported extensions."
954 (save-excursion
955 (let ((qstring (cdr (assq 'query query)))
956 (server (cadr (gnus-server-to-method srv)))
957 (defs (caddr (gnus-server-to-method srv)))
958 (criteria (or (cdr (assq 'criteria query))
959 (cdr (assoc nnir-imap-default-search-key
960 nnir-imap-search-arguments))))
961 (gnus-inhibit-demon t)
962 (groups (or groups (nnir-get-active srv))))
963 (message "Opening server %s" server)
964 (apply
965 'vconcat
966 (catch 'found
967 (mapcar
968 #'(lambda (group)
969 (let (artlist)
970 (condition-case ()
971 (when (nnimap-change-group
972 (gnus-group-short-name group) server)
973 (with-current-buffer (nnimap-buffer)
974 (message "Searching %s..." group)
975 (let ((arts 0)
976 (result (nnimap-command "UID SEARCH %s"
977 (if (string= criteria "")
978 qstring
979 (nnir-imap-make-query
980 criteria qstring)))))
981 (mapc
982 (lambda (artnum)
983 (let ((artn (string-to-number artnum)))
984 (when (> artn 0)
985 (push (vector group artn 100)
986 artlist)
987 (when (assq 'shortcut query)
988 (throw 'found (list artlist)))
989 (setq arts (1+ arts)))))
990 (and (car result)
991 (cdr (assoc "SEARCH" (cdr result)))))
992 (message "Searching %s... %d matches" group arts)))
993 (message "Searching %s...done" group))
994 (quit nil))
995 (nreverse artlist)))
996 groups))))))
998 (defun nnir-imap-make-query (criteria qstring)
999 "Parse the query string and criteria into an appropriate IMAP search
1000 expression, returning the string query to make.
1002 This implements a little language designed to return the expected results
1003 to an arbitrary query string to the end user.
1005 The search is always case-insensitive, as defined by RFC2060, and supports
1006 the following features (inspired by the Google search input language):
1008 Automatic \"and\" queries
1009 If you specify multiple words then they will be treated as an \"and\"
1010 expression intended to match all components.
1012 Phrase searches
1013 If you wrap your query in double-quotes then it will be treated as a
1014 literal string.
1016 Negative terms
1017 If you precede a term with \"-\" then it will negate that.
1019 \"OR\" queries
1020 If you include an upper-case \"OR\" in your search it will cause the
1021 term before it and the term after it to be treated as alternatives.
1023 In future the following will be added to the language:
1024 * support for date matches
1025 * support for location of text matching within the query
1026 * from/to/etc headers
1027 * additional search terms
1028 * flag based searching
1029 * anything else that the RFC supports, basically."
1030 ;; Walk through the query and turn it into an IMAP query string.
1031 (nnir-imap-query-to-imap criteria (nnir-imap-parse-query qstring)))
1034 (defun nnir-imap-query-to-imap (criteria query)
1035 "Turn a s-expression format query into IMAP."
1036 (mapconcat
1037 ;; Turn the expressions into IMAP text
1038 (lambda (item)
1039 (nnir-imap-expr-to-imap criteria item))
1040 ;; The query, already in s-expr format.
1041 query
1042 ;; Append a space between each expression
1043 " "))
1046 (defun nnir-imap-expr-to-imap (criteria expr)
1047 "Convert EXPR into an IMAP search expression on CRITERIA"
1048 ;; What sort of expression is this, eh?
1049 (cond
1050 ;; Simple string term
1051 ((stringp expr)
1052 (format "%s %S" criteria expr))
1053 ;; Trivial term: and
1054 ((eq expr 'and) nil)
1055 ;; Composite term: or expression
1056 ((eq (car-safe expr) 'or)
1057 (format "OR %s %s"
1058 (nnir-imap-expr-to-imap criteria (second expr))
1059 (nnir-imap-expr-to-imap criteria (third expr))))
1060 ;; Composite term: just the fax, mam
1061 ((eq (car-safe expr) 'not)
1062 (format "NOT (%s)" (nnir-imap-query-to-imap criteria (rest expr))))
1063 ;; Composite term: just expand it all.
1064 ((and (not (null expr)) (listp expr))
1065 (format "(%s)" (nnir-imap-query-to-imap criteria expr)))
1066 ;; Complex value, give up for now.
1067 (t (error "Unhandled input: %S" expr))))
1070 (defun nnir-imap-parse-query (string)
1071 "Turn STRING into an s-expression based query based on the IMAP
1072 query language as defined in `nnir-imap-make-query'.
1074 This involves turning individual tokens into higher level terms
1075 that the search language can then understand and use."
1076 (with-temp-buffer
1077 ;; Set up the parsing environment.
1078 (insert string)
1079 (goto-char (point-min))
1080 ;; Now, collect the output terms and return them.
1081 (let (out)
1082 (while (not (nnir-imap-end-of-input))
1083 (push (nnir-imap-next-expr) out))
1084 (reverse out))))
1087 (defun nnir-imap-next-expr (&optional count)
1088 "Return the next expression from the current buffer."
1089 (let ((term (nnir-imap-next-term count))
1090 (next (nnir-imap-peek-symbol)))
1091 ;; Are we looking at an 'or' expression?
1092 (cond
1093 ;; Handle 'expr or expr'
1094 ((eq next 'or)
1095 (list 'or term (nnir-imap-next-expr 2)))
1096 ;; Anything else
1097 (t term))))
1100 (defun nnir-imap-next-term (&optional count)
1101 "Return the next TERM from the current buffer."
1102 (let ((term (nnir-imap-next-symbol count)))
1103 ;; What sort of term is this?
1104 (cond
1105 ;; and -- just ignore it
1106 ((eq term 'and) 'and)
1107 ;; negated term
1108 ((eq term 'not) (list 'not (nnir-imap-next-expr)))
1109 ;; generic term
1110 (t term))))
1113 (defun nnir-imap-peek-symbol ()
1114 "Return the next symbol from the current buffer, but don't consume it."
1115 (save-excursion
1116 (nnir-imap-next-symbol)))
1118 (defun nnir-imap-next-symbol (&optional count)
1119 "Return the next symbol from the current buffer, or nil if we are
1120 at the end of the buffer. If supplied COUNT skips some symbols before
1121 returning the one at the supplied position."
1122 (when (and (numberp count) (> count 1))
1123 (nnir-imap-next-symbol (1- count)))
1124 (let ((case-fold-search t))
1125 ;; end of input stream?
1126 (unless (nnir-imap-end-of-input)
1127 ;; No, return the next symbol from the stream.
1128 (cond
1129 ;; negated expression -- return it and advance one char.
1130 ((looking-at "-") (forward-char 1) 'not)
1131 ;; quoted string
1132 ((looking-at "\"") (nnir-imap-delimited-string "\""))
1133 ;; list expression -- we parse the content and return this as a list.
1134 ((looking-at "(")
1135 (nnir-imap-parse-query (nnir-imap-delimited-string ")")))
1136 ;; keyword input -- return a symbol version
1137 ((looking-at "\\band\\b") (forward-char 3) 'and)
1138 ((looking-at "\\bor\\b") (forward-char 2) 'or)
1139 ((looking-at "\\bnot\\b") (forward-char 3) 'not)
1140 ;; Simple, boring keyword
1141 (t (let ((start (point))
1142 (end (if (search-forward-regexp "[[:blank:]]" nil t)
1143 (prog1
1144 (match-beginning 0)
1145 ;; unskip if we hit a non-blank terminal character.
1146 (when (string-match "[^[:blank:]]" (match-string 0))
1147 (backward-char 1)))
1148 (goto-char (point-max)))))
1149 (buffer-substring start end)))))))
1151 (defun nnir-imap-delimited-string (delimiter)
1152 "Return a delimited string from the current buffer."
1153 (let ((start (point)) end)
1154 (forward-char 1) ; skip the first delimiter.
1155 (while (not end)
1156 (unless (search-forward delimiter nil t)
1157 (error "Unmatched delimited input with %s in query" delimiter))
1158 (let ((here (point)))
1159 (unless (equal (buffer-substring (- here 2) (- here 1)) "\\")
1160 (setq end (point)))))
1161 (buffer-substring (1+ start) (1- end))))
1163 (defun nnir-imap-end-of-input ()
1164 "Are we at the end of input?"
1165 (skip-chars-forward "[[:blank:]]")
1166 (looking-at "$"))
1169 ;; Swish++ interface.
1170 ;; -cc- Todo
1171 ;; Search by
1172 ;; - group
1173 ;; Sort by
1174 ;; - rank (default)
1175 ;; - article number
1176 ;; - file size
1177 ;; - group
1178 (defun nnir-run-swish++ (query server &optional group)
1179 "Run QUERY against swish++.
1180 Returns a vector of (group name, file name) pairs (also vectors,
1181 actually).
1183 Tested with swish++ 4.7 on GNU/Linux and with swish++ 5.0b2 on
1184 Windows NT 4.0."
1186 ;; (when group
1187 ;; (error "The swish++ backend cannot search specific groups"))
1189 (save-excursion
1190 (let ( (qstring (cdr (assq 'query query)))
1191 (groupspec (cdr (assq 'swish++-group query)))
1192 (prefix (nnir-read-server-parm 'nnir-swish++-remove-prefix server))
1193 artlist
1194 ;; nnml-use-compressed-files might be any string, but probably this
1195 ;; is sufficient. Note that we can't only use the value of
1196 ;; nnml-use-compressed-files because old articles might have been
1197 ;; saved with a different value.
1198 (article-pattern (if (string-match "\\`nnmaildir:"
1199 (gnus-group-server server))
1200 ":[0-9]+"
1201 "^[0-9]+\\(\\.[a-z0-9]+\\)?$"))
1202 score artno dirnam filenam)
1204 (when (equal "" qstring)
1205 (error "swish++: You didn't enter anything"))
1207 (set-buffer (get-buffer-create nnir-tmp-buffer))
1208 (erase-buffer)
1210 (if groupspec
1211 (message "Doing swish++ query %s on %s..." qstring groupspec)
1212 (message "Doing swish++ query %s..." qstring))
1214 (let* ((cp-list `( ,nnir-swish++-program
1215 nil ; input from /dev/null
1216 t ; output
1217 nil ; don't redisplay
1218 "--config-file" ,(nnir-read-server-parm 'nnir-swish++-configuration-file server)
1219 ,@(nnir-read-server-parm 'nnir-swish++-additional-switches server)
1220 ,qstring ; the query, in swish++ format
1222 (exitstatus
1223 (progn
1224 (message "%s args: %s" nnir-swish++-program
1225 (mapconcat 'identity (cddddr cp-list) " ")) ;; ???
1226 (apply 'call-process cp-list))))
1227 (unless (or (null exitstatus)
1228 (zerop exitstatus))
1229 (nnheader-report 'nnir "Couldn't run swish++: %s" exitstatus)
1230 ;; swish++ failure reason is in this buffer, show it if
1231 ;; the user wants it.
1232 (when (> gnus-verbose 6)
1233 (display-buffer nnir-tmp-buffer))))
1235 ;; The results are output in the format of:
1236 ;; V 4.7 Linux
1237 ;; rank relative-path-name file-size file-title
1238 ;; V 5.0b2:
1239 ;; rank relative-path-name file-size topic??
1240 ;; where rank is an integer from 1 to 100.
1241 (goto-char (point-min))
1242 (while (re-search-forward
1243 "\\(^[0-9]+\\) \\([^ ]+\\) [0-9]+ \\(.*\\)$" nil t)
1244 (setq score (match-string 1)
1245 filenam (match-string 2)
1246 artno (file-name-nondirectory filenam)
1247 dirnam (file-name-directory filenam))
1249 ;; don't match directories
1250 (when (string-match article-pattern artno)
1251 (when (not (null dirnam))
1253 ;; maybe limit results to matching groups.
1254 (when (or (not groupspec)
1255 (string-match groupspec dirnam))
1256 (nnir-add-result dirnam artno score prefix server artlist)))))
1258 (message "Massaging swish++ output...done")
1260 ;; Sort by score
1261 (apply 'vector
1262 (sort artlist
1263 (function (lambda (x y)
1264 (> (nnir-artitem-rsv x)
1265 (nnir-artitem-rsv y)))))))))
1267 ;; Swish-E interface.
1268 (defun nnir-run-swish-e (query server &optional group)
1269 "Run given query against swish-e.
1270 Returns a vector of (group name, file name) pairs (also vectors,
1271 actually).
1273 Tested with swish-e-2.0.1 on Windows NT 4.0."
1275 ;; swish-e crashes with empty parameter to "-w" on commandline...
1276 ;; (when group
1277 ;; (error "The swish-e backend cannot search specific groups"))
1279 (save-excursion
1280 (let ((qstring (cdr (assq 'query query)))
1281 (prefix
1282 (or (nnir-read-server-parm 'nnir-swish-e-remove-prefix server)
1283 (error "Missing parameter `nnir-swish-e-remove-prefix'")))
1284 artlist score artno dirnam group )
1286 (when (equal "" qstring)
1287 (error "swish-e: You didn't enter anything"))
1289 (set-buffer (get-buffer-create nnir-tmp-buffer))
1290 (erase-buffer)
1292 (message "Doing swish-e query %s..." query)
1293 (let* ((index-files
1294 (or (nnir-read-server-parm
1295 'nnir-swish-e-index-files server)
1296 (error "Missing parameter `nnir-swish-e-index-files'")))
1297 (additional-switches
1298 (nnir-read-server-parm
1299 'nnir-swish-e-additional-switches server))
1300 (cp-list `(,nnir-swish-e-program
1301 nil ; input from /dev/null
1302 t ; output
1303 nil ; don't redisplay
1304 "-f" ,@index-files
1305 ,@additional-switches
1306 "-w"
1307 ,qstring ; the query, in swish-e format
1309 (exitstatus
1310 (progn
1311 (message "%s args: %s" nnir-swish-e-program
1312 (mapconcat 'identity (cddddr cp-list) " "))
1313 (apply 'call-process cp-list))))
1314 (unless (or (null exitstatus)
1315 (zerop exitstatus))
1316 (nnheader-report 'nnir "Couldn't run swish-e: %s" exitstatus)
1317 ;; swish-e failure reason is in this buffer, show it if
1318 ;; the user wants it.
1319 (when (> gnus-verbose 6)
1320 (display-buffer nnir-tmp-buffer))))
1322 ;; The results are output in the format of:
1323 ;; rank path-name file-title file-size
1324 (goto-char (point-min))
1325 (while (re-search-forward
1326 "\\(^[0-9]+\\) \\([^ ]+\\) \"\\([^\"]+\\)\" [0-9]+$" nil t)
1327 (setq score (match-string 1)
1328 artno (match-string 3)
1329 dirnam (file-name-directory (match-string 2)))
1331 ;; don't match directories
1332 (when (string-match "^[0-9]+$" artno)
1333 (when (not (null dirnam))
1335 ;; remove nnir-swish-e-remove-prefix from beginning of dirname
1336 (when (string-match (concat "^" prefix) dirnam)
1337 (setq dirnam (replace-match "" t t dirnam)))
1339 (setq dirnam (substring dirnam 0 -1))
1340 ;; eliminate all ".", "/", "\" from beginning. Always matches.
1341 (string-match "^[./\\]*\\(.*\\)$" dirnam)
1342 ;; "/" -> "."
1343 (setq group (gnus-replace-in-string (match-string 1 dirnam) "/" "."))
1344 ;; Windows "\\" -> "."
1345 (setq group (gnus-replace-in-string group "\\\\" "."))
1347 (push (vector (gnus-group-full-name group server)
1348 (string-to-number artno)
1349 (string-to-number score))
1350 artlist))))
1352 (message "Massaging swish-e output...done")
1354 ;; Sort by score
1355 (apply 'vector
1356 (sort artlist
1357 (function (lambda (x y)
1358 (> (nnir-artitem-rsv x)
1359 (nnir-artitem-rsv y)))))))))
1361 ;; HyREX interface
1362 (defun nnir-run-hyrex (query server &optional group)
1363 (save-excursion
1364 (let ((artlist nil)
1365 (groupspec (cdr (assq 'hyrex-group query)))
1366 (qstring (cdr (assq 'query query)))
1367 (prefix (nnir-read-server-parm 'nnir-hyrex-remove-prefix server))
1368 score artno dirnam)
1369 (when (and (not groupspec) group)
1370 (setq groupspec
1371 (regexp-opt
1372 (mapcar (lambda (x) (gnus-group-real-name x)) group))))
1373 (set-buffer (get-buffer-create nnir-tmp-buffer))
1374 (erase-buffer)
1375 (message "Doing hyrex-search query %s..." query)
1376 (let* ((cp-list
1377 `( ,nnir-hyrex-program
1378 nil ; input from /dev/null
1379 t ; output
1380 nil ; don't redisplay
1381 "-i",(nnir-read-server-parm 'nnir-hyrex-index-directory server) ; index directory
1382 ,@(nnir-read-server-parm 'nnir-hyrex-additional-switches server)
1383 ,qstring ; the query, in hyrex-search format
1385 (exitstatus
1386 (progn
1387 (message "%s args: %s" nnir-hyrex-program
1388 (mapconcat 'identity (cddddr cp-list) " "))
1389 (apply 'call-process cp-list))))
1390 (unless (or (null exitstatus)
1391 (zerop exitstatus))
1392 (nnheader-report 'nnir "Couldn't run hyrex-search: %s" exitstatus)
1393 ;; nnir-search failure reason is in this buffer, show it if
1394 ;; the user wants it.
1395 (when (> gnus-verbose 6)
1396 (display-buffer nnir-tmp-buffer)))) ;; FIXME: Don't clear buffer !
1397 (message "Doing hyrex-search query \"%s\"...done" qstring)
1398 (sit-for 0)
1399 ;; nnir-search returns:
1400 ;; for nnml/nnfolder: "filename mailid weight"
1401 ;; for nnimap: "group mailid weight"
1402 (goto-char (point-min))
1403 (delete-non-matching-lines "^\\S + [0-9]+ [0-9]+$")
1404 ;; HyREX doesn't search directly in groups -- so filter out here.
1405 (when groupspec
1406 (keep-lines groupspec))
1407 ;; extract data from result lines
1408 (goto-char (point-min))
1409 (while (re-search-forward
1410 "\\(\\S +\\) \\([0-9]+\\) \\([0-9]+\\)" nil t)
1411 (setq dirnam (match-string 1)
1412 artno (match-string 2)
1413 score (match-string 3))
1414 (when (string-match prefix dirnam)
1415 (setq dirnam (replace-match "" t t dirnam)))
1416 (push (vector (gnus-group-full-name
1417 (gnus-replace-in-string dirnam "/" ".") server)
1418 (string-to-number artno)
1419 (string-to-number score))
1420 artlist))
1421 (message "Massaging hyrex-search output...done.")
1422 (apply 'vector
1423 (sort artlist
1424 (function (lambda (x y)
1425 (if (string-lessp (nnir-artitem-group x)
1426 (nnir-artitem-group y))
1428 (< (nnir-artitem-number x)
1429 (nnir-artitem-number y)))))))
1432 ;; Namazu interface
1433 (defun nnir-run-namazu (query server &optional group)
1434 "Run given query against Namazu. Returns a vector of (group name, file name)
1435 pairs (also vectors, actually).
1437 Tested with Namazu 2.0.6 on a GNU/Linux system."
1438 ;; (when group
1439 ;; (error "The Namazu backend cannot search specific groups"))
1440 (save-excursion
1441 (let ((article-pattern (if (string-match "\\`nnmaildir:"
1442 (gnus-group-server server))
1443 ":[0-9]+"
1444 "^[0-9]+$"))
1445 artlist
1446 (qstring (cdr (assq 'query query)))
1447 (prefix (nnir-read-server-parm 'nnir-namazu-remove-prefix server))
1448 score group article
1449 (process-environment (copy-sequence process-environment)))
1450 (setenv "LC_MESSAGES" "C")
1451 (set-buffer (get-buffer-create nnir-tmp-buffer))
1452 (erase-buffer)
1453 (let* ((cp-list
1454 `( ,nnir-namazu-program
1455 nil ; input from /dev/null
1456 t ; output
1457 nil ; don't redisplay
1458 "-q" ; don't be verbose
1459 "-a" ; show all matches
1460 "-s" ; use short format
1461 ,@(nnir-read-server-parm 'nnir-namazu-additional-switches server)
1462 ,qstring ; the query, in namazu format
1463 ,(nnir-read-server-parm 'nnir-namazu-index-directory server) ; index directory
1465 (exitstatus
1466 (progn
1467 (message "%s args: %s" nnir-namazu-program
1468 (mapconcat 'identity (cddddr cp-list) " "))
1469 (apply 'call-process cp-list))))
1470 (unless (or (null exitstatus)
1471 (zerop exitstatus))
1472 (nnheader-report 'nnir "Couldn't run namazu: %s" exitstatus)
1473 ;; Namazu failure reason is in this buffer, show it if
1474 ;; the user wants it.
1475 (when (> gnus-verbose 6)
1476 (display-buffer nnir-tmp-buffer))))
1478 ;; Namazu output looks something like this:
1479 ;; 2. Re: Gnus agent expire broken (score: 55)
1480 ;; /home/henrik/Mail/mail/sent/1310 (4,138 bytes)
1482 (goto-char (point-min))
1483 (while (re-search-forward
1484 "^\\([0-9,]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)"
1485 nil t)
1486 (setq score (match-string 3)
1487 group (file-name-directory (match-string 4))
1488 article (file-name-nondirectory (match-string 4)))
1490 ;; make sure article and group is sane
1491 (when (and (string-match article-pattern article)
1492 (not (null group)))
1493 (nnir-add-result group article score prefix server artlist)))
1495 ;; sort artlist by score
1496 (apply 'vector
1497 (sort artlist
1498 (function (lambda (x y)
1499 (> (nnir-artitem-rsv x)
1500 (nnir-artitem-rsv y)))))))))
1502 (defun nnir-run-notmuch (query server &optional group)
1503 "Run QUERY against notmuch.
1504 Returns a vector of (group name, file name) pairs (also vectors,
1505 actually)."
1507 ;; (when group
1508 ;; (error "The notmuch backend cannot search specific groups"))
1510 (save-excursion
1511 (let ( (qstring (cdr (assq 'query query)))
1512 (groupspec (cdr (assq 'notmuch-group query)))
1513 (prefix (nnir-read-server-parm 'nnir-notmuch-remove-prefix server))
1514 artlist
1515 (article-pattern (if (string-match "\\`nnmaildir:"
1516 (gnus-group-server server))
1517 ":[0-9]+"
1518 "^[0-9]+$"))
1519 artno dirnam filenam)
1521 (when (equal "" qstring)
1522 (error "notmuch: You didn't enter anything"))
1524 (set-buffer (get-buffer-create nnir-tmp-buffer))
1525 (erase-buffer)
1527 (if groupspec
1528 (message "Doing notmuch query %s on %s..." qstring groupspec)
1529 (message "Doing notmuch query %s..." qstring))
1531 (let* ((cp-list `( ,nnir-notmuch-program
1532 nil ; input from /dev/null
1533 t ; output
1534 nil ; don't redisplay
1535 "search"
1536 "--format=text"
1537 "--output=files"
1538 ,@(nnir-read-server-parm 'nnir-notmuch-additional-switches server)
1539 ,qstring ; the query, in notmuch format
1541 (exitstatus
1542 (progn
1543 (message "%s args: %s" nnir-notmuch-program
1544 (mapconcat 'identity (cddddr cp-list) " ")) ;; ???
1545 (apply 'call-process cp-list))))
1546 (unless (or (null exitstatus)
1547 (zerop exitstatus))
1548 (nnheader-report 'nnir "Couldn't run notmuch: %s" exitstatus)
1549 ;; notmuch failure reason is in this buffer, show it if
1550 ;; the user wants it.
1551 (when (> gnus-verbose 6)
1552 (display-buffer nnir-tmp-buffer))))
1554 ;; The results are output in the format of:
1555 ;; absolute-path-name
1556 (goto-char (point-min))
1557 (while (not (eobp))
1558 (setq filenam (buffer-substring-no-properties (line-beginning-position)
1559 (line-end-position))
1560 artno (file-name-nondirectory filenam)
1561 dirnam (file-name-directory filenam))
1562 (forward-line 1)
1564 ;; don't match directories
1565 (when (string-match article-pattern artno)
1566 (when (not (null dirnam))
1568 ;; maybe limit results to matching groups.
1569 (when (or (not groupspec)
1570 (string-match groupspec dirnam))
1571 (nnir-add-result dirnam artno "" prefix server artlist)))))
1573 (message "Massaging notmuch output...done")
1575 artlist)))
1577 (defun nnir-run-find-grep (query server &optional grouplist)
1578 "Run find and grep to obtain matching articles."
1579 (let* ((method (gnus-server-to-method server))
1580 (sym (intern
1581 (concat (symbol-name (car method)) "-directory")))
1582 (directory (cadr (assoc sym (cddr method))))
1583 (regexp (cdr (assoc 'query query)))
1584 (grep-options (cdr (assoc 'grep-options query)))
1585 (grouplist (or grouplist (nnir-get-active server))))
1586 (unless directory
1587 (error "No directory found in method specification of server %s"
1588 server))
1589 (apply
1590 'vconcat
1591 (mapcar (lambda (x)
1592 (let ((group x)
1593 artlist)
1594 (message "Searching %s using find-grep..."
1595 (or group server))
1596 (save-window-excursion
1597 (set-buffer (get-buffer-create nnir-tmp-buffer))
1598 (if (> gnus-verbose 6)
1599 (pop-to-buffer (current-buffer)))
1600 (cd directory) ; Using relative paths simplifies
1601 ; postprocessing.
1602 (let ((group
1603 (if (not group)
1605 ;; Try accessing the group literally as
1606 ;; well as interpreting dots as directory
1607 ;; separators so the engine works with
1608 ;; plain nnml as well as the Gnus Cache.
1609 (let ((group (gnus-group-real-name group)))
1610 ;; Replace cl-func find-if.
1611 (if (file-directory-p group)
1612 group
1613 (if (file-directory-p
1614 (setq group
1615 (gnus-replace-in-string
1616 group
1617 "\\." "/" t)))
1618 group))))))
1619 (unless group
1620 (error "Cannot locate directory for group"))
1621 (save-excursion
1622 (apply
1623 'call-process "find" nil t
1624 "find" group "-maxdepth" "1" "-type" "f"
1625 "-name" "[0-9]*" "-exec"
1626 "grep"
1627 `("-l" ,@(and grep-options
1628 (split-string grep-options "\\s-" t))
1629 "-e" ,regexp "{}" "+"))))
1631 ;; Translate relative paths to group names.
1632 (while (not (eobp))
1633 (let* ((path (split-string
1634 (buffer-substring
1635 (point)
1636 (line-end-position)) "/" t))
1637 (art (string-to-number (car (last path)))))
1638 (while (string= "." (car path))
1639 (setq path (cdr path)))
1640 (let ((group (mapconcat 'identity
1641 ;; Replace cl-func:
1642 ;; (subseq path 0 -1)
1643 (let ((end (1- (length path)))
1644 res)
1645 (while
1646 (>= (setq end (1- end)) 0)
1647 (push (pop path) res))
1648 (nreverse res))
1649 ".")))
1650 (push
1651 (vector (gnus-group-full-name group server) art 0)
1652 artlist))
1653 (forward-line 1)))
1654 (message "Searching %s using find-grep...done"
1655 (or group server))
1656 artlist)))
1657 grouplist))))
1659 (declare-function mm-url-insert "mm-url" (url &optional follow-refresh))
1660 (declare-function mm-url-encode-www-form-urlencoded "mm-url" (pairs))
1662 ;; gmane interface
1663 (defun nnir-run-gmane (query srv &optional groups)
1664 "Run a search against a gmane back-end server."
1665 (let* ((case-fold-search t)
1666 (qstring (cdr (assq 'query query)))
1667 (server (cadr (gnus-server-to-method srv)))
1668 (groupspec (mapconcat
1669 (lambda (x)
1670 (if (gnus-string-match-p "gmane" x)
1671 (format "group:%s" (gnus-group-short-name x))
1672 (error "Can't search non-gmane groups: %s" x)))
1673 groups " "))
1674 (authorspec
1675 (if (assq 'gmane-author query)
1676 (format "author:%s" (cdr (assq 'gmane-author query))) ""))
1677 (search (format "%s %s %s"
1678 qstring groupspec authorspec))
1679 (gnus-inhibit-demon t)
1680 artlist)
1681 (require 'mm-url)
1682 (with-current-buffer (get-buffer-create nnir-tmp-buffer)
1683 (erase-buffer)
1684 (mm-url-insert
1685 (concat
1686 "http://search.gmane.org/nov.php"
1688 (mm-url-encode-www-form-urlencoded
1689 `(("query" . ,search)
1690 ("HITSPERPAGE" . "999")))))
1691 (unless (featurep 'xemacs) (set-buffer-multibyte t))
1692 (mm-decode-coding-region (point-min) (point-max) 'utf-8)
1693 (goto-char (point-min))
1694 (forward-line 1)
1695 (while (not (eobp))
1696 (unless (or (eolp) (looking-at "\x0d"))
1697 (let ((header (nnheader-parse-nov)))
1698 (let ((xref (mail-header-xref header))
1699 (xscore (string-to-number (cdr (assoc 'X-Score
1700 (mail-header-extra header))))))
1701 (when (string-match " \\([^:]+\\)[:/]\\([0-9]+\\)" xref)
1702 (push
1703 (vector
1704 (gnus-group-prefixed-name (match-string 1 xref) srv)
1705 (string-to-number (match-string 2 xref)) xscore)
1706 artlist)))))
1707 (forward-line 1)))
1708 (apply 'vector (nreverse (mm-delete-duplicates artlist)))))
1710 ;;; Util Code:
1712 (defun gnus-nnir-group-p (group)
1713 "Say whether GROUP is nnir or not."
1714 (if (gnus-group-prefixed-p group)
1715 (eq 'nnir (car (gnus-find-method-for-group group)))
1716 (and group (string-match "^nnir" group))))
1718 (defun nnir-read-parms (nnir-search-engine)
1719 "Reads additional search parameters according to `nnir-engines'."
1720 (let ((parmspec (caddr (assoc nnir-search-engine nnir-engines))))
1721 (mapcar 'nnir-read-parm parmspec)))
1723 (defun nnir-read-parm (parmspec)
1724 "Reads a single search parameter.
1725 `parmspec' is a cons cell, the car is a symbol, the cdr is a prompt."
1726 (let ((sym (car parmspec))
1727 (prompt (cdr parmspec)))
1728 (if (listp prompt)
1729 (let* ((result (apply 'gnus-completing-read prompt))
1730 (mapping (or (assoc result nnir-imap-search-arguments)
1731 (cons nil nnir-imap-search-other))))
1732 (cons sym (format (cdr mapping) result)))
1733 (cons sym (read-string prompt)))))
1735 (defun nnir-run-query (specs)
1736 "Invoke appropriate search engine function (see `nnir-engines')."
1737 (apply 'vconcat
1738 (mapcar
1739 (lambda (x)
1740 (let* ((server (car x))
1741 (search-engine (nnir-server-to-search-engine server))
1742 (search-func (cadr (assoc search-engine nnir-engines))))
1743 (and search-func
1744 (funcall search-func (cdr (assq 'nnir-query-spec specs))
1745 server (cadr x)))))
1746 (cdr (assq 'nnir-group-spec specs)))))
1748 (defun nnir-server-to-search-engine (server)
1749 (or (nnir-read-server-parm 'nnir-search-engine server t)
1750 (cdr (assoc (car (gnus-server-to-method server))
1751 nnir-method-default-engines))))
1753 (defun nnir-read-server-parm (key server &optional not-global)
1754 "Returns the parameter value corresponding to `key' for
1755 `server'. If no server-specific value is found consult the global
1756 environment unless `not-global' is non-nil."
1757 (let ((method (gnus-server-to-method server)))
1758 (cond ((and method (assq key (cddr method)))
1759 (nth 1 (assq key (cddr method))))
1760 ((and (not not-global) (boundp key)) (symbol-value key))
1761 (t nil))))
1763 (defun nnir-possibly-change-group (group &optional server)
1764 (or (not server) (nnir-server-opened server) (nnir-open-server server))
1765 (when (gnus-nnir-group-p group)
1766 (setq nnir-artlist (gnus-group-get-parameter
1767 (gnus-group-prefixed-name
1768 (gnus-group-short-name group) '(nnir "nnir"))
1769 'nnir-artlist t))))
1771 (defun nnir-server-opened (&optional server)
1772 (let ((backend (car (gnus-server-to-method server))))
1773 (nnoo-current-server-p (or backend 'nnir) server)))
1775 (autoload 'nnimap-make-thread-query "nnimap")
1776 (declare-function gnus-registry-get-id-key "gnus-registry" (id key))
1778 (defun nnir-search-thread (header)
1779 "Make an nnir group based on the thread containing the article
1780 header. The current server will be searched. If the registry is
1781 installed, the server that the registry reports the current
1782 article came from is also searched."
1783 (let* ((query
1784 (list (cons 'query (nnimap-make-thread-query header))
1785 (cons 'criteria "")))
1786 (server
1787 (list (list (gnus-method-to-server
1788 (gnus-find-method-for-group gnus-newsgroup-name)))))
1789 (registry-group (and
1790 (gnus-bound-and-true-p 'gnus-registry-enabled)
1791 (car (gnus-registry-get-id-key
1792 (mail-header-id header) 'group))))
1793 (registry-server
1794 (and registry-group
1795 (gnus-method-to-server
1796 (gnus-find-method-for-group registry-group)))))
1797 (when registry-server (add-to-list 'server (list registry-server)))
1798 (gnus-group-make-nnir-group nil (list
1799 (cons 'nnir-query-spec query)
1800 (cons 'nnir-group-spec server)))
1801 (gnus-summary-goto-subject (gnus-id-to-article (mail-header-id header)))))
1803 (defun nnir-get-active (srv)
1804 (let ((method (gnus-server-to-method srv))
1805 groups)
1806 (gnus-request-list method)
1807 (with-current-buffer nntp-server-buffer
1808 (let ((cur (current-buffer))
1809 name)
1810 (goto-char (point-min))
1811 (unless (or (null nnir-ignored-newsgroups)
1812 (string= nnir-ignored-newsgroups ""))
1813 (delete-matching-lines nnir-ignored-newsgroups))
1814 (if (eq (car method) 'nntp)
1815 (while (not (eobp))
1816 (ignore-errors
1817 (push (mm-string-as-unibyte
1818 (gnus-group-full-name
1819 (buffer-substring
1820 (point)
1821 (progn
1822 (skip-chars-forward "^ \t")
1823 (point))) method))
1824 groups))
1825 (forward-line))
1826 (while (not (eobp))
1827 (ignore-errors
1828 (push (mm-string-as-unibyte
1829 (if (eq (char-after) ?\")
1830 (gnus-group-full-name (read cur) method)
1831 (let ((p (point)) (name ""))
1832 (skip-chars-forward "^ \t\\\\")
1833 (setq name (buffer-substring p (point)))
1834 (while (eq (char-after) ?\\)
1835 (setq p (1+ (point)))
1836 (forward-char 2)
1837 (skip-chars-forward "^ \t\\\\")
1838 (setq name (concat name (buffer-substring
1839 p (point)))))
1840 (gnus-group-full-name name method))))
1841 groups))
1842 (forward-line)))))
1843 groups))
1845 ;; Behind gnus-registry-enabled test.
1846 (declare-function gnus-registry-action "gnus-registry"
1847 (action data-header from &optional to method))
1849 (defun nnir-registry-action (action data-header from &optional to method)
1850 "Call `gnus-registry-action' with the original article group."
1851 (gnus-registry-action
1852 action
1853 data-header
1854 (nnir-article-group (mail-header-number data-header))
1856 method))
1858 (defun nnir-mode ()
1859 (when (eq (car (gnus-find-method-for-group gnus-newsgroup-name)) 'nnir)
1860 (setq gnus-summary-line-format
1861 (or nnir-summary-line-format gnus-summary-line-format))
1862 (when (gnus-bound-and-true-p 'gnus-registry-enabled)
1863 (remove-hook 'gnus-summary-article-delete-hook 'gnus-registry-action t)
1864 (remove-hook 'gnus-summary-article-move-hook 'gnus-registry-action t)
1865 (remove-hook 'gnus-summary-article-expire-hook 'gnus-registry-action t)
1866 (add-hook 'gnus-summary-article-delete-hook 'nnir-registry-action t t)
1867 (add-hook 'gnus-summary-article-move-hook 'nnir-registry-action t t)
1868 (add-hook 'gnus-summary-article-expire-hook 'nnir-registry-action t t))))
1871 (defun gnus-summary-create-nnir-group ()
1872 (interactive)
1873 (or (nnir-server-opened "") (nnir-open-server "nnir"))
1874 (let ((name (gnus-read-group "Group name: "))
1875 (method '(nnir ""))
1876 (pgroup
1877 (gnus-group-guess-full-name-from-command-method gnus-newsgroup-name)))
1878 (with-current-buffer gnus-group-buffer
1879 (gnus-group-make-group
1880 name method nil
1881 (gnus-group-find-parameter pgroup)))))
1884 (deffoo nnir-request-create-group (group &optional server args)
1885 (message "Creating nnir group %s" group)
1886 (let* ((group (gnus-group-prefixed-name group '(nnir "nnir")))
1887 (specs (assq 'nnir-specs args))
1888 (query-spec
1889 (or (cdr (assq 'nnir-query-spec specs))
1890 (list (cons 'query
1891 (read-string "Query: " nil 'nnir-search-history)))))
1892 (group-spec
1893 (or (cdr (assq 'nnir-group-spec specs))
1894 (list (list (read-string "Server: " nil nil)))))
1895 (nnir-specs (list (cons 'nnir-query-spec query-spec)
1896 (cons 'nnir-group-spec group-spec))))
1897 (gnus-group-set-parameter group 'nnir-specs nnir-specs)
1898 (gnus-group-set-parameter
1899 group 'nnir-artlist
1900 (or (cdr (assq 'nnir-artlist args))
1901 (nnir-run-query nnir-specs)))
1902 (nnir-request-update-info group (gnus-get-info group)))
1905 (deffoo nnir-request-delete-group (group &optional force server)
1908 (deffoo nnir-request-list (&optional server)
1911 (deffoo nnir-request-scan (group method)
1914 (deffoo nnir-request-close ()
1917 (nnoo-define-skeleton nnir)
1919 ;; The end.
1920 (provide 'nnir)
1922 ;;; nnir.el ends here