(gnus-html-schedule-image-fetching): Protect against invalid URLs.
[gnus] / lisp / nnir.el
1 ;;; nnir.el --- search mail with various search engines -*- coding: iso-8859-1 -*-
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;;   2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5
6 ;; Author: Kai Großjohann <grossjohann@ls6.cs.uni-dortmund.de>
7 ;; Swish-e and Swish++ backends by:
8 ;;   Christoph Conrad <christoph.conrad@gmx.de>.
9 ;; IMAP backend by: Simon Josefsson <jas@pdc.kth.se>.
10 ;; IMAP search by: Torsten Hilbrich <torsten.hilbrich <at> gmx.net>
11 ;; IMAP search improved by Daniel Pittman  <daniel@rimspace.net>.
12 ;; nnmaildir support for Swish++ and Namazu backends by:
13 ;;   Justus Piater <Justus <at> Piater.name>
14 ;; Keywords: news mail searching ir
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; TODO: Documentation in the Gnus manual
34
35 ;; From: Reiner Steib
36 ;; Subject: Re: Including nnir.el
37 ;; Newsgroups: gmane.emacs.gnus.general
38 ;; Message-ID: <v9d5dnp6aq.fsf@marauder.physik.uni-ulm.de>
39 ;; Date: 2006-06-05 22:49:01 GMT
40 ;;
41 ;; On Sun, Jun 04 2006, Sascha Wilde wrote:
42 ;;
43 ;; > The one thing most hackers like to forget: Documentation.  By now the
44 ;; > documentation is only in the comments at the head of the source, I
45 ;; > would use it as basis to cook up some minimal texinfo docs.
46 ;; >
47 ;; > Where in the existing gnus manual would this fit best?
48
49 ;; Maybe (info "(gnus)Combined Groups") for a general description.
50 ;; `gnus-group-make-nnir-group' might be described in (info
51 ;; "(gnus)Foreign Groups") as well.
52
53
54 ;; The most recent version of this can always be fetched from the Gnus
55 ;; repository.  See http://www.gnus.org/ for more information.
56
57 ;; This code is still in the development stage but I'd like other
58 ;; people to have a look at it.  Please do not hesitate to contact me
59 ;; with your ideas.
60
61 ;; What does it do?  Well, it allows you to index your mail using some
62 ;; search engine (freeWAIS-sf, swish-e and others -- see later),
63 ;; then type `G G' in the Group buffer and issue a query to the search
64 ;; engine.  You will then get a buffer which shows all articles
65 ;; matching the query, sorted by Retrieval Status Value (score).
66
67 ;; When looking at the retrieval result (in the Summary buffer) you
68 ;; can type `G T' (aka M-x gnus-summary-nnir-goto-thread RET) on an
69 ;; article.  You will be teleported into the group this article came
70 ;; from, showing the thread this article is part of.  (See below for
71 ;; restrictions.)
72
73 ;; The Lisp installation is simple: just put this file on your
74 ;; load-path, byte-compile it, and load it from ~/.gnus or something.
75 ;; This will install a new command `G G' in your Group buffer for
76 ;; searching your mail.  Note that you also need to configure a number
77 ;; of variables, as described below.
78
79 ;; Restrictions:
80 ;;
81 ;; * If you don't use HyREX as your search engine, this expects that
82 ;;   you use nnml or another one-file-per-message backend, because the
83 ;;   others doesn't support nnfolder.
84 ;; * It can only search the mail backend's which are supported by one
85 ;;   search engine, because of different query languages.
86 ;; * There are restrictions to the Wais setup.
87 ;; * There are restrictions to the imap setup.
88 ;; * gnus-summary-nnir-goto-thread: Fetches whole group first, before
89 ;;   limiting to the right articles.  This is much too slow, of
90 ;;   course.  May issue a query for number of articles to fetch; you
91 ;;   must accept the default of all articles at this point or things
92 ;;   may break.
93
94 ;; The Lisp setup involves setting a few variables and setting up the
95 ;; search engine. You can define the variables in the server definition
96 ;; like this :
97 ;;   (setq gnus-secondary-select-methods '(
98 ;;       (nnimap "" (nnimap-address "localhost")
99 ;;                  (nnir-search-engine hyrex)
100 ;;                  (nnir-hyrex-additional-switches ("-d" "ddl-nnimap.xml"))
101 ;;       )))
102 ;; Or you can define the global ones. The variables set in the mailer-
103 ;; definition will be used first.
104 ;; The variable to set is `nnir-search-engine'.  Choose one of the engines
105 ;; listed in `nnir-engines'.  (Actually `nnir-engines' is an alist,
106 ;; type `C-h v nnir-engines RET' for more information; this includes
107 ;; examples for setting `nnir-search-engine', too.)
108 ;;
109 ;; The variable nnir-mail-backend isn't used anymore.
110 ;;
111
112 ;; You must also set up a search engine.  I'll tell you about the two
113 ;; search engines currently supported:
114
115 ;; 1. freeWAIS-sf
116 ;;
117 ;; As always with freeWAIS-sf, you need a so-called `format file'.  I
118 ;; use the following file:
119 ;;
120 ;; ,-----
121 ;; | # Kai's format file for freeWAIS-sf for indexing mails.
122 ;; | # Each mail is in a file, much like the MH format.
123 ;; |
124 ;; | # Document separator should never match -- each file is a document.
125 ;; | record-sep: /^@this regex should never match@$/
126 ;; |
127 ;; | # Searchable fields specification.
128 ;; |
129 ;; | region: /^[sS]ubject:/ /^[sS]ubject: */
130 ;; |         subject "Subject header" stemming TEXT BOTH
131 ;; | end: /^[^ \t]/
132 ;; |
133 ;; | region: /^([tT][oO]|[cC][cC]):/ /^([tT][oO]|[cC][cC]): */
134 ;; |         to "To and Cc headers" SOUNDEX BOTH
135 ;; | end: /^[^ \t]/
136 ;; |
137 ;; | region: /^[fF][rR][oO][mM]:/ /^[fF][rR][oO][mM]: */
138 ;; |         from "From header" SOUNDEX BOTH
139 ;; | end: /^[^ \t]/
140 ;; |
141 ;; | region: /^$/
142 ;; |         stemming TEXT GLOBAL
143 ;; | end: /^@this regex should never match@$/
144 ;; `-----
145 ;;
146 ;; 1998-07-22: waisindex would dump core on me for large articles with
147 ;; the above settings.  I used /^$/ as the end regex for the global
148 ;; field.  That seemed to work okay.
149
150 ;; There is a Perl module called `WAIS.pm' which is available from
151 ;; CPAN as well as ls6-ftp.cs.uni-dortmund.de:/pub/wais/Perl.  This
152 ;; module comes with a nifty tool called `makedb', which I use for
153 ;; indexing.  Here's my `makedb.conf':
154 ;;
155 ;; ,-----
156 ;; | # Config file for makedb
157 ;; |
158 ;; | # Global options
159 ;; | waisindex = /usr/local/bin/waisindex
160 ;; | wais_opt  = -stem -t fields
161 ;; | # `-stem' option necessary when `stemming' is specified for the
162 ;; | # global field in the *.fmt file
163 ;; |
164 ;; | # Own variables
165 ;; | homedir = /home/kai
166 ;; |
167 ;; | # The mail database.
168 ;; | database        = mail
169 ;; | files           = `find $homedir/Mail -name \*[0-9] -print`
170 ;; | dbdir           = $homedir/.wais
171 ;; | limit           = 100
172 ;; `-----
173 ;;
174 ;; The Lisp setup involves the `nnir-wais-*' variables.  The most
175 ;; difficult to understand variable is probably
176 ;; `nnir-wais-remove-prefix'.  Here's what it does: the output of
177 ;; `waissearch' basically contains the file name and the (full)
178 ;; directory name.  As Gnus works with group names rather than
179 ;; directory names, the directory name is transformed into a group
180 ;; name as follows: first, a prefix is removed from the (full)
181 ;; directory name, then all `/' are replaced with `.'.  The variable
182 ;; `nnir-wais-remove-prefix' should contain a regex matching exactly
183 ;; this prefix.  It defaults to `$HOME/Mail/' (note the trailing
184 ;; slash).
185
186 ;; 2. Namazu
187 ;;
188 ;; The Namazu backend requires you to have one directory containing all
189 ;; index files, this is controlled by the `nnir-namazu-index-directory'
190 ;; variable.  To function the `nnir-namazu-remove-prefix' variable must
191 ;; also be correct, see the documentation for `nnir-wais-remove-prefix'
192 ;; above.
193 ;;
194 ;; It is particularly important not to pass any any switches to namazu
195 ;; that will change the output format.  Good switches to use include
196 ;; `--sort', `--ascending', `--early' and `--late'.  Refer to the Namazu
197 ;; documentation for further information on valid switches.
198 ;;
199 ;; To index my mail with the `mknmz' program I use the following
200 ;; configuration file:
201 ;;
202 ;; ,----
203 ;; | package conf;  # Don't remove this line!
204 ;; |
205 ;; | # Paths which will not be indexed. Don't use `^' or `$' anchors.
206 ;; | $EXCLUDE_PATH = "spam|sent";
207 ;; |
208 ;; | # Header fields which should be searchable. case-insensitive
209 ;; | $REMAIN_HEADER = "from|date|message-id|subject";
210 ;; |
211 ;; | # Searchable fields. case-insensitive
212 ;; | $SEARCH_FIELD = "from|date|message-id|subject";
213 ;; |
214 ;; | # The max length of a word.
215 ;; | $WORD_LENG_MAX = 128;
216 ;; |
217 ;; | # The max length of a field.
218 ;; | $MAX_FIELD_LENGTH = 256;
219 ;; `----
220 ;;
221 ;; My mail is stored in the directories ~/Mail/mail/, ~/Mail/lists/ and
222 ;; ~/Mail/archive/, so to index them I go to the directory set in
223 ;; `nnir-namazu-index-directory' and issue the following command.
224 ;;
225 ;;      mknmz --mailnews ~/Mail/archive/ ~/Mail/mail/ ~/Mail/lists/
226 ;;
227 ;; For maximum searching efficiency I have a cron job set to run this
228 ;; command every four hours.
229
230 ;; 3. HyREX
231 ;;
232 ;; The HyREX backend requires you to have one directory from where all
233 ;; your relative paths are to, if you use them. This directory must be
234 ;; set in the `nnir-hyrex-index-directory' variable, which defaults to
235 ;; your home directory. You must also pass the base, class and
236 ;; directory options or simply your dll to the `nnir-hyrex-programm' by
237 ;; setting the `nnir-hyrex-additional-switches' variable accordently.
238 ;; To function the `nnir-hyrex-remove-prefix' variable must also be
239 ;; correct, see the documentation for `nnir-wais-remove-prefix' above.
240
241 ;; 4. find-grep
242 ;;
243 ;; The find-grep engine simply runs find(1) to locate eligible
244 ;; articles and searches them with grep(1).  This, of course, is much
245 ;; slower than using a proper search engine but OTOH doesn't require
246 ;; maintenance of an index and is still faster than using any built-in
247 ;; means for searching.  The method specification of the server to
248 ;; search must include a directory for this engine to work (E.g.,
249 ;; `nnml-directory').  The tools must be POSIX compliant.  GNU Find
250 ;; prior to version 4.2.12 (4.2.26 on Linux due to incorrect ARG_MAX
251 ;; handling) does not work.
252 ;; ,----
253 ;; |    ;; find-grep configuration for searching the Gnus Cache
254 ;; |
255 ;; |    (nnml "cache"
256 ;; |          (nnml-get-new-mail nil)
257 ;; |          (nnir-search-engine find-grep)
258 ;; |          (nnml-directory "~/News/cache/")
259 ;; |          (nnml-active-file "~/News/cache/active"))
260 ;; `----
261
262 ;; Developer information:
263
264 ;; I have tried to make the code expandable.  Basically, it is divided
265 ;; into two layers.  The upper layer is somewhat like the `nnvirtual'
266 ;; backend: given a specification of what articles to show from
267 ;; another backend, it creates a group containing exactly those
268 ;; articles.  The lower layer issues a query to a search engine and
269 ;; produces such a specification of what articles to show from the
270 ;; other backend.
271
272 ;; The interface between the two layers consists of the single
273 ;; function `nnir-run-query', which just selects the appropriate
274 ;; function for the search engine one is using.  The input to
275 ;; `nnir-run-query' is a string, representing the query as input by
276 ;; the user.  The output of `nnir-run-query' is supposed to be a
277 ;; vector, each element of which should in turn be a three-element
278 ;; vector.  The first element should be full group name of the article,
279 ;; the second element should be the article number, and the third
280 ;; element should be the Retrieval Status Value (RSV) as returned from
281 ;; the search engine.  An RSV is the score assigned to the document by
282 ;; the search engine.  For Boolean search engines, the
283 ;; RSV is always 1000 (or 1 or 100, or whatever you like).
284
285 ;; The sorting order of the articles in the summary buffer created by
286 ;; nnir is based on the order of the articles in the above mentioned
287 ;; vector, so that's where you can do the sorting you'd like.  Maybe
288 ;; it would be nice to have a way of displaying the search result
289 ;; sorted differently?
290
291 ;; So what do you need to do when you want to add another search
292 ;; engine?  You write a function that executes the query.  Temporary
293 ;; data from the search engine can be put in `nnir-tmp-buffer'.  This
294 ;; function should return the list of articles as a vector, as
295 ;; described above.  Then, you need to register this backend in
296 ;; `nnir-engines'.  Then, users can choose the backend by setting
297 ;; `nnir-search-engine'.
298
299 ;; Todo, or future ideas:
300
301 ;; * It should be possible to restrict search to certain groups.
302 ;;
303 ;; * There is currently no error checking.
304 ;;
305 ;; * The summary buffer display is currently really ugly, with all the
306 ;;   added information in the subjects.  How could I make this
307 ;;   prettier?
308 ;;
309 ;; * A function which can be called from an nnir summary buffer which
310 ;;   teleports you into the group the current article came from and
311 ;;   shows you the whole thread this article is part of.
312 ;;   Implementation suggestions?
313 ;;   (1998-07-24: There is now a preliminary implementation, but
314 ;;   it is much too slow and quite fragile.)
315 ;;
316 ;; * Support other mail backends.  In particular, probably quite a few
317 ;;   people use nnfolder.  How would one go about searching nnfolders
318 ;;   and producing the right data needed?  The group name and the RSV
319 ;;   are simple, but what about the article number?
320 ;;   - The article number is encoded in the `X-Gnus-Article-Number'
321 ;;     header of each mail.
322 ;;   - The HyREX engine supports nnfolder.
323 ;;
324 ;; * Support compressed mail files.  Probably, just stripping off the
325 ;;   `.gz' or `.Z' file name extension is sufficient.
326 ;;
327 ;; * At least for imap, the query is performed twice.
328 ;;
329
330 ;; Have you got other ideas?
331
332 ;;; Setup Code:
333
334 (require 'nnoo)
335 (require 'gnus-group)
336 (require 'gnus-sum)
337 (require 'message)
338 (require 'gnus-util)
339 (eval-when-compile
340   (require 'cl))
341
342 (nnoo-declare nnir)
343 (nnoo-define-basics nnir)
344
345 (gnus-declare-backend "nnir" 'mail)
346
347 (defvar nnir-imap-search-field "TEXT"
348   "The IMAP search item when doing an nnir search. To use raw
349   imap queries by default set this to \"\"")
350
351 (defvar nnir-imap-search-arguments
352   '(("Whole message" . "TEXT")
353     ("Subject" . "SUBJECT")
354     ("To" . "TO")
355     ("From" . "FROM")
356     ("Head" . "HEADER \"%s\"")
357     (nil . ""))
358   "Mapping from user readable strings to IMAP search items for use in nnir")
359
360 (defvar nnir-imap-search-argument-history ()
361   "The history for querying search options in nnir")
362
363 (defvar nnir-get-article-nov-override-function nil
364   "If non-nil, a function that will be passed each search result.  This
365 should return a message's headers in NOV format.
366
367 If this variable is nil, or if the provided function returns nil for a search
368 result, `gnus-retrieve-headers' will be called instead.")
369
370
371 ;;; Developer Extension Variable:
372
373 (defvar nnir-engines
374   `((wais    nnir-run-waissearch
375              ())
376     (imap    nnir-run-imap
377              ((criteria
378                "Search in: "                      ; Prompt
379                ,nnir-imap-search-arguments        ; alist for completing
380                nil                                ; no filtering
381                nil                                ; allow any user input
382                nil                                ; initial value
383                nnir-imap-search-argument-history  ; the history to use
384                ,nnir-imap-search-field            ; default
385                )))
386     (swish++ nnir-run-swish++
387              ((group . "Group spec: ")))
388     (swish-e nnir-run-swish-e
389              ((group . "Group spec: ")))
390     (namazu  nnir-run-namazu
391              ())
392     (hyrex   nnir-run-hyrex
393              ((group . "Group spec: ")))
394   (find-grep nnir-run-find-grep
395              ((grep-options . "Grep options: "))))
396   "Alist of supported search engines.
397 Each element in the alist is a three-element list (ENGINE FUNCTION ARGS).
398 ENGINE is a symbol designating the searching engine.  FUNCTION is also
399 a symbol, giving the function that does the search.  The third element
400 ARGS is a list of cons pairs (PARAM . PROMPT).  When issuing a query,
401 the FUNCTION will issue a query for each of the PARAMs, using PROMPT.
402
403 The value of `nnir-search-engine' must be one of the ENGINE symbols.
404 For example, use the following line for searching using freeWAIS-sf:
405     (setq nnir-search-engine 'wais)
406 Use the following line if you read your mail via IMAP and your IMAP
407 server supports searching:
408     (setq nnir-search-engine 'imap)
409 Note that you have to set additional variables for most backends.  For
410 example, the `wais' backend needs the variables `nnir-wais-program',
411 `nnir-wais-database' and `nnir-wais-remove-prefix'.
412
413 Add an entry here when adding a new search engine.")
414
415 ;;; User Customizable Variables:
416
417 (defgroup nnir nil
418   "Search nnmh and nnml groups in Gnus with swish-e, freeWAIS-sf, or EWS."
419   :group 'gnus)
420
421 ;; Mail backend.
422
423 ;; TODO:
424 ;; If `nil', use server parameters to find out which server to search. CCC
425 ;;
426 (defcustom nnir-mail-backend '(nnml "")
427   "*Specifies which backend should be searched.
428 More precisely, this is used to determine from which backend to fetch the
429 messages found.
430
431 This must be equal to an existing server, so maybe it is best to use
432 something like the following:
433     (setq nnir-mail-backend (nth 0 gnus-secondary-select-methods))
434 The above line works fine if the mail backend you want to search is
435 the first element of gnus-secondary-select-methods (`nth' starts counting
436 at zero)."
437   :type '(sexp)
438   :group 'nnir)
439
440 ;; Search engine to use.
441
442 (defcustom nnir-search-engine 'wais
443   "*The search engine to use.  Must be a symbol.
444 See `nnir-engines' for a list of supported engines, and for example
445 settings of `nnir-search-engine'."
446   :type '(sexp)
447   :group 'nnir)
448
449 ;; freeWAIS-sf.
450
451 (defcustom nnir-wais-program "waissearch"
452   "*Name of waissearch executable."
453   :type '(string)
454   :group 'nnir)
455
456 (defcustom nnir-wais-database (expand-file-name "~/.wais/mail")
457   "*Name of Wais database containing the mail.
458
459 Note that this should be a file name without extension.  For example,
460 if you have a file /home/john/.wais/mail.fmt, use this:
461     (setq nnir-wais-database \"/home/john/.wais/mail\")
462 The string given here is passed to `waissearch -d' as-is."
463   :type '(file)
464   :group 'nnir)
465
466 (defcustom nnir-wais-remove-prefix (concat (getenv "HOME") "/Mail/")
467   "*The prefix to remove from each directory name returned by waissearch
468 in order to get a group name (albeit with / instead of .).  This is a
469 regular expression.
470
471 For example, suppose that Wais returns file names such as
472 \"/home/john/Mail/mail/misc/42\".  For this example, use the following
473 setting:  (setq nnir-wais-remove-prefix \"/home/john/Mail/\")
474 Note the trailing slash.  Removing this prefix gives \"mail/misc/42\".
475 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
476 arrive at the correct group name, \"mail.misc\"."
477   :type '(regexp)
478   :group 'nnir)
479
480 (defcustom nnir-swish++-configuration-file
481   (expand-file-name "~/Mail/swish++.conf")
482   "*Configuration file for swish++."
483   :type '(file)
484   :group 'nnir)
485
486 (defcustom nnir-swish++-program "search"
487   "*Name of swish++ search executable."
488   :type '(string)
489   :group 'nnir)
490
491 (defcustom nnir-swish++-additional-switches '()
492   "*A list of strings, to be given as additional arguments to swish++.
493
494 Note that this should be a list.  Ie, do NOT use the following:
495     (setq nnir-swish++-additional-switches \"-i -w\") ; wrong
496 Instead, use this:
497     (setq nnir-swish++-additional-switches '(\"-i\" \"-w\"))"
498   :type '(repeat (string))
499   :group 'nnir)
500
501 (defcustom nnir-swish++-remove-prefix (concat (getenv "HOME") "/Mail/")
502   "*The prefix to remove from each file name returned by swish++
503 in order to get a group name (albeit with / instead of .).  This is a
504 regular expression.
505
506 This variable is very similar to `nnir-wais-remove-prefix', except
507 that it is for swish++, not Wais."
508   :type '(regexp)
509   :group 'nnir)
510
511 ;; Swish-E.
512 ;; URL: http://sunsite.berkeley.edu/SWISH-E/
513 ;; New version: http://www.boe.es/swish-e
514 ;; Variables `nnir-swish-e-index-file', `nnir-swish-e-program' and
515 ;; `nnir-swish-e-additional-switches'
516
517 (make-obsolete-variable 'nnir-swish-e-index-file
518                         'nnir-swish-e-index-files "Emacs 23.1")
519 (defcustom nnir-swish-e-index-file
520   (expand-file-name "~/Mail/index.swish-e")
521   "*Index file for swish-e.
522 This could be a server parameter.
523 It is never consulted once `nnir-swish-e-index-files', which should be
524 used instead, has been customized."
525   :type '(file)
526   :group 'nnir)
527
528 (defcustom nnir-swish-e-index-files
529   (list nnir-swish-e-index-file)
530   "*List of index files for swish-e.
531 This could be a server parameter."
532   :type '(repeat (file))
533   :group 'nnir)
534
535 (defcustom nnir-swish-e-program "swish-e"
536   "*Name of swish-e search executable.
537 This cannot be a server parameter."
538   :type '(string)
539   :group 'nnir)
540
541 (defcustom nnir-swish-e-additional-switches '()
542   "*A list of strings, to be given as additional arguments to swish-e.
543
544 Note that this should be a list.  Ie, do NOT use the following:
545     (setq nnir-swish-e-additional-switches \"-i -w\") ; wrong
546 Instead, use this:
547     (setq nnir-swish-e-additional-switches '(\"-i\" \"-w\"))
548
549 This could be a server parameter."
550   :type '(repeat (string))
551   :group 'nnir)
552
553 (defcustom nnir-swish-e-remove-prefix (concat (getenv "HOME") "/Mail/")
554   "*The prefix to remove from each file name returned by swish-e
555 in order to get a group name (albeit with / instead of .).  This is a
556 regular expression.
557
558 This variable is very similar to `nnir-wais-remove-prefix', except
559 that it is for swish-e, not Wais.
560
561 This could be a server parameter."
562   :type '(regexp)
563   :group 'nnir)
564
565 ;; HyREX engine, see <URL:http://ls6-www.cs.uni-dortmund.de/>
566
567 (defcustom nnir-hyrex-program "nnir-search"
568   "*Name of the nnir-search executable."
569   :type '(string)
570   :group 'nnir)
571
572 (defcustom nnir-hyrex-additional-switches '()
573   "*A list of strings, to be given as additional arguments for nnir-search.
574 Note that this should be a list. Ie, do NOT use the following:
575     (setq nnir-hyrex-additional-switches \"-ddl ddl.xml -c nnir\") ; wrong !
576 Instead, use this:
577     (setq nnir-hyrex-additional-switches '(\"-ddl\" \"ddl.xml\" \"-c\" \"nnir\"))"
578   :type '(repeat (string))
579   :group 'nnir)
580
581 (defcustom nnir-hyrex-index-directory (getenv "HOME")
582   "*Index directory for HyREX."
583   :type '(directory)
584   :group 'nnir)
585
586 (defcustom nnir-hyrex-remove-prefix (concat (getenv "HOME") "/Mail/")
587   "*The prefix to remove from each file name returned by HyREX
588 in order to get a group name (albeit with / instead of .).
589
590 For example, suppose that HyREX returns file names such as
591 \"/home/john/Mail/mail/misc/42\".  For this example, use the following
592 setting:  (setq nnir-hyrex-remove-prefix \"/home/john/Mail/\")
593 Note the trailing slash.  Removing this prefix gives \"mail/misc/42\".
594 `nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
595 arrive at the correct group name, \"mail.misc\"."
596   :type '(directory)
597   :group 'nnir)
598
599 ;; Namazu engine, see <URL:http://ww.namazu.org/>
600
601 (defcustom nnir-namazu-program "namazu"
602   "*Name of Namazu search executable."
603   :type '(string)
604   :group 'nnir)
605
606 (defcustom nnir-namazu-index-directory (expand-file-name "~/Mail/namazu/")
607   "*Index directory for Namazu."
608   :type '(directory)
609   :group 'nnir)
610
611 (defcustom nnir-namazu-additional-switches '()
612   "*A list of strings, to be given as additional arguments to namazu.
613 The switches `-q', `-a', and `-s' are always used, very few other switches
614 make any sense in this context.
615
616 Note that this should be a list.  Ie, do NOT use the following:
617     (setq nnir-namazu-additional-switches \"-i -w\") ; wrong
618 Instead, use this:
619     (setq nnir-namazu-additional-switches '(\"-i\" \"-w\"))"
620   :type '(repeat (string))
621   :group 'nnir)
622
623 (defcustom nnir-namazu-remove-prefix (concat (getenv "HOME") "/Mail/")
624   "*The prefix to remove from each file name returned by Namazu
625 in order to get a group name (albeit with / instead of .).
626
627 This variable is very similar to `nnir-wais-remove-prefix', except
628 that it is for Namazu, not Wais."
629   :type '(directory)
630   :group 'nnir)
631
632 ;;; Internal Variables:
633
634 (defvar nnir-current-query nil
635   "Internal: stores current query (= group name).")
636
637 (defvar nnir-current-server nil
638   "Internal: stores current server (does it ever change?).")
639
640 (defvar nnir-current-group-marked nil
641   "Internal: stores current list of process-marked groups.")
642
643 (defvar nnir-artlist nil
644   "Internal: stores search result.")
645
646 (defvar nnir-tmp-buffer " *nnir*"
647   "Internal: temporary buffer.")
648
649 ;;; Code:
650
651 ;; Gnus glue.
652
653 (defun gnus-group-make-nnir-group (extra-parms query)
654   "Create an nnir group.  Asks for query."
655   (interactive "P\nsQuery: ")
656   (setq nnir-current-query nil
657         nnir-current-server nil
658         nnir-current-group-marked nil
659         nnir-artlist nil)
660   (let ((parms nil))
661     (if extra-parms
662         (setq parms (nnir-read-parms query))
663       (setq parms (list (cons 'query query))))
664     (add-to-list 'parms (cons 'unique-id (message-unique-id)) t)
665     (gnus-group-read-ephemeral-group
666      (concat "nnir:" (prin1-to-string parms)) '(nnir "") t
667      (cons (current-buffer)
668            gnus-current-window-configuration)
669      nil)))
670
671 (eval-when-compile
672   (when (featurep 'xemacs)
673     ;; The `kbd' macro requires that the `read-kbd-macro' macro is available.
674     (require 'edmacro)))
675
676 (defun nnir-group-mode-hook ()
677   (define-key gnus-group-mode-map (kbd "G G")
678     'gnus-group-make-nnir-group))
679 (add-hook 'gnus-group-mode-hook 'nnir-group-mode-hook)
680
681 ;; Why is this needed? Is this for compatibility with old/new gnusae? Using
682 ;; gnus-group-server instead works for me.  -- Justus Piater
683 (defmacro nnir-group-server (group)
684   "Return the server for a newsgroup GROUP.
685 The returned format is as `gnus-server-to-method' needs it.  See
686 `gnus-group-real-prefix' and `gnus-group-real-name'."
687   `(let ((gname ,group))
688      (if (string-match "^\\([^:]+\\):" gname)
689          (progn
690            (setq gname (match-string 1 gname))
691            (if (string-match "^\\([^+]+\\)\\+\\(.+\\)$" gname)
692                (format "%s:%s" (match-string 1 gname) (match-string 2 gname))
693              (concat gname ":")))
694        (format "%s:%s" (car gnus-select-method) (cadr gnus-select-method)))))
695
696 ;; Summary mode commands.
697
698 (defun gnus-summary-nnir-goto-thread ()
699   "Only applies to nnir groups.  Go to group this article came from
700 and show thread that contains this article."
701   (interactive)
702   (unless (eq 'nnir (car (gnus-find-method-for-group gnus-newsgroup-name)))
703     (error "Can't execute this command unless in nnir group"))
704   (let* ((cur (gnus-summary-article-number))
705          (group (nnir-artlist-artitem-group nnir-artlist cur))
706          (backend-number (nnir-artlist-artitem-number nnir-artlist cur))
707          server backend-group)
708     (setq server (nnir-group-server group))
709     (setq backend-group (gnus-group-real-name group))
710     (gnus-group-read-ephemeral-group
711      backend-group
712      (gnus-server-to-method server)
713      t                                  ; activate
714      (cons (current-buffer)
715            'summary)                    ; window config
716      nil
717      (list backend-number))
718     (gnus-summary-limit (list backend-number))
719     (gnus-summary-refer-thread)))
720
721 (if (fboundp 'eval-after-load)
722     (eval-after-load "gnus-sum"
723       '(define-key gnus-summary-goto-map
724          "T" 'gnus-summary-nnir-goto-thread))
725   (add-hook 'gnus-summary-mode-hook
726             (function (lambda ()
727                         (define-key gnus-summary-goto-map
728                           "T" 'gnus-summary-nnir-goto-thread)))))
729
730
731
732 ;; Gnus backend interface functions.
733
734 (deffoo nnir-open-server (server &optional definitions)
735   ;; Just set the server variables appropriately.
736   (nnoo-change-server 'nnir server definitions))
737
738 (deffoo nnir-request-group (group &optional server fast info)
739   "GROUP is the query string."
740   (nnir-possibly-change-server server)
741   ;; Check for cache and return that if appropriate.
742   (if (and (equal group nnir-current-query)
743            (equal gnus-group-marked nnir-current-group-marked)
744            (or (null server)
745                (equal server nnir-current-server)))
746       nnir-artlist
747     ;; Cache miss.
748     (setq nnir-artlist (nnir-run-query group)))
749   (with-current-buffer nntp-server-buffer
750     (if (zerop (length nnir-artlist))
751         (progn
752           (setq nnir-current-query nil
753                 nnir-current-server nil
754                 nnir-current-group-marked nil
755                 nnir-artlist nil)
756           (nnheader-report 'nnir "Search produced empty results."))
757       ;; Remember data for cache.
758       (setq nnir-current-query group)
759       (when server (setq nnir-current-server server))
760       (setq nnir-current-group-marked gnus-group-marked)
761       (nnheader-insert "211 %d %d %d %s\n"
762                        (nnir-artlist-length nnir-artlist) ; total #
763                        1              ; first #
764                        (nnir-artlist-length nnir-artlist) ; last #
765                        group))))     ; group name
766
767 (deffoo nnir-retrieve-headers (articles &optional group server fetch-old)
768   (save-excursion
769     (let ((artlist (copy-sequence articles))
770           art artitem artgroup artno artrsv artfullgroup
771           novitem novdata foo server)
772       (while (not (null artlist))
773         (setq art (car artlist))
774         (or (numberp art)
775             (nnheader-report
776              'nnir
777              "nnir-retrieve-headers doesn't grok message ids: %s"
778              art))
779         (setq artitem (nnir-artlist-article nnir-artlist art))
780         (setq artrsv (nnir-artitem-rsv artitem))
781         (setq artfullgroup (nnir-artitem-group artitem))
782         (setq artno (nnir-artitem-number artitem))
783         (setq artgroup (gnus-group-real-name artfullgroup))
784         (setq server (nnir-group-server artfullgroup))
785         ;; retrieve NOV or HEAD data for this article, transform into
786         ;; NOV data and prepend to `novdata'
787         (set-buffer nntp-server-buffer)
788         (nnir-possibly-change-server server)
789         (let ((gnus-override-method
790                (gnus-server-to-method server)))
791           ;; if nnir-get-article-nov-override-function is set, use it
792           (if nnir-get-article-nov-override-function
793               (setq novitem (funcall nnir-get-article-nov-override-function
794                                      artitem))
795             ;; else, set novitem through nnheader-parse-nov/nnheader-parse-head
796             (case (setq foo (gnus-retrieve-headers (list artno)
797                                                    artfullgroup nil))
798               (nov
799                (goto-char (point-min))
800                (setq novitem (nnheader-parse-nov)))
801               (headers
802                (goto-char (point-min))
803                (setq novitem (nnheader-parse-head)))
804               (t (error "Unknown header type %s while requesting article %s of group %s"
805                         foo artno artfullgroup)))))
806         ;; replace article number in original group with article number
807         ;; in nnir group
808         (when novitem
809           (mail-header-set-number novitem art)
810           (mail-header-set-from novitem
811                                 (mail-header-from novitem))
812           (mail-header-set-subject
813            novitem
814            (format "[%d: %s/%d] %s"
815                    artrsv artgroup artno
816                    (mail-header-subject novitem)))
817           (push novitem novdata)
818           (setq artlist (cdr artlist))))
819       (setq novdata (nreverse novdata))
820       (set-buffer nntp-server-buffer) (erase-buffer)
821       (mapc 'nnheader-insert-nov novdata)
822       'nov)))
823
824 (deffoo nnir-request-article (article
825                               &optional group server to-buffer)
826   (if (stringp article)
827       (nnheader-report
828        'nnir
829        "nnir-retrieve-headers doesn't grok message ids: %s"
830        article)
831     (save-excursion
832       (let* ((artitem (nnir-artlist-article nnir-artlist
833                                             article))
834              (artfullgroup (nnir-artitem-group artitem))
835              (artno (nnir-artitem-number artitem))
836              ;; Bug?
837              ;; Why must we bind nntp-server-buffer here?  It won't
838              ;; work if `buf' is used, say.  (Of course, the set-buffer
839              ;; line below must then be updated, too.)
840              (nntp-server-buffer (or to-buffer nntp-server-buffer)))
841         (set-buffer nntp-server-buffer)
842         (erase-buffer)
843         (message "Requesting article %d from group %s"
844                  artno artfullgroup)
845         (gnus-request-article artno artfullgroup nntp-server-buffer)
846         (cons artfullgroup artno)))))
847
848
849 (nnoo-define-skeleton nnir)
850
851
852 (defmacro nnir-add-result (dirnam artno score prefix server artlist)
853   "Ask `nnir-compose-result' to construct a result vector,
854 and if it is non-nil, add it to artlist."
855   `(let ((result (nnir-compose-result ,dirnam ,artno ,score ,prefix ,server)))
856      (when (not (null result))
857        (push result ,artlist))))
858
859 (autoload 'nnmaildir-base-name-to-article-number "nnmaildir")
860
861 ;; Helper function currently used by the Swish++ and Namazu backends;
862 ;; perhaps useful for other backends as well
863 (defun nnir-compose-result (dirnam article score prefix server)
864   "Extract the group from dirnam, and create a result vector
865 ready to be added to the list of search results."
866
867   ;; remove nnir-*-remove-prefix from beginning of dirnam filename
868   (when (string-match (concat "^" prefix) dirnam)
869     (setq dirnam (replace-match "" t t dirnam)))
870
871   (when (file-readable-p (concat prefix dirnam article))
872     ;; remove trailing slash and, for nnmaildir, cur/new/tmp
873     (setq dirnam
874           (substring dirnam 0
875                      (if (string= (gnus-group-server server) "nnmaildir")
876                          -5 -1)))
877
878     ;; Set group to dirnam without any leading dots or slashes,
879     ;; and with all subsequent slashes replaced by dots
880     (let ((group (gnus-replace-in-string
881                  (gnus-replace-in-string dirnam "^[./\\]" "" t)
882                  "[/\\]" "." t)))
883
884     (vector (nnir-group-full-name group server)
885             (if (string= (gnus-group-server server) "nnmaildir")
886                 (nnmaildir-base-name-to-article-number
887                  (substring article 0 (string-match ":" article))
888                  group nil)
889               (string-to-number article))
890             (string-to-number score)))))
891
892 ;;; Search Engine Interfaces:
893
894 ;; freeWAIS-sf interface.
895 (defun nnir-run-waissearch (query server &optional group)
896   "Run given query agains waissearch.  Returns vector of (group name, file name)
897 pairs (also vectors, actually)."
898   (when group
899     (error "The freeWAIS-sf backend cannot search specific groups"))
900   (save-excursion
901     (let ((qstring (cdr (assq 'query query)))
902           (prefix (nnir-read-server-parm 'nnir-wais-remove-prefix server))
903           artlist score artno dirnam)
904       (set-buffer (get-buffer-create nnir-tmp-buffer))
905       (erase-buffer)
906       (message "Doing WAIS query %s..." query)
907       (call-process nnir-wais-program
908                     nil                 ; input from /dev/null
909                     t                   ; output to current buffer
910                     nil                 ; don't redisplay
911                     "-d" (nnir-read-server-parm 'nnir-wais-database server) ; database to search
912                     qstring)
913       (message "Massaging waissearch output...")
914       ;; remove superfluous lines
915       (keep-lines "Score:")
916       ;; extract data from result lines
917       (goto-char (point-min))
918       (while (re-search-forward
919               "Score: +\\([0-9]+\\).*'\\([0-9]+\\) +\\([^']+\\)/'" nil t)
920         (setq score (match-string 1)
921               artno (match-string 2)
922               dirnam (match-string 3))
923         (unless (string-match prefix dirnam)
924           (nnheader-report 'nnir "Dir name %s doesn't contain prefix %s"
925                            dirnam prefix))
926         (setq group (gnus-replace-in-string
927                      (replace-match "" t t dirnam) "/" "."))
928         (push (vector (nnir-group-full-name group server)
929                       (string-to-number artno)
930                       (string-to-number score))
931               artlist))
932       (message "Massaging waissearch output...done")
933       (apply 'vector
934              (sort artlist
935                    (function (lambda (x y)
936                                (> (nnir-artitem-rsv x)
937                                   (nnir-artitem-rsv y)))))))))
938
939 ;; IMAP interface.
940 ;; todo:
941 ;; nnir invokes this two (2) times???!
942 ;; we should not use nnimap at all but open our own server connection
943 ;; we should not LIST * but use nnimap-list-pattern from defs
944 ;; send queries as literals
945 ;; handle errors
946
947 (autoload 'nnimap-open-server "nnimap")
948 (defvar nnimap-server-buffer) ;; nnimap.el
949 (autoload 'imap-mailbox-select "imap")
950 (autoload 'imap-search "imap")
951 (autoload 'imap-quote-specials "imap")
952
953 (eval-when-compile
954   (autoload 'nnimap-buffer "nnimap")
955   (autoload 'nnimap-command "nnimap")
956   (autoload 'nnimap-possibly-change-group "nnimap"))
957
958 (defun nnir-run-imap (query srv &optional group-option)
959   "Run a search against an IMAP back-end server.
960 This uses a custom query language parser; see `nnir-imap-make-query' for
961 details on the language and supported extensions"
962   (save-excursion
963     (let ((qstring (cdr (assq 'query query)))
964           (server (cadr (gnus-server-to-method srv)))
965           (group (or group-option (gnus-group-group-name)))
966           (defs (caddr (gnus-server-to-method srv)))
967           (criteria (or (cdr (assq 'criteria query))
968                         nnir-imap-search-field))
969           (gnus-inhibit-demon t)
970           artlist)
971       (message "Opening server %s" server)
972       (condition-case ()
973           (when (nnimap-possibly-change-group (gnus-group-short-name group) server)
974             (with-current-buffer (nnimap-buffer)
975               (message "Searching %s..." group)
976               (let ((arts 0)
977                     (result
978                      (nnimap-command "UID SEARCH %s"
979                                      (if (string= criteria "")
980                                          qstring
981                                        (nnir-imap-make-query criteria qstring)
982                                        ))))
983                 (mapc
984                  (lambda (artnum)
985                    (push (vector group artnum 1) artlist)
986                    (setq arts (1+ arts)))
987                  (and (car result)
988                       (delete 0 (mapcar #'string-to-number
989                                         (cdr (assoc "SEARCH" (cdr result)))))))
990                 (message "Searching %s... %d matches" group arts)))
991             (message "Searching %s...done" group))
992         (quit nil))
993       (reverse artlist))))
994
995 (defun nnir-imap-make-query (criteria qstring)
996   "Parse the query string and criteria into an appropriate IMAP search
997 expression, returning the string query to make.
998
999 This implements a little language designed to return the expected results
1000 to an arbitrary query string to the end user.
1001
1002 The search is always case-insensitive, as defined by RFC2060, and supports
1003 the following features (inspired by the Google search input language):
1004
1005 Automatic \"and\" queries
1006     If you specify multiple words then they will be treated as an \"and\"
1007     expression intended to match all components.
1008
1009 Phrase searches
1010     If you wrap your query in double-quotes then it will be treated as a
1011     literal string.
1012
1013 Negative terms
1014     If you precede a term with \"-\" then it will negate that.
1015
1016 \"OR\" queries
1017     If you include an upper-case \"OR\" in your search it will cause the
1018     term before it and the term after it to be treated as alternatives.
1019
1020 In future the following will be added to the language:
1021  * support for date matches
1022  * support for location of text matching within the query
1023  * from/to/etc headers
1024  * additional search terms
1025  * flag based searching
1026  * anything else that the RFC supports, basically."
1027   ;; Walk through the query and turn it into an IMAP query string.
1028   (nnir-imap-query-to-imap criteria (nnir-imap-parse-query qstring)))
1029
1030
1031 (defun nnir-imap-query-to-imap (criteria query)
1032   "Turn a s-expression format query into IMAP."
1033   (mapconcat
1034    ;; Turn the expressions into IMAP text
1035    (lambda (item)
1036      (nnir-imap-expr-to-imap criteria item))
1037    ;; The query, already in s-expr format.
1038    query
1039    ;; Append a space between each expression
1040    " "))
1041
1042
1043 (defun nnir-imap-expr-to-imap (criteria expr)
1044   "Convert EXPR into an IMAP search expression on CRITERIA"
1045   ;; What sort of expression is this, eh?
1046   (cond
1047    ;; Simple string term
1048    ((stringp expr)
1049     (format "%s \"%s\"" criteria (imap-quote-specials expr)))
1050    ;; Trivial term: and
1051    ((eq expr 'and) nil)
1052    ;; Composite term: or expression
1053    ((eq (car-safe expr) 'or)
1054     (format "OR %s %s"
1055             (nnir-imap-expr-to-imap criteria (second expr))
1056             (nnir-imap-expr-to-imap criteria (third expr))))
1057    ;; Composite term: just the fax, mam
1058    ((eq (car-safe expr) 'not)
1059     (format "NOT (%s)" (nnir-imap-query-to-imap criteria (rest expr))))
1060    ;; Composite term: just expand it all.
1061    ((and (not (null expr)) (listp expr))
1062     (format "(%s)" (nnir-imap-query-to-imap criteria expr)))
1063    ;; Complex value, give up for now.
1064    (t (error "Unhandled input: %S" expr))))
1065
1066
1067 (defun nnir-imap-parse-query (string)
1068   "Turn STRING into an s-expression based query based on the IMAP
1069 query language as defined in `nnir-imap-make-query'.
1070
1071 This involves turning individual tokens into higher level terms
1072 that the search language can then understand and use."
1073   (with-temp-buffer
1074     ;; Set up the parsing environment.
1075     (insert string)
1076     (goto-char (point-min))
1077     ;; Now, collect the output terms and return them.
1078     (let (out)
1079       (while (not (nnir-imap-end-of-input))
1080         (push (nnir-imap-next-expr) out))
1081       (reverse out))))
1082
1083
1084 (defun nnir-imap-next-expr (&optional count)
1085   "Return the next expression from the current buffer."
1086   (let ((term (nnir-imap-next-term count))
1087         (next (nnir-imap-peek-symbol)))
1088     ;; Are we looking at an 'or' expression?
1089     (cond
1090      ;; Handle 'expr or expr'
1091      ((eq next 'or)
1092       (list 'or term (nnir-imap-next-expr 2)))
1093      ;; Anything else
1094      (t term))))
1095
1096
1097 (defun nnir-imap-next-term (&optional count)
1098   "Return the next TERM from the current buffer."
1099   (let ((term (nnir-imap-next-symbol count)))
1100     ;; What sort of term is this?
1101     (cond
1102      ;; and -- just ignore it
1103      ((eq term 'and) 'and)
1104      ;; negated term
1105      ((eq term 'not) (list 'not (nnir-imap-next-expr)))
1106      ;; generic term
1107      (t term))))
1108
1109
1110 (defun nnir-imap-peek-symbol ()
1111   "Return the next symbol from the current buffer, but don't consume it."
1112   (save-excursion
1113     (nnir-imap-next-symbol)))
1114
1115 (defun nnir-imap-next-symbol (&optional count)
1116   "Return the next symbol from the current buffer, or nil if we are
1117 at the end of the buffer.  If supplied COUNT skips some symbols before
1118 returning the one at the supplied position."
1119   (when (and (numberp count) (> count 1))
1120     (nnir-imap-next-symbol (1- count)))
1121   (let ((case-fold-search t))
1122     ;; end of input stream?
1123     (unless (nnir-imap-end-of-input)
1124       ;; No, return the next symbol from the stream.
1125       (cond
1126        ;; negated expression -- return it and advance one char.
1127        ((looking-at "-") (forward-char 1) 'not)
1128        ;; quoted string
1129        ((looking-at "\"") (nnir-imap-delimited-string "\""))
1130        ;; list expression -- we parse the content and return this as a list.
1131        ((looking-at "(")
1132         (nnir-imap-parse-query (nnir-imap-delimited-string ")")))
1133        ;; keyword input -- return a symbol version
1134        ((looking-at "\\band\\b") (forward-char 3) 'and)
1135        ((looking-at "\\bor\\b")  (forward-char 2) 'or)
1136        ((looking-at "\\bnot\\b") (forward-char 3) 'not)
1137        ;; Simple, boring keyword
1138        (t (let ((start (point))
1139                 (end (if (search-forward-regexp "[[:blank:]]" nil t)
1140                          (prog1
1141                              (match-beginning 0)
1142                            ;; unskip if we hit a non-blank terminal character.
1143                            (when (string-match "[^[:blank:]]" (match-string 0))
1144                              (backward-char 1)))
1145                        (goto-char (point-max)))))
1146             (buffer-substring start end)))))))
1147
1148 (defun nnir-imap-delimited-string (delimiter)
1149   "Return a delimited string from the current buffer."
1150   (let ((start (point)) end)
1151     (forward-char 1)                    ; skip the first delimiter.
1152     (while (not end)
1153       (unless (search-forward delimiter nil t)
1154         (error "Unmatched delimited input with %s in query" delimiter))
1155       (let ((here (point)))
1156         (unless (equal (buffer-substring (- here 2) (- here 1)) "\\")
1157           (setq end (point)))))
1158     (buffer-substring (1+ start) (1- end))))
1159
1160 (defun nnir-imap-end-of-input ()
1161   "Are we at the end of input?"
1162   (skip-chars-forward "[[:blank:]]")
1163   (looking-at "$"))
1164
1165
1166 ;; Swish++ interface.
1167 ;; -cc- Todo
1168 ;; Search by
1169 ;; - group
1170 ;; Sort by
1171 ;; - rank (default)
1172 ;; - article number
1173 ;; - file size
1174 ;; - group
1175 (defun nnir-run-swish++ (query server &optional group)
1176   "Run QUERY against swish++.
1177 Returns a vector of (group name, file name) pairs (also vectors,
1178 actually).
1179
1180 Tested with swish++ 4.7 on GNU/Linux and with swish++ 5.0b2 on
1181 Windows NT 4.0."
1182
1183   (when group
1184     (error "The swish++ backend cannot search specific groups"))
1185
1186   (save-excursion
1187     (let ( (qstring (cdr (assq 'query query)))
1188            (groupspec (cdr (assq 'group query)))
1189            (prefix (nnir-read-server-parm 'nnir-swish++-remove-prefix server))
1190            artlist
1191            ;; nnml-use-compressed-files might be any string, but probably this
1192            ;; is sufficient.  Note that we can't only use the value of
1193            ;; nnml-use-compressed-files because old articles might have been
1194            ;; saved with a different value.
1195            (article-pattern (if (string= (gnus-group-server server) "nnmaildir")
1196                                 ":[0-9]+"
1197                               "^[0-9]+\\(\\.[a-z0-9]+\\)?$"))
1198            score artno dirnam filenam)
1199
1200       (when (equal "" qstring)
1201         (error "swish++: You didn't enter anything"))
1202
1203       (set-buffer (get-buffer-create nnir-tmp-buffer))
1204       (erase-buffer)
1205
1206       (if groupspec
1207           (message "Doing swish++ query %s on %s..." qstring groupspec)
1208         (message "Doing swish++ query %s..." qstring))
1209
1210       (let* ((cp-list `( ,nnir-swish++-program
1211                          nil            ; input from /dev/null
1212                          t              ; output
1213                          nil            ; don't redisplay
1214                          "--config-file" ,(nnir-read-server-parm 'nnir-swish++-configuration-file server)
1215                          ,@(nnir-read-server-parm 'nnir-swish++-additional-switches server)
1216                          ,qstring       ; the query, in swish++ format
1217                          ))
1218              (exitstatus
1219               (progn
1220                 (message "%s args: %s" nnir-swish++-program
1221                          (mapconcat 'identity (cddddr cp-list) " ")) ;; ???
1222                 (apply 'call-process cp-list))))
1223         (unless (or (null exitstatus)
1224                     (zerop exitstatus))
1225           (nnheader-report 'nnir "Couldn't run swish++: %s" exitstatus)
1226           ;; swish++ failure reason is in this buffer, show it if
1227           ;; the user wants it.
1228           (when (> gnus-verbose 6)
1229             (display-buffer nnir-tmp-buffer))))
1230
1231       ;; The results are output in the format of:
1232       ;; V 4.7 Linux
1233       ;; rank relative-path-name file-size file-title
1234       ;; V 5.0b2:
1235       ;; rank relative-path-name file-size topic??
1236       ;; where rank is an integer from 1 to 100.
1237       (goto-char (point-min))
1238       (while (re-search-forward
1239               "\\(^[0-9]+\\) \\([^ ]+\\) [0-9]+ \\(.*\\)$" nil t)
1240         (setq score (match-string 1)
1241               filenam (match-string 2)
1242               artno (file-name-nondirectory filenam)
1243               dirnam (file-name-directory filenam))
1244
1245         ;; don't match directories
1246         (when (string-match article-pattern artno)
1247           (when (not (null dirnam))
1248
1249             ;; maybe limit results to matching groups.
1250             (when (or (not groupspec)
1251                       (string-match groupspec dirnam))
1252               (nnir-add-result dirnam artno score prefix server artlist)))))
1253
1254       (message "Massaging swish++ output...done")
1255
1256       ;; Sort by score
1257       (apply 'vector
1258              (sort artlist
1259                    (function (lambda (x y)
1260                                (> (nnir-artitem-rsv x)
1261                                   (nnir-artitem-rsv y)))))))))
1262
1263 ;; Swish-E interface.
1264 (defun nnir-run-swish-e (query server &optional group)
1265   "Run given query against swish-e.
1266 Returns a vector of (group name, file name) pairs (also vectors,
1267 actually).
1268
1269 Tested with swish-e-2.0.1 on Windows NT 4.0."
1270
1271   ;; swish-e crashes with empty parameter to "-w" on commandline...
1272   (when group
1273     (error "The swish-e backend cannot search specific groups"))
1274
1275   (save-excursion
1276     (let ((qstring (cdr (assq 'query query)))
1277           (prefix
1278            (or (nnir-read-server-parm 'nnir-swish-e-remove-prefix server)
1279                (error "Missing parameter `nnir-swish-e-remove-prefix'")))
1280           artlist score artno dirnam group )
1281
1282       (when (equal "" qstring)
1283         (error "swish-e: You didn't enter anything"))
1284
1285       (set-buffer (get-buffer-create nnir-tmp-buffer))
1286       (erase-buffer)
1287
1288       (message "Doing swish-e query %s..." query)
1289       (let* ((index-files
1290               (or (nnir-read-server-parm
1291                    'nnir-swish-e-index-files server)
1292                   (error "Missing parameter `nnir-swish-e-index-files'")))
1293              (additional-switches
1294               (nnir-read-server-parm
1295                'nnir-swish-e-additional-switches server))
1296              (cp-list `(,nnir-swish-e-program
1297                         nil             ; input from /dev/null
1298                         t               ; output
1299                         nil             ; don't redisplay
1300                         "-f" ,@index-files
1301                         ,@additional-switches
1302                         "-w"
1303                         ,qstring        ; the query, in swish-e format
1304                         ))
1305              (exitstatus
1306               (progn
1307                 (message "%s args: %s" nnir-swish-e-program
1308                          (mapconcat 'identity (cddddr cp-list) " "))
1309                 (apply 'call-process cp-list))))
1310         (unless (or (null exitstatus)
1311                     (zerop exitstatus))
1312           (nnheader-report 'nnir "Couldn't run swish-e: %s" exitstatus)
1313           ;; swish-e failure reason is in this buffer, show it if
1314           ;; the user wants it.
1315           (when (> gnus-verbose 6)
1316             (display-buffer nnir-tmp-buffer))))
1317
1318       ;; The results are output in the format of:
1319       ;; rank path-name file-title file-size
1320       (goto-char (point-min))
1321       (while (re-search-forward
1322               "\\(^[0-9]+\\) \\([^ ]+\\) \"\\([^\"]+\\)\" [0-9]+$" nil t)
1323         (setq score (match-string 1)
1324               artno (match-string 3)
1325               dirnam (file-name-directory (match-string 2)))
1326
1327         ;; don't match directories
1328         (when (string-match "^[0-9]+$" artno)
1329           (when (not (null dirnam))
1330
1331             ;; remove nnir-swish-e-remove-prefix from beginning of dirname
1332             (when (string-match (concat "^" prefix) dirnam)
1333               (setq dirnam (replace-match "" t t dirnam)))
1334
1335             (setq dirnam (substring dirnam 0 -1))
1336             ;; eliminate all ".", "/", "\" from beginning. Always matches.
1337             (string-match "^[./\\]*\\(.*\\)$" dirnam)
1338             ;; "/" -> "."
1339             (setq group (gnus-replace-in-string (match-string 1 dirnam) "/" "."))
1340             ;; Windows "\\" -> "."
1341             (setq group (gnus-replace-in-string group "\\\\" "."))
1342
1343             (push (vector (nnir-group-full-name group server)
1344                           (string-to-number artno)
1345                           (string-to-number score))
1346                   artlist))))
1347
1348       (message "Massaging swish-e output...done")
1349
1350       ;; Sort by score
1351       (apply 'vector
1352              (sort artlist
1353                    (function (lambda (x y)
1354                                (> (nnir-artitem-rsv x)
1355                                   (nnir-artitem-rsv y)))))))))
1356
1357 ;; HyREX interface
1358 (defun nnir-run-hyrex (query server &optional group)
1359   (save-excursion
1360     (let ((artlist nil)
1361           (groupspec (cdr (assq 'group query)))
1362           (qstring (cdr (assq 'query query)))
1363           (prefix (nnir-read-server-parm 'nnir-hyrex-remove-prefix server))
1364           score artno dirnam)
1365       (when (and group groupspec)
1366         (error (concat "It does not make sense to use a group spec"
1367                        " with process-marked groups.")))
1368       (when group
1369         (setq groupspec (gnus-group-real-name group)))
1370       (when (and group (not (equal group (nnir-group-full-name groupspec server))))
1371         (message "%s vs. %s" group (nnir-group-full-name groupspec server))
1372         (error "Server with groupspec doesn't match group !"))
1373       (set-buffer (get-buffer-create nnir-tmp-buffer))
1374       (erase-buffer)
1375       (if groupspec
1376           (message "Doing hyrex-search query %s on %s..." query groupspec)
1377         (message "Doing hyrex-search query %s..." query))
1378       (let* ((cp-list
1379               `( ,nnir-hyrex-program
1380                  nil                    ; input from /dev/null
1381                  t                      ; output
1382                  nil                    ; don't redisplay
1383                  "-i",(nnir-read-server-parm 'nnir-hyrex-index-directory server) ; index directory
1384                  ,@(nnir-read-server-parm 'nnir-hyrex-additional-switches server)
1385                  ,qstring          ; the query, in hyrex-search format
1386                  ))
1387              (exitstatus
1388               (progn
1389                 (message "%s args: %s" nnir-hyrex-program
1390                          (mapconcat 'identity (cddddr cp-list) " "))
1391                 (apply 'call-process cp-list))))
1392         (unless (or (null exitstatus)
1393                     (zerop exitstatus))
1394           (nnheader-report 'nnir "Couldn't run hyrex-search: %s" exitstatus)
1395           ;; nnir-search failure reason is in this buffer, show it if
1396           ;; the user wants it.
1397           (when (> gnus-verbose 6)
1398             (display-buffer nnir-tmp-buffer)))) ;; FIXME: Dont clear buffer !
1399       (if groupspec
1400           (message "Doing hyrex-search query \"%s\" on %s...done" qstring groupspec)
1401         (message "Doing hyrex-search query \"%s\"...done" qstring))
1402       (sit-for 0)
1403       ;; nnir-search returns:
1404       ;;   for nnml/nnfolder: "filename mailid weigth"
1405       ;;   for nnimap:        "group mailid weigth"
1406       (goto-char (point-min))
1407       (delete-non-matching-lines "^\\S + [0-9]+ [0-9]+$")
1408       ;; HyREX couldn't search directly in groups -- so filter out here.
1409       (when groupspec
1410         (keep-lines groupspec))
1411       ;; extract data from result lines
1412       (goto-char (point-min))
1413       (while (re-search-forward
1414               "\\(\\S +\\) \\([0-9]+\\) \\([0-9]+\\)" nil t)
1415         (setq dirnam (match-string 1)
1416               artno (match-string 2)
1417               score (match-string 3))
1418         (when (string-match prefix dirnam)
1419           (setq dirnam (replace-match "" t t dirnam)))
1420         (push (vector (nnir-group-full-name
1421                        (gnus-replace-in-string dirnam "/" ".") server)
1422                       (string-to-number artno)
1423                       (string-to-number score))
1424               artlist))
1425       (message "Massaging hyrex-search output...done.")
1426       (apply 'vector
1427              (sort artlist
1428                    (function (lambda (x y)
1429                                (if (string-lessp (nnir-artitem-group x)
1430                                                  (nnir-artitem-group y))
1431                                    t
1432                                  (< (nnir-artitem-number x)
1433                                     (nnir-artitem-number y)))))))
1434       )))
1435
1436 ;; Namazu interface
1437 (defun nnir-run-namazu (query server &optional group)
1438   "Run given query against Namazu.  Returns a vector of (group name, file name)
1439 pairs (also vectors, actually).
1440
1441 Tested with Namazu 2.0.6 on a GNU/Linux system."
1442   (when group
1443     (error "The Namazu backend cannot search specific groups"))
1444   (save-excursion
1445     (let ((article-pattern (if (string= (gnus-group-server server) "nnmaildir")
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
1467                  ))
1468              (exitstatus
1469               (progn
1470                 (message "%s args: %s" nnir-namazu-program
1471                          (mapconcat 'identity (cddddr 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))))
1480
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)
1484
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)))
1492
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)))
1497
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)))))))))
1504
1505 (defun nnir-run-find-grep (query server &optional group)
1506   "Run find and grep to obtain matching articles."
1507   (let* ((method (gnus-server-to-method server))
1508          (sym (intern
1509                (concat (symbol-name (car method)) "-directory")))
1510          (directory (cadr (assoc sym (cddr method))))
1511          (regexp (cdr (assoc 'query query)))
1512          (grep-options (cdr (assoc 'grep-options query)))
1513          artlist)
1514     (unless directory
1515       (error "No directory found in method specification of server %s"
1516              server))
1517     (message "Searching %s using find-grep..." (or group server))
1518     (save-window-excursion
1519       (set-buffer (get-buffer-create nnir-tmp-buffer))
1520       (erase-buffer)
1521       (if (> gnus-verbose 6)
1522           (pop-to-buffer (current-buffer)))
1523       (cd directory) ; Using relative paths simplifies postprocessing.
1524       (let ((group
1525              (if (not group)
1526                  "."
1527                ;; Try accessing the group literally as well as
1528                ;; interpreting dots as directory separators so the
1529                ;; engine works with plain nnml as well as the Gnus Cache.
1530                (let ((group (gnus-group-real-name group)))
1531                  ;; Replace cl-func find-if.
1532                  (if (file-directory-p group)
1533                      group
1534                    (if (file-directory-p
1535                         (setq group (gnus-replace-in-string group "\\." "/" t)))
1536                        group))))))
1537         (unless group
1538           (error "Cannot locate directory for group"))
1539         (save-excursion
1540           (apply
1541            'call-process "find" nil t
1542            "find" group "-type" "f" "-name" "[0-9]*" "-exec"
1543            "grep"
1544            `("-l" ,@(and grep-options
1545                          (split-string grep-options "\\s-" t))
1546              "-e" ,regexp "{}" "+"))))
1547
1548       ;; Translate relative paths to group names.
1549       (while (not (eobp))
1550         (let* ((path (split-string
1551                       (buffer-substring (point) (line-end-position)) "/" t))
1552                (art (string-to-number (car (last path)))))
1553           (while (string= "." (car path))
1554             (setq path (cdr path)))
1555           (let ((group (mapconcat 'identity
1556                                   ;; Replace cl-func: (subseq path 0 -1)
1557                                   (let ((end (1- (length path)))
1558                                         res)
1559                                     (while (>= (setq end (1- end)) 0)
1560                                       (push (pop path) res))
1561                                     (nreverse res))
1562                                   ".")))
1563             (push (vector (nnir-group-full-name group server) art 0)
1564                   artlist))
1565           (forward-line 1)))
1566       (message "Searching %s using find-grep...done" (or group server))
1567       artlist)))
1568
1569 ;;; Util Code:
1570
1571 (defun nnir-read-parms (query)
1572   "Reads additional search parameters according to `nnir-engines'."
1573   (let ((parmspec (caddr (assoc nnir-search-engine nnir-engines))))
1574     (cons (cons 'query query)
1575           (mapcar 'nnir-read-parm parmspec))))
1576
1577 (defun nnir-read-parm (parmspec)
1578   "Reads a single search parameter.
1579 `parmspec' is a cons cell, the car is a symbol, the cdr is a prompt."
1580   (let ((sym (car parmspec))
1581         (prompt (cdr parmspec)))
1582     (if (listp prompt)
1583         (let* ((result (gnus-completing-read prompt nil))
1584                (mapping (or (assoc result nnir-imap-search-arguments)
1585                             (assoc nil nnir-imap-search-arguments))))
1586           (cons sym (format (cdr mapping) result)))
1587       (cons sym (read-string prompt)))))
1588
1589 (defun nnir-run-query (query)
1590   "Invoke appropriate search engine function (see `nnir-engines').
1591 If some groups were process-marked, run the query for each of the groups
1592 and concat the results."
1593   (let ((q (car (read-from-string query))))
1594     (if gnus-group-marked
1595         (apply 'vconcat
1596                (mapcar (lambda (x)
1597                          (let ((server (nnir-group-server x))
1598                                search-func)
1599                            (setq search-func (cadr
1600                                               (assoc
1601                                                (nnir-read-server-parm 'nnir-search-engine server) nnir-engines)))
1602                            (if search-func
1603                                (funcall search-func q server x)
1604                              nil)))
1605                        gnus-group-marked)
1606                )
1607       (apply 'vconcat
1608              (mapcar (lambda (x)
1609                        (if (and (equal (cadr x) 'ok) (not (equal (cadar x) "-ephemeral")))
1610                            (let ((server (format "%s:%s" (caar x) (cadar x)))
1611                                  search-func)
1612                              (setq search-func (cadr
1613                                                 (assoc
1614                                                  (nnir-read-server-parm 'nnir-search-engine server) nnir-engines)))
1615                              (if search-func
1616                                  (funcall search-func q server nil)
1617                                nil))
1618                          nil))
1619                      gnus-opened-servers)
1620              ))
1621     ))
1622
1623 (defun nnir-read-server-parm (key server)
1624   "Returns the parameter value of for the given server, where server is of
1625 form 'backend:name'."
1626   (let ((method (gnus-server-to-method server)))
1627     (cond ((and method (assq key (cddr method)))
1628            (nth 1 (assq key (cddr method))))
1629           ((and nnir-mail-backend
1630                 (gnus-server-equal method nnir-mail-backend))
1631            (symbol-value key))
1632           (t nil))))
1633 ;;     (if method
1634 ;;       (if (assq key (cddr method))
1635 ;;        (nth 1 (assq key (cddr method)))
1636 ;;      (symbol-value key))
1637 ;;       (symbol-value key))
1638 ;;     ))
1639
1640 (defun nnir-group-full-name (shortname server)
1641   "For the given group name, return a full Gnus group name.
1642 The Gnus backend/server information is added."
1643   (gnus-group-prefixed-name shortname (gnus-server-to-method server)))
1644
1645 (defun nnir-possibly-change-server (server)
1646   (unless (and server (nnir-server-opened server))
1647     (nnir-open-server server)))
1648
1649
1650 ;; Data type article list.
1651
1652 (defun nnir-artlist-length (artlist)
1653   "Returns number of articles in artlist."
1654   (length artlist))
1655
1656 (defun nnir-artlist-article (artlist n)
1657   "Returns from ARTLIST the Nth artitem (counting starting at 1)."
1658   (elt artlist (1- n)))
1659
1660 (defun nnir-artitem-group (artitem)
1661   "Returns the group from the ARTITEM."
1662   (elt artitem 0))
1663
1664 (defun nnir-artlist-artitem-group (artlist n)
1665   "Returns from ARTLIST the group of the Nth artitem (counting from 1)."
1666   (nnir-artitem-group (nnir-artlist-article artlist n)))
1667
1668 (defun nnir-artitem-number (artitem)
1669   "Returns the number from the ARTITEM."
1670   (elt artitem 1))
1671
1672 (defun nnir-artlist-artitem-number (artlist n)
1673   "Returns from ARTLIST the number of the Nth artitem (counting from 1)."
1674   (nnir-artitem-number (nnir-artlist-article artlist n)))
1675
1676 (defun nnir-artitem-rsv (artitem)
1677   "Returns the Retrieval Status Value (RSV, score) from the ARTITEM."
1678   (elt artitem 2))
1679
1680 (defun nnir-artlist-artitem-rsv (artlist n)
1681   "Returns from ARTLIST the Retrieval Status Value of the Nth artitem
1682 \(counting from 1)."
1683   (nnir-artitem-rsv (nnir-artlist-article artlist n)))
1684
1685 ;; unused?
1686 (defun nnir-artlist-groups (artlist)
1687   "Returns a list of all groups in the given ARTLIST."
1688   (let ((res nil)
1689         (with-dups nil))
1690     ;; from each artitem, extract group component
1691     (setq with-dups (mapcar 'nnir-artitem-group artlist))
1692     ;; remove duplicates from above
1693     (mapc (function (lambda (x) (add-to-list 'res x)))
1694             with-dups)
1695     res))
1696
1697
1698 ;; The end.
1699 (provide 'nnir)
1700
1701 ;;; nnir.el ends here