mel-u.el: Use mime-temp-directory instead of TMP.
[elisp/flim.git] / mel-u.el
1 ;;; mel-u.el: uuencode encoder/decoder for GNU Emacs
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Created: 1995/10/25
7 ;; Keywords: uuencode
8
9 ;; This file is part of MEL (MIME Encoding Library).
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; 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 ;;; Code:
27
28 (require 'emu)
29 (require 'mime-def)
30
31
32 ;;; @ variables
33 ;;;
34
35 (defvar uuencode-external-encoder '("uuencode" "-")
36   "*list of uuencode encoder program name and its arguments.")
37
38 (defvar uuencode-external-decoder '("sh" "-c" "uudecode")
39   "*list of uuencode decoder program name and its arguments.")
40
41
42 ;;; @ uuencode encoder/decoder for region
43 ;;;
44
45 (defun uuencode-external-encode-region (start end)
46   "Encode current region by unofficial uuencode format.
47 This function uses external uuencode encoder which is specified by
48 variable `uuencode-external-encoder'."
49   (interactive "*r")
50   (save-excursion
51     (as-binary-process (apply (function call-process-region)
52                               start end (car uuencode-external-encoder)
53                               t t nil (cdr uuencode-external-encoder))
54                        )
55     ;; for OS/2
56     ;;   regularize line break code
57     (goto-char (point-min))
58     (while (re-search-forward "\r$" nil t)
59       (replace-match "")
60       )
61     ))
62
63 (defun uuencode-external-decode-region (start end)
64   "Decode current region by unofficial uuencode format.
65 This function uses external uuencode decoder which is specified by
66 variable `uuencode-external-decoder'."
67   (interactive "*r")
68   (save-excursion
69     (let ((filename (save-excursion
70                       (save-restriction
71                         (narrow-to-region start end)
72                         (goto-char start)
73                         (if (re-search-forward "^begin [0-9]+ " nil t)
74                             (if (looking-at ".+$")
75                                 (buffer-substring (match-beginning 0)
76                                                   (match-end 0))
77                               )))))
78           (default-directory mime-temp-directory))
79       (if filename
80           (as-binary-process
81            (apply (function call-process-region)
82                   start end (car uuencode-external-decoder)
83                   t nil nil (cdr uuencode-external-decoder))
84            (as-binary-input-file (insert-file-contents filename))
85            ;; The previous line causes the buffer to be made read-only, I
86            ;; do not pretend to understand the control flow leading to this
87            ;; but suspect it has something to do with image-mode. -slb
88            ;;   Use `inhibit-read-only' to avoid to force
89            ;;   buffer-read-only nil. - tomo.
90            (let ((inhibit-read-only t))
91              (delete-file filename)
92              )
93            ))
94       )))
95
96 (defalias 'uuencode-encode-region 'uuencode-external-encode-region)
97 (defalias 'uuencode-decode-region 'uuencode-external-decode-region)
98
99
100 ;;; @ uuencode encoder/decoder for file
101 ;;;
102
103 (defun uuencode-insert-encoded-file (filename)
104   "Insert file encoded by unofficial uuencode format.
105 This function uses external uuencode encoder which is specified by
106 variable `uuencode-external-encoder'."
107   (interactive (list (read-file-name "Insert encoded file: ")))
108   (call-process (car uuencode-external-encoder) filename t nil
109                 (file-name-nondirectory filename))
110   )
111
112 (defun uuencode-write-decoded-region (start end filename)
113   "Decode and write current region encoded by uuencode into FILENAME.
114 START and END are buffer positions."
115   (interactive
116    (list (region-beginning) (region-end)
117          (read-file-name "Write decoded region to file: ")))
118   (save-excursion
119     (let ((file (save-excursion
120                   (save-restriction
121                     (narrow-to-region start end)
122                     (goto-char start)
123                     (if (re-search-forward "^begin [0-9]+ " nil t)
124                         (if (looking-at ".+$")
125                             (buffer-substring (match-beginning 0)
126                                               (match-end 0))
127                           )))))
128           (default-directory mime-temp-directory))
129       (if file
130           (as-binary-process
131            (apply (function call-process-region)
132                   start end (car uuencode-external-decoder)
133                   nil nil nil (cdr uuencode-external-decoder))
134            (rename-file file filename 'overwrites)
135            )))))
136
137
138 ;;; @ end
139 ;;;
140
141 (provide 'mel-u)
142
143 ;;; mel-u.el ends here