updated.
[elisp/semi.git] / mime-parse.el
1 ;;; mime-parse.el --- MIME message parser
2
3 ;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version: $Id: mime-parse.el,v 0.13 1997-07-07 17:08:03 morioka Exp $
7 ;; Keywords: parse, MIME, multimedia, mail, news
8
9 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
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 'std11)
30 (require 'mime-def)
31
32 (defsubst symbol-concat (&rest args)
33   "Return a symbol whose name is concatenation of arguments ARGS
34 which are string or symbol."
35   (intern (apply (function concat)
36                  (mapcar (function
37                           (lambda (s)
38                             (cond ((symbolp s) (symbol-name s))
39                                   ((stringp s) s)
40                                   )))
41                          args))))
42
43 (defmacro define-structure (name &rest slots)
44   (let ((pred (symbol-concat name '-p)))
45     (cons 'progn
46           (nconc
47            (list
48             (` (defun (, pred) (obj)
49                  (and (vectorp obj)
50                       (eq (elt obj 0) '(, name))
51                       ))
52                )
53             (` (defun (, (symbol-concat name '/create)) (, slots)
54                  (, (cons 'vector (cons (list 'quote name) slots)))
55                  )
56                ))
57            (let ((i 1))
58              (mapcar (function
59                       (lambda (slot)
60                         (prog1
61                             (` (defun (, (symbol-concat name '/ slot)) (obj)
62                                  (if ((, pred) obj)
63                                      (elt obj (, i))
64                                    ))
65                                )
66                           (setq i (+ i 1))
67                           )
68                         )) slots)
69              )
70            (list (list 'quote name))
71            ))))
72
73
74 ;;; @ field parser
75 ;;;
76
77 (defsubst regexp-* (regexp)
78   (concat regexp "*"))
79
80 (defconst rfc822/quoted-pair-regexp "\\\\.")
81 (defconst rfc822/qtext-regexp
82   (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]"))
83 (defconst rfc822/quoted-string-regexp
84   (concat "\""
85           (regexp-*
86            (regexp-or rfc822/qtext-regexp rfc822/quoted-pair-regexp)
87            )
88           "\""))
89
90 (defconst mime/content-parameter-value-regexp
91   (concat "\\("
92           rfc822/quoted-string-regexp
93           "\\|[^; \t\n]*\\)"))
94
95 (defconst mime::parameter-regexp
96   (concat "^[ \t]*\;[ \t]*\\(" mime-token-regexp "\\)"
97           "[ \t]*=[ \t]*\\(" mime/content-parameter-value-regexp "\\)"))
98
99 (defun mime-parse-parameter (str)
100   (if (string-match mime::parameter-regexp str)
101       (let ((e (match-end 2)))
102         (cons
103          (cons (downcase (substring str (match-beginning 1) (match-end 1)))
104                (std11-strip-quoted-string
105                 (substring str (match-beginning 2) e))
106                )
107          (substring str e)
108          ))))
109
110 (defun mime-parse-Content-Type (string)
111   "Parse STRING as field-body of Content-Type field."
112   (setq string (std11-unfold-string string))
113   (if (string-match `,(concat "^" mime-media-type/subtype-regexp) string)
114       (let* ((e (match-end 0))
115              (ctype (downcase (substring string 0 e)))
116              ret dest)
117         (setq string (substring string e))
118         (while (setq ret (mime-parse-parameter string))
119           (setq dest (cons (car ret) dest)
120                 string (cdr ret))
121           )
122         (cons ctype (nreverse dest))
123         )))
124
125 (defun mime-parse-Content-Disposition (string)
126   "Parse STRING as field-body of Content-Disposition field."
127   (setq string (std11-unfold-string string))
128   (if (string-match `,(concat "^" mime-disposition-type-regexp) string)
129       (let* ((e (match-end 0))
130              (ctype (downcase (substring string 0 e)))
131              ret dest)
132         (setq string (substring string e))
133         (while (setq ret (mime-parse-parameter string))
134           (setq dest (cons (car ret) dest)
135                 string (cdr ret))
136           )
137         (cons ctype (nreverse dest))
138         )))
139
140
141 ;;; @ field reader
142 ;;;
143
144 (defun mime/Content-Type ()
145   "Read field-body of Content-Type field from current-buffer,
146 and return parsed it. [mime-parse.el]"
147   (let ((str (std11-field-body "Content-Type")))
148     (if str
149         (mime-parse-Content-Type str)
150       )))
151
152 (defun mime/Content-Transfer-Encoding (&optional default-encoding)
153   "Read field-body of Content-Transfer-Encoding field from
154 current-buffer, and return it.
155 If is is not found, return DEFAULT-ENCODING. [mime-parse.el]"
156   (let ((str (std11-field-body "Content-Transfer-Encoding")))
157     (if str
158         (progn
159           (if (string-match "[ \t\n\r]+$" str)
160               (setq str (substring str 0 (match-beginning 0)))
161             )
162           (downcase str)
163           )
164       default-encoding)
165     ))
166
167 (defun mime/Content-Disposition ()
168   "Read field-body of Content-Disposition field from current-buffer,
169 and return parsed it. [mime-parse.el]"
170   (let ((str (std11-field-body "Content-Disposition")))
171     (if str
172         (mime-parse-Content-Disposition str)
173       )))
174
175
176 ;;; @ message parser
177 ;;;
178
179 (define-structure mime::content-info
180   rcnum point-min point-max type parameters encoding children)
181
182
183 (defun mime-parse-multipart (boundary ctype params encoding rcnum)
184   (goto-char (point-min))
185   (let* ((dash-boundary   (concat "--" boundary))
186          (delimiter       (concat "\n" (regexp-quote dash-boundary)))
187          (close-delimiter (concat delimiter "--[ \t]*$"))
188          (beg (point-min))
189          (end (progn
190                 (goto-char (point-max))
191                 (if (re-search-backward close-delimiter nil t)
192                     (match-beginning 0)
193                   (point-max)
194                   )))
195          (rsep (concat delimiter "[ \t]*\n"))
196          (dc-ctl
197           (if (string-equal ctype "multipart/digest")
198               '("message/rfc822")
199             '("text/plain")
200             ))
201          cb ce ret ncb children (i 0))
202     (save-restriction
203       (narrow-to-region beg end)
204       (goto-char beg)
205       (re-search-forward rsep nil t)
206       (setq cb (match-end 0))
207       (while (re-search-forward rsep nil t)
208         (setq ce (match-beginning 0))
209         (setq ncb (match-end 0))
210         (save-restriction
211           (narrow-to-region cb ce)
212           (setq ret (mime-parse-message dc-ctl "7bit" (cons i rcnum)))
213           )
214         (setq children (cons ret children))
215         (goto-char (mime::content-info/point-max ret))
216         (goto-char (setq cb ncb))
217         (setq i (1+ i))
218         )
219       (setq ce (point-max))
220       (save-restriction
221         (narrow-to-region cb ce)
222         (setq ret (mime-parse-message dc-ctl "7bit" (cons i rcnum)))
223         )
224       (setq children (cons ret children))
225       )
226     (mime::content-info/create rcnum beg (point-max)
227                                ctype params encoding
228                                (nreverse children))
229     ))
230
231 (defun mime-parse-message (&optional ctl encoding rcnum)
232   "Parse current-buffer as a MIME message. [mime-parse.el]"
233   (setq ctl (or (mime/Content-Type) ctl))
234   (setq encoding (or (mime/Content-Transfer-Encoding) encoding))
235   (let ((ctype (car ctl))
236         (params (cdr ctl))
237         )
238     (let ((boundary (assoc "boundary" params)))
239       (cond (boundary
240              (setq boundary (std11-strip-quoted-string (cdr boundary)))
241              (mime-parse-multipart boundary ctype params encoding rcnum)
242              )
243             ((or (string-equal ctype "message/rfc822")
244                  (string-equal ctype "message/news")
245                  )
246              (goto-char (point-min))
247              (mime::content-info/create rcnum
248                                         (point-min) (point-max)
249                                         ctype params encoding
250                                         (save-restriction
251                                           (narrow-to-region
252                                            (if (re-search-forward "^$" nil t)
253                                                (1+ (match-end 0))
254                                              (point-min)
255                                              )
256                                            (point-max))
257                                           (list (mime-parse-message
258                                                  nil nil (cons 0 rcnum)))
259                                           )
260                                         )
261              )
262             (t 
263              (mime::content-info/create rcnum (point-min) (point-max)
264                                         ctype params encoding nil)
265              ))
266       )))
267
268
269 ;;; @ end
270 ;;;
271
272 (provide 'mime-parse)
273
274 ;;; mime-parse.el ends here