Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
[bpt/emacs.git] / lisp / gnus / format-spec.el
CommitLineData
c113de23 1;;; format-spec.el --- functions for formatting arbitrary formatting strings
e84b4b86 2
b6c2d8c6 3;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
d7a0267c 4;; 2005, 2006, 2007 Free Software Foundation, Inc.
c113de23
GM
5
6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7;; Keywords: tools
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
5a9dffec 13;; the Free Software Foundation; either version 3, or (at your option)
c113de23
GM
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
c113de23
GM
25
26;;; Commentary:
27
28;;; Code:
29
30(eval-when-compile (require 'cl))
31
32(defun format-spec (format specification)
33 "Return a string based on FORMAT and SPECIFICATION.
34FORMAT is a string containing `format'-like specs like \"bash %u %k\",
35while SPECIFICATION is an alist mapping from format spec characters
827d67f3
RS
36to values. Any text properties on a %-spec itself are propagated to
37the text that it generates."
c113de23
GM
38 (with-temp-buffer
39 (insert format)
40 (goto-char (point-min))
41 (while (search-forward "%" nil t)
42 (cond
43 ;; Quoted percent sign.
44 ((eq (char-after) ?%)
45 (delete-char 1))
46 ;; Valid format spec.
47 ((looking-at "\\([-0-9.]*\\)\\([a-zA-Z]\\)")
48 (let* ((num (match-string 1))
49 (spec (string-to-char (match-string 2)))
50 (val (cdr (assq spec specification))))
c113de23 51 (unless val
01c52d31 52 (error "Invalid format character: `%%%c'" spec))
827d67f3
RS
53 ;; Pad result to desired length.
54 (let ((text (format (concat "%" num "s") val)))
55 ;; Insert first, to preserve text properties.
56 (insert-and-inherit text)
57 ;; Delete the specifier body.
58 (delete-region (+ (match-beginning 0) (length text))
59 (+ (match-end 0) (length text)))
60 ;; Delete the percent sign.
61 (delete-region (1- (match-beginning 0)) (match-beginning 0)))))
c113de23
GM
62 ;; Signal an error on bogus format strings.
63 (t
64 (error "Invalid format string"))))
65 (buffer-string)))
66
67(defun format-spec-make (&rest pairs)
68 "Return an alist suitable for use in `format-spec' based on PAIRS.
69PAIRS is a list where every other element is a character and a value,
70starting with a character."
71 (let (alist)
72 (while pairs
73 (unless (cdr pairs)
74 (error "Invalid list of pairs"))
75 (push (cons (car pairs) (cadr pairs)) alist)
76 (setq pairs (cddr pairs)))
77 (nreverse alist)))
78
79(provide 'format-spec)
80
ab5796a9 81;;; arch-tag: c22d49cf-d167-445d-b7f1-2504d4173f53
c113de23 82;;; format-spec.el ends here