2021-01-26 03:58:19 +00:00
|
|
|
;;; utf-7.el --- utf-7 coding system -*- lexical-binding: t; -*-
|
2003-05-08 17:54:14 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2003-2024 Free Software Foundation, Inc.
|
2003-05-08 17:54:14 +00:00
|
|
|
|
|
|
|
;; Author: Dave Love <fx@gnu.org>
|
|
|
|
;; Keywords: i18n, mail
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2003-05-08 17:54:14 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2003-05-08 17:54:14 +00:00
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2003-05-08 17:54:14 +00:00
|
|
|
;; 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
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2003-05-08 17:54:14 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Defines a coding system for UTF-7, defined in RFC 2152. Non-ASCII
|
|
|
|
;; segments are encoded as base64-encoded big endian UTF-16. Also
|
|
|
|
;; defines a variation required for IMAP (RFC 2060).
|
|
|
|
|
|
|
|
;; The encoding and decoding was originally taken from Jon K Hellan's
|
|
|
|
;; implementation in Gnus, but has been substantially re-done.
|
|
|
|
|
|
|
|
;; This probably needs more attention. In particular, it's not
|
2008-06-27 07:34:53 +00:00
|
|
|
;; completely consistent with iconv's behavior. It's arguable
|
2003-05-08 17:54:14 +00:00
|
|
|
;; whether the IMAP version should be a coding system since it's
|
|
|
|
;; apparently only used for IMAP mailbox names, so it's commented out.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defun utf-7-decode (len imap)
|
|
|
|
"Decode LEN bytes of UTF-7 at point.
|
|
|
|
IMAP non-nil means use the IMAP version."
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region (point) (+ (point) len))
|
|
|
|
(let ((not-esc (if imap "^&" "^+"))
|
|
|
|
(skip-chars (if imap "A-Za-z0-9+," "A-Za-z0-9+/")))
|
|
|
|
(while (not (eobp))
|
|
|
|
(skip-chars-forward not-esc)
|
|
|
|
(unless (eobp)
|
|
|
|
(forward-char)
|
|
|
|
(let ((p (point))
|
|
|
|
(run-length (skip-chars-forward skip-chars)))
|
|
|
|
(if (eq ?- (char-after))
|
|
|
|
(delete-char 1))
|
|
|
|
(unless (= run-length 0) ; encoded lone esc-char
|
|
|
|
(let ((pl (mod (- run-length) 4)))
|
|
|
|
(insert-char ?= pl)
|
|
|
|
(if imap
|
|
|
|
(subst-char-in-region p (point) ?, ?/))
|
|
|
|
(base64-decode-region p (point)))
|
2003-06-21 02:25:38 +00:00
|
|
|
(decode-coding-region p (point) 'utf-16be)
|
2003-05-08 17:54:14 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char p)
|
Replace Lisp calls to delete-backward-char by delete-char.
* bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
skeleton.el, term.el, time.el, wid-edit.el, woman.el,
calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
progmodes/ps-mode.el, progmodes/verilog-mode.el,
progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
delete-backward-char by calls to delete-char.
2010-05-25 02:11:08 +00:00
|
|
|
(delete-char -1)))))))
|
2003-05-08 17:54:14 +00:00
|
|
|
(- (point-max) (point-min)))))
|
|
|
|
|
2005-10-24 12:01:26 +00:00
|
|
|
;;;###autoload
|
2003-05-08 17:54:14 +00:00
|
|
|
(defun utf-7-post-read-conversion (len)
|
|
|
|
(utf-7-decode len nil))
|
|
|
|
|
2007-11-19 06:28:45 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun utf-7-imap-post-read-conversion (len)
|
|
|
|
(utf-7-decode len t))
|
2003-05-08 17:54:14 +00:00
|
|
|
|
|
|
|
(defun utf-7-encode (from to imap)
|
|
|
|
"Encode bytes between FROM and TO to UTF-7.
|
|
|
|
ESC and SKIP-CHARS are adjusted for the normal and IMAP versions."
|
|
|
|
(let* ((old-buf (current-buffer))
|
|
|
|
(esc (if imap ?& ?+))
|
|
|
|
;; These are characters which can be encoded asis.
|
|
|
|
(skip-chars (if imap
|
2017-09-13 22:52:52 +00:00
|
|
|
"\t\n\r\x20-\x25\x27-\x7e" ; rfc2060
|
2003-05-08 17:54:14 +00:00
|
|
|
;; This includes the rfc2152 optional set.
|
|
|
|
;; Perhaps it shouldn't (like iconv).
|
|
|
|
"\t\n\r -*,-[]-}"))
|
|
|
|
(not-skip-chars (format "^%s%c" skip-chars esc)))
|
|
|
|
(set-buffer (generate-new-buffer " *temp*"))
|
|
|
|
(if (stringp from)
|
|
|
|
(insert from)
|
|
|
|
(insert-buffer-substring old-buf from to))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (not (eobp))
|
|
|
|
(skip-chars-forward skip-chars)
|
2008-05-29 21:57:32 +00:00
|
|
|
(if (eq esc (char-after))
|
2003-05-08 17:54:14 +00:00
|
|
|
(progn (forward-char)
|
|
|
|
(insert ?-))
|
|
|
|
(unless (eobp)
|
|
|
|
(insert esc)
|
|
|
|
(let ((p (point)))
|
|
|
|
(skip-chars-forward not-skip-chars)
|
|
|
|
(save-restriction
|
|
|
|
;; encode-coding-region doesn't preserve point
|
|
|
|
(narrow-to-region p (point))
|
2003-06-21 02:25:38 +00:00
|
|
|
(encode-coding-region p (point-max) 'utf-16be)
|
2003-05-08 17:54:14 +00:00
|
|
|
(base64-encode-region p (point-max))
|
|
|
|
(if imap
|
|
|
|
(subst-char-in-region p (point-max) ?/ ?,))
|
|
|
|
(goto-char p)
|
|
|
|
;; As I read the RFC, this isn't correct, but it's
|
|
|
|
;; consistent with iconv, at least regarding `='.
|
|
|
|
(skip-chars-forward "^= \t\n")
|
|
|
|
(delete-region (point) (point-max))))
|
2008-02-28 19:43:51 +00:00
|
|
|
;; RFC2060 stipulates that all names MUST end in US-ASCII (i.e.
|
|
|
|
;; a name that ends with a Unicode octet MUST end with a "-").
|
|
|
|
(if (or imap (not (eobp)))
|
2003-05-08 17:54:14 +00:00
|
|
|
(insert ?-)))))
|
|
|
|
nil))
|
|
|
|
|
2005-10-24 12:01:26 +00:00
|
|
|
;;;###autoload
|
2003-05-08 17:54:14 +00:00
|
|
|
(defun utf-7-pre-write-conversion (from to)
|
|
|
|
(utf-7-encode from to nil))
|
|
|
|
|
2007-11-19 06:28:45 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun utf-7-imap-pre-write-conversion (from to)
|
|
|
|
(utf-7-encode from to t))
|
2003-05-08 17:54:14 +00:00
|
|
|
|
|
|
|
(provide 'utf-7)
|
2003-09-01 15:45:59 +00:00
|
|
|
|
2003-05-08 17:54:14 +00:00
|
|
|
;;; utf-7.el ends here
|