X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=mime-parse.el;h=493bbcb59943f553b04729fcabf870ac4f5e3b0d;hb=4e31f5213308fa82ca6280dc5a7a2b888fd918c7;hp=936178e3b31d5198547ac48cc59351c4f63a167e;hpb=031d643bc45813b815873d5a1be24e8afea066e9;p=elisp%2Fsemi.git diff --git a/mime-parse.el b/mime-parse.el index 936178e..493bbcb 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -155,29 +155,32 @@ and return parsed it. [mime-parse.el]" ;;; @ message parser ;;; -(defsubst make-mime-entity-info (reversed-number - point-min point-max - media-type media-subtype parameters - encoding children) - (vector reversed-number point-min point-max +(defsubst make-mime-entity (node-id + point-min point-max + media-type media-subtype parameters + encoding children) + (vector node-id point-min point-max media-type media-subtype parameters encoding children)) -(defsubst mime-entity-info-reversed-number (entity-info) (aref entity-info 0)) -(defsubst mime-entity-info-point-min (entity-info) (aref entity-info 1)) -(defsubst mime-entity-info-point-max (entity-info) (aref entity-info 2)) -(defsubst mime-entity-info-media-type (entity-info) (aref entity-info 3)) -(defsubst mime-entity-info-media-subtype (entity-info) (aref entity-info 4)) -(defsubst mime-entity-info-parameters (entity-info) (aref entity-info 5)) -(defsubst mime-entity-info-encoding (entity-info) (aref entity-info 6)) -(defsubst mime-entity-info-children (entity-info) (aref entity-info 7)) - -(defsubst mime-entity-info-type/subtype (entity-info) - (let ((type (mime-entity-info-media-type entity-info))) - (if type - (let ((subtype (mime-entity-info-media-subtype entity-info))) - (if subtype - (format "%s/%s" type subtype) - (symbol-name type)))))) +(defsubst mime-entity-node-id (entity-info) (aref entity-info 0)) +(defsubst mime-entity-point-min (entity-info) (aref entity-info 1)) +(defsubst mime-entity-point-max (entity-info) (aref entity-info 2)) +(defsubst mime-entity-media-type (entity-info) (aref entity-info 3)) +(defsubst mime-entity-media-subtype (entity-info) (aref entity-info 4)) +(defsubst mime-entity-parameters (entity-info) (aref entity-info 5)) +(defsubst mime-entity-encoding (entity-info) (aref entity-info 6)) +(defsubst mime-entity-children (entity-info) (aref entity-info 7)) + +(defsubst mime-type/subtype-string (type &optional subtype) + "Return type/subtype string from TYPE and SUBTYPE." + (if type + (if subtype + (format "%s/%s" type subtype) + (format "%s" type)))) + +(defsubst mime-entity-type/subtype (entity-info) + (mime-type/subtype-string (mime-entity-media-type entity-info) + (mime-entity-media-subtype entity-info))) (defun mime-parse-multipart (boundary primtype subtype params encoding rcnum) (goto-char (point-min)) @@ -211,7 +214,7 @@ and return parsed it. [mime-parse.el]" (setq ret (mime-parse-message dc-ctl "7bit" (cons i rcnum))) ) (setq children (cons ret children)) - (goto-char (mime-entity-info-point-max ret)) + (goto-char (mime-entity-point-max ret)) (goto-char (setq cb ncb)) (setq i (1+ i)) ) @@ -222,9 +225,9 @@ and return parsed it. [mime-parse.el]" ) (setq children (cons ret children)) ) - (make-mime-entity-info rcnum beg (point-max) - primtype subtype params encoding - (nreverse children)) + (make-mime-entity rcnum beg (point-max) + primtype subtype params encoding + (nreverse children)) )) (defun mime-parse-message (&optional default-ctl default-encoding rcnum) @@ -249,28 +252,35 @@ mime-{parse|read}-Content-Type." (memq subtype '(rfc822 news)) ) (goto-char (point-min)) - (make-mime-entity-info rcnum - (point-min) (point-max) - primtype subtype params encoding - (save-restriction - (narrow-to-region - (if (re-search-forward "^$" nil t) - (1+ (match-end 0)) - (point-min) - ) - (point-max)) - (list (mime-parse-message - nil nil (cons 0 rcnum))) - )) + (make-mime-entity rcnum (point-min) (point-max) + primtype subtype params encoding + (save-restriction + (narrow-to-region + (if (re-search-forward "^$" nil t) + (1+ (match-end 0)) + (point-min) + ) + (point-max)) + (list (mime-parse-message + nil nil (cons 0 rcnum))) + )) ) (t - (make-mime-entity-info rcnum (point-min) (point-max) - primtype subtype params encoding - nil) + (make-mime-entity rcnum (point-min) (point-max) + primtype subtype params encoding + nil) )) ))) +;;; @ utilities +;;; + +(defsubst mime-root-entity-p (entity) + "Return t if ENTITY is root-entity (message)." + (null (mime-entity-node-id entity))) + + ;;; @ end ;;;