X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=mime-def.el;h=35bda0dfc8d9e4a11b97ed383a20789592b268d4;hb=a0b108d58d36fff037f8d27eb9a2a91a7d518b9c;hp=8b0360558dc044a17c9abaf12a6df437395640e1;hpb=b65b056b228d38d02b0d67974e155d2f0c478e2a;p=elisp%2Fflim.git diff --git a/mime-def.el b/mime-def.el index 8b03605..35bda0d 100644 --- a/mime-def.el +++ b/mime-def.el @@ -26,26 +26,30 @@ ;;; Code: +(require 'poe) +(require 'poem) +(require 'pcustom) (require 'mcharset) +(require 'alist) (eval-and-compile - (defconst mime-library-product ["Chao" (1 13 0) "JR Fujinomori"] + (defconst mime-library-product ["CLIME" (1 13 3) "平端"] "Product name, version number and code name of MIME-library package.") ) (defmacro mime-product-name (product) - `(aref ,product 0)) + (` (aref (, product) 0))) (defmacro mime-product-version (product) - `(aref ,product 1)) + (` (aref (, product) 1))) (defmacro mime-product-code-name (product) - `(aref ,product 2)) + (` (aref (, product) 2))) (defconst mime-library-version (eval-when-compile (concat (mime-product-name mime-library-product) " " - (mapconcat #'number-to-string + (mapconcat (function int-to-string) (mime-product-version mime-library-product) ".") " - \"" (mime-product-code-name mime-library-product) "\""))) @@ -53,18 +57,11 @@ ;;; @ variables ;;; -(require 'custom) - -(eval-when-compile (require 'cl)) - -(defgroup mime nil +(defgroup mime '((default-mime-charset custom-variable)) "Emacs MIME Interfaces" :group 'news :group 'mail) -(custom-handle-keyword 'default-mime-charset :group 'mime - 'custom-variable) - (defcustom mime-uuencode-encoding-name-list '("x-uue" "x-uuencode") "*List of encoding names for uuencode format." :group 'mime @@ -156,10 +153,9 @@ ;;; (defsubst make-mime-content-type (type subtype &optional parameters) - (list* (cons 'type type) - (cons 'subtype subtype) - (nreverse parameters)) - ) + (cons (cons 'type type) + (cons (cons 'subtype subtype) + (nreverse parameters)))) (defsubst mime-content-type-primary-type (content-type) "Return primary-type of CONTENT-TYPE." @@ -211,6 +207,11 @@ (require 'luna) +(autoload 'mime-entity-content-type "mime") +(autoload 'mime-parse-multipart "mime-parse") +(autoload 'mime-parse-encapsulated "mime-parse") +(autoload 'mime-entity-content "mime") + (luna-define-class mime-entity () (location content-type children parent @@ -224,20 +225,52 @@ (luna-define-internal-accessors 'mime-entity) +(luna-define-method mime-entity-fetch-field ((entity mime-entity) + field-name) + (or (symbolp field-name) + (setq field-name (intern (capitalize (capitalize field-name))))) + (cdr (assq field-name + (mime-entity-original-header-internal entity)))) + +(luna-define-method mime-entity-children ((entity mime-entity)) + (let* ((content-type (mime-entity-content-type entity)) + (primary-type (mime-content-type-primary-type content-type))) + (cond ((eq primary-type 'multipart) + (mime-parse-multipart entity) + ) + ((and (eq primary-type 'message) + (memq (mime-content-type-subtype content-type) + '(rfc822 news external-body) + )) + (mime-parse-encapsulated 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))) + (` (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)))) + (` (luna-define-class (, (mm-expand-class-name type)) + (, (nconc (mapcar (function + (lambda (parent) + (mm-expand-class-name parent) + )) + parents) + '(mime-entity)))))) (defmacro mm-define-method (name args &rest body) (or (eq name 'initialize-instance) @@ -247,30 +280,18 @@ (cons (list (car spec) (mm-expand-class-name (nth 1 spec))) (cdr args))) - `(luna-define-method ,name ,args ,@body) + (` (luna-define-method (, name) (, args) (,@ body))) )) -(put 'mm-define-method 'lisp-indent-function 'defun) -(eval-when-compile - (defmacro eval-module-depended-macro (module definition) - (condition-case nil - (progn - (require (eval module)) - definition) - (error `(eval-after-load ,(symbol-name (eval module)) ',definition)) - )) - ) +(put 'mm-define-method 'lisp-indent-function 'defun) -(eval-module-depended-macro - 'edebug - (def-edebug-spec mm-define-method - (&define name ((arg symbolp) - [&rest arg] - [&optional ["&optional" arg &rest arg]] - &optional ["&rest" arg] - ) - def-body)) - ) +(def-edebug-spec mm-define-method + (&define name ((arg symbolp) + [&rest arg] + [&optional ["&optional" arg &rest arg]] + &optional ["&rest" arg] + ) + def-body)) ;;; @ message structure @@ -306,16 +327,17 @@ message/rfc822, `mime-entity' structures of them are included in "Define NAME as a service for Content-Transfer-Encodings. If ARGS is specified, NAME is defined as a generic function for the service." - `(progn - (add-to-list 'mel-service-list ',name) - (defvar ,(intern (format "%s-obarray" name)) (make-vector 7 0)) - ,@(if args - `((defun ,name ,args - ,@rest - (funcall (mel-find-function ',name ,(car (last args))) - ,@(luna-arglist-to-arguments (butlast args))) - ))) - )) + (` (progn + (add-to-list 'mel-service-list '(, name)) + (defvar (, (intern (format "%s-obarray" name))) (make-vector 7 0)) + (,@ (if args + (` ((defun (, name) (, args) + (,@ rest) + (funcall (mel-find-function '(, name) + (, (car (last args)))) + (,@ (luna-arglist-to-arguments (butlast args)))) + ))))) + ))) (put 'mel-define-service 'lisp-indent-function 'defun) @@ -356,9 +378,10 @@ service." If PARENTS is specified, TYPE inherits PARENTS. Each parent must be backend name (string)." (cons 'progn - (mapcar (lambda (parent) - `(mel-copy-backend ,parent ,type) - ) + (mapcar (function + (lambda (parent) + (` (mel-copy-backend (, parent) (, type))) + )) parents))) (defmacro mel-define-method (name args &rest body) @@ -368,11 +391,12 @@ specialized parameter. (car (car (last ARGS))) is name of variable and (nth 1 (car (last ARGS))) is name of backend (encoding)." (let* ((specializer (car (last args))) (class (nth 1 specializer))) - `(progn - (mel-define-service ,name) - (fset (intern ,class ,(intern (format "%s-obarray" name))) - (lambda ,(butlast args) - ,@body))))) + (` (progn + (mel-define-service (, name)) + (fset (intern (, class) (, (intern (format "%s-obarray" name)))) + (function + (lambda (, (butlast args)) + (,@ body)))))))) (put 'mel-define-method 'lisp-indent-function 'defun) @@ -386,21 +410,21 @@ variable and (nth 1 (car (last ARGS))) is name of backend (encoding)." (args (cdr spec)) (specializer (car (last args))) (class (nth 1 specializer))) - `(let (sym) - (mel-define-service ,name) - (setq sym (intern ,class ,(intern (format "%s-obarray" name)))) - (or (fboundp sym) - (fset sym (symbol-function ,function)))))) + (` (let (sym) + (mel-define-service (, name)) + (setq sym (intern (, class) (, (intern (format "%s-obarray" name))))) + (or (fboundp sym) + (fset sym (symbol-function (, function)))))))) (defmacro mel-define-function (function spec) (let* ((name (car spec)) (args (cdr spec)) (specializer (car (last args))) (class (nth 1 specializer))) - `(progn - (define-function ,function - (intern ,class ,(intern (format "%s-obarray" name)))) - ))) + (` (progn + (define-function (, function) + (intern (, class) (, (intern (format "%s-obarray" name))))) + )))) (defvar base64-dl-module (if (and (fboundp 'base64-encode-string)