* riece-misc.el (riece-concat-channel-topic): Don't append ":" if
[riece] / lisp / riece-identity.el
1 ;;; riece-identity.el --- an identity object
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 1998-09-28
6 ;; Keywords: IRC, riece
7
8 ;; This file is part of Riece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'riece-globals)
28 (require 'riece-coding)
29 (require 'riece-compat)                 ;riece-set-case-syntax-pair
30
31 (defvar riece-abbrev-identity-string-function nil)
32 (defvar riece-expand-identity-string-function nil)
33
34 (defvar riece-identity-prefix-case-table
35   (let ((table (copy-case-table (standard-case-table))))
36     (riece-set-case-syntax-pair ?\[ ?{ table)
37     (riece-set-case-syntax-pair ?\] ?} table)
38     (riece-set-case-syntax-pair ?\\ ?| table)
39     (riece-set-case-syntax-pair ?~ ?^ table)
40     table))
41     
42 (defun riece-identity-prefix (identity)
43   "Return the component sans its server from IDENTITY."
44   (aref identity 0))
45
46 (defun riece-identity-server (identity)
47   "Return the server component in IDENTITY."
48   (aref identity 1))
49
50 (defun riece-make-identity (prefix server)
51   "Make an identity object from PREFIX and SERVER."
52   (vector prefix server))
53
54 (defun riece-identity-equal (ident1 ident2)
55   "Return t, if IDENT1 and IDENT2 is equal."
56   (and (riece-identity-equal-no-server
57         (riece-identity-prefix ident1)
58         (riece-identity-prefix ident2))
59        (equal
60         (riece-identity-server ident1)
61         (riece-identity-server ident2))))
62
63 (defun riece-identity-canonicalize-prefix (prefix)
64   "Canonicalize identity PREFIX.
65 This function downcases PREFIX with Scandinavian alphabet rule.
66
67 RFC2812, 2.2 \"Character codes\" says:
68    Because of IRC's Scandinavian origin, the characters {}|^ are
69    considered to be the lower case equivalents of the characters []\~,
70    respectively. This is a critical issue when determining the
71    equivalence of two nicknames or channel names."
72   (let ((old-table (current-case-table)))
73     (unwind-protect
74         (progn
75           (set-case-table riece-identity-prefix-case-table)
76           (downcase prefix))
77       (set-case-table old-table))))
78
79 (defun riece-identity-equal-no-server (prefix1 prefix2)
80   "Return t, if IDENT1 and IDENT2 is equal without server."
81   (equal (riece-identity-canonicalize-prefix prefix1)
82          (riece-identity-canonicalize-prefix prefix2)))
83
84 (defun riece-identity-member (elt list)
85   "Return non-nil if an identity ELT is an element of LIST."
86   (catch 'found
87     (while list
88       (if (and (vectorp (car list))     ;needed because
89                                         ;riece-current-channels
90                                         ;contains nil.
91                (riece-identity-equal (car list) elt))
92           (throw 'found list)
93         (setq list (cdr list))))))
94
95 (defun riece-identity-assoc (elt alist)
96   "Return non-nil if an identity ELT matches the car of an element of ALIST."
97   (catch 'found
98     (while alist
99       (if (riece-identity-equal (car (car alist)) elt)
100           (throw 'found (car alist))
101         (setq alist (cdr alist))))))
102
103 (defun riece-identity-assign-binding (item list binding)
104   (let ((slot (riece-identity-member item binding))
105         pointer)
106     (unless list                        ;we need at least one room
107       (setq list (list nil)))
108     (setq pointer list)
109     (if slot
110         (while (not (eq binding slot))
111           (unless (cdr pointer)
112             (setcdr pointer (list nil)))
113           (setq pointer (cdr pointer)
114                 binding (cdr binding)))
115       (while (or (car pointer) (car binding))
116         (unless (cdr pointer)
117           (setcdr pointer (list nil)))
118         (setq pointer (cdr pointer)
119               binding (cdr binding))))
120     (setcar pointer item)
121     list))
122
123 (defun riece-format-identity (identity &optional prefix-only)
124   (let ((string
125          (if (or prefix-only
126                  (equal (riece-identity-server identity) ""))
127              (riece-identity-prefix identity)
128            (concat (riece-identity-prefix identity) " "
129                    (riece-identity-server identity)))))
130     (if riece-abbrev-identity-string-function
131         (funcall riece-abbrev-identity-string-function string)
132       string)))
133
134 (defun riece-parse-identity (string)
135   (if riece-expand-identity-string-function
136       (setq string (funcall riece-expand-identity-string-function string)))
137   (riece-make-identity (if (string-match " " string)
138                            (substring string 0 (match-beginning 0))
139                          string)
140                        (if (string-match " " string)
141                            (substring string (match-end 0))
142                          "")))
143
144 (defun riece-completing-read-identity (prompt channels
145                                               &optional predicate must-match
146                                               initial)
147   (let* ((string
148           (completing-read
149            prompt
150            (mapcar (lambda (channel)
151                      (list (riece-format-identity channel)))
152                    (delq nil (copy-sequence (or channels
153                                                 riece-current-channels))))
154            predicate must-match initial))
155          (identity
156           (riece-parse-identity string)))
157     (unless (string-match (concat "^\\(" riece-channel-regexp "\\|"
158                                   riece-user-regexp "\\)")
159                           (riece-identity-prefix identity))
160       (error "Invalid channel name!"))
161     identity))
162
163 (provide 'riece-identity)
164
165 ;;; riece-identity.el ends here