Merge branch 'master' into comment-cache
[emacs.git] / lisp / gnus / nnir.el
blob9640f2c746f63d9ff7f13bf9b7373abf92a3dbbc
1 ;;; nnir.el --- Search mail with various search engines -*- lexical-binding:t -*-
3 ;; Copyright (C) 1998-2017 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 (require 'cl-lib))
180 ;;; Internal Variables:
182 (defvar nnir-memo-query nil
183 "Internal: stores current query.")
185 (defvar nnir-memo-server nil
186 "Internal: stores current server.")
188 (defvar nnir-artlist nil
189 "Internal: stores search result.")
191 (defvar nnir-search-history ()
192 "Internal: the history for querying search options in nnir")
194 (defconst nnir-tmp-buffer " *nnir*"
195 "Internal: temporary buffer.")
198 ;; Imap variables
200 (defvar nnir-imap-search-arguments
201 '(("whole message" . "TEXT")
202 ("subject" . "SUBJECT")
203 ("to" . "TO")
204 ("from" . "FROM")
205 ("body" . "BODY")
206 ("imap" . ""))
207 "Mapping from user readable keys to IMAP search items for use in nnir")
209 (defvar nnir-imap-search-other "HEADER %S"
210 "The IMAP search item to use for anything other than
211 `nnir-imap-search-arguments'. By default this is the name of an
212 email header field")
214 (defvar nnir-imap-search-argument-history ()
215 "The history for querying search options in nnir")
217 ;;; Helper macros
219 ;; Data type article list.
221 (defmacro nnir-artlist-length (artlist)
222 "Returns number of articles in artlist."
223 `(length ,artlist))
225 (defmacro nnir-artlist-article (artlist n)
226 "Returns from ARTLIST the Nth artitem (counting starting at 1)."
227 `(when (> ,n 0)
228 (elt ,artlist (1- ,n))))
230 (defmacro nnir-artitem-group (artitem)
231 "Returns the group from the ARTITEM."
232 `(elt ,artitem 0))
234 (defmacro nnir-artitem-number (artitem)
235 "Returns the number from the ARTITEM."
236 `(elt ,artitem 1))
238 (defmacro nnir-artitem-rsv (artitem)
239 "Returns the Retrieval Status Value (RSV, score) from the ARTITEM."
240 `(elt ,artitem 2))
242 (defmacro nnir-article-group (article)
243 "Returns the group for ARTICLE"
244 `(nnir-artitem-group (nnir-artlist-article nnir-artlist ,article)))
246 (defmacro nnir-article-number (article)
247 "Returns the number for ARTICLE"
248 `(nnir-artitem-number (nnir-artlist-article nnir-artlist ,article)))
250 (defmacro nnir-article-rsv (article)
251 "Returns the rsv for ARTICLE"
252 `(nnir-artitem-rsv (nnir-artlist-article nnir-artlist ,article)))
254 (defsubst nnir-article-ids (article)
255 "Returns the pair `(nnir id . real id)' of ARTICLE"
256 (cons article (nnir-article-number article)))
258 (defmacro nnir-categorize (sequence keyfunc &optional valuefunc)
259 "Sorts a sequence into categories and returns a list of the form
260 `((key1 (element11 element12)) (key2 (element21 element22))'.
261 The category key for a member of the sequence is obtained
262 as `(keyfunc member)' and the corresponding element is just
263 `member'. If `valuefunc' is non-nil, the element of the list
264 is `(valuefunc member)'."
265 `(unless (null ,sequence)
266 (let (value)
267 (mapc
268 (lambda (member)
269 (let ((y (,keyfunc member))
270 (x ,(if valuefunc
271 `(,valuefunc member)
272 'member)))
273 (if (assoc y value)
274 (push x (cadr (assoc y value)))
275 (push (list y (list x)) value))))
276 ,sequence)
277 value)))
279 ;;; Finish setup:
281 (require 'gnus-sum)
283 (nnoo-declare nnir)
284 (nnoo-define-basics nnir)
286 (gnus-declare-backend "nnir" 'mail 'virtual)
289 ;;; User Customizable Variables:
291 (defgroup nnir nil
292 "Search groups in Gnus with assorted search engines."
293 :group 'gnus)
295 (defcustom nnir-ignored-newsgroups ""
296 "A regexp to match newsgroups in the active file that should
297 be skipped when searching."
298 :version "24.1"
299 :type '(regexp)
300 :group 'nnir)
302 (defcustom nnir-summary-line-format nil
303 "The format specification of the lines in an nnir summary buffer.
305 All the items from `gnus-summary-line-format' are available, along
306 with three items unique to nnir summary buffers:
308 %Z Search retrieval score value (integer)
309 %G Article original full group name (string)
310 %g Article original short group name (string)
312 If nil this will use `gnus-summary-line-format'."
313 :version "24.1"
314 :type '(choice (const :tag "gnus-summary-line-format" nil) string)
315 :group 'nnir)
317 (defcustom nnir-retrieve-headers-override-function nil
318 "If non-nil, a function that accepts an article list and group
319 and populates the `nntp-server-buffer' with the retrieved
320 headers. Must return either 'nov or 'headers indicating the
321 retrieved header format.
323 If this variable is nil, or if the provided function returns nil for a search
324 result, `gnus-retrieve-headers' will be called instead."
325 :version "24.1"
326 :type '(choice (const :tag "gnus-retrieve-headers" nil) function)
327 :group 'nnir)
329 (defcustom nnir-imap-default-search-key "whole message"
330 "The default IMAP search key for an nnir search. Must be one of
331 the keys in `nnir-imap-search-arguments'. To use raw imap queries
332 by default set this to \"imap\"."
333 :version "24.1"
334 :type `(choice ,@(mapcar (lambda (elem) (list 'const (car elem)))
335 nnir-imap-search-arguments))
336 :group 'nnir)
338 (defcustom nnir-swish++-configuration-file
339 (expand-file-name "~/Mail/swish++.conf")
340 "Configuration file for swish++."
341 :type '(file)
342 :group 'nnir)
344 (defcustom nnir-swish++-program "search"
345 "Name of swish++ search executable."
346 :type '(string)
347 :group 'nnir)
349 (defcustom nnir-swish++-additional-switches '()
350 "A list of strings, to be given as additional arguments to swish++.
352 Note that this should be a list. I.e., do NOT use the following:
353 (setq nnir-swish++-additional-switches \"-i -w\") ; wrong
354 Instead, use this:
355 (setq nnir-swish++-additional-switches \\='(\"-i\" \"-w\"))"
356 :type '(repeat (string))
357 :group 'nnir)
359 (defcustom nnir-swish++-remove-prefix (concat (getenv "HOME") "/Mail/")
360 "The prefix to remove from each file name returned by swish++
361 in order to get a group name (albeit with / instead of .). This is a
362 regular expression.
364 This variable is very similar to `nnir-namazu-remove-prefix', except
365 that it is for swish++, not Namazu."
366 :type '(regexp)
367 :group 'nnir)
369 ;; Swish-E.
370 ;; URL: http://swish-e.org/
371 ;; Variables `nnir-swish-e-index-file', `nnir-swish-e-program' and
372 ;; `nnir-swish-e-additional-switches'
374 (make-obsolete-variable 'nnir-swish-e-index-file
375 'nnir-swish-e-index-files "Emacs 23.1")
376 (defcustom nnir-swish-e-index-file
377 (expand-file-name "~/Mail/index.swish-e")
378 "Index file for swish-e.
379 This could be a server parameter.
380 It is never consulted once `nnir-swish-e-index-files', which should be
381 used instead, has been customized."
382 :type '(file)
383 :group 'nnir)
385 (defcustom nnir-swish-e-index-files
386 (list nnir-swish-e-index-file)
387 "List of index files for swish-e.
388 This could be a server parameter."
389 :type '(repeat (file))
390 :group 'nnir)
392 (defcustom nnir-swish-e-program "swish-e"
393 "Name of swish-e search executable.
394 This cannot be a server parameter."
395 :type '(string)
396 :group 'nnir)
398 (defcustom nnir-swish-e-additional-switches '()
399 "A list of strings, to be given as additional arguments to swish-e.
401 Note that this should be a list. I.e., do NOT use the following:
402 (setq nnir-swish-e-additional-switches \"-i -w\") ; wrong
403 Instead, use this:
404 (setq nnir-swish-e-additional-switches \\='(\"-i\" \"-w\"))
406 This could be a server parameter."
407 :type '(repeat (string))
408 :group 'nnir)
410 (defcustom nnir-swish-e-remove-prefix (concat (getenv "HOME") "/Mail/")
411 "The prefix to remove from each file name returned by swish-e
412 in order to get a group name (albeit with / instead of .). This is a
413 regular expression.
415 This variable is very similar to `nnir-namazu-remove-prefix', except
416 that it is for swish-e, not Namazu.
418 This could be a server parameter."
419 :type '(regexp)
420 :group 'nnir)
422 ;; HyREX engine, see <URL:http://ls6-www.cs.uni-dortmund.de/>
424 (defcustom nnir-hyrex-program "nnir-search"
425 "Name of the nnir-search executable."
426 :type '(string)
427 :group 'nnir)
429 (defcustom nnir-hyrex-additional-switches '()
430 "A list of strings, to be given as additional arguments for nnir-search.
431 Note that this should be a list. I.e., do NOT use the following:
432 (setq nnir-hyrex-additional-switches \"-ddl ddl.xml -c nnir\") ; wrong !
433 Instead, use this:
434 (setq nnir-hyrex-additional-switches \\='(\"-ddl\" \"ddl.xml\" \"-c\" \"nnir\"))"
435 :type '(repeat (string))
436 :group 'nnir)
438 (defcustom nnir-hyrex-index-directory (getenv "HOME")
439 "Index directory for HyREX."
440 :type '(directory)
441 :group 'nnir)
443 (defcustom nnir-hyrex-remove-prefix (concat (getenv "HOME") "/Mail/")
444 "The prefix to remove from each file name returned by HyREX
445 in order to get a group name (albeit with / instead of .).
447 For example, suppose that HyREX returns file names such as
448 \"/home/john/Mail/mail/misc/42\". For this example, use the following
449 setting: (setq nnir-hyrex-remove-prefix \"/home/john/Mail/\")
450 Note the trailing slash. Removing this prefix gives \"mail/misc/42\".
451 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
452 arrive at the correct group name, \"mail.misc\"."
453 :type '(directory)
454 :group 'nnir)
456 ;; Namazu engine, see <URL:http://www.namazu.org/>
458 (defcustom nnir-namazu-program "namazu"
459 "Name of Namazu search executable."
460 :type '(string)
461 :group 'nnir)
463 (defcustom nnir-namazu-index-directory (expand-file-name "~/Mail/namazu/")
464 "Index directory for Namazu."
465 :type '(directory)
466 :group 'nnir)
468 (defcustom nnir-namazu-additional-switches '()
469 "A list of strings, to be given as additional arguments to namazu.
470 The switches `-q', `-a', and `-s' are always used, very few other switches
471 make any sense in this context.
473 Note that this should be a list. I.e., do NOT use the following:
474 (setq nnir-namazu-additional-switches \"-i -w\") ; wrong
475 Instead, use this:
476 (setq nnir-namazu-additional-switches \\='(\"-i\" \"-w\"))"
477 :type '(repeat (string))
478 :group 'nnir)
480 (defcustom nnir-namazu-remove-prefix (concat (getenv "HOME") "/Mail/")
481 "The prefix to remove from each file name returned by Namazu
482 in order to get a group name (albeit with / instead of .).
484 For example, suppose that Namazu returns file names such as
485 \"/home/john/Mail/mail/misc/42\". For this example, use the following
486 setting: (setq nnir-namazu-remove-prefix \"/home/john/Mail/\")
487 Note the trailing slash. Removing this prefix gives \"mail/misc/42\".
488 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
489 arrive at the correct group name, \"mail.misc\"."
490 :type '(directory)
491 :group 'nnir)
493 (defcustom nnir-notmuch-program "notmuch"
494 "Name of notmuch search executable."
495 :version "24.1"
496 :type '(string)
497 :group 'nnir)
499 (defcustom nnir-notmuch-additional-switches '()
500 "A list of strings, to be given as additional arguments to notmuch.
502 Note that this should be a list. I.e., do NOT use the following:
503 (setq nnir-notmuch-additional-switches \"-i -w\") ; wrong
504 Instead, use this:
505 (setq nnir-notmuch-additional-switches \\='(\"-i\" \"-w\"))"
506 :version "24.1"
507 :type '(repeat (string))
508 :group 'nnir)
510 (defcustom nnir-notmuch-remove-prefix (concat (getenv "HOME") "/Mail/")
511 "The prefix to remove from each file name returned by notmuch
512 in order to get a group name (albeit with / instead of .). This is a
513 regular expression.
515 This variable is very similar to `nnir-namazu-remove-prefix', except
516 that it is for notmuch, not Namazu."
517 :version "24.1"
518 :type '(regexp)
519 :group 'nnir)
521 ;;; Developer Extension Variable:
523 (defvar nnir-engines
524 `((imap nnir-run-imap
525 ((criteria
526 "Imap Search in" ; Prompt
527 ,(mapcar 'car nnir-imap-search-arguments) ; alist for completing
528 nil ; allow any user input
529 nil ; initial value
530 nnir-imap-search-argument-history ; the history to use
531 ,nnir-imap-default-search-key ; default
533 (gmane nnir-run-gmane
534 ((gmane-author . "Gmane Author: ")))
535 (swish++ nnir-run-swish++
536 ((swish++-group . "Swish++ Group spec (regexp): ")))
537 (swish-e nnir-run-swish-e
538 ((swish-e-group . "Swish-e Group spec (regexp): ")))
539 (namazu nnir-run-namazu
541 (notmuch nnir-run-notmuch
543 (hyrex nnir-run-hyrex
544 ((hyrex-group . "Hyrex Group spec (regexp): ")))
545 (find-grep nnir-run-find-grep
546 ((grep-options . "Grep options: "))))
547 "Alist of supported search engines.
548 Each element in the alist is a three-element list (ENGINE FUNCTION ARGS).
549 ENGINE is a symbol designating the searching engine. FUNCTION is also
550 a symbol, giving the function that does the search. The third element
551 ARGS is a list of cons pairs (PARAM . PROMPT). When issuing a query,
552 the FUNCTION will issue a query for each of the PARAMs, using PROMPT.
554 The value of `nnir-search-engine' must be one of the ENGINE symbols.
555 For example, for searching a server using namazu include
556 (nnir-search-engine namazu)
557 in the server definition. Note that you have to set additional
558 variables for most backends. For example, the `namazu' backend
559 needs the variables `nnir-namazu-program',
560 `nnir-namazu-index-directory' and `nnir-namazu-remove-prefix'.
562 Add an entry here when adding a new search engine.")
564 (defcustom nnir-method-default-engines '((nnimap . imap) (nntp . gmane))
565 "Alist of default search engines keyed by server method."
566 :version "24.1"
567 :group 'nnir
568 :type `(repeat (cons (choice (const nnimap) (const nntp) (const nnspool)
569 (const nneething) (const nndir) (const nnmbox)
570 (const nnml) (const nnmh) (const nndraft)
571 (const nnfolder) (const nnmaildir))
572 (choice
573 ,@(mapcar (lambda (elem) (list 'const (car elem)))
574 nnir-engines)))))
576 ;; Gnus glue.
578 (declare-function gnus-group-topic-name "gnus-topic" ())
580 (defun gnus-group-make-nnir-group (nnir-extra-parms &optional specs)
581 "Create an nnir group. Prompt for a search query and determine
582 the groups to search as follows: if called from the *Server*
583 buffer search all groups belonging to the server on the current
584 line; if called from the *Group* buffer search any marked groups,
585 or the group on the current line, or all the groups under the
586 current topic. Calling with a prefix-arg prompts for additional
587 search-engine specific constraints. A non-nil `specs' arg must be
588 an alist with `nnir-query-spec' and `nnir-group-spec' keys, and
589 skips all prompting."
590 (interactive "P")
591 (let* ((group-spec
592 (or (cdr (assq 'nnir-group-spec specs))
593 (if (gnus-server-server-name)
594 (list (list (gnus-server-server-name)))
595 (nnir-categorize
596 (or gnus-group-marked
597 (if (gnus-group-group-name)
598 (list (gnus-group-group-name))
599 (cdr (assoc (gnus-group-topic-name) gnus-topic-alist))))
600 gnus-group-server))))
601 (query-spec
602 (or (cdr (assq 'nnir-query-spec specs))
603 (apply
604 'append
605 (list (cons 'query
606 (read-string "Query: " nil 'nnir-search-history)))
607 (when nnir-extra-parms
608 (mapcar
609 (lambda (x)
610 (nnir-read-parms (nnir-server-to-search-engine (car x))))
611 group-spec))))))
612 (gnus-group-read-ephemeral-group
613 (concat "nnir-" (message-unique-id))
614 (list 'nnir "nnir")
616 ; (cons (current-buffer) gnus-current-window-configuration)
618 nil nil
619 (list
620 (cons 'nnir-specs (list (cons 'nnir-query-spec query-spec)
621 (cons 'nnir-group-spec group-spec)))
622 (cons 'nnir-artlist nil)))))
624 (defun gnus-summary-make-nnir-group (nnir-extra-parms)
625 "Search a group from the summary buffer."
626 (interactive "P")
627 (gnus-warp-to-article)
628 (let ((spec
629 (list
630 (cons 'nnir-group-spec
631 (list (list
632 (gnus-group-server gnus-newsgroup-name)
633 (list gnus-newsgroup-name)))))))
634 (gnus-group-make-nnir-group nnir-extra-parms spec)))
637 ;; Gnus backend interface functions.
639 (deffoo nnir-open-server (server &optional definitions)
640 ;; Just set the server variables appropriately.
641 (let ((backend (car (gnus-server-to-method server))))
642 (if backend
643 (nnoo-change-server backend server definitions)
644 (add-hook 'gnus-summary-mode-hook 'nnir-mode)
645 (nnoo-change-server 'nnir server definitions))))
647 (deffoo nnir-request-group (group &optional server dont-check info)
648 (nnir-possibly-change-group group server)
649 (let ((pgroup (gnus-group-guess-full-name-from-command-method group))
650 length)
651 ;; Check for cached search result or run the query and cache the
652 ;; result.
653 (unless (and nnir-artlist dont-check)
654 (gnus-group-set-parameter
655 pgroup 'nnir-artlist
656 (setq nnir-artlist
657 (nnir-run-query
658 (gnus-group-get-parameter pgroup 'nnir-specs t))))
659 (nnir-request-update-info pgroup (gnus-get-info pgroup)))
660 (with-current-buffer nntp-server-buffer
661 (if (zerop (setq length (nnir-artlist-length nnir-artlist)))
662 (progn
663 (nnir-close-group group)
664 (nnheader-report 'nnir "Search produced empty results."))
665 (nnheader-insert "211 %d %d %d %s\n"
666 length ; total #
667 1 ; first #
668 length ; last #
669 group)))) ; group name
670 nnir-artlist)
672 (deffoo nnir-retrieve-headers (articles &optional group server fetch-old)
673 (with-current-buffer nntp-server-buffer
674 (let ((gnus-inhibit-demon t)
675 (articles-by-group (nnir-categorize
676 articles nnir-article-group nnir-article-ids))
677 headers)
678 (while (not (null articles-by-group))
679 (let* ((group-articles (pop articles-by-group))
680 (artgroup (car group-articles))
681 (articleids (cadr group-articles))
682 (artlist (sort (mapcar 'cdr articleids) '<))
683 (server (gnus-group-server artgroup))
684 (gnus-override-method (gnus-server-to-method server))
685 parsefunc)
686 ;; (nnir-possibly-change-group nil server)
687 (erase-buffer)
688 (pcase (setq gnus-headers-retrieved-by
690 (and
691 nnir-retrieve-headers-override-function
692 (funcall nnir-retrieve-headers-override-function
693 artlist artgroup))
694 (gnus-retrieve-headers artlist artgroup nil)))
695 ('nov
696 (setq parsefunc 'nnheader-parse-nov))
697 ('headers
698 (setq parsefunc 'nnheader-parse-head))
699 (_ (error "Unknown header type %s while requesting articles \
700 of group %s" gnus-headers-retrieved-by artgroup)))
701 (goto-char (point-min))
702 (while (not (eobp))
703 (let* ((novitem (funcall parsefunc))
704 (artno (and novitem
705 (mail-header-number novitem)))
706 (art (car (rassq artno articleids))))
707 (when art
708 (mail-header-set-number novitem art)
709 (push novitem headers))
710 (forward-line 1)))))
711 (setq headers
712 (sort headers
713 (lambda (x y)
714 (< (mail-header-number x) (mail-header-number y)))))
715 (erase-buffer)
716 (mapc 'nnheader-insert-nov headers)
717 'nov)))
719 (deffoo nnir-request-article (article &optional group server to-buffer)
720 (nnir-possibly-change-group group server)
721 (if (and (stringp article)
722 (not (eq 'nnimap (car (gnus-server-to-method server)))))
723 (nnheader-report
724 'nnir
725 "nnir-request-article only groks message ids for nnimap servers: %s"
726 server)
727 (save-excursion
728 (let ((article article)
729 query)
730 (when (stringp article)
731 (setq gnus-override-method (gnus-server-to-method server))
732 (setq query
733 (list
734 (cons 'query (format "HEADER Message-ID %s" article))
735 (cons 'criteria "")
736 (cons 'shortcut t)))
737 (unless (and nnir-artlist (equal query nnir-memo-query)
738 (equal server nnir-memo-server))
739 (setq nnir-artlist (nnir-run-imap query server)
740 nnir-memo-query query
741 nnir-memo-server server))
742 (setq article 1))
743 (unless (zerop (nnir-artlist-length nnir-artlist))
744 (let ((artfullgroup (nnir-article-group article))
745 (artno (nnir-article-number article)))
746 (message "Requesting article %d from group %s"
747 artno artfullgroup)
748 (if to-buffer
749 (with-current-buffer to-buffer
750 (let ((gnus-article-decode-hook nil))
751 (gnus-request-article-this-buffer artno artfullgroup)))
752 (gnus-request-article artno artfullgroup))
753 (cons artfullgroup artno)))))))
755 (deffoo nnir-request-move-article (article group server accept-form
756 &optional last internal-move-group)
757 (nnir-possibly-change-group group server)
758 (let* ((artfullgroup (nnir-article-group article))
759 (artno (nnir-article-number article))
760 (to-newsgroup (nth 1 accept-form))
761 (to-method (gnus-find-method-for-group to-newsgroup))
762 (from-method (gnus-find-method-for-group artfullgroup))
763 (move-is-internal (gnus-server-equal from-method to-method)))
764 (unless (gnus-check-backend-function
765 'request-move-article artfullgroup)
766 (error "The group %s does not support article moving" artfullgroup))
767 (gnus-request-move-article
768 artno
769 artfullgroup
770 (nth 1 from-method)
771 accept-form
772 last
773 (and move-is-internal
774 to-newsgroup ; Not respooling
775 (gnus-group-real-name to-newsgroup)))))
777 (deffoo nnir-request-expire-articles (articles group &optional server force)
778 (nnir-possibly-change-group group server)
779 (if force
780 (let ((articles-by-group (nnir-categorize
781 articles nnir-article-group nnir-article-ids))
782 not-deleted)
783 (while (not (null articles-by-group))
784 (let* ((group-articles (pop articles-by-group))
785 (artgroup (car group-articles))
786 (articleids (cadr group-articles))
787 (artlist (sort (mapcar 'cdr articleids) '<)))
788 (unless (gnus-check-backend-function 'request-expire-articles
789 artgroup)
790 (error "The group %s does not support article deletion" artgroup))
791 (unless (gnus-check-server (gnus-find-method-for-group artgroup))
792 (error "Couldn't open server for group %s" artgroup))
793 (push (gnus-request-expire-articles
794 artlist artgroup force)
795 not-deleted)))
796 (sort (delq nil not-deleted) '<))
797 articles))
799 (deffoo nnir-warp-to-article ()
800 (nnir-possibly-change-group gnus-newsgroup-name)
801 (let* ((cur (if (> (gnus-summary-article-number) 0)
802 (gnus-summary-article-number)
803 (error "Can't warp to a pseudo-article")))
804 (backend-article-group (nnir-article-group cur))
805 (backend-article-number (nnir-article-number cur))
806 (quit-config (gnus-ephemeral-group-p gnus-newsgroup-name)))
808 ;; what should we do here? we could leave all the buffers around
809 ;; and assume that we have to exit from them one by one. or we can
810 ;; try to clean up directly
812 ;;first exit from the nnir summary buffer.
813 ; (gnus-summary-exit)
814 ;; and if the nnir summary buffer in turn came from another
815 ;; summary buffer we have to clean that summary up too.
816 ; (when (not (eq (cdr quit-config) 'group))
817 ; (gnus-summary-exit))
818 (gnus-summary-read-group-1 backend-article-group t t nil
819 nil (list backend-article-number))))
821 (deffoo nnir-request-update-mark (group article mark)
822 (let ((artgroup (nnir-article-group article))
823 (artnumber (nnir-article-number article)))
824 (or (and artgroup
825 artnumber
826 (gnus-request-update-mark artgroup artnumber mark))
827 mark)))
829 (deffoo nnir-request-set-mark (group actions &optional server)
830 (nnir-possibly-change-group group server)
831 (let (mlist)
832 (dolist (action actions)
833 (cl-destructuring-bind (range action marks) action
834 (let ((articles-by-group (nnir-categorize
835 (gnus-uncompress-range range)
836 nnir-article-group nnir-article-number)))
837 (dolist (artgroup articles-by-group)
838 (push (list
839 (car artgroup)
840 (list (gnus-compress-sequence
841 (sort (cadr artgroup) '<))
842 action marks))
843 mlist)))))
844 (dolist (request (nnir-categorize mlist car cadr))
845 (gnus-request-set-mark (car request) (cadr request)))))
848 (deffoo nnir-request-update-info (group info &optional server)
849 (nnir-possibly-change-group group server)
850 ;; clear out all existing marks.
851 (gnus-info-set-marks info nil)
852 (gnus-info-set-read info nil)
853 (let ((group (gnus-group-guess-full-name-from-command-method group))
854 (articles-by-group
855 (nnir-categorize
856 (gnus-uncompress-range (cons 1 (nnir-artlist-length nnir-artlist)))
857 nnir-article-group nnir-article-ids)))
858 (gnus-set-active group
859 (cons 1 (nnir-artlist-length nnir-artlist)))
860 (while (not (null articles-by-group))
861 (let* ((group-articles (pop articles-by-group))
862 (articleids (reverse (cadr group-articles)))
863 (group-info (gnus-get-info (car group-articles)))
864 (marks (gnus-info-marks group-info))
865 (read (gnus-info-read group-info)))
866 (gnus-info-set-read
867 info
868 (gnus-add-to-range
869 (gnus-info-read info)
870 (delq nil
871 (mapcar
872 #'(lambda (art)
873 (when (gnus-member-of-range (cdr art) read) (car art)))
874 articleids))))
875 (dolist (mark marks)
876 (cl-destructuring-bind (type . range) mark
877 (gnus-add-marked-articles
878 group type
879 (delq nil
880 (mapcar
881 #'(lambda (art)
882 (when (gnus-member-of-range (cdr art) range) (car art)))
883 articleids)))))))))
886 (deffoo nnir-close-group (group &optional server)
887 (nnir-possibly-change-group group server)
888 (let ((pgroup (gnus-group-guess-full-name-from-command-method group)))
889 (when (and nnir-artlist (not (gnus-ephemeral-group-p pgroup)))
890 (gnus-group-set-parameter pgroup 'nnir-artlist nnir-artlist))
891 (setq nnir-artlist nil)
892 (when (gnus-ephemeral-group-p pgroup)
893 (gnus-kill-ephemeral-group pgroup)
894 (setq gnus-ephemeral-servers
895 (delq (assq 'nnir gnus-ephemeral-servers)
896 gnus-ephemeral-servers)))))
897 ;; (gnus-opened-servers-remove
898 ;; (car (assoc '(nnir "nnir-ephemeral" (nnir-address "nnir"))
899 ;; gnus-opened-servers))))
904 (defmacro nnir-add-result (dirnam artno score prefix server artlist)
905 "Ask `nnir-compose-result' to construct a result vector,
906 and if it is non-nil, add it to artlist."
907 `(let ((result (nnir-compose-result ,dirnam ,artno ,score ,prefix ,server)))
908 (when (not (null result))
909 (push result ,artlist))))
911 (autoload 'nnmaildir-base-name-to-article-number "nnmaildir")
913 ;; Helper function currently used by the Swish++ and Namazu backends;
914 ;; perhaps useful for other backends as well
915 (defun nnir-compose-result (dirnam article score prefix server)
916 "Extract the group from dirnam, and create a result vector
917 ready to be added to the list of search results."
919 ;; remove nnir-*-remove-prefix from beginning of dirnam filename
920 (when (string-match (concat "^" prefix) dirnam)
921 (setq dirnam (replace-match "" t t dirnam)))
923 (when (file-readable-p (concat prefix dirnam article))
924 ;; remove trailing slash and, for nnmaildir, cur/new/tmp
925 (setq dirnam
926 (substring dirnam 0
927 (if (string-match "\\`nnmaildir:" (gnus-group-server server))
928 -5 -1)))
930 ;; Set group to dirnam without any leading dots or slashes,
931 ;; and with all subsequent slashes replaced by dots
932 (let ((group (replace-regexp-in-string
933 "[/\\]" "."
934 (replace-regexp-in-string "^[./\\]" "" dirnam nil t)
935 nil t)))
937 (vector (gnus-group-full-name group server)
938 (if (string-match "\\`nnmaildir:" (gnus-group-server server))
939 (nnmaildir-base-name-to-article-number
940 (substring article 0 (string-match ":" article))
941 group nil)
942 (string-to-number article))
943 (string-to-number score)))))
945 ;;; Search Engine Interfaces:
947 (autoload 'nnimap-change-group "nnimap")
948 (declare-function nnimap-buffer "nnimap" ())
949 (declare-function nnimap-command "nnimap" (&rest args))
951 ;; imap interface
952 (defun nnir-run-imap (query srv &optional groups)
953 "Run a search against an IMAP back-end server.
954 This uses a custom query language parser; see `nnir-imap-make-query' for
955 details on the language and supported extensions."
956 (save-excursion
957 (let ((qstring (cdr (assq 'query query)))
958 (server (cadr (gnus-server-to-method srv)))
959 (defs (nth 2 (gnus-server-to-method srv)))
960 (criteria (or (cdr (assq 'criteria query))
961 (cdr (assoc nnir-imap-default-search-key
962 nnir-imap-search-arguments))))
963 (gnus-inhibit-demon t)
964 (groups (or groups (nnir-get-active srv))))
965 (message "Opening server %s" server)
966 (apply
967 'vconcat
968 (catch 'found
969 (mapcar
970 #'(lambda (group)
971 (let (artlist)
972 (condition-case ()
973 (when (nnimap-change-group
974 (gnus-group-short-name group) server)
975 (with-current-buffer (nnimap-buffer)
976 (message "Searching %s..." group)
977 (let ((arts 0)
978 (result (nnimap-command "UID SEARCH %s"
979 (if (string= criteria "")
980 qstring
981 (nnir-imap-make-query
982 criteria qstring)))))
983 (mapc
984 (lambda (artnum)
985 (let ((artn (string-to-number artnum)))
986 (when (> artn 0)
987 (push (vector group artn 100)
988 artlist)
989 (when (assq 'shortcut query)
990 (throw 'found (list artlist)))
991 (setq arts (1+ arts)))))
992 (and (car result)
993 (cdr (assoc "SEARCH" (cdr result)))))
994 (message "Searching %s... %d matches" group arts)))
995 (message "Searching %s...done" group))
996 (quit nil))
997 (nreverse artlist)))
998 groups))))))
1000 (defun nnir-imap-make-query (criteria qstring)
1001 "Parse the query string and criteria into an appropriate IMAP search
1002 expression, returning the string query to make.
1004 This implements a little language designed to return the expected results
1005 to an arbitrary query string to the end user.
1007 The search is always case-insensitive, as defined by RFC2060, and supports
1008 the following features (inspired by the Google search input language):
1010 Automatic \"and\" queries
1011 If you specify multiple words then they will be treated as an \"and\"
1012 expression intended to match all components.
1014 Phrase searches
1015 If you wrap your query in double-quotes then it will be treated as a
1016 literal string.
1018 Negative terms
1019 If you precede a term with \"-\" then it will negate that.
1021 \"OR\" queries
1022 If you include an upper-case \"OR\" in your search it will cause the
1023 term before it and the term after it to be treated as alternatives.
1025 In future the following will be added to the language:
1026 * support for date matches
1027 * support for location of text matching within the query
1028 * from/to/etc headers
1029 * additional search terms
1030 * flag based searching
1031 * anything else that the RFC supports, basically."
1032 ;; Walk through the query and turn it into an IMAP query string.
1033 (nnir-imap-query-to-imap criteria (nnir-imap-parse-query qstring)))
1036 (defun nnir-imap-query-to-imap (criteria query)
1037 "Turn a s-expression format query into IMAP."
1038 (mapconcat
1039 ;; Turn the expressions into IMAP text
1040 (lambda (item)
1041 (nnir-imap-expr-to-imap criteria item))
1042 ;; The query, already in s-expr format.
1043 query
1044 ;; Append a space between each expression
1045 " "))
1048 (defun nnir-imap-expr-to-imap (criteria expr)
1049 "Convert EXPR into an IMAP search expression on CRITERIA"
1050 ;; What sort of expression is this, eh?
1051 (cond
1052 ;; Simple string term
1053 ((stringp expr)
1054 (format "%s %S" criteria expr))
1055 ;; Trivial term: and
1056 ((eq expr 'and) nil)
1057 ;; Composite term: or expression
1058 ((eq (car-safe expr) 'or)
1059 (format "OR %s %s"
1060 (nnir-imap-expr-to-imap criteria (nth 1 expr))
1061 (nnir-imap-expr-to-imap criteria (nth 2 expr))))
1062 ;; Composite term: just the fax, mam
1063 ((eq (car-safe expr) 'not)
1064 (format "NOT (%s)" (nnir-imap-query-to-imap criteria (cdr expr))))
1065 ;; Composite term: just expand it all.
1066 ((consp expr)
1067 (format "(%s)" (nnir-imap-query-to-imap criteria expr)))
1068 ;; Complex value, give up for now.
1069 (t (error "Unhandled input: %S" expr))))
1072 (defun nnir-imap-parse-query (string)
1073 "Turn STRING into an s-expression based query based on the IMAP
1074 query language as defined in `nnir-imap-make-query'.
1076 This involves turning individual tokens into higher level terms
1077 that the search language can then understand and use."
1078 (with-temp-buffer
1079 ;; Set up the parsing environment.
1080 (insert string)
1081 (goto-char (point-min))
1082 ;; Now, collect the output terms and return them.
1083 (let (out)
1084 (while (not (nnir-imap-end-of-input))
1085 (push (nnir-imap-next-expr) out))
1086 (reverse out))))
1089 (defun nnir-imap-next-expr (&optional count)
1090 "Return the next expression from the current buffer."
1091 (let ((term (nnir-imap-next-term count))
1092 (next (nnir-imap-peek-symbol)))
1093 ;; Are we looking at an 'or' expression?
1094 (cond
1095 ;; Handle 'expr or expr'
1096 ((eq next 'or)
1097 (list 'or term (nnir-imap-next-expr 2)))
1098 ;; Anything else
1099 (t term))))
1102 (defun nnir-imap-next-term (&optional count)
1103 "Return the next TERM from the current buffer."
1104 (let ((term (nnir-imap-next-symbol count)))
1105 ;; What sort of term is this?
1106 (cond
1107 ;; and -- just ignore it
1108 ((eq term 'and) 'and)
1109 ;; negated term
1110 ((eq term 'not) (list 'not (nnir-imap-next-expr)))
1111 ;; generic term
1112 (t term))))
1115 (defun nnir-imap-peek-symbol ()
1116 "Return the next symbol from the current buffer, but don't consume it."
1117 (save-excursion
1118 (nnir-imap-next-symbol)))
1120 (defun nnir-imap-next-symbol (&optional count)
1121 "Return the next symbol from the current buffer, or nil if we are
1122 at the end of the buffer. If supplied COUNT skips some symbols before
1123 returning the one at the supplied position."
1124 (when (and (numberp count) (> count 1))
1125 (nnir-imap-next-symbol (1- count)))
1126 (let ((case-fold-search t))
1127 ;; end of input stream?
1128 (unless (nnir-imap-end-of-input)
1129 ;; No, return the next symbol from the stream.
1130 (cond
1131 ;; negated expression -- return it and advance one char.
1132 ((looking-at "-") (forward-char 1) 'not)
1133 ;; quoted string
1134 ((looking-at "\"") (nnir-imap-delimited-string "\""))
1135 ;; list expression -- we parse the content and return this as a list.
1136 ((looking-at "(")
1137 (nnir-imap-parse-query (nnir-imap-delimited-string ")")))
1138 ;; keyword input -- return a symbol version
1139 ((looking-at "\\band\\b") (forward-char 3) 'and)
1140 ((looking-at "\\bor\\b") (forward-char 2) 'or)
1141 ((looking-at "\\bnot\\b") (forward-char 3) 'not)
1142 ;; Simple, boring keyword
1143 (t (let ((start (point))
1144 (end (if (search-forward-regexp "[[:blank:]]" nil t)
1145 (prog1
1146 (match-beginning 0)
1147 ;; unskip if we hit a non-blank terminal character.
1148 (when (string-match "[^[:blank:]]" (match-string 0))
1149 (backward-char 1)))
1150 (goto-char (point-max)))))
1151 (buffer-substring start end)))))))
1153 (defun nnir-imap-delimited-string (delimiter)
1154 "Return a delimited string from the current buffer."
1155 (let ((start (point)) end)
1156 (forward-char 1) ; skip the first delimiter.
1157 (while (not end)
1158 (unless (search-forward delimiter nil t)
1159 (error "Unmatched delimited input with %s in query" delimiter))
1160 (let ((here (point)))
1161 (unless (equal (buffer-substring (- here 2) (- here 1)) "\\")
1162 (setq end (point)))))
1163 (buffer-substring (1+ start) (1- end))))
1165 (defun nnir-imap-end-of-input ()
1166 "Are we at the end of input?"
1167 (skip-chars-forward "[[:blank:]]")
1168 (looking-at "$"))
1171 ;; Swish++ interface.
1172 ;; -cc- Todo
1173 ;; Search by
1174 ;; - group
1175 ;; Sort by
1176 ;; - rank (default)
1177 ;; - article number
1178 ;; - file size
1179 ;; - group
1180 (defun nnir-run-swish++ (query server &optional group)
1181 "Run QUERY against swish++.
1182 Returns a vector of (group name, file name) pairs (also vectors,
1183 actually).
1185 Tested with swish++ 4.7 on GNU/Linux and with swish++ 5.0b2 on
1186 Windows NT 4.0."
1188 ;; (when group
1189 ;; (error "The swish++ backend cannot search specific groups"))
1191 (save-excursion
1192 (let ( (qstring (cdr (assq 'query query)))
1193 (groupspec (cdr (assq 'swish++-group query)))
1194 (prefix (nnir-read-server-parm 'nnir-swish++-remove-prefix server))
1195 artlist
1196 ;; nnml-use-compressed-files might be any string, but probably this
1197 ;; is sufficient. Note that we can't only use the value of
1198 ;; nnml-use-compressed-files because old articles might have been
1199 ;; saved with a different value.
1200 (article-pattern (if (string-match "\\`nnmaildir:"
1201 (gnus-group-server server))
1202 ":[0-9]+"
1203 "^[0-9]+\\(\\.[a-z0-9]+\\)?$"))
1204 score artno dirnam filenam)
1206 (when (equal "" qstring)
1207 (error "swish++: You didn't enter anything"))
1209 (set-buffer (get-buffer-create nnir-tmp-buffer))
1210 (erase-buffer)
1212 (if groupspec
1213 (message "Doing swish++ query %s on %s..." qstring groupspec)
1214 (message "Doing swish++ query %s..." qstring))
1216 (let* ((cp-list `( ,nnir-swish++-program
1217 nil ; input from /dev/null
1218 t ; output
1219 nil ; don't redisplay
1220 "--config-file" ,(nnir-read-server-parm 'nnir-swish++-configuration-file server)
1221 ,@(nnir-read-server-parm 'nnir-swish++-additional-switches server)
1222 ,qstring ; the query, in swish++ format
1224 (exitstatus
1225 (progn
1226 (message "%s args: %s" nnir-swish++-program
1227 (mapconcat #'identity (nthcdr 4 cp-list) " ")) ;; ???
1228 (apply #'call-process cp-list))))
1229 (unless (or (null exitstatus)
1230 (zerop exitstatus))
1231 (nnheader-report 'nnir "Couldn't run swish++: %s" exitstatus)
1232 ;; swish++ failure reason is in this buffer, show it if
1233 ;; the user wants it.
1234 (when (> gnus-verbose 6)
1235 (display-buffer nnir-tmp-buffer))))
1237 ;; The results are output in the format of:
1238 ;; V 4.7 Linux
1239 ;; rank relative-path-name file-size file-title
1240 ;; V 5.0b2:
1241 ;; rank relative-path-name file-size topic??
1242 ;; where rank is an integer from 1 to 100.
1243 (goto-char (point-min))
1244 (while (re-search-forward
1245 "\\(^[0-9]+\\) \\([^ ]+\\) [0-9]+ \\(.*\\)$" nil t)
1246 (setq score (match-string 1)
1247 filenam (match-string 2)
1248 artno (file-name-nondirectory filenam)
1249 dirnam (file-name-directory filenam))
1251 ;; don't match directories
1252 (when (string-match article-pattern artno)
1253 (when (not (null dirnam))
1255 ;; maybe limit results to matching groups.
1256 (when (or (not groupspec)
1257 (string-match groupspec dirnam))
1258 (nnir-add-result dirnam artno score prefix server artlist)))))
1260 (message "Massaging swish++ output...done")
1262 ;; Sort by score
1263 (apply #'vector
1264 (sort artlist
1265 (function (lambda (x y)
1266 (> (nnir-artitem-rsv x)
1267 (nnir-artitem-rsv y)))))))))
1269 ;; Swish-E interface.
1270 (defun nnir-run-swish-e (query server &optional group)
1271 "Run given query against swish-e.
1272 Returns a vector of (group name, file name) pairs (also vectors,
1273 actually).
1275 Tested with swish-e-2.0.1 on Windows NT 4.0."
1277 ;; swish-e crashes with empty parameter to "-w" on commandline...
1278 ;; (when group
1279 ;; (error "The swish-e backend cannot search specific groups"))
1281 (save-excursion
1282 (let ((qstring (cdr (assq 'query query)))
1283 (prefix
1284 (or (nnir-read-server-parm 'nnir-swish-e-remove-prefix server)
1285 (error "Missing parameter `nnir-swish-e-remove-prefix'")))
1286 artlist score artno dirnam group )
1288 (when (equal "" qstring)
1289 (error "swish-e: You didn't enter anything"))
1291 (set-buffer (get-buffer-create nnir-tmp-buffer))
1292 (erase-buffer)
1294 (message "Doing swish-e query %s..." query)
1295 (let* ((index-files
1296 (or (nnir-read-server-parm
1297 'nnir-swish-e-index-files server)
1298 (error "Missing parameter `nnir-swish-e-index-files'")))
1299 (additional-switches
1300 (nnir-read-server-parm
1301 'nnir-swish-e-additional-switches server))
1302 (cp-list `(,nnir-swish-e-program
1303 nil ; input from /dev/null
1304 t ; output
1305 nil ; don't redisplay
1306 "-f" ,@index-files
1307 ,@additional-switches
1308 "-w"
1309 ,qstring ; the query, in swish-e format
1311 (exitstatus
1312 (progn
1313 (message "%s args: %s" nnir-swish-e-program
1314 (mapconcat #'identity (nthcdr 4 cp-list) " "))
1315 (apply #'call-process cp-list))))
1316 (unless (or (null exitstatus)
1317 (zerop exitstatus))
1318 (nnheader-report 'nnir "Couldn't run swish-e: %s" exitstatus)
1319 ;; swish-e failure reason is in this buffer, show it if
1320 ;; the user wants it.
1321 (when (> gnus-verbose 6)
1322 (display-buffer nnir-tmp-buffer))))
1324 ;; The results are output in the format of:
1325 ;; rank path-name file-title file-size
1326 (goto-char (point-min))
1327 (while (re-search-forward
1328 "\\(^[0-9]+\\) \\([^ ]+\\) \"\\([^\"]+\\)\" [0-9]+$" nil t)
1329 (setq score (match-string 1)
1330 artno (match-string 3)
1331 dirnam (file-name-directory (match-string 2)))
1333 ;; don't match directories
1334 (when (string-match "^[0-9]+$" artno)
1335 (when (not (null dirnam))
1337 ;; remove nnir-swish-e-remove-prefix from beginning of dirname
1338 (when (string-match (concat "^" prefix) dirnam)
1339 (setq dirnam (replace-match "" t t dirnam)))
1341 (setq dirnam (substring dirnam 0 -1))
1342 ;; eliminate all ".", "/", "\" from beginning. Always matches.
1343 (string-match "^[./\\]*\\(.*\\)$" dirnam)
1344 ;; "/" -> "."
1345 (setq group (replace-regexp-in-string
1346 "/" "." (match-string 1 dirnam)))
1347 ;; Windows "\\" -> "."
1348 (setq group (replace-regexp-in-string "\\\\" "." group))
1350 (push (vector (gnus-group-full-name group server)
1351 (string-to-number artno)
1352 (string-to-number score))
1353 artlist))))
1355 (message "Massaging swish-e output...done")
1357 ;; Sort by score
1358 (apply #'vector
1359 (sort artlist
1360 (function (lambda (x y)
1361 (> (nnir-artitem-rsv x)
1362 (nnir-artitem-rsv y)))))))))
1364 ;; HyREX interface
1365 (defun nnir-run-hyrex (query server &optional group)
1366 (save-excursion
1367 (let ((artlist nil)
1368 (groupspec (cdr (assq 'hyrex-group query)))
1369 (qstring (cdr (assq 'query query)))
1370 (prefix (nnir-read-server-parm 'nnir-hyrex-remove-prefix server))
1371 score artno dirnam)
1372 (when (and (not groupspec) group)
1373 (setq groupspec
1374 (regexp-opt
1375 (mapcar (lambda (x) (gnus-group-real-name x)) group))))
1376 (set-buffer (get-buffer-create nnir-tmp-buffer))
1377 (erase-buffer)
1378 (message "Doing hyrex-search query %s..." query)
1379 (let* ((cp-list
1380 `( ,nnir-hyrex-program
1381 nil ; input from /dev/null
1382 t ; output
1383 nil ; don't redisplay
1384 "-i",(nnir-read-server-parm 'nnir-hyrex-index-directory server) ; index directory
1385 ,@(nnir-read-server-parm 'nnir-hyrex-additional-switches server)
1386 ,qstring ; the query, in hyrex-search format
1388 (exitstatus
1389 (progn
1390 (message "%s args: %s" nnir-hyrex-program
1391 (mapconcat #'identity (nthcdr 4 cp-list) " "))
1392 (apply #'call-process cp-list))))
1393 (unless (or (null exitstatus)
1394 (zerop exitstatus))
1395 (nnheader-report 'nnir "Couldn't run hyrex-search: %s" exitstatus)
1396 ;; nnir-search failure reason is in this buffer, show it if
1397 ;; the user wants it.
1398 (when (> gnus-verbose 6)
1399 (display-buffer nnir-tmp-buffer)))) ;; FIXME: Don't clear buffer !
1400 (message "Doing hyrex-search query \"%s\"...done" qstring)
1401 (sit-for 0)
1402 ;; nnir-search returns:
1403 ;; for nnml/nnfolder: "filename mailid weight"
1404 ;; for nnimap: "group mailid weight"
1405 (goto-char (point-min))
1406 (delete-non-matching-lines "^\\S + [0-9]+ [0-9]+$")
1407 ;; HyREX doesn't search directly in groups -- so filter out here.
1408 (when groupspec
1409 (keep-lines groupspec))
1410 ;; extract data from result lines
1411 (goto-char (point-min))
1412 (while (re-search-forward
1413 "\\(\\S +\\) \\([0-9]+\\) \\([0-9]+\\)" nil t)
1414 (setq dirnam (match-string 1)
1415 artno (match-string 2)
1416 score (match-string 3))
1417 (when (string-match prefix dirnam)
1418 (setq dirnam (replace-match "" t t dirnam)))
1419 (push (vector (gnus-group-full-name
1420 (replace-regexp-in-string "/" "." dirnam) server)
1421 (string-to-number artno)
1422 (string-to-number score))
1423 artlist))
1424 (message "Massaging hyrex-search output...done.")
1425 (apply #'vector
1426 (sort artlist
1427 (function (lambda (x y)
1428 (if (string-lessp (nnir-artitem-group x)
1429 (nnir-artitem-group y))
1431 (< (nnir-artitem-number x)
1432 (nnir-artitem-number y)))))))
1435 ;; Namazu interface
1436 (defun nnir-run-namazu (query server &optional group)
1437 "Run given query against Namazu. Returns a vector of (group name, file name)
1438 pairs (also vectors, actually).
1440 Tested with Namazu 2.0.6 on a GNU/Linux system."
1441 ;; (when group
1442 ;; (error "The Namazu backend cannot search specific groups"))
1443 (save-excursion
1444 (let ((article-pattern (if (string-match "\\`nnmaildir:"
1445 (gnus-group-server server))
1446 ":[0-9]+"
1447 "^[0-9]+$"))
1448 artlist
1449 (qstring (cdr (assq 'query query)))
1450 (prefix (nnir-read-server-parm 'nnir-namazu-remove-prefix server))
1451 score group article
1452 (process-environment (copy-sequence process-environment)))
1453 (setenv "LC_MESSAGES" "C")
1454 (set-buffer (get-buffer-create nnir-tmp-buffer))
1455 (erase-buffer)
1456 (let* ((cp-list
1457 `( ,nnir-namazu-program
1458 nil ; input from /dev/null
1459 t ; output
1460 nil ; don't redisplay
1461 "-q" ; don't be verbose
1462 "-a" ; show all matches
1463 "-s" ; use short format
1464 ,@(nnir-read-server-parm 'nnir-namazu-additional-switches server)
1465 ,qstring ; the query, in namazu format
1466 ,(nnir-read-server-parm 'nnir-namazu-index-directory server) ; index directory
1468 (exitstatus
1469 (progn
1470 (message "%s args: %s" nnir-namazu-program
1471 (mapconcat #'identity (nthcdr 4 cp-list) " "))
1472 (apply #'call-process cp-list))))
1473 (unless (or (null exitstatus)
1474 (zerop exitstatus))
1475 (nnheader-report 'nnir "Couldn't run namazu: %s" exitstatus)
1476 ;; Namazu failure reason is in this buffer, show it if
1477 ;; the user wants it.
1478 (when (> gnus-verbose 6)
1479 (display-buffer nnir-tmp-buffer))))
1481 ;; Namazu output looks something like this:
1482 ;; 2. Re: Gnus agent expire broken (score: 55)
1483 ;; /home/henrik/Mail/mail/sent/1310 (4,138 bytes)
1485 (goto-char (point-min))
1486 (while (re-search-forward
1487 "^\\([0-9,]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)"
1488 nil t)
1489 (setq score (match-string 3)
1490 group (file-name-directory (match-string 4))
1491 article (file-name-nondirectory (match-string 4)))
1493 ;; make sure article and group is sane
1494 (when (and (string-match article-pattern article)
1495 (not (null group)))
1496 (nnir-add-result group article score prefix server artlist)))
1498 ;; sort artlist by score
1499 (apply #'vector
1500 (sort artlist
1501 (function (lambda (x y)
1502 (> (nnir-artitem-rsv x)
1503 (nnir-artitem-rsv y)))))))))
1505 (defun nnir-run-notmuch (query server &optional group)
1506 "Run QUERY against notmuch.
1507 Returns a vector of (group name, file name) pairs (also vectors,
1508 actually)."
1510 ;; (when group
1511 ;; (error "The notmuch backend cannot search specific groups"))
1513 (save-excursion
1514 (let ( (qstring (cdr (assq 'query query)))
1515 (groupspec (cdr (assq 'notmuch-group query)))
1516 (prefix (nnir-read-server-parm 'nnir-notmuch-remove-prefix server))
1517 artlist
1518 (article-pattern (if (string-match "\\`nnmaildir:"
1519 (gnus-group-server server))
1520 ":[0-9]+"
1521 "^[0-9]+$"))
1522 artno dirnam filenam)
1524 (when (equal "" qstring)
1525 (error "notmuch: You didn't enter anything"))
1527 (set-buffer (get-buffer-create nnir-tmp-buffer))
1528 (erase-buffer)
1530 (if groupspec
1531 (message "Doing notmuch query %s on %s..." qstring groupspec)
1532 (message "Doing notmuch query %s..." qstring))
1534 (let* ((cp-list `( ,nnir-notmuch-program
1535 nil ; input from /dev/null
1536 t ; output
1537 nil ; don't redisplay
1538 "search"
1539 "--format=text"
1540 "--output=files"
1541 ,@(nnir-read-server-parm 'nnir-notmuch-additional-switches server)
1542 ,qstring ; the query, in notmuch format
1544 (exitstatus
1545 (progn
1546 (message "%s args: %s" nnir-notmuch-program
1547 (mapconcat #'identity (nthcdr 4 cp-list) " ")) ;; ???
1548 (apply #'call-process cp-list))))
1549 (unless (or (null exitstatus)
1550 (zerop exitstatus))
1551 (nnheader-report 'nnir "Couldn't run notmuch: %s" exitstatus)
1552 ;; notmuch failure reason is in this buffer, show it if
1553 ;; the user wants it.
1554 (when (> gnus-verbose 6)
1555 (display-buffer nnir-tmp-buffer))))
1557 ;; The results are output in the format of:
1558 ;; absolute-path-name
1559 (goto-char (point-min))
1560 (while (not (eobp))
1561 (setq filenam (buffer-substring-no-properties (line-beginning-position)
1562 (line-end-position))
1563 artno (file-name-nondirectory filenam)
1564 dirnam (file-name-directory filenam))
1565 (forward-line 1)
1567 ;; don't match directories
1568 (when (string-match article-pattern artno)
1569 (when (not (null dirnam))
1571 ;; maybe limit results to matching groups.
1572 (when (or (not groupspec)
1573 (string-match groupspec dirnam))
1574 (nnir-add-result dirnam artno "" prefix server artlist)))))
1576 (message "Massaging notmuch output...done")
1578 artlist)))
1580 (defun nnir-run-find-grep (query server &optional grouplist)
1581 "Run find and grep to obtain matching articles."
1582 (let* ((method (gnus-server-to-method server))
1583 (sym (intern
1584 (concat (symbol-name (car method)) "-directory")))
1585 (directory (cadr (assoc sym (cddr method))))
1586 (regexp (cdr (assoc 'query query)))
1587 (grep-options (cdr (assoc 'grep-options query)))
1588 (grouplist (or grouplist (nnir-get-active server))))
1589 (unless directory
1590 (error "No directory found in method specification of server %s"
1591 server))
1592 (apply
1593 'vconcat
1594 (mapcar (lambda (x)
1595 (let ((group x)
1596 artlist)
1597 (message "Searching %s using find-grep..."
1598 (or group server))
1599 (save-window-excursion
1600 (set-buffer (get-buffer-create nnir-tmp-buffer))
1601 (if (> gnus-verbose 6)
1602 (pop-to-buffer (current-buffer)))
1603 (cd directory) ; Using relative paths simplifies
1604 ; postprocessing.
1605 (let ((group
1606 (if (not group)
1608 ;; Try accessing the group literally as
1609 ;; well as interpreting dots as directory
1610 ;; separators so the engine works with
1611 ;; plain nnml as well as the Gnus Cache.
1612 (let ((group (gnus-group-real-name group)))
1613 ;; Replace cl-func find-if.
1614 (if (file-directory-p group)
1615 group
1616 (if (file-directory-p
1617 (setq group
1618 (replace-regexp-in-string
1619 "\\." "/"
1620 group nil t)))
1621 group))))))
1622 (unless group
1623 (error "Cannot locate directory for group"))
1624 (save-excursion
1625 (apply
1626 'call-process "find" nil t
1627 "find" group "-maxdepth" "1" "-type" "f"
1628 "-name" "[0-9]*" "-exec"
1629 "grep"
1630 `("-l" ,@(and grep-options
1631 (split-string grep-options "\\s-" t))
1632 "-e" ,regexp "{}" "+"))))
1634 ;; Translate relative paths to group names.
1635 (while (not (eobp))
1636 (let* ((path (split-string
1637 (buffer-substring
1638 (point)
1639 (line-end-position)) "/" t))
1640 (art (string-to-number (car (last path)))))
1641 (while (string= "." (car path))
1642 (setq path (cdr path)))
1643 (let ((group (mapconcat #'identity
1644 ;; Replace cl-func:
1645 ;; (subseq path 0 -1)
1646 (let ((end (1- (length path)))
1647 res)
1648 (while
1649 (>= (setq end (1- end)) 0)
1650 (push (pop path) res))
1651 (nreverse res))
1652 ".")))
1653 (push
1654 (vector (gnus-group-full-name group server) art 0)
1655 artlist))
1656 (forward-line 1)))
1657 (message "Searching %s using find-grep...done"
1658 (or group server))
1659 artlist)))
1660 grouplist))))
1662 (declare-function mm-url-insert "mm-url" (url &optional follow-refresh))
1663 (declare-function mm-url-encode-www-form-urlencoded "mm-url" (pairs))
1665 ;; gmane interface
1666 (defun nnir-run-gmane (query srv &optional groups)
1667 "Run a search against a gmane back-end server."
1668 (let* ((case-fold-search t)
1669 (qstring (cdr (assq 'query query)))
1670 (server (cadr (gnus-server-to-method srv)))
1671 (groupspec (mapconcat
1672 (lambda (x)
1673 (if (string-match-p "gmane" x)
1674 (format "group:%s" (gnus-group-short-name x))
1675 (error "Can't search non-gmane groups: %s" x)))
1676 groups " "))
1677 (authorspec
1678 (if (assq 'gmane-author query)
1679 (format "author:%s" (cdr (assq 'gmane-author query))) ""))
1680 (search (format "%s %s %s"
1681 qstring groupspec authorspec))
1682 (gnus-inhibit-demon t)
1683 artlist)
1684 (require 'mm-url)
1685 (with-current-buffer (get-buffer-create nnir-tmp-buffer)
1686 (erase-buffer)
1687 (mm-url-insert
1688 (concat
1689 "http://search.gmane.org/nov.php"
1691 (mm-url-encode-www-form-urlencoded
1692 `(("query" . ,search)
1693 ("HITSPERPAGE" . "999")))))
1694 (set-buffer-multibyte t)
1695 (decode-coding-region (point-min) (point-max) 'utf-8)
1696 (goto-char (point-min))
1697 (forward-line 1)
1698 (while (not (eobp))
1699 (unless (or (eolp) (looking-at "\x0d"))
1700 (let ((header (nnheader-parse-nov)))
1701 (let ((xref (mail-header-xref header))
1702 (xscore (string-to-number (cdr (assoc 'X-Score
1703 (mail-header-extra header))))))
1704 (when (string-match " \\([^:]+\\)[:/]\\([0-9]+\\)" xref)
1705 (push
1706 (vector
1707 (gnus-group-prefixed-name (match-string 1 xref) srv)
1708 (string-to-number (match-string 2 xref)) xscore)
1709 artlist)))))
1710 (forward-line 1)))
1711 (apply #'vector (nreverse (delete-dups artlist)))))
1713 ;;; Util Code:
1715 (defun gnus-nnir-group-p (group)
1716 "Say whether GROUP is nnir or not."
1717 (if (gnus-group-prefixed-p group)
1718 (eq 'nnir (car (gnus-find-method-for-group group)))
1719 (and group (string-match "^nnir" group))))
1721 (defun nnir-read-parms (nnir-search-engine)
1722 "Reads additional search parameters according to `nnir-engines'."
1723 (let ((parmspec (nth 2 (assoc nnir-search-engine nnir-engines))))
1724 (mapcar #'nnir-read-parm parmspec)))
1726 (defun nnir-read-parm (parmspec)
1727 "Reads a single search parameter.
1728 `parmspec' is a cons cell, the car is a symbol, the cdr is a prompt."
1729 (let ((sym (car parmspec))
1730 (prompt (cdr parmspec)))
1731 (if (listp prompt)
1732 (let* ((result (apply #'gnus-completing-read prompt))
1733 (mapping (or (assoc result nnir-imap-search-arguments)
1734 (cons nil nnir-imap-search-other))))
1735 (cons sym (format (cdr mapping) result)))
1736 (cons sym (read-string prompt)))))
1738 (defun nnir-run-query (specs)
1739 "Invoke appropriate search engine function (see `nnir-engines')."
1740 (apply #'vconcat
1741 (mapcar
1742 (lambda (x)
1743 (let* ((server (car x))
1744 (search-engine (nnir-server-to-search-engine server))
1745 (search-func (cadr (assoc search-engine nnir-engines))))
1746 (and search-func
1747 (funcall search-func (cdr (assq 'nnir-query-spec specs))
1748 server (cadr x)))))
1749 (cdr (assq 'nnir-group-spec specs)))))
1751 (defun nnir-server-to-search-engine (server)
1752 (or (nnir-read-server-parm 'nnir-search-engine server t)
1753 (cdr (assoc (car (gnus-server-to-method server))
1754 nnir-method-default-engines))))
1756 (defun nnir-read-server-parm (key server &optional not-global)
1757 "Returns the parameter value corresponding to `key' for
1758 `server'. If no server-specific value is found consult the global
1759 environment unless `not-global' is non-nil."
1760 (let ((method (gnus-server-to-method server)))
1761 (cond ((and method (assq key (cddr method)))
1762 (nth 1 (assq key (cddr method))))
1763 ((and (not not-global) (boundp key)) (symbol-value key))
1764 (t nil))))
1766 (defun nnir-possibly-change-group (group &optional server)
1767 (or (not server) (nnir-server-opened server) (nnir-open-server server))
1768 (when (gnus-nnir-group-p group)
1769 (setq nnir-artlist (gnus-group-get-parameter
1770 (gnus-group-prefixed-name
1771 (gnus-group-short-name group) '(nnir "nnir"))
1772 'nnir-artlist t))))
1774 (defun nnir-server-opened (&optional server)
1775 (let ((backend (car (gnus-server-to-method server))))
1776 (nnoo-current-server-p (or backend 'nnir) server)))
1778 (autoload 'nnimap-make-thread-query "nnimap")
1779 (declare-function gnus-registry-get-id-key "gnus-registry" (id key))
1781 (defun nnir-search-thread (header)
1782 "Make an nnir group based on the thread containing the article
1783 header. The current server will be searched. If the registry is
1784 installed, the server that the registry reports the current
1785 article came from is also searched."
1786 (let* ((query
1787 (list (cons 'query (nnimap-make-thread-query header))
1788 (cons 'criteria "")))
1789 (server
1790 (list (list (gnus-method-to-server
1791 (gnus-find-method-for-group gnus-newsgroup-name)))))
1792 (registry-group (and
1793 (bound-and-true-p gnus-registry-enabled)
1794 (car (gnus-registry-get-id-key
1795 (mail-header-id header) 'group))))
1796 (registry-server
1797 (and registry-group
1798 (gnus-method-to-server
1799 (gnus-find-method-for-group registry-group)))))
1800 (when registry-server
1801 (cl-pushnew (list registry-server) server :test #'equal))
1802 (gnus-group-make-nnir-group nil (list
1803 (cons 'nnir-query-spec query)
1804 (cons 'nnir-group-spec server)))
1805 (gnus-summary-goto-subject (gnus-id-to-article (mail-header-id header)))))
1807 (defun nnir-get-active (srv)
1808 (let ((method (gnus-server-to-method srv))
1809 groups)
1810 (gnus-request-list method)
1811 (with-current-buffer nntp-server-buffer
1812 (let ((cur (current-buffer))
1813 name)
1814 (goto-char (point-min))
1815 (unless (or (null nnir-ignored-newsgroups)
1816 (string= nnir-ignored-newsgroups ""))
1817 (delete-matching-lines nnir-ignored-newsgroups))
1818 (if (eq (car method) 'nntp)
1819 (while (not (eobp))
1820 (ignore-errors
1821 (push (string-as-unibyte
1822 (gnus-group-full-name
1823 (buffer-substring
1824 (point)
1825 (progn
1826 (skip-chars-forward "^ \t")
1827 (point)))
1828 method))
1829 groups))
1830 (forward-line))
1831 (while (not (eobp))
1832 (ignore-errors
1833 (push (string-as-unibyte
1834 (if (eq (char-after) ?\")
1835 (gnus-group-full-name (read cur) method)
1836 (let ((p (point)) (name ""))
1837 (skip-chars-forward "^ \t\\\\")
1838 (setq name (buffer-substring p (point)))
1839 (while (eq (char-after) ?\\)
1840 (setq p (1+ (point)))
1841 (forward-char 2)
1842 (skip-chars-forward "^ \t\\\\")
1843 (setq name (concat name (buffer-substring
1844 p (point)))))
1845 (gnus-group-full-name name method))))
1846 groups))
1847 (forward-line)))))
1848 groups))
1850 ;; Behind gnus-registry-enabled test.
1851 (declare-function gnus-registry-action "gnus-registry"
1852 (action data-header from &optional to method))
1854 (defun nnir-registry-action (action data-header from &optional to method)
1855 "Call `gnus-registry-action' with the original article group."
1856 (gnus-registry-action
1857 action
1858 data-header
1859 (nnir-article-group (mail-header-number data-header))
1861 method))
1863 (defun nnir-mode ()
1864 (when (eq (car (gnus-find-method-for-group gnus-newsgroup-name)) 'nnir)
1865 (setq gnus-summary-line-format
1866 (or nnir-summary-line-format gnus-summary-line-format))
1867 (when (bound-and-true-p gnus-registry-enabled)
1868 (remove-hook 'gnus-summary-article-delete-hook 'gnus-registry-action t)
1869 (remove-hook 'gnus-summary-article-move-hook 'gnus-registry-action t)
1870 (remove-hook 'gnus-summary-article-expire-hook 'gnus-registry-action t)
1871 (add-hook 'gnus-summary-article-delete-hook 'nnir-registry-action t t)
1872 (add-hook 'gnus-summary-article-move-hook 'nnir-registry-action t t)
1873 (add-hook 'gnus-summary-article-expire-hook 'nnir-registry-action t t))))
1876 (defun gnus-summary-create-nnir-group ()
1877 (interactive)
1878 (or (nnir-server-opened "") (nnir-open-server "nnir"))
1879 (let ((name (gnus-read-group "Group name: "))
1880 (method '(nnir ""))
1881 (pgroup
1882 (gnus-group-guess-full-name-from-command-method gnus-newsgroup-name)))
1883 (with-current-buffer gnus-group-buffer
1884 (gnus-group-make-group
1885 name method nil
1886 (gnus-group-find-parameter pgroup)))))
1889 (deffoo nnir-request-create-group (group &optional server args)
1890 (message "Creating nnir group %s" group)
1891 (let* ((group (gnus-group-prefixed-name group '(nnir "nnir")))
1892 (specs (assq 'nnir-specs args))
1893 (query-spec
1894 (or (cdr (assq 'nnir-query-spec specs))
1895 (list (cons 'query
1896 (read-string "Query: " nil 'nnir-search-history)))))
1897 (group-spec
1898 (or (cdr (assq 'nnir-group-spec specs))
1899 (list (list (read-string "Server: " nil nil)))))
1900 (nnir-specs (list (cons 'nnir-query-spec query-spec)
1901 (cons 'nnir-group-spec group-spec))))
1902 (gnus-group-set-parameter group 'nnir-specs nnir-specs)
1903 (gnus-group-set-parameter
1904 group 'nnir-artlist
1905 (or (cdr (assq 'nnir-artlist args))
1906 (nnir-run-query nnir-specs)))
1907 (nnir-request-update-info group (gnus-get-info group)))
1910 (deffoo nnir-request-delete-group (group &optional force server)
1913 (deffoo nnir-request-list (&optional server)
1916 (deffoo nnir-request-scan (group method)
1919 (deffoo nnir-request-close ()
1922 (nnoo-define-skeleton nnir)
1924 ;; The end.
1925 (provide 'nnir)
1927 ;;; nnir.el ends here