annotate lisp/gnus/nnoo.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents e04119814345
children 0d2f883870bc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; nnoo.el --- OO Gnus Backends
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
2 ;; Copyright (C) 1996 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
28 (eval-when-compile (require 'cl))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (defvar nnoo-definition-alist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (defvar nnoo-state-alist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (defmacro defvoo (var init &optional doc &rest map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 "The same as `defvar', only takes list of variables to MAP to."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 `(prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ,(if doc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 `(defvar ,var ,init ,doc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 `(defvar ,var ,init))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (nnoo-define ',var ',map)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (put 'defvoo 'lisp-indent-function 2)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
41 (put 'defvoo 'lisp-indent-hook 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (put 'defvoo 'edebug-form-spec '(var init &optional doc &rest map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (defmacro deffoo (func args &rest forms)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 "The same as `defun', only register FUNC."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 `(prog1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defun ,func ,args ,@forms)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (nnoo-register-function ',func)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (put 'deffoo 'lisp-indent-function 2)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
50 (put 'deffoo 'lisp-indent-hook 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (put 'deffoo 'edebug-form-spec '(&define name lambda-list def-body))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defun nnoo-register-function (func)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
54 (let ((funcs (nthcdr 3 (assoc (nnoo-backend func)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 nnoo-definition-alist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (unless funcs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (error "%s belongs to a backend that hasn't been declared" func))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (setcar funcs (cons func (car funcs)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (defmacro nnoo-declare (backend &rest parents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 `(eval-and-compile
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
62 (push (list ',backend
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (mapcar (lambda (p) (list p)) ',parents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 nil nil)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
65 nnoo-definition-alist)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (put 'nnoo-declare 'lisp-indent-function 1)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
67 (put 'nnoo-declare 'lisp-indent-hook 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (defun nnoo-parents (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (nth 1 (assoc backend nnoo-definition-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (defun nnoo-variables (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (nth 2 (assoc backend nnoo-definition-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (defun nnoo-functions (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (nth 3 (assoc backend nnoo-definition-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (defmacro nnoo-import (backend &rest imports)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 `(nnoo-import-1 ',backend ',imports))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (put 'nnoo-import 'lisp-indent-function 1)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
81 (put 'nnoo-import 'lisp-indent-hook 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defun nnoo-import-1 (backend imports)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (let ((call-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (if (symbolp (car imports)) (pop imports) 'nnoo-parent-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 imp functions function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (while (setq imp (pop imports))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (setq functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (or (cdr imp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (nnoo-functions (car imp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (while functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (unless (fboundp (setq function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (nnoo-symbol backend (nnoo-rest-symbol
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
94 (car functions)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (eval `(deffoo ,function (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (,call-function ',backend ',(car functions) args))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (pop functions)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defun nnoo-parent-function (backend function args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (let* ((pbackend (nnoo-backend function)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (nnoo-change-server pbackend (nnoo-current-server backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (cdr (assq pbackend (nnoo-parents backend))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (apply function args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (defun nnoo-execute (backend function &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "Execute FUNCTION on behalf of BACKEND."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (let* ((pbackend (nnoo-backend function)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (nnoo-change-server pbackend (nnoo-current-server backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (cdr (assq pbackend (nnoo-parents backend))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (apply function args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (defmacro nnoo-map-functions (backend &rest maps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 `(nnoo-map-functions-1 ',backend ',maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (put 'nnoo-map-functions 'lisp-indent-function 1)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
115 (put 'nnoo-map-functions 'lisp-indent-hook 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (defun nnoo-map-functions-1 (backend maps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (let (m margs i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (while (setq m (pop maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (setq i 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 margs nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (while (< i (length (cdr m)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (if (numberp (nth i (cdr m)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (push `(nth ,i args) margs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (push (nth i (cdr m)) margs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (incf i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (eval `(deffoo ,(nnoo-symbol backend (nnoo-rest-symbol (car m)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (&rest args)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
129 (nnoo-parent-function ',backend ',(car m)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 ,(cons 'list (nreverse margs))))))))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
131
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (defun nnoo-backend (symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (string-match "^[^-]+-" (symbol-name symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (intern (substring (symbol-name symbol) 0 (1- (match-end 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (defun nnoo-rest-symbol (symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (string-match "^[^-]+-" (symbol-name symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (intern (substring (symbol-name symbol) (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (defun nnoo-symbol (backend symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (intern (format "%s-%s" backend symbol)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (defun nnoo-define (var map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (let* ((backend (nnoo-backend var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (def (assq backend nnoo-definition-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (parents (nth 1 def)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (unless def
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (error "%s belongs to a backend that hasn't been declared." var))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
149 (setcar (nthcdr 2 def)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (delq (assq var (nth 2 def)) (nth 2 def)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (setcar (nthcdr 2 def)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (cons (cons var (symbol-value var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (nth 2 def)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (while map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (nconc (assq (nnoo-backend (car map)) parents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (list (list (pop map) var))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (defun nnoo-change-server (backend server defs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (let* ((bstate (cdr (assq backend nnoo-state-alist)))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
160 (sdefs (assq backend nnoo-definition-alist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (current (car bstate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (parents (nnoo-parents backend))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
163 state)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (unless bstate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (push (setq bstate (list backend nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 nnoo-state-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (pop bstate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (if (equal server current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (nnoo-push-server backend current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (setq state (or (cdr (assoc server (cddr bstate)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (nnoo-variables backend)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (while state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (set (caar state) (cdar state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (pop state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (setcar bstate server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (unless (cdr (assoc server (cddr bstate)))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
178 (while defs
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
179 (set (caar defs) (cadar defs))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
180 (pop defs)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (while parents
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
182 (nnoo-change-server
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
183 (caar parents) server
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (mapcar (lambda (def) (list (car def) (symbol-value (cadr def))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (cdar parents)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (pop parents))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (defun nnoo-push-server (backend current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (let ((bstate (assq backend nnoo-state-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defs (nnoo-variables backend)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 ;; Remove the old definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (setcdr (cdr bstate) (delq (assoc current (cddr bstate)) (cddr bstate)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (let (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (while defs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (push (cons (caar defs) (symbol-value (caar defs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (pop defs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (nconc bstate (list (cons current state))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
201 (defun nnoo-current-server-p (backend server)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (equal (nnoo-current-server backend) server))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (defun nnoo-current-server (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (nth 1 (assq backend nnoo-state-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (defun nnoo-close-server (backend &optional server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (unless server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (setq server (nnoo-current-server backend)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (when server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (let* ((bstate (cdr (assq backend nnoo-state-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (defs (assoc server (cdr bstate))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (when bstate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (setcar bstate nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (setcdr bstate (delq defs (cdr bstate)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (pop defs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (while defs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (set (car (pop defs)) nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (defun nnoo-close (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (setq nnoo-state-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (delq (assq backend nnoo-state-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 nnoo-state-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (defun nnoo-status-message (backend server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (nnheader-get-report backend))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (defun nnoo-server-opened (backend server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (and (nnoo-current-server-p backend server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 nntp-server-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (buffer-name nntp-server-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (defmacro nnoo-define-basics (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 `(eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (nnoo-define-basics-1 ',backend)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (defun nnoo-define-basics-1 (backend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (let ((functions '(close-server server-opened status-message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (while functions
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
242 (eval `(deffoo ,(nnoo-symbol backend (car functions))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (&optional server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (,(nnoo-symbol 'nnoo (pop functions)) ',backend server)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (eval `(deffoo ,(nnoo-symbol backend 'open-server)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (server &optional defs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (nnoo-change-server ',backend server defs))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (provide 'nnoo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;;; nnoo.el ends here.