(auth-sources): Fix up definition so extra parameters
[gnus] / lisp / ietf-drums.el
1 ;;; ietf-drums.el --- Functions for parsing RFC822bis headers
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23
24 ;; DRUMS is an IETF Working Group that works (or worked) on the
25 ;; successor to RFC822, "Standard For The Format Of Arpa Internet Text
26 ;; Messages".  This library is based on
27 ;; draft-ietf-drums-msg-fmt-05.txt, released on 1998-08-05.
28
29 ;; Pending a real regression self test suite, Simon Josefsson added
30 ;; various self test expressions snipped from bug reports, and their
31 ;; expected value, below.  I you believe it could be useful, please
32 ;; add your own test cases, or write a real self test suite, or just
33 ;; remove this.
34
35 ;; <m3oekvfd50.fsf@whitebox.m5r.de>
36 ;; (ietf-drums-parse-address "'foo' <foo@example.com>")
37 ;; => ("foo@example.com" . "'foo'")
38
39 ;;; Code:
40
41 (eval-when-compile (require 'cl))
42 (require 'time-date)
43 (require 'mm-util)
44
45 (defvar ietf-drums-no-ws-ctl-token "\001-\010\013\014\016-\037\177"
46   "US-ASCII control characters excluding CR, LF and white space.")
47 (defvar ietf-drums-text-token "\001-\011\013\014\016-\177"
48   "US-ASCII characters excluding CR and LF.")
49 (defvar ietf-drums-specials-token "()<>[]:;@\\,.\""
50   "Special characters.")
51 (defvar ietf-drums-quote-token "\\"
52   "Quote character.")
53 (defvar ietf-drums-wsp-token " \t"
54   "White space.")
55 (defvar ietf-drums-fws-regexp
56   (concat "[" ietf-drums-wsp-token "]*\n[" ietf-drums-wsp-token "]+")
57   "Folding white space.")
58 (defvar ietf-drums-atext-token "-^a-zA-Z0-9!#$%&'*+/=?_`{|}~"
59   "Textual token.")
60 (defvar ietf-drums-dot-atext-token "-^a-zA-Z0-9!#$%&'*+/=?_`{|}~."
61   "Textual token including full stop.")
62 (defvar ietf-drums-qtext-token
63   (concat ietf-drums-no-ws-ctl-token "\041\043-\133\135-\177")
64   "Non-white-space control characters, plus the rest of ASCII excluding
65 backslash and doublequote.")
66 (defvar ietf-drums-tspecials "][()<>@,;:\\\"/?="
67   "Tspecials.")
68
69 (defvar ietf-drums-syntax-table
70   (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
71     (modify-syntax-entry ?\\ "/" table)
72     (modify-syntax-entry ?< "(" table)
73     (modify-syntax-entry ?> ")" table)
74     (modify-syntax-entry ?@ "w" table)
75     (modify-syntax-entry ?/ "w" table)
76     (modify-syntax-entry ?* "_" table)
77     (modify-syntax-entry ?\; "_" table)
78     (modify-syntax-entry ?\' "_" table)
79     (if (featurep 'xemacs)
80         (let ((i 128))
81           (while (< i 256)
82             (modify-syntax-entry i "w" table)
83             (setq i (1+ i)))))
84     table))
85
86 (defun ietf-drums-token-to-list (token)
87   "Translate TOKEN into a list of characters."
88   (let ((i 0)
89         b e c out range)
90     (while (< i (length token))
91       (setq c (mm-char-int (aref token i)))
92       (incf i)
93       (cond
94        ((eq c (mm-char-int ?-))
95         (if b
96             (setq range t)
97           (push c out)))
98        (range
99         (while (<= b c)
100           (push (make-char 'ascii b) out)
101           (incf b))
102         (setq range nil))
103        ((= i (length token))
104         (push (make-char 'ascii c) out))
105        (t
106         (when b
107           (push (make-char 'ascii b) out))
108         (setq b c))))
109     (nreverse out)))
110
111 (defsubst ietf-drums-init (string)
112   (set-syntax-table ietf-drums-syntax-table)
113   (insert string)
114   (ietf-drums-unfold-fws)
115   (goto-char (point-min)))
116
117 (defun ietf-drums-remove-comments (string)
118   "Remove comments from STRING."
119   (with-temp-buffer
120     (let (c)
121       (ietf-drums-init string)
122       (while (not (eobp))
123         (setq c (char-after))
124         (cond
125          ((eq c ?\")
126           (condition-case err
127               (forward-sexp 1)
128             (error (goto-char (point-max)))))
129          ((eq c ?\()
130           (delete-region
131                (point)
132                (condition-case nil
133                    (with-syntax-table (copy-syntax-table ietf-drums-syntax-table)
134                      (modify-syntax-entry ?\" "w")
135                      (forward-sexp 1)
136                      (point))
137                  (error (point-max)))))
138          (t
139           (forward-char 1))))
140       (buffer-string))))
141
142 (defun ietf-drums-remove-whitespace (string)
143   "Remove whitespace from STRING."
144   (with-temp-buffer
145     (ietf-drums-init string)
146     (let (c)
147       (while (not (eobp))
148         (setq c (char-after))
149         (cond
150          ((eq c ?\")
151           (forward-sexp 1))
152          ((eq c ?\()
153           (forward-sexp 1))
154          ((memq c '(?\  ?\t ?\n))
155           (delete-char 1))
156          (t
157           (forward-char 1))))
158       (buffer-string))))
159
160 (defun ietf-drums-get-comment (string)
161   "Return the first comment in STRING."
162   (with-temp-buffer
163     (ietf-drums-init string)
164     (let (result c)
165       (while (not (eobp))
166         (setq c (char-after))
167         (cond
168          ((eq c ?\")
169           (forward-sexp 1))
170          ((eq c ?\()
171           (setq result
172                 (buffer-substring
173                  (1+ (point))
174                  (progn (forward-sexp 1) (1- (point))))))
175          (t
176           (forward-char 1))))
177       result)))
178
179 (defun ietf-drums-strip (string)
180<