0613bc7caf325b2c40b75950c1b7b22949e8abd4
[elisp/riece.git] / lisp / riece-alias.el
1 ;;; riece-alias.el --- define aliases of names
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: IRC, riece
6
7 ;; This file is part of Riece.
8
9 ;; This program 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 2, or (at your option)
12 ;; any later version.
13
14 ;; This program 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; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Code:
25
26 (defgroup riece-alias nil
27   "Define aliases of names"
28   :prefix "riece-"
29   :group 'riece)
30
31 (defcustom riece-alias-percent-hack-mask "*.jp"
32   "The mask of local IRC network"
33   :type 'string
34   :group 'riece-alias)
35
36 (defcustom riece-alias-enable-percent-hack t
37   "If non-nil, the target mask is abbreviated with `%'."
38   :type 'boolean
39   :group 'riece-alias)
40
41 (defcustom riece-alias-alist nil
42   "An alist mapping aliases to names."
43   :type 'list
44   :group 'riece-alias)
45
46 (defun riece-alias-abbrev-percent-hack (string)
47   (if (string-match (concat "^#\\([^ ]+\\):"
48                             (regexp-quote riece-alias-percent-hack-mask)
49                             "\\( .+\\|$\\)")
50                     string)
51       (replace-match "%\\1\\2" nil nil string)
52     string))
53
54 (defun riece-alias-expand-percent-hack (string)
55   (if (string-match "^%\\([^ ]+\\)\\( .+\\|$\\)" string)
56       (replace-match (concat "#\\1:" riece-alias-percent-hack-mask "\\2")
57                      nil nil string)
58     string))
59
60 (defun riece-alias-abbrev-identity-string (string)
61   (if riece-alias-enable-percent-hack
62       (setq string (riece-alias-abbrev-percent-hack string)))
63   (let ((alist riece-alias-alist))
64     (catch 'done
65       (while alist
66         (if (equal (car (car alist)) string)
67             (throw 'done (cdr (car alist))))
68         (setq alist (cdr alist)))
69       string)))
70
71 (defun riece-alias-expand-identity-string (string)
72   (if riece-alias-enable-percent-hack
73       (setq string (riece-alias-expand-percent-hack string)))
74   (let ((alist riece-alias-alist))
75     (catch 'done
76       (while alist
77         (if (equal (cdr (car alist)) string)
78             (throw 'done (car (car alist))))
79         (setq alist (cdr alist)))
80       string)))
81
82 (defun riece-alias-insinuate ()
83   (setq riece-abbrev-identity-string-function
84         #'riece-alias-abbrev-identity-string
85         riece-expand-identity-string-function
86         #'riece-alias-expand-identity-string))
87
88 (provide 'riece-alias)
89
90 ;;; riece-alias.el ends here