901e9e5652073fd457d88bea49a08ae6528f518c
[gnus] / lisp / mailcap.el
1 ;;; mailcap.el --- Functions for displaying MIME parts
2 ;; Copyright (C) 1998,99 Free Software Foundation, Inc.
3
4 ;; Author: William M. Perry <wmperry@aventail.com>
5 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news, mail
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-and-compile
30   (require 'cl))
31 (require 'mail-parse)
32
33 (defvar mailcap-parse-args-syntax-table
34   (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
35     (modify-syntax-entry ?' "\"" table)
36     (modify-syntax-entry ?` "\"" table)
37     (modify-syntax-entry ?{ "(" table)
38     (modify-syntax-entry ?} ")" table)
39     table)
40   "A syntax table for parsing sgml attributes.")
41
42 (defvar mailcap-mime-data
43   '(("application"
44      ("x-x509-ca-cert"
45       (viewer . ssl-view-site-cert)
46       (test . (fboundp 'ssl-view-site-cert))
47       (type . "application/x-x509-ca-cert"))
48      ("x-x509-user-cert"
49       (viewer . ssl-view-user-cert)
50       (test . (fboundp 'ssl-view-user-cert))
51       (type . "application/x-x509-user-cert"))
52      ("octet-stream"
53       (viewer . mailcap-save-binary-file)
54       (non-viewer . t)
55       (type ."application/octet-stream"))
56      ("dvi"
57       (viewer . "open %s")
58       (type   . "application/dvi")
59       (test   . (eq (mm-device-type) 'ns)))
60      ("dvi"
61       (viewer . "xdvi %s")
62       (test   . (eq (mm-device-type) 'x))
63       ("needsx11")
64       (type   . "application/dvi"))
65      ("dvi"
66       (viewer . "dvitty %s")
67       (test   . (not (getenv "DISPLAY")))
68       (type   . "application/dvi"))
69      ("emacs-lisp"
70       (viewer . mailcap-maybe-eval)
71       (type   . "application/emacs-lisp"))
72      ("x-tar"
73       (viewer . mailcap-save-binary-file)
74       (non-viewer . t)
75       (type   . "application/x-tar"))
76      ("x-latex"
77       (viewer . tex-mode)
78       (test   . (fboundp 'tex-mode))
79       (type   . "application/x-latex"))
80      ("x-tex"
81       (viewer . tex-mode)
82       (test   . (fboundp 'tex-mode))
83       (type   . "application/x-tex"))
84      ("latex"
85       (viewer . tex-mode)
86       (test   . (fboundp 'tex-mode))
87       (type   . "application/latex"))
88      ("tex"
89       (viewer . tex-mode)
90       (test   . (fboundp 'tex-mode))
91       (type   . "application/tex"))
92      ("texinfo"
93       (viewer . texinfo-mode)
94       (test   . (fboundp 'texinfo-mode))
95       (type   . "application/tex"))
96      ("zip"
97       (viewer . mailcap-save-binary-file)
98       (non-viewer . t)
99       (type   . "application/zip")
100       ("copiousoutput"))
101      ("pdf"
102       (viewer . "acroread %s")
103       (type   . "application/pdf"))
104      ("postscript"
105       (viewer . "open %s")
106       (type   . "application/postscript")
107       (test   . (eq (mm-device-type) 'ns)))
108      ("postscript"
109       (viewer . "ghostview -dSAFER %s")
110       (type . "application/postscript")
111       (test   . (eq (mm-device-type) 'x))
112       ("needsx11"))
113      ("postscript"
114       (viewer . "ps2ascii %s")
115       (type . "application/postscript")
116       (test . (not (getenv "DISPLAY")))
117       ("copiousoutput")))
118     ("audio"
119      ("x-mpeg"
120       (viewer . "maplay %s")
121       (type   . "audio/x-mpeg"))
122      (".*"
123       (viewer . mailcap-save-binary-file)
124       (non-viewer . t)
125       (test   . (or (featurep 'nas-sound)
126                       (featurep 'native-sound)))
127       (type   . "audio/*"))
128      (".*"
129       (viewer . "showaudio")
130       (type   . "audio/*")))
131     ("message"
132      ("rfc-*822"
133       (viewer . mm-view-message)
134       (test   . (and (featurep 'gnus)
135                      (gnus-alive-p)))
136       (type   . "message/rfc822"))
137      ("rfc-*822"
138       (viewer . vm-mode)
139       (test   . (fboundp 'vm-mode))
140       (type   . "message/rfc822"))
141      ("rfc-*822"
142       (viewer . w3-mode)
143       (test   . (fboundp 'w3-mode))
144       (type   . "message/rfc822"))
145      ("rfc-*822"
146       (viewer . view-mode)
147       (test   . (fboundp 'view-mode))
148       (type   . "message/rfc822"))
149      ("rfc-*822"
150       (viewer . fundamental-mode)
151       (type   . "message/rfc822")))
152     ("image"
153      ("x-xwd"
154       (viewer  . "xwud -in %s")
155       (type    . "image/x-xwd")
156       ("compose" . "xwd -frame > %s")
157       (test    . (eq (mm-device-type) 'x))
158       ("needsx11"))
159      ("x11-dump"
160       (viewer . "xwud -in %s")
161       (type . "image/x-xwd")
162       ("compose" . "xwd -frame > %s")
163       (test   . (eq (mm-device-type) 'x))
164       ("needsx11"))
165      ("windowdump"
166       (viewer . "xwud -in %s")
167       (type . "image/x-xwd")
168       ("compose" . "xwd -frame > %s")
169       (test   . (eq (mm-device-type) 'x))
170       ("needsx11"))
171      (".*"
172       (viewer . "aopen %s")
173       (type   . "image/*")
174       (test   . (eq (mm-device-type) 'ns)))
175      (".*"
176       (viewer . "display %s")
177       (type . "image/*")
178       (test   . (eq (mm-device-type) 'x))
179       ("needsx11"))
180      (".*"
181       (viewer . "ee %s")
182       (type . "image/*")
183       (test   . (eq (mm-device-type) 'x))
184       ("needsx11")))
185     ("text"
186      ("plain"
187       (viewer  . w3-mode)
188       (test    . (fboundp 'w3-mode))
189       (type    . "text/plain"))
190      ("plain"
191       (viewer  . view-mode)
192       (test    . (fboundp 'view-mode))
193       (type    . "text/plain"))
194      ("plain"
195       (viewer  . fundamental-mode)
196       (type    . "text/plain"))
197      ("enriched"
198       (viewer . enriched-decode-region)
199       (test   . (fboundp 'enriched-decode))
200       (type   . "text/enriched"))
201      ("html"
202       (viewer . mm-w3-prepare-buffer)
203       (test   . (fboundp 'w3-prepare-buffer))
204       (type   . "text/html")))
205     ("video"
206      ("mpeg"
207       (viewer . "mpeg_play %s")
208       (type   . "video/mpeg")
209       (test   . (eq (mm-device-type) 'x))
210       ("needsx11")))
211     ("x-world"
212      ("x-vrml"
213       (viewer  . "webspace -remote %s -URL %u")
214       (type    . "x-world/x-vrml")
215       ("description"
216        "VRML document")))
217     ("archive"
218      ("tar"
219       (viewer . tar-mode)
220       (type . "archive/tar")
221       (test . (fboundp 'tar-mode)))))
222      "The mailcap structure is an assoc list of assoc lists.
223 1st assoc list is keyed on the major content-type
224 2nd assoc list is keyed on the minor content-type (which can be a regexp)
225
226 Which looks like:
227 -----------------
228  ((\"application\"
229    (\"postscript\" . <info>))
230   (\"text\"
231    (\"plain\" . <info>)))
232
233 Where <info> is another assoc list of the various information
234 related to the mailcap RFC.  This is keyed on the lowercase
235 attribute name (viewer, test, etc).  This looks like:
236  ((viewer . viewerinfo)
237   (test   . testinfo)
238   (xxxx   . \"string\"))
239
240 Where viewerinfo specifies how the content-type is viewed.  Can be
241 a string, in which case it is run through a shell, with
242 appropriate parameters, or a symbol, in which case the symbol is
243 funcall'd, with the buffer as an argument.
244
245 testinfo is a list of strings, or nil.  If nil, it means the
246 viewer specified is always valid.  If it is a list of strings,
247 these are used to determine whether a viewer passes the 'test' or
248 not.")
249
250 (defvar mailcap-download-directory nil
251   "*Where downloaded files should go by default.")
252
253 (defvar mailcap-temporary-directory
254   (cond ((fboundp 'temp-directory) (temp-directory))
255         ((boundp 'temporary-file-directory) temporary-file-directory)
256         ("/tmp/"))
257   "*Where temporary files go.")
258
259 ;;;
260 ;;; Utility functions
261 ;;;
262
263 (defun mailcap-generate-unique-filename (&optional fmt)
264   "Generate a unique filename in mailcap-temporary-directory"
265   (if (not fmt)
266       (let ((base (format "mailcap-tmp.%d" (user-real-uid)))
267             (fname "")
268             (x 0))
269         (setq fname (format "%s%d" base x))
270         (while (file-exists-p
271                 (expand-file-name fname mailcap-temporary-directory))
272           (setq x (1+ x)
273                 fname (concat base (int-to-string x))))
274         (expand-file-name fname mailcap-temporary-directory))
275     (let ((base (concat "mm" (int-to-string (user-real-uid))))
276           (fname "")
277           (x 0))
278       (setq fname (format fmt (concat base (int-to-string x))))
279       (while (file-exists-p
280               (expand-file-name fname mailcap-temporary-directory))
281         (setq x (1+ x)
282               fname (format fmt (concat base (int-to-string x)))))
283       (expand-file-name fname mailcap-temporary-directory))))
284
285 (defun mailcap-save-binary-file ()
286   (goto-char (point-min))
287   (unwind-protect
288       (let ((file (read-file-name
289                    "Filename to save as: "
290                    (or mailcap-download-directory "~/")))
291             (require-final-newline nil))
292         (write-region (point-min) (point-max) file))
293     (kill-buffer (current-buffer))))
294
295 (defun mailcap-maybe-eval ()
296   "Maybe evaluate a buffer of emacs lisp code"
297   (if (yes-or-no-p "This is emacs-lisp code, evaluate it? ")
298       (eval-buffer (current-buffer))
299     (emacs-lisp-mode)))
300
301 ;;;
302 ;;; The mailcap parser
303 ;;;
304
305 (defun mailcap-replace-regexp (regexp to-string)
306   ;; Quiet replace-regexp.
307   (goto-char (point-min))
308   (while (re-search-forward regexp nil t)
309     (replace-match to-string t nil)))
310
311 (defvar mailcap-parsed-p nil)
312
313 (defun mailcap-parse-mailcaps (&optional path force)
314   "Parse out all the mailcaps specified in a unix-style path string PATH.
315 If FORCE, re-parse even if already parsed."
316   (interactive (list nil t))
317   (when (or (not mailcap-parsed-p)
318             force)
319     (cond
320      (path nil)
321      ((getenv "MAILCAPS") (setq path (getenv "MAILCAPS")))
322      ((memq system-type '(ms-dos ms-windows windows-nt))
323       (setq path (mapconcat 'expand-file-name
324                             '("~/mail.cap" "~/etc/mail.cap" "~/.mailcap")
325                             ";")))
326      (t (setq path (mapconcat 'expand-file-name
327                               '("~/.mailcap"
328                                 "/etc/mailcap:/usr/etc/mailcap"
329                                 "/usr/local/etc/mailcap") ":"))))
330     (let ((fnames (reverse
331                    (split-string
332                     path (if (memq system-type
333                                    '(ms-dos ms-windows windows-nt))
334                              ";"
335                            ":"))))
336           fname)
337       (while fnames
338         (setq fname (car fnames))
339        (if (and (file-exists-p fname) (file-readable-p fname)
340                 (file-regular-p fname))
341             (mailcap-parse-mailcap (car fnames)))
342         (setq fnames (cdr fnames))))
343     (setq mailcap-parsed-p t)))
344
345 (defun mailcap-parse-mailcap (fname)
346   ;; Parse out the mailcap file specified by FNAME
347   (let (major                           ; The major mime type (image/audio/etc)
348         minor                           ; The minor mime type (gif, basic, etc)
349         save-pos                        ; Misc saved positions used in parsing
350         viewer                          ; How to view this mime type
351         info                            ; Misc info about this mime type
352         )
353     (with-temp-buffer
354       (insert-file-contents fname)
355       (set-syntax-table mailcap-parse-args-syntax-table)
356       (mailcap-replace-regexp "#.*" "") ; Remove all comments
357       (mailcap-replace-regexp "\n+" "\n") ; And blank lines
358       (mailcap-replace-regexp "\\\\[ \t\n]+" " ") ; And collapse spaces
359       (mailcap-replace-regexp (concat (regexp-quote "\\") "[ \t]*\n") "")
360       (goto-char (point-max))
361       (skip-chars-backward " \t\n")
362       (delete-region (point) (point-max))
363       (goto-char (point-min))
364       (while (not (eobp))
365         (skip-chars-forward " \t\n")
366         (setq save-pos (point)
367               info nil)
368         (skip-chars-forward "^/; \t\n")
369         (downcase-region save-pos (point))
370         (setq major (buffer-substring save-pos (point)))
371         (skip-chars-forward " \t\n")
372         (setq minor "")
373         (when (eq (char-after) ?/)
374           (forward-char)
375           (skip-chars-forward " \t\n")
376           (setq save-pos (point))
377           (skip-chars-forward "^; \t\n")
378           (downcase-region save-pos (point))
379           (setq minor
380                 (cond
381                  ((eq ?* (or (char-after save-pos) 0)) ".*")
382                  ((= (point) save-pos) ".*")
383                  (t (regexp-quote (buffer-substring save-pos (point)))))))
384         (skip-chars-forward " \t\n")
385         ;;; Got the major/minor chunks, now for the viewers/etc
386         ;;; The first item _must_ be a viewer, according to the
387         ;;; RFC for mailcap files (#1343)
388         (setq viewer "")
389         (when (eq (char-after) ?\;) 
390           (forward-char)
391           (skip-chars-forward " \t\n")
392           (setq save-pos (point))
393           (skip-chars-forward "^;\n")
394           ;; skip \;
395           (while (eq (char-before) ?\\)
396             (backward-delete-char 1)
397             (forward-char)
398             (skip-chars-forward "^;\n"))
399           (if (eq (or (char-after save-pos) 0) ?')
400               (setq viewer (progn
401                              (narrow-to-region (1+ save-pos) (point))
402                              (goto-char (point-min))
403                              (prog1
404                                  (read (current-buffer))
405                                (goto-char (point-max))
406                                (widen))))
407             (setq viewer (buffer-substring save-pos (point)))))
408         (setq save-pos (point))
409         (end-of-line)
410         (unless (equal viewer "") 
411           (setq info (nconc (list (cons 'viewer viewer)
412                                   (cons 'type (concat major "/"
413                                                       (if (string= minor ".*")
414                                                           "*" minor))))
415                             (mailcap-parse-mailcap-extras save-pos (point))))
416           (mailcap-mailcap-entry-passes-test info)
417           (mailcap-add-mailcap-entry major minor info))))))
418
419 (defun mailcap-parse-mailcap-extras (st nd)
420   ;; Grab all the extra stuff from a mailcap entry
421   (let (
422         name                            ; From name=
423         value                           ; its value
424         results                         ; Assoc list of results
425         name-pos                        ; Start of XXXX= position
426         val-pos                         ; Start of value position
427         done                            ; Found end of \'d ;s?
428         )
429     (save-restriction
430       (narrow-to-region st nd)
431       (goto-char (point-min))
432       (skip-chars-forward " \n\t;")
433       (while (not (eobp))
434         (setq done nil)
435         (setq name-pos (point))
436         (skip-chars-forward "^ \n\t=;")
437         (downcase-region name-pos (point))
438         (setq name (buffer-substring name-pos (point)))
439         (skip-chars-forward " \t\n")
440         (if (not (eq (char-after (point)) ?=)) ; There is no value
441             (setq value t)
442           (skip-chars-forward " \t\n=")
443           (setq val-pos (point))
444           (if (memq (char-after val-pos) '(?\" ?'))
445               (progn
446                 (setq val-pos (1+ val-pos))
447                 (condition-case nil
448                     (progn
449                       (forward-sexp 1)
450                       (backward-char 1))
451                   (error (goto-char (point-max)))))
452             (while (not done)
453               (skip-chars-forward "^;")
454               (if (eq (char-after (1- (point))) ?\\ )
455                   (progn
456                     (subst-char-in-region (1- (point)) (point) ?\\ ? )
457                     (skip-chars-forward ";"))
458                 (setq done t))))
459           (setq value (buffer-substring val-pos (point))))
460         (setq results (cons (cons name value) results))
461         (skip-chars-forward " \";\n\t"))
462       results)))
463
464 (defun mailcap-mailcap-entry-passes-test (info)
465   ;; Return t iff a mailcap entry passes its test clause or no test
466   ;; clause is present.
467   (let (status                          ; Call-process-regions return value
468         (test (assq 'test info))        ; The test clause
469         )
470     (setq status (and test (split-string (cdr test) " ")))
471     (if (and (or (assoc "needsterm" info)
472                  (assoc "needsterminal" info)
473                  (assoc "needsx11" info))
474              (not (getenv "DISPLAY")))
475         (setq status nil)
476       (cond
477        ((and (equal (nth 0 status) "test")
478              (equal (nth 1 status) "-n")
479              (or (equal (nth 2 status) "$DISPLAY")
480                  (equal (nth 2 status) "\"$DISPLAY\"")))
481         (setq status (if (getenv "DISPLAY") t nil)))
482        ((and (equal (nth 0 status) "test")
483              (equal (nth 1 status) "-z")
484              (or (equal (nth 2 status) "$DISPLAY")
485                  (equal (nth 2 status) "\"$DISPLAY\"")))
486         (setq status (if (getenv "DISPLAY") nil t)))
487        (test nil)
488        (t nil)))
489     (and test (listp test) (setcdr test status))))
490
491 ;;;
492 ;;; The action routines.
493 ;;;
494
495 (defun mailcap-possible-viewers (major minor)
496   ;; Return a list of possible viewers from MAJOR for minor type MINOR
497   (let ((exact '())
498         (wildcard '()))
499     (while major
500       (cond
501        ((equal (car (car major)) minor)
502         (setq exact (cons (cdr (car major)) exact)))
503        ((and minor (string-match (car (car major)) minor))
504         (setq wildcard (cons (cdr (car major)) wildcard))))
505       (setq major (cdr major)))
506     (nconc (nreverse exact) (nreverse wildcard))))
507
508 (defun mailcap-unescape-mime-test (test type-info)
509   (let (save-pos save-chr subst)
510     (cond
511      ((symbolp test) test)
512      ((and (listp test) (symbolp (car test))) test)
513      ((or (stringp test)
514           (and (listp test) (stringp (car test))
515                (setq test (mapconcat 'identity test " "))))
516       (with-temp-buffer
517         (insert test)
518         (goto-char (point-min))
519         (while (not (eobp))
520           (skip-chars-forward "^%")
521           (if (/= (- (point)
522                      (progn (skip-chars-backward "\\\\")
523                             (point)))
524                   0)                    ; It is an escaped %
525               (progn
526                 (delete-char 1)
527                 (skip-chars-forward "%."))
528             (setq save-pos (point))
529             (skip-chars-forward "%")
530             (setq save-chr (char-after (point)))
531             (cond
532              ((null save-chr) nil)
533              ((= save-chr ?t)
534               (delete-region save-pos (progn (forward-char 1) (point)))
535               (insert (or (cdr (assq 'type type-info)) "\"\"")))
536              ((= save-chr ?M)
537               (delete-region save-pos (progn (forward-char 1) (point)))
538               (insert "\"\""))
539              ((= save-chr ?n)
540               (delete-region save-pos (progn (forward-char 1) (point)))
541               (insert "\"\""))
542              ((= save-chr ?F)
543               (delete-region save-pos (progn (forward-char 1) (point)))
544               (insert "\"\""))
545              ((= save-chr ?{)
546               (forward-char 1)
547               (skip-chars-forward "^}")
548               (downcase-region (+ 2 save-pos) (point))
549               (setq subst (buffer-substring (+ 2 save-pos) (point)))
550               (delete-region save-pos (1+ (point)))
551               (insert (or (cdr (assoc subst type-info)) "\"\"")))
552              (t nil))))
553         (buffer-string)))
554      (t (error "Bad value to mailcap-unescape-mime-test. %s" test)))))
555
556 (defvar mailcap-viewer-test-cache nil)
557
558 (defun mailcap-viewer-passes-test (viewer-info type-info)
559   ;; Return non-nil iff the viewer specified by VIEWER-INFO passes its
560   ;; test clause (if any).
561   (let* ((test-info (assq 'test viewer-info))
562          (test (cdr test-info))
563          (otest test)
564          (viewer (cdr (assoc 'viewer viewer-info)))
565          (default-directory (expand-file-name "~/"))
566          status parsed-test cache result)
567     (if (setq cache (assoc test mailcap-viewer-test-cache))
568         (cadr cache)
569       (setq
570        result
571        (cond
572         ((not test-info) t)             ; No test clause
573         ((not test) nil)                ; Already failed test
574         ((eq test t) t)                 ; Already passed test
575         ((and (symbolp test)            ; Lisp function as test
576               (fboundp test))
577          (funcall test type-info))
578         ((and (symbolp test)            ; Lisp variable as test
579               (boundp test))
580          (symbol-value test))
581         ((and (listp test)              ; List to be eval'd
582               (symbolp (car test)))
583          (eval test))
584         (t
585          (setq test (mailcap-unescape-mime-test test type-info)
586                test (list shell-file-name nil nil nil
587                           shell-command-switch test)
588                status (apply 'call-process test))
589          (= 0 status))))
590       (push (list otest result) mailcap-viewer-test-cache)
591       result)))
592
593 (defun mailcap-add-mailcap-entry (major minor info)
594   (let ((old-major (assoc major mailcap-mime-data)))
595     (if (null old-major)                ; New major area
596         (setq mailcap-mime-data
597               (cons (cons major (list (cons minor info)))
598                     mailcap-mime-data))
599       (let ((cur-minor (assoc minor old-major)))
600         (cond
601          ((or (null cur-minor)          ; New minor area, or
602               (assq 'test info))        ; Has a test, insert at beginning
603           (setcdr old-major (cons (cons minor info) (cdr old-major))))
604          ((and (not (assq 'test info)) ; No test info, replace completely
605                (not (assq 'test cur-minor)))
606           (setcdr cur-minor info))
607          (t
608           (setcdr old-major (cons (cons minor info) (cdr old-major)))))))))
609
610 (defun mailcap-add (type viewer &optional test)
611   "Add VIEWER as a handler for TYPE.
612 If TEST is not given, it defaults to t."
613   (let ((tl (split-string type "/")))
614     (when (or (not (car tl))
615               (not (cadr tl)))
616       (error "%s is not a valid MIME type" type))
617     (mailcap-add-mailcap-entry
618      (car tl) (cadr tl)
619      `((viewer . ,viewer)
620        (test . ,(if test test t))
621        (type . ,type)))))
622
623 ;;;
624 ;;; The main whabbo
625 ;;;
626
627 (defun mailcap-viewer-lessp (x y)
628   ;; Return t iff viewer X is more desirable than viewer Y
629   (let ((x-wild (string-match "[*?]" (or (cdr-safe (assq 'type x)) "")))
630         (y-wild (string-match "[*?]" (or (cdr-safe (assq 'type y)) "")))
631         (x-lisp (not (stringp (or (cdr-safe (assq 'viewer x)) ""))))
632         (y-lisp (not (stringp (or (cdr-safe (assq 'viewer y)) "")))))
633     (cond
634      ((and x-wild (not y-wild))
635       nil)
636      ((and (not x-wild) y-wild)
637       t)
638      ((and (not y-lisp) x-lisp)
639       t)
640      (t nil))))
641
642 (defun mailcap-mime-info (string &optional request)
643   "Get the MIME viewer command for STRING, return nil if none found.
644 Expects a complete content-type header line as its argument.
645
646 Second argument REQUEST specifies what information to return.  If it is
647 nil or the empty string, the viewer (second field of the mailcap
648 entry) will be returned.  If it is a string, then the mailcap field
649 corresponding to that string will be returned (print, description,
650 whatever).  If a number, then all the information for this specific
651 viewer is returned.  If `all', then all possible viewers for
652 this type is returned."
653   (let (
654         major                           ; Major encoding (text, etc)
655         minor                           ; Minor encoding (html, etc)
656         info                            ; Other info
657         save-pos                        ; Misc. position during parse
658         major-info                      ; (assoc major mailcap-mime-data)
659         minor-info                      ; (assoc minor major-info)
660         test                            ; current test proc.
661         viewers                         ; Possible viewers
662         passed                          ; Viewers that passed the test
663         viewer                          ; The one and only viewer
664         ctl)
665     (save-excursion
666       (setq ctl (mail-header-parse-content-type (or string "text/plain")))
667       (setq major (split-string (car ctl) "/"))
668       (setq minor (cadr major)
669             major (car major))
670       (when (setq major-info (cdr (assoc major mailcap-mime-data)))
671         (when (setq viewers (mailcap-possible-viewers major-info minor))
672           (setq info (mapcar (lambda (a) (cons (symbol-name (car a))
673                                                (cdr a)))
674                              (cdr ctl)))
675           (while viewers
676             (if (mailcap-viewer-passes-test (car viewers) info)
677                 (setq passed (cons (car viewers) passed)))
678             (setq viewers (cdr viewers)))
679           (setq passed (sort (nreverse passed) 'mailcap-viewer-lessp))
680           (setq viewer (car passed))))
681       (when (and (stringp (cdr (assq 'viewer viewer)))
682                  passed)
683         (setq viewer (car passed)))
684       (cond
685        ((and (null viewer) (not (equal major "default")) request)
686         (mailcap-mime-info "default" request))
687        ((or (null request) (equal request ""))
688         (mailcap-unescape-mime-test (cdr (assq 'viewer viewer)) info))
689        ((stringp request)
690         (if (or (eq request 'test) (eq request 'viewer))
691             (mailcap-unescape-mime-test
692              (cdr-safe (assoc request viewer)) info)))
693        ((eq request 'all)
694         passed)
695        (t
696         ;; MUST make a copy *sigh*, else we modify mailcap-mime-data
697         (setq viewer (copy-tree viewer))
698         (let ((view (assq 'viewer viewer))
699               (test (assq 'test viewer)))
700           (if view (setcdr view (mailcap-unescape-mime-test (cdr view) info)))
701           (if test (setcdr test (mailcap-unescape-mime-test (cdr test) info))))
702         viewer)))))
703
704 ;;;
705 ;;; Experimental MIME-types parsing
706 ;;;
707
708 (defvar mailcap-mime-extensions
709   '((""          . "text/plain")
710     (".abs"      . "audio/x-mpeg")
711     (".aif"      . "audio/aiff")
712     (".aifc"     . "audio/aiff")
713     (".aiff"     . "audio/aiff")
714     (".ano"      . "application/x-annotator")
715     (".au"       . "audio/ulaw")
716     (".avi"      . "video/x-msvideo")
717     (".bcpio"    . "application/x-bcpio")
718     (".bin"      . "application/octet-stream")
719     (".cdf"      . "application/x-netcdr")
720     (".cpio"     . "application/x-cpio")
721     (".csh"      . "application/x-csh")
722     (".dvi"      . "application/x-dvi")
723     (".el"       . "application/emacs-lisp")
724     (".eps"      . "application/postscript")
725     (".etx"      . "text/x-setext")
726     (".exe"      . "application/octet-stream")
727     (".fax"      . "image/x-fax")
728     (".gif"      . "image/gif")
729     (".hdf"      . "application/x-hdf")
730     (".hqx"      . "application/mac-binhex40")
731     (".htm"      . "text/html")
732     (".html"     . "text/html")
733     (".icon"     . "image/x-icon")
734     (".ief"      . "image/ief")
735     (".jpg"      . "image/jpeg")
736     (".macp"     . "image/x-macpaint")
737     (".man"      . "application/x-troff-man")
738     (".me"       . "application/x-troff-me")
739     (".mif"      . "application/mif")
740     (".mov"      . "video/quicktime")
741     (".movie"    . "video/x-sgi-movie")
742     (".mp2"      . "audio/x-mpeg")
743     (".mp3"      . "audio/x-mpeg")
744     (".mp2a"     . "audio/x-mpeg2")
745     (".mpa"      . "audio/x-mpeg")
746     (".mpa2"     . "audio/x-mpeg2")
747     (".mpe"      . "video/mpeg")
748     (".mpeg"     . "video/mpeg")
749     (".mpega"    . "audio/x-mpeg")
750     (".mpegv"    . "video/mpeg")
751     (".mpg"      . "video/mpeg")
752     (".mpv"      . "video/mpeg")
753     (".ms"       . "application/x-troff-ms")
754     (".nc"       . "application/x-netcdf")
755     (".nc"       . "application/x-netcdf")
756     (".oda"      . "application/oda")
757     (".patch"    . "text/x-patch")
758     (".pbm"      . "image/x-portable-bitmap")
759     (".pdf"      . "application/pdf")
760     (".pgm"      . "image/portable-graymap")
761     (".pict"     . "image/pict")
762     (".png"      . "image/png")
763     (".pnm"      . "image/x-portable-anymap")
764     (".ppm"      . "image/portable-pixmap")
765     (".ps"       . "application/postscript")
766     (".qt"       . "video/quicktime")
767     (".ras"      . "image/x-raster")
768     (".rgb"      . "image/x-rgb")
769     (".rtf"      . "application/rtf")
770     (".rtx"      . "text/richtext")
771     (".sh"       . "application/x-sh")
772     (".sit"      . "application/x-stuffit")
773     (".snd"      . "audio/basic")
774     (".src"      . "application/x-wais-source")
775     (".tar"      . "archive/tar")
776     (".tcl"      . "application/x-tcl")
777     (".tcl"      . "application/x-tcl")
778     (".tex"      . "application/x-tex")
779     (".texi"     . "application/texinfo")
780     (".tga"      . "image/x-targa")
781     (".tif"      . "image/tiff")
782     (".tiff"     . "image/tiff")
783     (".tr"       . "application/x-troff")
784     (".troff"    . "application/x-troff")
785     (".tsv"      . "text/tab-separated-values")
786     (".txt"      . "text/plain")
787     (".vbs"      . "video/mpeg")
788     (".vox"      . "audio/basic")
789     (".vrml"     . "x-world/x-vrml")
790     (".wav"      . "audio/x-wav")
791     (".wrl"      . "x-world/x-vrml")
792     (".xbm"      . "image/xbm")
793     (".xpm"      . "image/xpm")
794     (".xwd"      . "image/windowdump")
795     (".zip"      . "application/zip")
796     (".ai"       . "application/postscript")
797     (".jpe"      . "image/jpeg")
798     (".jpeg"     . "image/jpeg"))
799   "An assoc list of file extensions and corresponding MIME content-types.")
800
801 (defun mailcap-parse-mimetypes (&optional path)
802   ;; Parse out all the mimetypes specified in a unix-style path string PATH
803   (cond
804    (path nil)
805    ((getenv "MIMETYPES") (setq path (getenv "MIMETYPES")))
806    ((memq system-type '(ms-dos ms-windows windows-nt))
807     (setq path (mapconcat 'expand-file-name
808                           '("~/mime.typ" "~/etc/mime.typ") ";")))
809    (t (setq path (mapconcat 'expand-file-name
810                             '("~/.mime-types"
811                               "/etc/mime-types:/usr/etc/mime-types"
812                               "/usr/local/etc/mime-types"
813                               "/usr/local/www/conf/mime-types") ":"))))
814   (let ((fnames (reverse
815                  (split-string path
816                                (if (memq system-type
817                                          '(ms-dos ms-windows windows-nt))
818                                    ";" ":"))))
819         fname)
820     (while fnames
821       (setq fname (car fnames))
822       (if (and (file-exists-p fname) (file-readable-p fname))
823           (mailcap-parse-mimetype-file (car fnames)))
824       (setq fnames (cdr fnames)))))
825
826 (defun mailcap-parse-mimetype-file (fname)
827   ;; Parse out a mime-types file
828   (let (type                            ; The MIME type for this line
829         extns                           ; The extensions for this line
830         save-pos                        ; Misc. saved buffer positions
831         )
832     (with-temp-buffer
833       (insert-file-contents fname)
834       (mailcap-replace-regexp "#.*" "")
835       (mailcap-replace-regexp "\n+" "\n")
836       (mailcap-replace-regexp "[ \t]+$" "")
837       (goto-char (point-max))
838       (skip-chars-backward " \t\n")
839       (delete-region (point) (point-max))
840       (goto-char (point-min))
841       (while (not (eobp))
842         (skip-chars-forward " \t\n")
843         (setq save-pos (point))
844         (skip-chars-forward "^ \t")
845         (downcase-region save-pos (point))
846         (setq type (buffer-substring save-pos (point)))
847         (while (not (eolp))
848           (skip-chars-forward " \t")
849           (setq save-pos (point))
850           (skip-chars-forward "^ \t\n")
851           (setq extns (cons (buffer-substring save-pos (point)) extns)))
852         (while extns
853           (setq mailcap-mime-extensions
854                 (cons
855                  (cons (if (= (string-to-char (car extns)) ?.)
856                            (car extns)
857                          (concat "." (car extns))) type)
858                  mailcap-mime-extensions)
859                 extns (cdr extns)))))))
860
861 (defun mailcap-extension-to-mime (extn)
862   "Return the MIME content type of the file extensions EXTN."
863   (if (and (stringp extn)
864            (not (eq (string-to-char extn) ?.)))
865       (setq extn (concat "." extn)))
866   (cdr (assoc (downcase extn) mailcap-mime-extensions)))
867
868 (defvar mailcap-binary-suffixes
869   (if (memq system-type '(ms-dos windows-nt))
870       '(".exe" ".com" ".bat" ".cmd" ".btm" "")
871     '("")))
872
873 (defun mailcap-command-p (command)
874   "Say whether COMMAND is in the exec path.
875 The path of COMMAND will be returned iff COMMAND is a command."
876   (let ((path (if (file-name-absolute-p command) '(nil) exec-path))
877         file dir)
878     (catch 'found
879       (while (setq dir (pop path))
880         (let ((suffixes mailcap-binary-suffixes))
881           (while suffixes
882             (when (and (file-executable-p
883                         (setq file (expand-file-name
884                                     (concat command (pop suffixes))
885                                     dir)))
886                        (not (file-directory-p file)))
887               (throw 'found file))))))))
888
889 (defun mailcap-mime-types ()
890   "Return a list of MIME media types."
891   (delete-duplicates (mapcar 'cdr mailcap-mime-extensions)))
892
893 (provide 'mailcap)
894
895 ;;; mailcap.el ends here