(eval-module-depended-macro): Abolished.
[elisp/flim.git] / mime-def.el
1 ;;; mime-def.el --- definition module about MIME
2
3 ;; Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
4 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN.
5 ;; Licensed to the Free Software Foundation.
6
7 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
8 ;; Keywords: definition, MIME, multimedia, mail, news
9
10 ;; This file is part of FLIM (Faithful Library about Internet Message).
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 'mcharset)
30
31 (eval-and-compile
32   (defconst mime-library-product ["Chao" (1 13 0) "JR Fujinomori"]
33     "Product name, version number and code name of MIME-library package.")
34   )
35
36 (defmacro mime-product-name (product)
37   `(aref ,product 0))
38
39 (defmacro mime-product-version (product)
40   `(aref ,product 1))
41
42 (defmacro mime-product-code-name (product)
43   `(aref ,product 2))
44
45 (defconst mime-library-version
46   (eval-when-compile
47     (concat (mime-product-name mime-library-product) " "
48             (mapconcat #'number-to-string
49                        (mime-product-version mime-library-product) ".")
50             " - \"" (mime-product-code-name mime-library-product) "\"")))
51
52
53 ;;; @ variables
54 ;;;
55
56 (require 'custom)
57
58 (eval-when-compile (require 'cl))
59
60 (defgroup mime nil
61   "Emacs MIME Interfaces"
62   :group 'news
63   :group 'mail)
64
65 (custom-handle-keyword 'default-mime-charset :group 'mime
66                        'custom-variable)
67
68 (defcustom mime-uuencode-encoding-name-list '("x-uue" "x-uuencode")
69   "*List of encoding names for uuencode format."
70   :group 'mime
71   :type '(repeat string))
72
73
74 ;;; @ required functions
75 ;;;
76
77 (defsubst regexp-* (regexp)
78   (concat regexp "*"))
79
80 (defsubst regexp-or (&rest args)
81   (concat "\\(" (mapconcat (function identity) args "\\|") "\\)"))
82
83
84 ;;; @ about STD 11
85 ;;;
86
87 (eval-and-compile
88   (defconst std11-quoted-pair-regexp "\\\\.")
89   (defconst std11-non-qtext-char-list '(?\" ?\\ ?\r ?\n))
90   (defconst std11-qtext-regexp
91     (eval-when-compile
92       (concat "[^" std11-non-qtext-char-list "]"))))
93 (defconst std11-quoted-string-regexp
94   (eval-when-compile
95     (concat "\""
96             (regexp-*
97              (regexp-or std11-qtext-regexp std11-quoted-pair-regexp))
98             "\"")))
99
100
101 ;;; @ about MIME
102 ;;;
103
104 (eval-and-compile
105   (defconst mime-tspecial-char-list
106     '(?\] ?\[ ?\( ?\) ?< ?> ?@ ?, ?\; ?: ?\\ ?\" ?/ ?? ?=)))
107 (defconst mime-token-regexp
108   (eval-when-compile
109     (concat "[^" mime-tspecial-char-list "\000-\040]+")))
110 (defconst mime-charset-regexp mime-token-regexp)
111
112 (defconst mime-media-type/subtype-regexp
113   (concat mime-token-regexp "/" mime-token-regexp))
114
115
116 ;;; @@ base64 / B
117 ;;;
118
119 (defconst base64-token-regexp "[A-Za-z0-9+/]")
120 (defconst base64-token-padding-regexp "[A-Za-z0-9+/=]")
121
122 (defconst B-encoded-text-regexp
123   (concat "\\(\\("
124           base64-token-regexp
125           base64-token-regexp
126           base64-token-regexp
127           base64-token-regexp
128           "\\)*"
129           base64-token-regexp
130           base64-token-regexp
131           base64-token-padding-regexp
132           base64-token-padding-regexp
133           "\\)"))
134
135 ;; (defconst eword-B-encoding-and-encoded-text-regexp
136 ;;   (concat "\\(B\\)\\?" eword-B-encoded-text-regexp))
137
138
139 ;;; @@ Quoted-Printable / Q
140 ;;;
141
142 (defconst quoted-printable-hex-chars "0123456789ABCDEF")
143
144 (defconst quoted-printable-octet-regexp
145   (concat "=[" quoted-printable-hex-chars
146           "][" quoted-printable-hex-chars "]"))
147
148 (defconst Q-encoded-text-regexp
149   (concat "\\([^=?]\\|" quoted-printable-octet-regexp "\\)+"))
150
151 ;; (defconst eword-Q-encoding-and-encoded-text-regexp
152 ;;   (concat "\\(Q\\)\\?" eword-Q-encoded-text-regexp))
153
154
155 ;;; @ Content-Type
156 ;;;
157
158 (defsubst make-mime-content-type (type subtype &optional parameters)
159   (list* (cons 'type type)
160          (cons 'subtype subtype)
161          (nreverse parameters))
162   )
163
164 (defsubst mime-content-type-primary-type (content-type)
165   "Return primary-type of CONTENT-TYPE."
166   (cdr (car content-type)))
167
168 (defsubst mime-content-type-subtype (content-type)
169   "Return primary-type of CONTENT-TYPE."
170   (cdr (cadr content-type)))
171
172 (defsubst mime-content-type-parameters (content-type)
173   "Return primary-type of CONTENT-TYPE."
174   (cddr content-type))
175
176 (defsubst mime-content-type-parameter (content-type parameter)
177   "Return PARAMETER value of CONTENT-TYPE."
178   (cdr (assoc parameter (mime-content-type-parameters content-type))))
179
180
181 (defsubst mime-type/subtype-string (type &optional subtype)
182   "Return type/subtype string from TYPE and SUBTYPE."
183   (if type
184       (if subtype
185           (format "%s/%s" type subtype)
186         (format "%s" type))))
187
188
189 ;;; @ Content-Disposition
190 ;;;
191
192 (defsubst mime-content-disposition-type (content-disposition)
193   "Return disposition-type of CONTENT-DISPOSITION."
194   (cdr (car content-disposition)))
195
196 (defsubst mime-content-disposition-parameters (content-disposition)
197   "Return disposition-parameters of CONTENT-DISPOSITION."
198   (cdr content-disposition))
199
200 (defsubst mime-content-disposition-parameter (content-disposition parameter)
201   "Return PARAMETER value of CONTENT-DISPOSITION."
202   (cdr (assoc parameter (cdr content-disposition))))
203
204 (defsubst mime-content-disposition-filename (content-disposition)
205   "Return filename of CONTENT-DISPOSITION."
206   (mime-content-disposition-parameter content-disposition "filename"))
207
208
209 ;;; @ MIME entity
210 ;;;
211
212 (require 'luna)
213
214 (luna-define-class mime-entity ()
215                    (location
216                     content-type children parent
217                     node-id
218                     content-disposition encoding
219                     ;; for other fields
220                     original-header parsed-header))
221
222 (defalias 'mime-entity-representation-type-internal 'luna-class-name)
223 (defalias 'mime-entity-set-representation-type-internal 'luna-set-class-name)
224
225 (luna-define-internal-accessors 'mime-entity)
226
227
228 ;;; @ for mm-backend
229 ;;;
230
231 (defmacro mm-expand-class-name (type)
232   `(intern (format "mime-%s-entity" ,type)))
233
234 (defmacro mm-define-backend (type &optional parents)
235   `(luna-define-class ,(mm-expand-class-name type)
236                       ,(nconc (mapcar (lambda (parent)
237                                         (mm-expand-class-name parent)
238                                         )
239                                       parents)
240                               '(mime-entity))))
241
242 (defmacro mm-define-method (name args &rest body)
243   (or (eq name 'initialize-instance)
244       (setq name (intern (format "mime-%s" name))))
245   (let ((spec (car args)))
246     (setq args
247           (cons (list (car spec)
248                       (mm-expand-class-name (nth 1 spec)))
249                 (cdr args)))
250     `(luna-define-method ,name ,args ,@body)
251     ))
252
253 (put 'mm-define-method 'lisp-indent-function 'defun)
254
255 (def-edebug-spec mm-define-method
256   (&define name ((arg symbolp)
257                  [&rest arg]
258                  [&optional ["&optional" arg &rest arg]]
259                  &optional ["&rest" arg]
260                  )
261            def-body))
262
263
264 ;;; @ message structure
265 ;;;
266
267 (defvar mime-message-structure nil
268   "Information about structure of message.
269 Please use reference function `mime-entity-SLOT' to get value of SLOT.
270
271 Following is a list of slots of the structure:
272
273 node-id                 node-id (list of integers)
274 content-type            content-type (content-type)
275 content-disposition     content-disposition (content-disposition)
276 encoding                Content-Transfer-Encoding (string or nil)
277 children                entities included in this entity (list of entity)
278
279 If an entity includes other entities in its body, such as multipart or
280 message/rfc822, `mime-entity' structures of them are included in
281 `children', so the `mime-entity' structure become a tree.")
282
283 (make-variable-buffer-local 'mime-message-structure)
284
285 (make-obsolete-variable 'mime-message-structure "should not use it.")
286
287
288 ;;; @ for mel-backend
289 ;;;
290
291 (defvar mel-service-list nil)
292
293 (defmacro mel-define-service (name &optional args &rest rest)
294   "Define NAME as a service for Content-Transfer-Encodings.
295 If ARGS is specified, NAME is defined as a generic function for the
296 service."
297   `(progn
298      (add-to-list 'mel-service-list ',name)
299      (defvar ,(intern (format "%s-obarray" name)) (make-vector 7 0))
300      ,@(if args
301            `((defun ,name ,args
302                ,@rest
303                (funcall (mel-find-function ',name ,(car (last args)))
304                         ,@(luna-arglist-to-arguments (butlast args)))
305                )))
306      ))
307
308 (put 'mel-define-service 'lisp-indent-function 'defun)
309
310
311 (defvar mel-encoding-module-alist nil)
312
313 (defsubst mel-find-function-from-obarray (ob-array encoding)
314   (let* ((f (intern-soft encoding ob-array)))
315     (or f
316         (let ((rest (cdr (assoc encoding mel-encoding-module-alist))))
317           (while (and rest
318                       (progn
319                         (require (car rest))
320                         (null (setq f (intern-soft encoding ob-array)))
321                         ))
322             (setq rest (cdr rest))
323             )
324           f))))
325
326 (defsubst mel-copy-method (service src-backend dst-backend)
327   (let* ((oa (symbol-value (intern (format "%s-obarray" service))))
328          (f (mel-find-function-from-obarray oa src-backend))
329          sym)
330     (when f
331       (setq sym (intern dst-backend oa))
332       (or (fboundp sym)
333           (fset sym (symbol-function f))
334           ))))
335        
336 (defsubst mel-copy-backend (src-backend dst-backend)
337   (let ((services mel-service-list))
338     (while services
339       (mel-copy-method (car services) src-backend dst-backend)
340       (setq services (cdr services)))))
341
342 (defmacro mel-define-backend (type &optional parents)
343   "Define TYPE as a mel-backend.
344 If PARENTS is specified, TYPE inherits PARENTS.
345 Each parent must be backend name (string)."
346   (cons 'progn
347         (mapcar (lambda (parent)
348                   `(mel-copy-backend ,parent ,type)
349                   )
350                 parents)))
351
352 (defmacro mel-define-method (name args &rest body)
353   "Define NAME as a method function of (nth 1 (car (last ARGS))) backend.
354 ARGS is like an argument list of lambda, but (car (last ARGS)) must be
355 specialized parameter.  (car (car (last ARGS))) is name of variable
356 and (nth 1 (car (last ARGS))) is name of backend (encoding)."
357   (let* ((specializer (car (last args)))
358          (class (nth 1 specializer)))
359     `(progn
360        (mel-define-service ,name)
361        (fset (intern ,class ,(intern (format "%s-obarray" name)))
362              (lambda ,(butlast args)
363                ,@body)))))
364
365 (put 'mel-define-method 'lisp-indent-function 'defun)
366
367 (defmacro mel-define-method-function (spec function)
368   "Set SPEC's function definition to FUNCTION.
369 First element of SPEC is service.
370 Rest of ARGS is like an argument list of lambda, but (car (last ARGS))
371 must be specialized parameter.  (car (car (last ARGS))) is name of
372 variable and (nth 1 (car (last ARGS))) is name of backend (encoding)."
373   (let* ((name (car spec))
374          (args (cdr spec))
375          (specializer (car (last args)))
376          (class (nth 1 specializer)))
377     `(let (sym)
378        (mel-define-service ,name)
379        (setq sym (intern ,class ,(intern (format "%s-obarray" name))))
380        (or (fboundp sym)
381            (fset sym (symbol-function ,function))))))
382
383 (defmacro mel-define-function (function spec)
384   (let* ((name (car spec))
385          (args (cdr spec))
386          (specializer (car (last args)))
387          (class (nth 1 specializer)))
388     `(progn
389        (define-function ,function
390          (intern ,class ,(intern (format "%s-obarray" name))))
391        )))
392
393 (defvar base64-dl-module
394   (if (and (fboundp 'base64-encode-string)
395            (subrp (symbol-function 'base64-encode-string)))
396       nil
397     (if (fboundp 'dynamic-link)
398         (let ((path (expand-file-name "base64.so" exec-directory)))
399           (and (file-exists-p path)
400                path)
401           ))))
402
403
404 ;;; @ end
405 ;;;
406
407 (provide 'mime-def)
408
409 ;;; mime-def.el ends here