* riece-mcat.el (riece-mcat-extract): Abolished ALIST arg.
[riece] / lisp / riece-mcat.el
1 ;;; riece-mcat.el --- message catalog
2 ;; Copyright (C) 2007 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5
6 ;; This file is part of Riece.
7
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 2, or (at your option)
11 ;; any later version.
12
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
20 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 ;; Boston, MA 02110-1301, USA.
22
23 ;;; Code:
24
25 (require 'pp)
26
27 (defun riece-mcat (string)
28   "Translate STRING in the current language environment."
29   (let ((feature (get-language-info current-language-environment
30                                     'riece-mcat-feature)))
31     (if feature
32         (progn
33           (require feature)
34           (or (cdr (assoc string
35                           (symbol-value
36                            (intern (concat (symbol-name feature) "-alist")))))
37               string))
38       string)))
39
40 (defun riece-mcat-extract-from-form (form)
41   (if (and form (listp form) (listp (cdr form)))
42       (if (eq (car form) 'riece-mcat)
43           (cdr form)
44         (delq nil (apply #'nconc
45                          (mapcar #'riece-mcat-extract-from-form form))))))
46
47 (defun riece-mcat-extract (files)
48   (save-excursion
49     (let (message-list alist)
50       (while files
51         (with-temp-buffer
52           (insert-file-contents (car files))
53           (goto-char (point-min))
54           (while (progn
55                    (while (progn (skip-chars-forward " \t\n\f")
56                                  (looking-at ";"))
57                      (forward-line 1))
58                    (not (eobp)))
59             (setq message-list
60                   (nconc message-list
61                          (riece-mcat-extract-from-form
62                           (read (current-buffer)))))))
63         (setq files (cdr files)))
64       (setq message-list (sort message-list #'string-lessp))
65       (while message-list
66         (unless (assoc (car message-list) alist)
67           (setq alist (cons (list (car message-list)) alist)))
68         (setq message-list (cdr message-list)))
69       alist)))
70
71 (defun riece-mcat-update (files mcat-file mcat-alist-symbol)
72   "Update MCAT-FILE."
73   (let ((pp-escape-newlines t)
74         alist)
75     (save-excursion
76       (set-buffer (find-file-noselect mcat-file))
77       (goto-char (point-min))
78       (if (re-search-forward (concat "^\\s-*(\\(defvar\\|defconst\\)\\s-+"
79                                      (regexp-quote (symbol-name
80                                                     mcat-alist-symbol)))
81                              nil t)
82           (progn
83             (goto-char (match-beginning 0))
84             (save-excursion
85               (eval (read (current-buffer))))
86             (delete-region (point) (progn (forward-sexp) (point))))
87         (set mcat-alist-symbol nil))
88       (setq alist (riece-mcat-extract files))
89       (insert "(defconst " (symbol-name mcat-alist-symbol) "\n  '(")
90       (while alist
91         (insert "(" (pp-to-string (car (car alist))) " . "
92                 (pp-to-string (cdr (car alist))) ")")
93         (if (cdr alist)
94             (insert "\n    "))
95         (setq alist (cdr alist)))
96       (insert "))")
97       (save-buffer))))
98
99 (defconst riece-mcat-description "Translate messages")
100
101 (defun riece-mcat-insinuate ()
102   (set-language-info "Japanese" 'riece-mcat-feature 'riece-mcat-japanese))
103
104 (defun riece-mcat-uninstall ()
105   (set-language-info "Japanese" 'riece-mcat-feature nil))
106
107 (provide 'riece-mcat)
108
109 ;;; riece-mcat.el ends here