Mercurial > emacs
annotate lisp/=mhspool.el @ 789:71d052f72ac1
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Wed, 15 Jul 1992 23:29:10 +0000 |
parents | 505130d1ddf8 |
children | 203c23c9f22c |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; mhspool.el --- MH folder access using NNTP for GNU Emacs |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
87 | 3 ;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD. |
4 ;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA | |
5 ;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $ | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is distributed in the hope that it will be useful, | |
10 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
11 ;; accepts responsibility to anyone for the consequences of using it | |
12 ;; or for whether it serves any particular purpose or works at all, | |
13 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
14 ;; License for full details. | |
15 | |
16 ;; Everyone is granted permission to copy, modify and redistribute | |
17 ;; GNU Emacs, but only under the conditions described in the | |
18 ;; GNU Emacs General Public License. A copy of this license is | |
19 ;; supposed to have been given to you along with GNU Emacs so you | |
20 ;; can know your rights and responsibilities. It should be in a | |
21 ;; file named COPYING. Among other things, the copyright notice | |
22 ;; and this notice must be preserved on all copies. | |
23 | |
24 (require 'nntp) | |
25 | |
26 ;; This package enables you to read mail or articles in MH folders, or | |
27 ;; articles saved by GNUS. In any case, the file names of mail or | |
28 ;; articles must consist of only numeric letters. | |
29 | |
30 ;; Before using this package, you have to create a server specific | |
31 ;; startup file according to the directory which you want to read. For | |
32 ;; example, if you want to read mail under the directory named | |
33 ;; `~/Mail', the file must be a file named `.newsrc-:Mail'. (There is | |
34 ;; no way to specify hierarchical directory now.) In this case, the | |
35 ;; name of the NNTP server passed to GNUS must be `:Mail'. | |
36 | |
37 (defvar mhspool-list-directory-switches '("-R") | |
227 | 38 "*Switches for `nntp-request-list' to pass to `ls' for gettting file lists. |
87 | 39 One entry should appear on one line. You may need to add `-1' option.") |
40 | |
41 | |
42 | |
43 (defconst mhspool-version "MHSPOOL 1.5" | |
44 "Version numbers of this version of MHSPOOL.") | |
45 | |
46 (defvar mhspool-spool-directory "~/Mail" | |
47 "Private mail directory.") | |
48 | |
49 (defvar mhspool-current-directory nil | |
50 "Current news group directory.") | |
51 | |
52 ;;; | |
53 ;;; Replacement of Extended Command for retrieving many headers. | |
54 ;;; | |
55 | |
56 (defun mhspool-retrieve-headers (sequence) | |
57 "Return list of article headers specified by SEQUENCE of article id. | |
58 The format of list is | |
59 `([NUMBER SUBJECT FROM XREF LINES DATE MESSAGE-ID REFERENCES] ...)'. | |
60 Reader macros for the vector are defined as `nntp-header-FIELD'. | |
61 Writer macros for the vector are defined as `nntp-set-header-FIELD'. | |
62 News group must be selected before calling me." | |
63 (save-excursion | |
64 (set-buffer nntp-server-buffer) | |
65 ;;(erase-buffer) | |
66 (let ((file nil) | |
67 (number (length sequence)) | |
68 (count 0) | |
69 (headers nil) ;Result list. | |
70 (article 0) | |
71 (subject nil) | |
72 (message-id nil) | |
73 (from nil) | |
74 (xref nil) | |
75 (lines 0) | |
76 (date nil) | |
77 (references nil)) | |
78 (while sequence | |
79 ;;(nntp-send-strings-to-server "HEAD" (car sequence)) | |
80 (setq article (car sequence)) | |
81 (setq file | |
82 (concat mhspool-current-directory (prin1-to-string article))) | |
83 (if (and (file-exists-p file) | |
84 (not (file-directory-p file))) | |
85 (progn | |
86 (erase-buffer) | |
87 (insert-file-contents file) | |
88 ;; Make message body invisible. | |
89 (goto-char (point-min)) | |
90 (search-forward "\n\n" nil 'move) | |
91 (narrow-to-region (point-min) (point)) | |
92 ;; Fold continuation lines. | |
93 (goto-char (point-min)) | |
94 (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t) | |
95 (replace-match " " t t)) | |
96 ;; Make it possible to search for `\nFIELD'. | |
97 (goto-char (point-min)) | |
98 (insert "\n") | |
99 ;; Extract From: | |
100 (goto-char (point-min)) | |
101 (if (search-forward "\nFrom: " nil t) | |
102 (setq from (buffer-substring | |
103 (point) | |
104 (save-excursion (end-of-line) (point)))) | |
105 (setq from "(Unknown User)")) | |
106 ;; Extract Subject: | |
107 (goto-char (point-min)) | |
108 (if (search-forward "\nSubject: " nil t) | |
109 (setq subject (buffer-substring | |
110 (point) | |
111 (save-excursion (end-of-line) (point)))) | |
112 (setq subject "(None)")) | |
113 ;; Extract Message-ID: | |
114 (goto-char (point-min)) | |
115 (if (search-forward "\nMessage-ID: " nil t) | |
116 (setq message-id (buffer-substring | |
117 (point) | |
118 (save-excursion (end-of-line) (point)))) | |
119 (setq message-id nil)) | |
120 ;; Extract Date: | |
121 (goto-char (point-min)) | |
122 (if (search-forward "\nDate: " nil t) | |
123 (setq date (buffer-substring | |
124 (point) | |
125 (save-excursion (end-of-line) (point)))) | |
126 (setq date nil)) | |
127 ;; Extract Lines: | |
128 (goto-char (point-min)) | |
129 (if (search-forward "\nLines: " nil t) | |
130 (setq lines (string-to-int | |
131 (buffer-substring | |
132 (point) | |
133 (save-excursion (end-of-line) (point))))) | |
134 (setq lines 0)) | |
135 ;; Extract Xref: | |
136 (goto-char (point-min)) | |
137 (if (search-forward "\nXref: " nil t) | |
138 (setq xref (buffer-substring | |
139 (point) | |
140 (save-excursion (end-of-line) (point)))) | |
141 (setq xref nil)) | |
142 ;; Extract References: | |
143 ;; If no References: field, use In-Reply-To: field instead. | |
144 ;; Suggested by tanaka@flab.fujitsu.co.jp (Hiroshi TANAKA). | |
145 (goto-char (point-min)) | |
146 (if (or (search-forward "\nReferences: " nil t) | |
147 (search-forward "\nIn-Reply-To: " nil t)) | |
148 (setq references (buffer-substring | |
149 (point) | |
150 (save-excursion (end-of-line) (point)))) | |
151 (setq references nil)) | |
152 (setq headers | |
153 (cons (vector article subject from | |
154 xref lines date | |
155 message-id references) headers)) | |
156 )) | |
157 (setq sequence (cdr sequence)) | |
158 (setq count (1+ count)) | |
159 (and (numberp nntp-large-newsgroup) | |
160 (> number nntp-large-newsgroup) | |
161 (zerop (% count 20)) | |
162 (message "MHSPOOL: %d%% of headers received." | |
163 (/ (* count 100) number))) | |
164 ) | |
165 (and (numberp nntp-large-newsgroup) | |
166 (> number nntp-large-newsgroup) | |
167 (message "MHSPOOL: 100%% of headers received.")) | |
168 (nreverse headers) | |
169 ))) | |
170 | |
171 | |
172 ;;; | |
173 ;;; Replacement of NNTP Raw Interface. | |
174 ;;; | |
175 | |
176 (defun mhspool-open-server (host &optional service) | |
177 "Open news server on HOST. | |
178 If HOST is nil, use value of environment variable `NNTPSERVER'. | |
179 If optional argument SERVICE is non-nil, open by the service name." | |
180 (let ((host (or host (getenv "NNTPSERVER"))) | |
181 (status nil)) | |
182 ;; Get directory name from HOST name. | |
183 (if (string-match ":\\(.+\\)$" host) | |
184 (progn | |
185 (setq mhspool-spool-directory | |
186 (file-name-as-directory | |
187 (expand-file-name | |
188 (substring host (match-beginning 1) (match-end 1)) | |
189 (expand-file-name "~/" nil)))) | |
190 (setq host (system-name))) | |
191 (setq mhspool-spool-directory nil)) | |
192 (setq nntp-status-message-string "") | |
193 (cond ((and (stringp host) | |
194 (stringp mhspool-spool-directory) | |
195 (file-directory-p mhspool-spool-directory) | |
196 (string-equal host (system-name))) | |
197 (setq status (mhspool-open-server-internal host service))) | |
198 ((string-equal host (system-name)) | |
199 (setq nntp-status-message-string | |
200 (format "No such directory: %s. Goodbye." | |
201 mhspool-spool-directory))) | |
202 ((null host) | |
203 (setq nntp-status-message-string "NNTP server is not specified.")) | |
204 (t | |
205 (setq nntp-status-message-string | |
206 (format "MHSPOOL: cannot talk to %s." host))) | |
207 ) | |
208 status | |
209 )) | |
210 | |
211 (defun mhspool-close-server () | |
212 "Close news server." | |
213 (mhspool-close-server-internal)) | |
214 | |
215 (fset 'mhspool-request-quit (symbol-function 'mhspool-close-server)) | |
216 | |
217 (defun mhspool-server-opened () | |
218 "Return server process status, T or NIL. | |
219 If the stream is opened, return T, otherwise return NIL." | |
220 (and nntp-server-buffer | |
221 (get-buffer nntp-server-buffer))) | |
222 | |
223 (defun mhspool-status-message () | |
224 "Return server status response as string." | |
225 nntp-status-message-string | |
226 ) | |
227 | |
228 (defun mhspool-request-article (id) | |
229 "Select article by message ID (or number)." | |
230 (let ((file (concat mhspool-current-directory (prin1-to-string id)))) | |
231 (if (and (stringp file) | |
232 (file-exists-p file) | |
233 (not (file-directory-p file))) | |
234 (save-excursion | |
235 (mhspool-find-file file))) | |
236 )) | |
237 | |
238 (defun mhspool-request-body (id) | |
239 "Select article body by message ID (or number)." | |
240 (if (mhspool-request-article id) | |
241 (save-excursion | |
242 (set-buffer nntp-server-buffer) | |
243 (goto-char (point-min)) | |
244 (if (search-forward "\n\n" nil t) | |
245 (delete-region (point-min) (point))) | |
246 t | |
247 ) | |
248 )) | |
249 | |
250 (defun mhspool-request-head (id) | |
251 "Select article head by message ID (or number)." | |
252 (if (mhspool-request-article id) | |
253 (save-excursion | |
254 (set-buffer nntp-server-buffer) | |
255 (goto-char (point-min)) | |
256 (if (search-forward "\n\n" nil t) | |
257 (delete-region (1- (point)) (point-max))) | |
258 t | |
259 ) | |
260 )) | |
261 | |
262 (defun mhspool-request-stat (id) | |
263 "Select article by message ID (or number)." | |
264 (error "MHSPOOL: STAT is not implemented.")) | |
265 | |
266 (defun mhspool-request-group (group) | |
267 "Select news GROUP." | |
268 (cond ((file-directory-p | |
269 (mhspool-article-pathname group)) | |
270 ;; Mail/NEWS.GROUP/N | |
271 (setq mhspool-current-directory | |
272 (mhspool-article-pathname group))) | |
273 ((file-directory-p | |
274 (mhspool-article-pathname | |
275 (mhspool-replace-chars-in-string group ?. ?/))) | |
276 ;; Mail/NEWS/GROUP/N | |
277 (setq mhspool-current-directory | |
278 (mhspool-article-pathname | |
279 (mhspool-replace-chars-in-string group ?. ?/)))) | |
280 )) | |
281 | |
282 (defun mhspool-request-list () | |
283 "List valid newsgoups." | |
284 (save-excursion | |
285 (let* ((newsgroup nil) | |
286 (articles nil) | |
287 (directory (file-name-as-directory | |
288 (expand-file-name mhspool-spool-directory nil))) | |
289 (folder-regexp (concat "^" (regexp-quote directory) "\\(.+\\):$")) | |
290 (buffer (get-buffer-create " *GNUS file listing*"))) | |
291 (set-buffer nntp-server-buffer) | |
292 (erase-buffer) | |
293 (set-buffer buffer) | |
294 (erase-buffer) | |
295 (apply 'call-process | |
296 "ls" nil t nil | |
297 (append mhspool-list-directory-switches (list directory))) | |
298 (goto-char (point-min)) | |
299 (while (re-search-forward folder-regexp nil t) | |
300 (setq newsgroup | |
301 (mhspool-replace-chars-in-string | |
302 (buffer-substring (match-beginning 1) (match-end 1)) ?/ ?.)) | |
303 (setq articles nil) | |
304 (forward-line 1) ;(beginning-of-line) | |
305 ;; Thank nobu@flab.fujitsu.junet for his bug fixes. | |
306 (while (and (not (eobp)) | |
307 (not (looking-at "^$"))) | |
308 (if (looking-at "^[0-9]+$") | |
309 (setq articles | |
310 (cons (string-to-int | |
311 (buffer-substring | |
312 (match-beginning 0) (match-end 0))) | |
313 articles))) | |
314 (forward-line 1)) | |
315 (if articles | |
316 (princ (format "%s %d %d n\n" newsgroup | |
317 (apply (function max) articles) | |
318 (apply (function min) articles)) | |
319 nntp-server-buffer)) | |
320 ) | |
321 (kill-buffer buffer) | |
322 (set-buffer nntp-server-buffer) | |
323 (buffer-size) | |
324 ))) | |
325 | |
326 (defun mhspool-request-last () | |
227 | 327 "Set current article pointer to the previous article in the current newsgroup." |
87 | 328 (error "MHSPOOL: LAST is not implemented.")) |
329 | |
330 (defun mhspool-request-next () | |
331 "Advance current article pointer." | |
332 (error "MHSPOOL: NEXT is not implemented.")) | |
333 | |
334 (defun mhspool-request-post () | |
335 "Post a new news in current buffer." | |
336 (setq nntp-status-message-string "MHSPOOL: what do you mean post?") | |
337 nil | |
338 ) | |
339 | |
340 | |
341 ;;; | |
342 ;;; Replacement of Low-Level Interface to NNTP Server. | |
343 ;;; | |
344 | |
345 (defun mhspool-open-server-internal (host &optional service) | |
346 "Open connection to news server on HOST by SERVICE (default is nntp)." | |
347 (save-excursion | |
348 (if (not (string-equal host (system-name))) | |
349 (error "MHSPOOL: cannot talk to %s." host)) | |
350 ;; Initialize communication buffer. | |
351 (setq nntp-server-buffer (get-buffer-create " *nntpd*")) | |
352 (set-buffer nntp-server-buffer) | |
353 (buffer-flush-undo (current-buffer)) | |
354 (erase-buffer) | |
355 (kill-all-local-variables) | |
356 (setq case-fold-search t) ;Should ignore case. | |
357 (setq nntp-server-process nil) | |
358 (setq nntp-server-name host) | |
359 ;; It is possible to change kanji-fileio-code in this hook. | |
360 (run-hooks 'nntp-server-hook) | |
361 t | |
362 )) | |
363 | |
364 (defun mhspool-close-server-internal () | |
365 "Close connection to news server." | |
366 (if nntp-server-buffer | |
367 (kill-buffer nntp-server-buffer)) | |
368 (setq nntp-server-buffer nil) | |
369 (setq nntp-server-process nil)) | |
370 | |
371 (defun mhspool-find-file (file) | |
372 "Insert FILE in server buffer safely." | |
373 (set-buffer nntp-server-buffer) | |
374 (erase-buffer) | |
375 (condition-case () | |
376 (progn | |
377 (insert-file-contents file) | |
378 (goto-char (point-min)) | |
379 ;; If there is no body, `^L' appears at end of file. Special | |
380 ;; hack for MH folder. | |
381 (and (search-forward "\n\n" nil t) | |
382 (string-equal (buffer-substring (point) (point-max)) "\^L") | |
383 (delete-char 1)) | |
384 t | |
385 ) | |
386 (file-error nil) | |
387 )) | |
388 | |
389 (defun mhspool-article-pathname (group) | |
390 "Make pathname for GROUP." | |
391 (concat (file-name-as-directory mhspool-spool-directory) group "/")) | |
392 | |
393 (defun mhspool-replace-chars-in-string (string from to) | |
394 "Replace characters in STRING from FROM to TO." | |
395 (let ((string (substring string 0)) ;Copy string. | |
396 (len (length string)) | |
397 (idx 0)) | |
398 ;; Replace all occurence of FROM with TO. | |
399 (while (< idx len) | |
400 (if (= (aref string idx) from) | |
401 (aset string idx to)) | |
402 (setq idx (1+ idx))) | |
403 string | |
404 )) | |
584 | 405 |
406 (provide 'mhspool) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
407 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
408 ;;; mhspool.el ends here |