*** empty log message ***
[gnus] / lisp / mm-uu.el
1 ;;; mm-uu.el -- Return uu stuffs as mm handles
2 ;; Copyright (c) 1998 by Shenghuo Zhu <zsh@cs.rochester.edu>
3
4 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
5 ;; $Revision: 5.1 $
6 ;; Keywords: news postscript uudecode binhex shar
7   
8 ;; This file is not part of GNU Emacs, but the same permissions
9 ;; apply.
10 ;;
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15 ;;
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20 ;;
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27 ;;
28
29 ;;; Code:
30
31 (eval-and-compile
32   (autoload 'binhex-decode-region "binhex")
33   (autoload 'binhex-decode-region-external "binhex")
34   (autoload 'uudecode-decode-region "uudecode")
35   (autoload 'uudecode-decode-region-external "uudecode"))
36
37 (defun mm-uu-copy-to-buffer (from to)
38   "Copy the contents of the current buffer to a fresh buffer."
39   (save-excursion
40     (let ((obuf (current-buffer)))
41       (set-buffer (generate-new-buffer " *mm-uu*"))
42       (insert-buffer-substring obuf from to)
43       (current-buffer))))
44
45 ;;; postscript
46
47 (defconst mm-uu-postscript-begin-line "^%!PS-")
48 (defconst mm-uu-postscript-end-line "^%%EOF$")
49
50 (defconst mm-uu-uu-begin-line "^begin[ \t]+[0-7][0-7][0-7][ \t]+\\(.*\\)$")
51 (defconst mm-uu-uu-end-line "^end[ \t]*$")
52 (defvar mm-uu-decode-function 'uudecode-decode-region)
53
54 (defconst mm-uu-binhex-begin-line
55   "^:...............................................................$")
56 (defconst mm-uu-binhex-end-line ":$")
57 (defvar mm-uu-binhex-decode-function 'binhex-decode-region)
58
59 (defconst mm-uu-shar-begin-line "^#! */bin/sh")
60 (defconst mm-uu-shar-end-line "^exit 0")
61
62 (defvar mm-uu-begin-line 
63   (concat mm-uu-postscript-begin-line "\\|"
64           mm-uu-uu-begin-line "\\|"
65           mm-uu-binhex-begin-line "\\|"
66           mm-uu-shar-begin-line))
67
68 (defvar mm-uu-identifier-alist
69   '((?% . postscript) (?b . uu) (?: . binhex) (?# . shar)))
70
71 ;;;### autoload
72
73 (defun mm-uu-dissect ()
74   "Dissect the current buffer and return a list of uu handles."
75   (save-excursion
76     (save-restriction
77       (mail-narrow-to-head)
78       (goto-char (point-max)))
79     (let ((text-start (point)) start-char end-char 
80           type file-name end-line result)
81       (while (re-search-forward mm-uu-begin-line nil t)
82         (beginning-of-line)
83         (setq start-char (point))
84         (forward-line) ;; in case of failure
85         (setq type (cdr (assq (aref (match-string 0) 0) 
86                               mm-uu-identifier-alist)))
87         (setq file-name 
88               (if (eq type 'uu)
89                   (and (match-string 1)
90                        (let ((nnheader-file-name-translation-alist
91                               '((?/ . ?,) (? . ?_) (?* . ?_) (?$ . ?_))))
92                          (nnheader-translate-file-chars (match-string 1))))))
93         (setq end-line (symbol-value 
94                         (intern (concat "mm-uu-" (symbol-name type) 
95                                        "-end-line"))))
96         (when (re-search-forward end-line nil t)
97           (setq end-char (point))
98           (when (or (not (eq type 'binhex))
99                     (setq file-name 
100                           (condition-case nil
101                               (binhex-decode-region start-char end-char t)
102                             (error nil))))
103             (if (> start-char text-start)
104                 (push
105                  (list (mm-uu-copy-to-buffer text-start start-char) 
106                        '("text/plain") nil nil nil nil) 
107                  result))
108             (push 
109              (cond
110               ((eq type 'postscript)
111                (list (mm-uu-copy-to-buffer start-char end-char) 
112                      '("application/postscript") nil nil nil nil))
113               ((eq type 'uu)
114                (list (mm-uu-copy-to-buffer start-char end-char) 
115                      (list (or (and file-name
116                                     (string-match "\\.[^\\.]+$" file-name) 
117                                     (mailcap-extension-to-mime 
118                                      (match-string 0 file-name)))
119                                "application/octet-stream"))
120                      mm-uu-decode-function nil 
121                      (if (and file-name (not (equal file-name "")))
122                          (list "attachment" (cons 'filename file-name)))
123                    file-name))
124               ((eq type 'binhex)
125                (list (mm-uu-copy-to-buffer start-char end-char) 
126                      (list (or (and file-name
127                                     (string-match "\\.[^\\.]+$" file-name) 
128                                     (mailcap-extension-to-mime 
129                                      (match-string 0 file-name)))
130                                "application/octet-stream"))
131                      mm-uu-binhex-decode-function nil 
132                      (if (and file-name (not (equal file-name "")))
133                          (list "attachment" (cons 'filename file-name)))
134                      file-name))
135               ((eq type 'shar)
136                (list (mm-uu-copy-to-buffer start-char end-char) 
137                      '("application/x-shar") nil nil nil nil))) 
138              result)
139             (setq text-start end-char))))
140       (when result
141         (if (> start-char text-start)
142             (push
143              (list (mm-uu-copy-to-buffer text-start (point-max)) 
144                    '("text/plain") nil nil nil nil) 
145              result))
146         (setq result (cons "multipart/mixed" (nreverse result))))
147       result)))
148
149 (provide 'mm-uu)
150
151 ;;; mm-uu.el ends here