(mime-entity-safe-filename): Use `mime-entity-fetch-field' instead of
[elisp/semi.git] / mime-play.el
1 ;;; mime-play.el --- Playback processing module for mime-view.el
2
3 ;; Copyright (C) 1994,1995,1996,1997,1998,1999 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
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 (defvar mime-acting-situation-example-list nil)
40
41 (defvar mime-acting-situation-example-list-max-size 16)
42
43 (defun mime-save-acting-situation-examples ()
44   (let* ((file mime-acting-situation-examples-file)
45          (buffer (get-buffer-create " *mime-example*")))
46     (unwind-protect
47         (save-excursion
48           (set-buffer buffer)
49           (setq buffer-file-name file)
50           (erase-buffer)
51           (insert ";;; " (file-name-nondirectory file) "\n")
52           (insert "\n;; This file is generated automatically by "
53                   mime-view-version "\n\n")
54           (insert ";;; Code:\n\n")
55           (pp `(setq mime-acting-situation-example-list
56                      ',mime-acting-situation-example-list)
57               (current-buffer))
58           (insert "\n;;; "
59                   (file-name-nondirectory file)
60                   " ends here.\n")
61           (save-buffer))
62       (kill-buffer buffer))))
63
64 (add-hook 'kill-emacs-hook 'mime-save-acting-situation-examples)
65
66 (defun mime-reduce-acting-situation-examples ()
67   (let ((len (length mime-acting-situation-example-list))
68         i ir ic j jr jc ret
69         dest d-i d-j
70         (max-sim 0) sim
71         min-det-ret det-ret
72         min-det-org det-org
73         min-freq freq)
74     (setq i 0
75           ir mime-acting-situation-example-list)
76     (while (< i len)
77       (setq ic (car ir)
78             j 0
79             jr mime-acting-situation-example-list)
80       (while (< j len)
81         (unless (= i j)
82           (setq jc (car jr))
83           (setq ret (mime-compare-situation-with-example (car ic)(car jc))
84                 sim (car ret)
85                 det-ret (+ (length (car ic))(length (car jc)))
86                 det-org (length (cdr ret))
87                 freq (+ (cdr ic)(cdr jc)))
88           (cond ((< max-sim sim)
89                  (setq max-sim sim
90                        min-det-ret det-ret
91                        min-det-org det-org
92                        min-freq freq
93                        d-i i
94                        d-j j
95                        dest (cons (cdr ret) freq))
96                  )
97                 ((= max-sim sim)
98                  (cond ((> min-det-ret det-ret)
99                         (setq min-det-ret det-ret
100                               min-det-org det-org
101                               min-freq freq
102                               d-i i
103                               d-j j
104                               dest (cons (cdr ret) freq))
105                         )
106                        ((= min-det-ret det-ret)
107                         (cond ((> min-det-org det-org)
108                                (setq min-det-org det-org
109                                      min-freq freq
110                                      d-i i
111                                      d-j j
112                                      dest (cons (cdr ret) freq))
113                                )
114                               ((= min-det-org det-org)
115                                (cond ((> min-freq freq)
116                                       (setq min-freq freq
117                                             d-i i
118                                             d-j j
119                                             dest (cons (cdr ret) freq))
120                                       ))
121                                ))
122                         ))
123                  ))
124           )
125         (setq jr (cdr jr)
126               j (1+ j)))
127       (setq ir (cdr ir)
128             i (1+ i)))
129     (if (> d-i d-j)
130         (setq i d-i
131               d-i d-j
132               d-j i))
133     (setq jr (nthcdr (1- d-j) mime-acting-situation-example-list))
134     (setcdr jr (cddr jr))
135     (if (= d-i 0)
136         (setq mime-acting-situation-example-list
137               (cdr mime-acting-situation-example-list))
138       (setq ir (nthcdr (1- d-i) mime-acting-situation-example-list))
139       (setcdr ir (cddr ir))
140       )
141     (if (setq ir (assoc (car dest) mime-acting-situation-example-list))
142         (setcdr ir (+ (cdr ir)(cdr dest)))
143       (setq mime-acting-situation-example-list
144             (cons dest mime-acting-situation-example-list))
145       )))
146
147
148 ;;; @ content decoder
149 ;;;
150
151 ;;;###autoload
152 (defun mime-preview-play-current-entity (&optional ignore-examples mode)
153   "Play current entity.
154 It decodes current entity to call internal or external method.  The
155 method is selected from variable `mime-acting-condition'.
156 If IGNORE-EXAMPLES (C-u prefix) is specified, this function ignores
157 `mime-acting-situation-example-list'.
158 If MODE is specified, play as it.  Default MODE is \"play\"."
159   (interactive "P")
160   (let ((entity (get-text-property (point) 'mime-view-entity)))
161     (if entity
162         (let ((situation (list (cons 'mode (or mode "play")))))
163           (if ignore-examples
164               (setq situation
165                     (cons (cons 'ignore-examples ignore-examples)
166                           situation)))
167           (mime-play-entity entity situation)
168           ))))
169
170 (defun mime-sort-situation (situation)
171   (sort situation
172         #'(lambda (a b)
173             (let ((a-t (car a))
174                   (b-t (car b))
175                   (order '((type . 1)
176                            (subtype . 2)
177                            (mode . 3)
178                            (method . 4)
179                            (major-mode . 5)
180                            (disposition-type . 6)
181                            ))
182                   a-order b-order)
183               (if (symbolp a-t)
184                   (let ((ret (assq a-t order)))
185                     (if ret
186                         (setq a-order (cdr ret))
187                       (setq a-order 7)
188                       ))
189                 (setq a-order 8)
190                 )
191               (if (symbolp b-t)
192                   (let ((ret (assq b-t order)))
193                     (if ret
194                         (setq b-order (cdr ret))
195                       (setq b-order 7)
196                       ))
197                 (setq b-order 8)
198                 )
199               (if (= a-order b-order)
200                   (string< (format "%s" a-t)(format "%s" b-t))
201                 (< a-order b-order))
202               )))
203   )
204
205 (defsubst mime-delq-null-situation (situations field
206                                                &optional ignored-value)
207   (let (dest)
208     (while situations
209       (let* ((situation (car situations))
210              (cell (assq field situation)))
211         (if cell
212             (or (eq (cdr cell) ignored-value)
213                 (setq dest (cons situation dest))
214                 )))
215       (setq situations (cdr situations)))
216     dest))
217
218 (defun mime-compare-situation-with-example (situation example)
219   (let ((example (copy-alist example))
220         (match 0))
221     (while situation
222       (let* ((cell (car situation))
223              (key (car cell))
224              (ecell (assoc key example)))
225         (when ecell
226           (if (equal cell ecell)
227               (setq match (1+ match))
228             (setq example (delq ecell example))
229             ))
230         )
231       (setq situation (cdr situation))
232       )
233     (cons match example)
234     ))
235
236 ;;;###autoload
237 (defun mime-play-entity (entity &optional situation ignored-method)
238   "Play entity specified by ENTITY.
239 It decodes the entity to call internal or external method.  The method
240 is selected from variable `mime-acting-condition'.  If MODE is
241 specified, play as it.  Default MODE is \"play\"."
242   (let (method ret)
243     (in-calist-package 'mime-view)
244     (setq ret
245           (mime-delq-null-situation
246            (ctree-find-calist mime-acting-condition
247                               (mime-entity-situation entity situation)
248                               mime-view-find-every-acting-situation)
249            'method ignored-method))
250     (or (assq 'ignore-examples situation)
251         (if (cdr ret)
252             (let ((rest ret)
253                   (max-score 0)
254                   (max-escore 0)
255                   max-examples
256                   max-situations)
257               (while rest
258                 (let ((situation (car rest))
259                       (examples mime-acting-situation-example-list))
260                   (while examples
261                     (let* ((ret
262                             (mime-compare-situation-with-example
263                              situation (caar examples)))
264                            (ret-score (car ret)))
265                       (cond ((> ret-score max-score)
266                              (setq max-score ret-score
267                                    max-escore (cdar examples)
268                                    max-examples (list (cdr ret))
269                                    max-situations (list situation))
270                              )
271                             ((= ret-score max-score)
272                              (cond ((> (cdar examples) max-escore)
273                                     (setq max-escore (cdar examples)
274                                           max-examples (list (cdr ret))
275                                           max-situations (list situation))
276                                     )
277                                    ((= (cdar examples) max-escore)
278                                     (setq max-examples
279                                           (cons (cdr ret) max-examples))
280                                     (or (member situation max-situations)
281                                         (setq max-situations
282                                               (cons situation max-situations)))
283                                     )))))
284                     (setq examples (cdr examples))))
285                 (setq rest (cdr rest)))
286               (when max-situations
287                 (setq ret max-situations)
288                 (while max-examples
289                   (let* ((example (car max-examples))
290                          (cell
291                           (assoc example mime-acting-situation-example-list)))
292                     (if cell
293                         (setcdr cell (1+ (cdr cell)))
294                       (setq mime-acting-situation-example-list
295                             (cons (cons example 0)
296                                   mime-acting-situation-example-list))
297                       ))
298                   (setq max-examples (cdr max-examples))
299                   )))))
300     (cond ((cdr ret)
301            (setq ret (select-menu-alist
302                       "Methods"
303                       (mapcar (function
304                                (lambda (situation)
305                                  (cons
306                                   (format "%s"
307                                           (cdr (assq 'method situation)))
308                                   situation)))
309                               ret)))
310            (setq ret (mime-sort-situation ret))
311            (add-to-list 'mime-acting-situation-example-list (cons ret 0))
312            )
313           (t
314            (setq ret (car ret))
315            ))
316     (setq method (cdr (assq 'method ret)))
317     (cond ((and (symbolp method)
318                 (fboundp method))
319            (funcall method entity ret)
320            )
321           ((stringp method)
322            (mime-activate-mailcap-method entity ret)
323            )
324           ;; ((and (listp method)(stringp (car method)))
325           ;;  (mime-activate-external-method entity ret)
326           ;;  )
327           (t
328            (mime-show-echo-buffer "No method are specified for %s\n"
329                                   (mime-entity-type/subtype entity))
330            ))
331     ))
332
333
334 ;;; @ external decoder
335 ;;;
336
337 (defvar mime-mailcap-method-filename-alist nil)
338
339 (defun mime-activate-mailcap-method (entity situation)
340   (let ((method (cdr (assoc 'method situation)))
341         (name (mime-entity-safe-filename entity)))
342     (setq name
343           (if (and name (not (string= name "")))
344               (expand-file-name name temporary-file-directory)
345             (make-temp-name
346              (expand-file-name "EMI" temporary-file-directory))
347             ))
348     (mime-write-entity-content entity name)
349     (message "External method is starting...")
350     (let ((process
351            (let ((command
352                   (mailcap-format-command
353                    method
354                    (cons (cons 'filename name) situation))))
355              (start-process command mime-echo-buffer-name
356                             shell-file-name shell-command-switch command)
357              )))
358       (set-alist 'mime-mailcap-method-filename-alist process name)
359       (set-process-sentinel process 'mime-mailcap-method-sentinel)
360       )
361     ))
362
363 (defun mime-mailcap-method-sentinel (process event)
364   (let ((file (cdr (assq process mime-mailcap-method-filename-alist))))
365     (if (file-exists-p file)
366         (delete-file file)
367       ))
368   (remove-alist 'mime-mailcap-method-filename-alist process)
369   (message (format "%s %s" process event)))
370
371 (defvar mime-echo-window-is-shared-with-bbdb
372   (module-installed-p 'bbdb)
373   "*If non-nil, mime-echo window is shared with BBDB window.")
374
375 (defvar mime-echo-window-height
376   (function
377    (lambda ()
378      (/ (window-height) 5)
379      ))
380   "*Size of mime-echo window.
381 It allows function or integer.  If it is function,
382 `mime-show-echo-buffer' calls it to get height of mime-echo window.
383 Otherwise `mime-show-echo-buffer' uses it as height of mime-echo
384 window.")
385
386 (defun mime-show-echo-buffer (&rest forms)
387   "Show mime-echo buffer to display MIME-playing information."
388   (get-buffer-create mime-echo-buffer-name)
389   (let ((the-win (selected-window))
390         (win (get-buffer-window mime-echo-buffer-name)))
391     (unless win
392       (unless (and mime-echo-window-is-shared-with-bbdb
393                    (condition-case nil
394                        (setq win (get-buffer-window bbdb-buffer-name))
395                      (error nil)))
396         (select-window (get-buffer-window (or mime-preview-buffer
397                                               (current-buffer))))
398         (setq win (split-window-vertically
399                    (- (window-height)
400                       (if (functionp mime-echo-window-height)
401                           (funcall mime-echo-window-height)
402                         mime-echo-window-height)
403                       )))
404         )
405       (set-window-buffer win mime-echo-buffer-name)
406       )
407     (select-window win)
408     (goto-char (point-max))
409     (if forms
410         (let ((buffer-read-only nil))
411           (insert (apply (function format) forms))
412           ))
413     (select-window the-win)
414     ))
415
416
417 ;;; @ file name
418 ;;;
419
420 (defvar mime-view-file-name-char-regexp "[A-Za-z0-9+_-]")
421
422 (defvar mime-view-file-name-regexp-1
423   (concat mime-view-file-name-char-regexp "+\\."
424           mime-view-file-name-char-regexp "+"))
425
426 (defvar mime-view-file-name-regexp-2
427   (concat (regexp-* mime-view-file-name-char-regexp)
428           "\\(\\." mime-view-file-name-char-regexp "+\\)*"))
429
430 (defun mime-entity-safe-filename (entity)
431   (let ((filename
432          (or (mime-entity-filename entity)
433              (let ((subj
434                     (or (mime-entity-read-field entity 'Content-Description)
435                         (mime-entity-read-field entity 'Subject))))
436                (if (and subj
437                         (or (string-match mime-view-file-name-regexp-1 subj)
438                             (string-match mime-view-file-name-regexp-2 subj)))
439                    (substring subj (match-beginning 0)(match-end 0))
440                  )))))
441     (if filename
442         (replace-as-filename filename)
443       )))
444
445
446 ;;; @ file extraction
447 ;;;
448
449 (defun mime-save-content (entity situation)
450   (let* ((name (mime-entity-safe-filename entity))
451          (filename (if (and name (not (string-equal name "")))
452                        (expand-file-name name
453                                          (save-window-excursion
454                                            (call-interactively
455                                             (function
456                                              (lambda (dir)
457                                                (interactive "DDirectory: ")
458                                                dir)))))
459                      (save-window-excursion
460                        (call-interactively
461                         (function
462                          (lambda (file)
463                            (interactive "FFilename: ")
464                            (expand-file-name file)))))))
465          )
466     (if (file-exists-p filename)
467         (or (yes-or-no-p (format "File %s exists. Save anyway? " filename))
468             (error "")))
469     (mime-write-entity-content entity filename)
470     ))
471
472
473 ;;; @ file detection
474 ;;;
475
476 (defvar mime-magic-type-alist
477   '(("^\377\330\377[\340\356]..JFIF"    image jpeg)
478     ("^\211PNG"                         image png)
479     ("^GIF8[79]"                        image gif)
480     ("^II\\*\000"                       image tiff)
481     ("^MM\000\\*"                       image tiff)
482     ("^MThd"                            audio midi)
483     ("^\000\000\001\263"                video mpeg)
484     )
485   "*Alist of regexp about magic-number vs. corresponding media-types.
486 Each element looks like (REGEXP TYPE SUBTYPE).
487 REGEXP is a regular expression to match against the beginning of the
488 content of entity.
489 TYPE is symbol to indicate primary type of media-type.
490 SUBTYPE is symbol to indicate subtype of media-type.")
491
492 (defun mime-detect-content (entity situation)
493   (let (type subtype)
494     (let ((mdata (mime-entity-content entity))
495           (rest mime-magic-type-alist))
496       (while (not (let ((cell (car rest)))
497                     (if cell
498                         (if (string-match (car cell) mdata)
499                             (setq type (nth 1 cell)
500                                   subtype (nth 2 cell))
501                           )
502                       t)))
503         (setq rest (cdr rest))))
504     (if type
505         (mime-play-entity
506          entity
507          (put-alist 'type type
508                     (put-alist 'subtype subtype
509                                (del-alist 'method
510                                           (copy-alist situation))))
511          'mime-detect-content)
512       ))
513   )
514
515
516 ;;; @ mail/news message
517 ;;;
518
519 (defun mime-preview-quitting-method-for-mime-show-message-mode ()
520   "Quitting method for mime-view.
521 It is registered to variable `mime-preview-quitting-method-alist'."
522   (let ((raw-buffer (mime-entity-buffer
523                      (get-text-property (point-min) 'mime-view-entity)))
524         (mother mime-mother-buffer)
525         (win-conf mime-preview-original-window-configuration))
526     (kill-buffer raw-buffer)
527     (mime-preview-kill-buffer)
528     (set-window-configuration win-conf)
529     (pop-to-buffer mother)
530     ))
531
532 (defun mime-view-message/rfc822 (entity situation)
533   (let* ((new-name
534           (format "%s-%s" (buffer-name) (mime-entity-number entity)))
535          (new-pbuf (get-buffer-create new-name))
536          (mother (current-buffer))
537          (children (car (mime-entity-children entity))))
538     (with-current-buffer new-pbuf
539       (erase-buffer))
540     (mime-display-entity
541      children nil
542      (list (assq 'major-mode
543                  (get-text-property (point)
544                                     'mime-view-situation)))
545      new-pbuf)))
546
547
548 ;;; @ message/partial
549 ;;;
550
551 (defun mime-store-message/partial-piece (entity cal)
552   (let* ((root-dir
553           (expand-file-name
554            (concat "m-prts-" (user-login-name)) temporary-file-directory))
555          (id (cdr (assoc "id" cal)))
556          (number (cdr (assoc "number" cal)))
557          (total (cdr (assoc "total" cal)))
558          file
559          (mother (current-buffer)))
560     (or (file-exists-p root-dir)
561         (make-directory root-dir))
562     (setq id (replace-as-filename id))
563     (setq root-dir (concat root-dir "/" id))
564     (or (file-exists-p root-dir)
565         (make-directory root-dir))
566     (setq file (concat root-dir "/FULL"))
567     (if (file-exists-p file)
568         (let ((full-buf (get-buffer-create "FULL"))
569               (pwin (or (get-buffer-window mother)
570                         (get-largest-window)))
571               pbuf)
572           (save-window-excursion
573             (set-buffer full-buf)
574             (erase-buffer)
575             (as-binary-input-file (insert-file-contents file))
576             (setq major-mode 'mime-show-message-mode)
577             (mime-view-buffer (current-buffer) nil mother)
578             (setq pbuf (current-buffer))
579             )
580           (set-window-buffer pwin pbuf)
581           (select-window pwin)
582           )
583       (setq file (concat root-dir "/" number))
584       (mime-write-entity-body entity file)
585       (let ((total-file (concat root-dir "/CT")))
586         (setq total
587               (if total
588                   (progn
589                     (or (file-exists-p total-file)
590                         (save-excursion
591                           (set-buffer
592                            (get-buffer-create mime-temp-buffer-name))
593                           (erase-buffer)
594                           (insert total)
595                           (write-region (point-min)(point-max) total-file)
596                           (kill-buffer (current-buffer))
597                           ))
598                     (string-to-number total)
599                     )
600                 (and (file-exists-p total-file)
601                      (save-excursion
602                        (set-buffer (find-file-noselect total-file))
603                        (prog1
604                            (and (re-search-forward "[0-9]+" nil t)
605                                 (string-to-number
606                                  (buffer-substring (match-beginning 0)
607                                                    (match-end 0)))
608                                 )
609                          (kill-buffer (current-buffer))
610                          )))
611                 )))
612       (if (and total (> total 0))
613           (catch 'tag
614             (save-excursion
615               (set-buffer (get-buffer-create mime-temp-buffer-name))
616               (let ((full-buf (current-buffer)))
617                 (erase-buffer)
618                 (let ((i 1))
619                   (while (<= i total)
620                     (setq file (concat root-dir "/" (int-to-string i)))
621                     (or (file-exists-p file)
622                         (throw 'tag nil)
623                         )
624                     (as-binary-input-file (insert-file-contents file))
625                     (goto-char (point-max))
626                     (setq i (1+ i))
627                     ))
628                 (as-binary-output-file
629                  (write-region (point-min)(point-max)
630                                (expand-file-name "FULL" root-dir)))
631                 (let ((i 1))
632                   (while (<= i total)
633                     (let ((file (format "%s/%d" root-dir i)))
634                       (and (file-exists-p file)
635                            (delete-file file)
636                            ))
637                     (setq i (1+ i))
638                     ))
639                 (let ((file (expand-file-name "CT" root-dir)))
640                   (and (file-exists-p file)
641                        (delete-file file)
642                        ))
643                 (save-window-excursion
644                   (setq major-mode 'mime-show-message-mode)
645                   (mime-view-buffer (current-buffer) nil mother)
646                   )
647                 (let ((pwin (or (get-buffer-window mother)
648                                 (get-largest-window)))
649                       (pbuf (save-excursion
650                               (set-buffer full-buf)
651                               mime-preview-buffer)))
652                   (set-window-buffer pwin pbuf)
653                   (select-window pwin)
654                   )))))
655       )))
656
657
658 ;;; @ message/external-body
659 ;;;
660
661 (defvar mime-raw-dired-function
662   (if (and (>= emacs-major-version 19) window-system)
663       (function dired-other-frame)
664     (function mime-raw-dired-function-for-one-frame)
665     ))
666
667 (defun mime-raw-dired-function-for-one-frame (dir)
668   (let ((win (or (get-buffer-window mime-preview-buffer)
669                  (get-largest-window))))
670     (select-window win)
671     (dired dir)
672     ))
673
674 (defun mime-view-message/external-anon-ftp (entity cal)
675   (let* ((site (cdr (assoc "site" cal)))
676          (directory (cdr (assoc "directory" cal)))
677          (name (cdr (assoc "name" cal)))
678          (pathname (concat "/anonymous@" site ":" directory)))
679     (message (concat "Accessing " (expand-file-name name pathname) " ..."))
680     (funcall mime-raw-dired-function pathname)
681     (goto-char (point-min))
682     (search-forward name)
683     ))
684
685 (defvar mime-raw-browse-url-function mime-browse-url-function)
686
687 (defun mime-view-message/external-url (entity cal)
688   (let ((url (cdr (assoc "url" cal))))
689     (message (concat "Accessing " url " ..."))
690     (funcall mime-raw-browse-url-function url)))
691
692
693 ;;; @ rot13-47
694 ;;;
695
696 (defun mime-view-caesar (entity situation)
697   "Internal method for mime-view to display ROT13-47-48 message."
698   (let ((buf (get-buffer-create
699               (format "%s-%s" (buffer-name) (mime-entity-number entity)))))
700     (with-current-buffer buf
701       (setq buffer-read-only nil)
702       (erase-buffer)
703       (mime-insert-text-content entity)
704       (mule-caesar-region (point-min) (point-max))
705       (set-buffer-modified-p nil)
706       )
707     (let ((win (get-buffer-window (current-buffer))))
708       (or (eq (selected-window) win)
709           (select-window (or win (get-largest-window)))
710           ))
711     (view-buffer buf)
712     (goto-char (point-min))
713     ))
714
715
716 ;;; @ end
717 ;;;
718
719 (provide 'mime-play)
720
721 (let* ((file mime-acting-situation-examples-file)
722        (buffer (get-buffer-create " *mime-example*")))
723   (if (file-readable-p file)
724       (unwind-protect
725           (save-excursion
726             (set-buffer buffer)
727             (erase-buffer)
728             (insert-file-contents file)
729             (eval-buffer)
730             ;; format check
731             (condition-case nil
732                 (let ((i 0))
733                   (while (and (> (length mime-acting-situation-example-list)
734                                  mime-acting-situation-example-list-max-size)
735                               (< i 16))
736                     (mime-reduce-acting-situation-examples)
737                     (setq i (1+ i))
738                     ))
739               (error (setq mime-acting-situation-example-list nil)))
740             )
741         (kill-buffer buffer))))
742
743 ;;; mime-play.el ends here