-
Notifications
You must be signed in to change notification settings - Fork 13
/
mmgeneric.el
163 lines (131 loc) · 4.83 KB
/
mmgeneric.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
;;; mmgeneric.el --- MIME generic entity module -*- lexical-binding: t -*-
;; Copyright (C) 1995,96,97,98,99,2000 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <[email protected]>
;; Keywords: definition, MIME, multimedia, mail, news
;; This file is part of FLIM (Faithful Library about Internet Message).
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
(require 'mcharset)
(require 'std11)
(require 'luna)
(require 'eword-decode)
;;; @ MIME entity
;;;
(autoload 'mime-entity-content-type "mime")
(autoload 'mime-parse-multipart "mime-parse")
(autoload 'mime-parse-message "mime-parse")
;; (autoload 'mime-parse-encapsulated "mime-parse")
;; (autoload 'mime-parse-external "mime-parse")
(autoload 'mime-entity-content "mime")
(eval-and-compile
(luna-define-class mime-entity ()
(location
content-type children parent
node-id
content-disposition encoding
;; for other fields
original-header parsed-header))
(luna-define-internal-accessors 'mime-entity))
(defalias 'mime-entity-representation-type-internal 'luna-class-name)
(defalias 'mime-entity-set-representation-type-internal 'luna-set-class-name)
(luna-define-method mime-entity-fetch-field ((entity mime-entity)
field-name)
(or (symbolp field-name)
(setq field-name (intern (capitalize field-name))))
(cdr (assq field-name
(mime-entity-original-header-internal entity))))
(luna-define-method mime-insert-text-content ((entity mime-entity))
(insert
(decode-mime-charset-string (mime-entity-content entity)
(or (mime-content-type-parameter
(mime-entity-content-type entity)
"charset")
default-mime-charset)
'CRLF)))
;;; @ for mm-backend
;;;
(defmacro mm-expand-class-name (type)
`(intern (format "mime-%s-entity" ,type)))
(defmacro mm-define-backend (type &optional parents)
`(luna-define-class ,(mm-expand-class-name type)
,(nconc (mapcar (lambda (parent)
(mm-expand-class-name parent))
parents)
'(mime-entity))))
(defmacro mm-define-method (name args &rest body)
(or (eq name 'initialize-instance)
(setq name (intern (format "mime-%s" name))))
(let ((spec (car args)))
(setq args
(cons (list (car spec)
(mm-expand-class-name (nth 1 spec)))
(cdr args)))
`(luna-define-method ,name ,args ,@body)))
(put 'mm-define-method 'lisp-indent-function 'defun)
(def-edebug-spec mm-define-method
(&define name ((arg symbolp)
[&rest arg]
[&optional ["&optional" arg &rest arg]]
&optional ["&rest" arg])
def-body))
;;; @ header filter
;;;
;; [tomo] We should think about specification of better filtering
;; mechanism. Please discuss in the emacs-mime mailing lists.
(defun mime-visible-field-p (field-name visible-fields invisible-fields)
(let ((case-fold-search t))
(catch 'found
(while visible-fields
(when (string-match (car visible-fields) field-name)
(throw 'found t))
(setq visible-fields (cdr visible-fields)))
(while invisible-fields
(when (string-match (car invisible-fields) field-name)
(throw 'found nil))
(setq invisible-fields (cdr invisible-fields)))
t)))
(defun mime-insert-header-from-buffer (buffer start end
&optional invisible-fields
visible-fields)
(let ((mode-obj (mime-find-field-presentation-method 'wide))
field-decoder f-b p field-name field-body result)
(with-current-buffer buffer
(goto-char start)
(while (re-search-forward std11-field-head-regexp end t)
(setq f-b (match-beginning 0)
p (match-end 0)
field-name (buffer-substring f-b p))
(when (mime-visible-field-p field-name
visible-fields invisible-fields)
(setq field-body (buffer-substring p (std11-field-end end))
field-decoder
(mime-find-field-decoder-internal
(intern (capitalize
(buffer-substring-no-properties f-b (1- p))))
mode-obj)
result
(cons "\n"
(cons (if field-decoder
(funcall field-decoder
field-body
(string-width field-name))
;; Don't decode
field-body)
(cons field-name result)))))))
(when result
(apply #'insert (nreverse result)))))
;;; @ end
;;;
(provide 'mmgeneric)
;;; mmgeneric.el ends here