rearrangement.
[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 (put 'mm-define-method 'lisp-indent-function 'defun)
253
254 (eval-when-compile
255   (defmacro eval-module-depended-macro (module definition)
256     (condition-case nil
257         (progn
258           (require (eval module))
259           definition)
260       (error `(eval-after-load ,(symbol-name (eval module)) ',definition))
261       ))
262   )
263
264 (eval-module-depended-macro
265  'edebug
266  (def-edebug-spec mm-define-method
267    (&define name ((arg symbolp)
268                   [&rest arg]
269                   [&optional ["&optional" arg &rest arg]]
270                   &optional ["&rest" arg]
271                   )
272             def-body))
273  )
274
275
276 ;;; @ message structure
277 ;;;
278
279 (defvar mime-message-structure nil
280   "Information about structure of message.
281 Please use reference function `mime-entity-SLOT' to get value of SLOT.
282
283 Following is a list of slots of the structure:
284
285 node-id                 node-id (list of integers)
286 content-type            content-type (content-type)
287 content-disposition     content-disposition (content-disposition)
288 encoding                Content-Transfer-Encoding (string or nil)
289 children                entities included in this entity (list of entity)
290
291 If an entity includes other entities in its body, such as multipart or
292 message/rfc822, `mime-entity' structures of them are included in
293 `children', so the `mime-entity' structure become a tree.")
294
295 (make-variable-buffer-local 'mime-message-structure)
296
297 (make-obsolete-variable 'mime-message-structure "should not use it.")
298
299
300 ;;; @ for mel-backend
301 ;;;
302
303 (defvar mel-service-list nil)
304
305 (defmacro mel-define-service (name &optional args &rest rest)
306   "Define NAME as a service for Content-Transfer-Encodings.
307 If ARGS is specified, NAME is defined as a generic function for the
308 service."
309   `(progn
310      (add-to-list 'mel-service-list ',name)
311      (defvar ,(intern (format "%s-obarray" name)) (make-vector 7 0))
312      ,@(if args
313            `((defun ,name ,args
314                ,@rest
315                (funcall (mel-find-function ',name ,(car (last args)))
316                         ,@(luna-arglist-to-arguments (butlast args)))
317                )))
318      ))
319
320 (put 'mel-define-service 'lisp-indent-function 'defun)
321
322
323 (defvar mel-encoding-module-alist nil)
324
325 (defsubst mel-find-function-from-obarray (ob-array encoding)
326   (let* ((f (intern-soft encoding ob-array)))
327     (or f
328         (let ((rest (cdr (assoc encoding mel-encoding-module-alist))))
329           (while (and rest
330                       (progn
331                         (require (car rest))
332                         (null (setq f (intern-soft encoding ob-array)))
333                         ))
334             (setq rest (cdr rest))
335             )
336           f))))
337
338 (defsubst mel-copy-method (service src-backend dst-backend)
339   (let* ((oa (symbol-value (intern (format "%s-obarray" service))))
340          (f (mel-find-function-from-obarray oa src-backend))
341          sym)
342     (when f
343       (setq sym (intern dst-backend oa))
344       (or (fboundp sym)
345           (fset sym (symbol-function f))
346           ))))
347        
348 (defsubst mel-copy-backend (src-backend dst-backend)
349   (let ((services mel-service-list))
350     (while services
351       (mel-copy-method (car services) src-backend dst-backend)
352       (setq services (cdr services)))))
353
354 (defmacro mel-define-backend (type &optional parents)
355   "Define TYPE as a mel-backend.
356 If PARENTS is specified, TYPE inherits PARENTS.
357 Each parent must be backend name (string)."
358   (cons 'progn
359         (mapcar (lambda (parent)
360                   `(mel-copy-backend ,parent ,type)
361                   )
362                 parents)))
363
364 (defmacro mel-define-method (name args &rest body)
365   "Define NAME as a method function of (nth 1 (car (last ARGS))) backend.
366 ARGS is like an argument list of lambda, but (car (last ARGS)) must be
367 specialized parameter.  (car (car (last ARGS))) is name of variable
368 and (nth 1 (car (last ARGS))) is name of backend (encoding)."
369   (let* ((specializer (car (last args)))
370          (class (nth 1 specializer)))
371     `(progn
372        (mel-define-service ,name)
373        (fset (intern ,class ,(intern (format "%s-obarray" name)))
374              (lambda ,(butlast args)
375                ,@body)))))
376
377 (put 'mel-define-method 'lisp-indent-function 'defun)
378
379 (defmacro mel-define-method-function (spec function)
380   "Set SPEC's function definition to FUNCTION.
381 First element of SPEC is service.
382 Rest of ARGS is like an argument list of lambda, but (car (last ARGS))
383 must be specialized parameter.  (car (car (last ARGS))) is name of
384 variable and (nth 1 (car (last ARGS))) is name of backend (encoding)."
385   (let* ((name (car spec))
386          (args (cdr spec))
387          (specializer (car (last args)))
388          (class (nth 1 specializer)))
389     `(let (sym)
390        (mel-define-service ,name)
391        (setq sym (intern ,class ,(intern (format "%s-obarray" name))))
392        (or (fboundp sym)
393            (fset sym (symbol-function ,function))))))
394
395 (defmacro mel-define-function (function spec)
396   (let* ((name (car spec))
397          (args (cdr spec))
398          (specializer (car (last args)))
399          (class (nth 1 specializer)))
400     `(progn
401        (define-function ,function
402          (intern ,class ,(intern (format "%s-obarray" name))))
403        )))
404
405 (defvar base64-dl-module
406   (if (and (fboundp 'base64-encode-string)
407            (subrp (symbol-function 'base64-encode-string)))
408       nil
409     (if (fboundp 'dynamic-link)
410         (let ((path (expand-file-name "base64.so" exec-directory)))
411           (and (file-exists-p path)
412                path)
413           ))))
414
415
416 ;;; @ end
417 ;;;
418
419 (provide 'mime-def)
420
421 ;;; mime-def.el ends here