Merge semi21-D20010129.
[elisp/lemi.git] / mime / mime-play.el
1 ;;; mime-play.el --- Playback processing module for mime-view.el
2
3 ;; Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Created: 1995/9/26 (separated from tm-view.el)
7 ;;      Renamed: 1997/2/21 from tm-play.el
8 ;; Keywords: MIME, multimedia, mail, news
9
10 ;; This file is part of SEMI (Secretariat of Emacs MIME Interfaces).
11
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
16
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (require 'mime-view)
30 (require 'alist)
31 (require 'filename)
32
33 (eval-when-compile
34   (condition-case nil
35       (require 'bbdb)
36     (error (defvar bbdb-buffer-name nil)))
37   )
38
39 (defcustom mime-save-directory "~/"
40   "*Name of the directory where MIME entity will be saved in.
41 If t, it means current directory."
42   :group 'mime-view
43   :type '(choice (const :tag "Current directory" t)
44                  (directory)))
45
46 (defvar mime-play-find-every-situations t
47   "*Find every available situations if non-nil.")
48
49 (defvar mime-play-messages-coding-system nil
50   "Coding system to be used for external MIME playback method.")
51
52
53 ;;; @ content decoder
54 ;;;
55
56 ;;;###autoload
57 (defun mime-preview-play-current-entity (&optional ignore-examples mode)
58   "Play current entity.
59 It decodes current entity to call internal or external method.  The
60 method is selected from variable `mime-acting-condition'.
61 If IGNORE-EXAMPLES (C-u prefix) is specified, this function ignores
62 `mime-acting-situation-example-list'.
63 If MODE is specified, play as it.  Default MODE is \"play\"."
64   (interactive "P")
65   (let ((entity (get-text-property (point) 'mime-view-entity)))
66     (if entity
67         (let ((situation
68                (get-text-property (point) 'mime-view-situation)))
69           (or mode
70               (setq mode "play"))
71           (setq situation 
72                 (if (assq 'mode situation)
73                     (put-alist 'mode mode (copy-alist situation))
74                   (cons (cons 'mode mode)
75                         situation)))
76           (if ignore-examples
77               (setq situation
78                     (cons (cons 'ignore-examples ignore-examples)
79                           situation)))
80           (mime-play-entity entity situation)
81           ))))
82
83 ;;;###autoload
84 (defun mime-play-entity (entity &optional situation ignored-method)
85   "Play entity specified by ENTITY.
86 It decodes the entity to call internal or external method.  The method
87 is selected from variable `mime-acting-condition'.  If MODE is
88 specified, play as it.  Default MODE is \"play\"."
89   (let ((ret
90          (mime-unify-situations (mime-entity-situation entity situation)
91                                 mime-acting-condition
92                                 mime-acting-situation-example-list
93                                 'method ignored-method
94                                 mime-play-find-every-situations))
95         method)
96     (setq mime-acting-situation-example-list (cdr ret)
97           ret (car ret))
98     (cond ((cdr ret)
99            (setq ret (select-menu-alist
100                       "Methods"
101                       (mapcar (function
102                                (lambda (situation)
103                                  (cons
104                                   (format "%s"
105                                           (cdr (assq 'method situation)))
106                                   situation)))
107                               ret)))
108            (setq ret (mime-sort-situation ret))
109            (add-to-list 'mime-acting-situation-example-list (cons ret 0))
110            )
111           (t
112            (setq ret (car ret))
113            ))
114     (setq method (cdr (assq 'method ret)))
115     (cond ((and (symbolp method)
116                 (fboundp method))
117            (funcall method entity ret)
118            )
119           ((stringp method)
120            (mime-activate-mailcap-method entity ret)
121            )
122           ;; ((and (listp method)(stringp (car method)))
123           ;;  (mime-activate-external-method entity ret)
124           ;;  )
125           (t
126            (mime-show-echo-buffer "No method are specified for %s\n"
127                                   (mime-type/subtype-string
128                                    (cdr (assq 'type situation))
129                                    (cdr (assq 'subtype situation))))
130            (if (y-or-n-p "Do you want to save current entity to disk?")
131                (mime-save-content entity situation))
132            ))
133     ))
134
135
136 ;;; @ external decoder
137 ;;;
138
139 (defvar mime-mailcap-method-filename-alist nil)
140
141 (defun mime-activate-mailcap-method (entity situation)
142   (let ((method (cdr (assoc 'method situation)))
143         (name (mime-entity-safe-filename entity)))
144     (setq name
145           (if (and name (not (string= name "")))
146               (expand-file-name name temporary-file-directory)
147             (make-temp-name
148              (expand-file-name "EMI" temporary-file-directory))))
149     (mime-write-entity-content entity name)
150     (message "External method is starting...")
151     (let ((process
152            (let ((command
153                   (mime-format-mailcap-command
154                    method
155                    (cons (cons 'filename name) situation))))
156              (binary-to-text-funcall
157               mime-play-messages-coding-system
158               #'start-process command mime-echo-buffer-name
159               shell-file-name shell-command-switch command))))
160       (set-alist 'mime-mailcap-method-filename-alist process name)
161       (set-process-sentinel process 'mime-mailcap-method-sentinel))))
162
163 (defun mime-mailcap-method-sentinel (process event)
164   (let ((file (cdr (assq process mime-mailcap-method-filename-alist))))
165     (if (file-exists-p file)
166         (delete-file file)
167       ))
168   (remove-alist 'mime-mailcap-method-filename-alist process)
169   (message (format "%s %s" process event)))
170
171 (defvar mime-echo-window-is-shared-with-bbdb
172   (module-installed-p 'bbdb)
173   "*If non-nil, mime-echo window is shared with BBDB window.")
174
175 (defvar mime-echo-window-height
176   (function
177    (lambda ()
178      (/ (window-height) 5)
179      ))
180   "*Size of mime-echo window.
181 It allows function or integer.  If it is function,
182 `mime-show-echo-buffer' calls it to get height of mime-echo window.
183 Otherwise `mime-show-echo-buffer' uses it as height of mime-echo
184 window.")
185
186 (defun mime-show-echo-buffer (&rest forms)
187   "Show mime-echo buffer to display MIME-playing information."
188   (get-buffer-create mime-echo-buffer-name)
189   (let ((the-win (selected-window))
190         (win (get-buffer-window mime-echo-buffer-name)))
191     (unless win
192       (unless (and mime-echo-window-is-shared-with-bbdb
193                    (condition-case nil
194                        (setq win (get-buffer-window bbdb-buffer-name))
195                      (error nil)))
196         (select-window (get-buffer-window (or mime-preview-buffer
197                                               (current-buffer))))
198         (setq win (split-window-vertically
199                    (- (window-height)
200                       (if (functionp mime-echo-window-height)
201                           (funcall mime-echo-window-height)
202                         mime-echo-window-height)
203                       )))
204         )
205       (set-window-buffer win mime-echo-buffer-name)
206       )
207     (select-window win)
208     (goto-char (point-max))
209     (if forms
210         (let ((buffer-read-only nil))
211           (insert (apply (function format) forms))
212           ))
213     (select-window the-win)
214     ))
215
216
217 ;;; @ file name
218 ;;;
219
220 (defvar mime-view-file-name-char-regexp "[A-Za-z0-9+_-]")
221
222 (defvar mime-view-file-name-regexp-1
223   (concat mime-view-file-name-char-regexp "+\\."
224           mime-view-file-name-char-regexp "+"))
225
226 (defvar mime-view-file-name-regexp-2
227   (concat (regexp-* mime-view-file-name-char-regexp)
228           "\\(\\." mime-view-file-name-char-regexp "+\\)*"))
229
230 (defun mime-entity-safe-filename (entity)
231   (let ((filename
232          (or (mime-entity-filename entity)
233              (let ((subj
234                     (or (mime-entity-read-field entity 'Content-Description)
235                         (mime-entity-read-field entity 'Subject))))
236                (if (and subj
237                         (or (string-match mime-view-file-name-regexp-1 subj)
238                             (string-match mime-view-file-name-regexp-2 subj)))
239                    (substring subj (match-beginning 0)(match-end 0))
240                  )))))
241     (if filename
242         (replace-as-filename filename)
243       )))
244
245
246 ;;; @ file extraction
247 ;;;
248
249 (defun mime-save-content (entity situation)
250   (let ((name (or (mime-entity-safe-filename entity)
251                   (format "%s" (mime-entity-media-type entity))))
252         (dir (if (eq t mime-save-directory)
253                  default-directory
254                mime-save-directory))
255         filename)
256     (setq filename (read-file-name
257                     (concat "File name: (default "
258                             (file-name-nondirectory name) ") ")
259                     dir
260                     (concat (file-name-as-directory dir)
261                             (file-name-nondirectory name))))
262     (if (file-directory-p filename)
263         (setq filename (concat (file-name-as-directory filename)
264                                (file-name-nondirectory name))))
265     (if (file-exists-p filename)
266         (or (yes-or-no-p (format "File %s exists. Save anyway? " filename))
267             (error "")))
268     (mime-write-entity-content entity (expand-file-name filename))
269     ))
270
271
272 ;;; @ file detection
273 ;;;
274
275 (defvar mime-magic-type-alist
276   '(("^\377\330\377[\340\356]..JFIF"    image jpeg)
277     ("^\211PNG"                         image png)
278     ("^GIF8[79]"                        image gif)
279     ("^II\\*\000"                       image tiff)
280     ("^MM\000\\*"                       image tiff)
281     ("^MThd"                            audio midi)
282     ("^\000\000\001\263"                video mpeg)
283     )
284   "*Alist of regexp about magic-number vs. corresponding media-types.
285 Each element looks like (REGEXP TYPE SUBTYPE).
286 REGEXP is a regular expression to match against the beginning of the
287 content of entity.
288 TYPE is symbol to indicate primary type of media-type.
289 SUBTYPE is symbol to indicate subtype of media-type.")
290
291 (defun mime-detect-content (entity situation)
292   (let (type subtype)
293     (let ((mdata (mime-entity-content entity))
294           (rest mime-magic-type-alist))
295       (while (not (let ((cell (car rest)))
296                     (if cell
297                         (if (string-match (car cell) mdata)
298                             (setq type (nth 1 cell)
299                                   subtype (nth 2 cell))
300                           )
301                       t)))
302         (setq rest (cdr rest))))
303     (setq situation (del-alist 'method (copy-alist situation)))
304     (mime-play-entity entity
305                       (if type
306                           (put-alist 'type type
307                                      (put-alist 'subtype subtype
308                                                 situation))
309                         situation)
310                       'mime-detect-content)))
311
312
313 ;;; @ mail/news message
314 ;;;
315
316 (defun mime-preview-quitting-method-for-mime-show-message-mode ()
317   "Quitting method for mime-view.
318 It is registered to variable `mime-preview-quitting-method-alist'."
319   (let ((mother mime-mother-buffer)
320         (win-conf mime-preview-original-window-configuration))
321     (if (and (boundp 'mime-view-temp-message-buffer)
322              (buffer-live-p mime-view-temp-message-buffer))
323         (kill-buffer mime-view-temp-message-buffer))
324     (mime-preview-kill-buffer)
325     (set-window-configuration win-conf)
326     (pop-to-buffer mother)))
327
328 (defun mime-view-message/rfc822 (entity situation)
329   (let* ((new-name
330           (format "%s-%s" (buffer-name) (mime-entity-number entity)))
331          (mother (current-buffer))
332          (children (car (mime-entity-children entity)))
333          (preview-buffer
334           (mime-display-message
335            children new-name mother nil
336            (cdr (assq 'major-mode
337                       (get-text-property (point) 'mime-view-situation))))))
338     (or (get-buffer-window preview-buffer)
339         (let ((m-win (get-buffer-window mother)))
340           (if m-win
341               (set-window-buffer m-win preview-buffer)
342             (switch-to-buffer preview-buffer)
343             )))))
344
345
346 ;;; @ message/partial
347 ;;;
348
349 (defun mime-store-message/partial-piece (entity cal)
350   (let* ((root-dir
351           (expand-file-name
352            (concat "m-prts-" (user-login-name)) temporary-file-directory))
353          (id (cdr (assoc "id" cal)))
354          (number (cdr (assoc "number" cal)))
355          (total (cdr (assoc "total" cal)))
356          file
357          (mother (current-buffer)))
358     (or (file-exists-p root-dir)
359         (make-directory root-dir))
360     (setq id (replace-as-filename id))
361     (setq root-dir (concat root-dir "/" id))
362     (or (file-exists-p root-dir)
363         (make-directory root-dir))
364     (setq file (concat root-dir "/FULL"))
365     (if (file-exists-p file)
366         (let ((full-buf (get-buffer-create "FULL"))
367               (pwin (or (get-buffer-window mother)
368                         (get-largest-window)))
369               pbuf)
370           (save-window-excursion
371             (set-buffer full-buf)
372             (erase-buffer)
373             (binary-insert-encoded-file file)
374             (setq major-mode 'mime-show-message-mode)
375             (mime-view-buffer (current-buffer) nil mother)
376             (setq pbuf (current-buffer))
377             (make-local-variable 'mime-view-temp-message-buffer)
378             (setq mime-view-temp-message-buffer full-buf))
379           (set-window-buffer pwin pbuf)
380           (select-window pwin))
381       (setq file (concat root-dir "/" number))
382       (mime-write-entity-body entity file)
383       (let ((total-file (concat root-dir "/CT")))
384         (setq total
385               (if total
386                   (progn
387                     (or (file-exists-p total-file)
388                         (save-excursion
389                           (set-buffer
390                            (get-buffer-create mime-temp-buffer-name))
391                           (erase-buffer)
392                           (insert total)
393                           (write-region (point-min)(point-max) total-file)
394                           (kill-buffer (current-buffer))
395                           ))
396                     (string-to-number total)
397                     )
398                 (and (file-exists-p total-file)
399                      (save-excursion
400                        (set-buffer (find-file-noselect total-file))
401                        (prog1
402                            (and (re-search-forward "[0-9]+" nil t)
403                                 (string-to-number
404                                  (buffer-substring (match-beginning 0)
405                                                    (match-end 0)))
406                                 )
407                          (kill-buffer (current-buffer))
408                          )))
409                 )))
410       (if (and total (> total 0)
411                (>= (length (directory-files root-dir nil "^[0-9]+$" t))
412                    total))
413           (catch 'tag
414             (save-excursion
415               (set-buffer (get-buffer-create mime-temp-buffer-name))
416               (let ((full-buf (current-buffer)))
417                 (erase-buffer)
418                 (let ((i 1))
419                   (while (<= i total)
420                     (setq file (concat root-dir "/" (int-to-string i)))
421                     (or (file-exists-p file)
422                         (throw 'tag nil)
423                         )
424                     (binary-insert-encoded-file file)
425                     (goto-char (point-max))
426                     (setq i (1+ i))))
427                 (binary-write-decoded-region
428                  (point-min)(point-max)
429                  (expand-file-name "FULL" root-dir))
430                 (let ((i 1))
431                   (while (<= i total)
432                     (let ((file (format "%s/%d" root-dir i)))
433                       (and (file-exists-p file)
434                            (delete-file file)))
435                     (setq i (1+ i))))
436                 (let ((file (expand-file-name "CT" root-dir)))
437                   (and (file-exists-p file)
438                        (delete-file file)))
439                 (let ((buf (current-buffer))
440                       (pwin (or (get-buffer-window mother)
441                                 (get-largest-window)))
442                       (pbuf (mime-display-message
443                              (mime-open-entity 'buffer (current-buffer))
444                              nil mother nil 'mime-show-message-mode)))
445                   (with-current-buffer pbuf
446                     (make-local-variable 'mime-view-temp-message-buffer)
447                     (setq mime-view-temp-message-buffer buf))
448                   (set-window-buffer pwin pbuf)
449                   (select-window pwin)
450                   )))))
451       )))
452
453
454 ;;; @ message/external-body
455 ;;;
456
457 (defvar mime-raw-dired-function
458   (if (and (>= emacs-major-version 19) window-system)
459       (function dired-other-frame)
460     (function mime-raw-dired-function-for-one-frame)
461     ))
462
463 (defun mime-raw-dired-function-for-one-frame (dir)
464   (let ((win (or (get-buffer-window mime-preview-buffer)
465                  (get-largest-window))))
466     (select-window win)
467     (dired dir)
468     ))
469
470 (defun mime-view-message/external-anon-ftp (entity cal)
471   (let* ((site (cdr (assoc "site" cal)))
472          (directory (cdr (assoc "directory" cal)))
473          (name (cdr (assoc "name" cal)))
474          (pathname (concat "/anonymous@" site ":" directory)))
475     (message (concat "Accessing " (expand-file-name name pathname) " ..."))
476     (funcall mime-raw-dired-function pathname)
477     (goto-char (point-min))
478     (search-forward name)
479     ))
480
481 (defvar mime-raw-browse-url-function mime-browse-url-function)
482
483 (defun mime-view-message/external-url (entity cal)
484   (let ((url (cdr (assoc "url" cal))))
485     (message (concat "Accessing " url " ..."))
486     (funcall mime-raw-browse-url-function url)))
487
488
489 ;;; @ rot13-47
490 ;;;
491
492 (defun mime-view-caesar (entity situation)
493   "Internal method for mime-view to display ROT13-47-48 message."
494   (let ((buf (get-buffer-create
495               (format "%s-%s" (buffer-name) (mime-entity-number entity)))))
496     (with-current-buffer buf
497       (setq buffer-read-only nil)
498       (erase-buffer)
499       (mime-insert-text-content entity)
500       (mule-caesar-region (point-min) (point-max))
501       (set-buffer-modified-p nil)
502       )
503     (let ((win (get-buffer-window (current-buffer))))
504       (or (eq (selected-window) win)
505           (select-window (or win (get-largest-window)))
506           ))
507     (view-buffer buf)
508     (goto-char (point-min))
509     ))
510
511
512 ;;; @ end
513 ;;;
514
515 (provide 'mime-play)
516
517 ;;; mime-play.el ends here