1 ;;; wl-thread.el --- Thread display modules for Wanderlust.
3 ;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
4 ;; Copyright (C) 1998,1999,2000 Masahiro MURATA <muse@ba2.so-net.ne.jp>
6 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
7 ;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
8 ;; Keywords: mail, net news
10 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
35 (require 'wl-highlight
)
36 (eval-when-compile (require 'cl
))
38 ;; buffer local variables.
39 ;;(defvar wl-thread-top-entity '(nil t nil nil)) ; top entity
40 (defvar wl-thread-tops nil
) ; top number list (number)
41 (defvar wl-thread-entities nil
)
42 (defvar wl-thread-entity-list nil
) ; entity list
43 (defvar wl-thread-entity-hashtb nil
) ; obarray
45 (make-variable-buffer-local 'wl-thread-entity-hashtb
)
46 (make-variable-buffer-local 'wl-thread-entities
) ; ".wl-thread-entity"
47 (make-variable-buffer-local 'wl-thread-entity-list
) ; ".wl-thread-entity-list"
50 (defvar wl-thread-insert-force-opened nil
)
52 ;;;;;; each entity is (number opened-or-not children parent) ;;;;;;;
54 (defun wl-thread-resume-entity (fld)
55 (let (entities top-list
)
56 (setq entities
(wl-summary-load-file-object
57 (expand-file-name wl-thread-entity-file
58 (elmo-folder-msgdb-path fld
))))
60 (wl-summary-load-file-object
61 (expand-file-name wl-thread-entity-list-file
62 (elmo-folder-msgdb-path fld
))))
63 (message "Resuming thread structure...")
65 (setq wl-thread-entity-hashtb
(elmo-make-hash (* (length entities
) 2)))
66 ;; set buffer local variables.
67 (setq wl-thread-entities entities
)
68 (setq wl-thread-entity-list top-list
)
70 (elmo-set-hash-val (format "#%d" (car (car entities
))) (car entities
)
71 wl-thread-entity-hashtb
)
72 (setq entities
(cdr entities
)))
73 (wl-thread-make-number-list)
74 (message "Resuming thread structure...done")))
76 (defun wl-thread-make-number-list ()
77 "Make `wl-summary-buffer-number-list', a list of message numbers."
78 (let* ((node (wl-thread-get-entity (car wl-thread-entity-list
)))
79 (children (wl-thread-entity-get-children node
))
81 (setq wl-summary-buffer-number-list
(list (car wl-thread-entity-list
)))
83 (wl-thread-entity-make-number-list-from-children
84 (wl-thread-get-entity (car children
)))
85 (setq children
(cdr children
)))
87 (setq parent
(wl-thread-entity-get-parent-entity node
)
88 sibling
(wl-thread-entity-get-younger-brothers
91 (wl-thread-entity-make-number-list-from-children
92 (wl-thread-get-entity (car sibling
)))
93 (setq sibling
(cdr sibling
)))
95 (setq wl-summary-buffer-number-list
(nreverse
96 wl-summary-buffer-number-list
))))
98 (defun wl-thread-entity-make-number-list-from-children (entity)
99 (let ((msgs (list (car entity
)))
102 (setq wl-summary-buffer-number-list
(cons (car entity
)
103 wl-summary-buffer-number-list
))
104 (setq msgs
(cdr msgs
))
105 (setq children
(wl-thread-entity-get-children entity
))
108 (wl-push msgs msgs-stack
)
109 (setq msgs children
))
111 (while (and (null msgs
) msgs-stack
)
112 (setq msgs
(wl-pop msgs-stack
)))))
113 (setq entity
(wl-thread-get-entity (car msgs
))))))
115 (defun wl-thread-save-entity (dir)
116 (wl-thread-save-entities dir
)
117 (wl-thread-save-top-list dir
))
119 (defun wl-thread-save-top-list (dir)
120 (let ((top-file (expand-file-name wl-thread-entity-list-file dir
))
121 (entity wl-thread-entity-list
)
124 (when (file-writable-p top-file
)
125 (prin1 entity
(current-buffer))
126 (princ "\n" (current-buffer))
127 (write-region (point-min) (point-max) top-file nil
'no-msg
)))))
129 (defun wl-thread-save-entities (dir)
130 (let ((top-file (expand-file-name wl-thread-entity-file dir
))
131 (entities wl-thread-entities
)
132 print-length print-level
)
134 (when (file-writable-p top-file
)
135 (prin1 entities
(current-buffer))
136 (princ "\n" (current-buffer))
137 (write-region (point-min) (point-max) top-file nil
'no-msg
)))))
139 (defsubst wl-thread-entity-get-number
(entity)
141 (defsubst wl-thread-entity-get-opened
(entity)
143 (defsubst wl-thread-entity-get-children
(entity)
145 (defsubst wl-thread-entity-get-parent
(entity)
147 (defsubst wl-thread-entity-get-linked
(entity)
150 (defsubst wl-thread-create-entity
(num parent
&optional opened linked
)
151 (list num
(or opened wl-thread-insert-opened
) nil parent linked
))
153 (defsubst wl-thread-get-entity
(num)
155 (elmo-get-hash-val (format "#%d" num
) wl-thread-entity-hashtb
)))
157 (defsubst wl-thread-entity-set-parent
(entity parent
)
158 (setcar (cdddr entity
) parent
)
161 (defsubst wl-thread-entity-set-children
(entity children
)
162 (setcar (cddr entity
) children
))
164 (defsubst wl-thread-entity-set-linked
(entity linked
)
166 (setcar (cddddr entity
) linked
)
167 (nconc entity
(list linked
)))
170 (defsubst wl-thread-reparent-children
(children parent
)
172 (wl-thread-entity-set-parent
173 (wl-thread-get-entity (car children
)) parent
)
174 (wl-thread-entity-set-linked
175 (wl-thread-get-entity (car children
)) t
)
176 (setq children
(cdr children
))))
178 (defsubst wl-thread-entity-insert-as-top
(entity)
181 (wl-append wl-thread-entity-list
(list (car entity
)))
182 (setq wl-thread-entities
(cons entity wl-thread-entities
))
183 (setq wl-summary-buffer-number-list
184 (nconc wl-summary-buffer-number-list
(list (car entity
))))
185 (elmo-set-hash-val (format "#%d" (car entity
)) entity
186 wl-thread-entity-hashtb
)))
188 (defsubst wl-thread-entity-insert-as-children
(to entity
)
189 (let ((children (wl-thread-entity-get-children to
))
192 (elmo-list-insert wl-summary-buffer-number-list
193 (wl-thread-entity-get-number entity
)
196 (wl-thread-entity-get-children curp
))
197 (setq curp
(wl-thread-get-entity
198 (nth (- (length curc
) 1)
200 (wl-thread-entity-get-number curp
)))
201 (wl-thread-entity-set-children to
(wl-append children
(list (car entity
))))
202 (setq wl-thread-entities
(cons entity wl-thread-entities
))
203 (elmo-set-hash-val (format "#%d" (car entity
)) entity
204 wl-thread-entity-hashtb
)))
206 (defsubst wl-thread-entity-set-opened
(entity opened
)
207 (setcar (cdr entity
) opened
))
209 (defsubst wl-thread-entity-get-children-num
(entity)
212 (msgs (list (car entity
))))
214 (setq msgs
(cdr msgs
))
215 (setq children
(wl-thread-entity-get-children entity
))
217 (while (and (null msgs
) msgs-stack
)
218 (setq msgs
(wl-pop msgs-stack
)))
219 (setq ret-val
(+ (or ret-val
0) (length children
)))
220 (wl-push msgs msgs-stack
)
221 (setq msgs children
))
222 (setq entity
(wl-thread-get-entity (car msgs
))))
225 (defun wl-thread-entity-get-descendant (entity)
228 (msgs (list (car entity
))))
230 (setq msgs
(cdr msgs
))
231 (setq children
(wl-thread-entity-get-children entity
))
233 (while (and (null msgs
) msgs-stack
)
234 (setq msgs
(wl-pop msgs-stack
)))
235 (setq ret-val
(nconc ret-val
(copy-sequence children
)))
236 (wl-push msgs msgs-stack
)
237 (setq msgs children
))
238 (setq entity
(wl-thread-get-entity (car msgs
))))
241 (defsubst wl-thread-entity-get-parent-entity
(entity)
242 (wl-thread-get-entity (wl-thread-entity-get-parent entity
)))
244 (defun wl-thread-entity-get-top-entity (entity)
245 (let ((cur-entity entity
)
247 (while (setq p-num
(wl-thread-entity-get-parent cur-entity
))
248 (setq cur-entity
(wl-thread-get-entity p-num
)))
251 (defun wl-thread-entity-parent-invisible-p (entity)
252 "If parent of ENTITY is invisible, the top invisible ancestor entity of
254 (let ((cur-entity entity
)
257 (while (setq cur-entity
(wl-thread-entity-get-parent-entity
259 (if (null (wl-thread-entity-get-number cur-entity
))
261 (when (not (wl-thread-entity-get-opened cur-entity
))
262 (setq top cur-entity
)))))
265 (defun wl-thread-entity-get-nearly-older-brother (entity &optional parent
)
266 (let ((brothers (wl-thread-entity-get-older-brothers entity parent
)))
268 (car (last brothers
)))))
270 (defun wl-thread-entity-get-older-brothers (entity &optional parent
)
271 (let ((parent (or parent
272 (wl-thread-entity-get-parent-entity entity
)))
275 (setq brothers
(wl-thread-entity-get-children parent
))
276 (setq brothers wl-thread-entity-list
))
278 (not (eq (wl-thread-entity-get-number entity
)
280 (wl-append ret-val
(list (car brothers
)))
281 (setq brothers
(cdr brothers
)))
284 (defun wl-thread-entity-get-younger-brothers (entity &optional parent
)
285 (let* ((parent (or parent
286 (wl-thread-entity-get-parent-entity entity
)))
287 (brothers (wl-thread-entity-get-children parent
)))
289 (cdr (memq (wl-thread-entity-get-number entity
)
292 (cdr (memq (car entity
) wl-thread-entity-list
)))))
294 (defun wl-thread-jump-to-msg (&optional number
)
295 "Jump to the message with specified number in the current summary."
297 (let ((num (or number
299 (read-from-minibuffer "Jump to Message(No.): ")))))
300 (wl-thread-entity-force-open (wl-thread-get-entity num
))
301 (wl-summary-jump-to-msg num
)))
303 (defun wl-thread-close-all ()
304 "Close all top threads."
306 (elmo-with-progress-display
307 (wl-thread-close-all (length wl-thread-entity-list
))
308 "Closing all threads"
310 (dolist (entity wl-thread-entity-list
)
311 (when (and (wl-thread-entity-get-opened (wl-thread-get-entity
313 (wl-thread-entity-get-children (wl-thread-get-entity
315 (wl-summary-jump-to-msg entity
)
316 (wl-thread-open-close))
317 (elmo-progress-notify 'wl-thread-close-all
)))))
319 (defun wl-thread-open-all ()
322 (elmo-with-progress-display
323 (wl-thread-open-all (count-lines (point-min) (point-max)))
324 "Opening all threads"
326 (goto-char (point-min))
328 (if (wl-thread-entity-get-opened
329 (wl-thread-get-entity (wl-summary-message-number)))
331 (wl-thread-force-open)
332 (wl-thread-goto-bottom-of-sub-thread))
333 (elmo-progress-notify 'wl-thread-open-all
)))))
335 (defun wl-thread-open-all-unread ()
337 (dolist (number (elmo-folder-list-flagged wl-summary-buffer-elmo-folder
339 (wl-thread-entity-force-open (wl-thread-get-entity number
))))
341 (defsubst wl-thread-maybe-get-children-num
(msg)
342 (let ((entity (wl-thread-get-entity msg
)))
343 (if (not (wl-thread-entity-get-opened entity
))
344 (wl-thread-entity-get-children-num entity
))))
346 (defsubst wl-thread-update-line-on-buffer-sub
(entity msg
&optional parent-msg
)
347 (let* ((entity (or entity
(wl-thread-get-entity msg
)))
348 (parent-msg (or parent-msg
(wl-thread-entity-get-parent entity
)))
349 (buffer-read-only nil
)
350 (inhibit-read-only t
)
351 message-entity temp-mark summary-line invisible-top
)
352 (if (wl-thread-delete-line-from-buffer msg
)
355 ((memq msg wl-summary-buffer-target-mark-list
)
356 (setq temp-mark
"*"))
357 ((setq temp-mark
(wl-summary-registered-temp-mark msg
))
358 (setq temp-mark
(nth 1 temp-mark
)))
359 (t (setq temp-mark
(wl-summary-get-score-mark msg
))))
360 (when (setq message-entity
361 (elmo-message-entity wl-summary-buffer-elmo-folder
363 (wl-summary-insert-line
364 (wl-summary-create-line
366 (elmo-message-entity wl-summary-buffer-elmo-folder
369 (elmo-message-status wl-summary-buffer-elmo-folder msg
)
370 (if wl-thread-insert-force-opened
372 (wl-thread-maybe-get-children-num msg
))
373 (wl-thread-make-indent-string entity
)
374 (wl-thread-entity-get-linked entity
)))))
375 ;; insert thread (moving thread)
376 (if (not (setq invisible-top
377 (wl-thread-entity-parent-invisible-p entity
)))
378 (wl-summary-update-thread
379 (elmo-message-entity wl-summary-buffer-elmo-folder msg
)
382 (elmo-message-entity wl-summary-buffer-elmo-folder
384 ;; currently invisible.. update closed line.
385 (wl-thread-update-children-number invisible-top
)))))
387 (defun wl-thread-update-line-on-buffer (&optional msg parent-msg updates
)
389 (let ((msgs (list (or msg
(wl-summary-message-number))))
390 entity children msgs-stack
)
392 (setq msg
(wl-pop msgs
))
393 (setq updates
(and updates
(delete msg updates
)))
394 (setq entity
(wl-thread-get-entity msg
))
395 (wl-thread-update-line-on-buffer-sub entity msg parent-msg
)
397 (setq children
(wl-thread-entity-get-children entity
))
400 (when (wl-thread-entity-get-opened entity
)
401 (wl-push msgs msgs-stack
)
405 (while (and (null msgs
) msgs-stack
)
406 (setq msgs
(wl-pop msgs-stack
)))
409 (wl-thread-entity-get-number
410 (wl-thread-entity-get-parent-entity
411 (wl-thread-get-entity (car msgs
)))))))))
414 (defun wl-thread-update-line-msgs (msgs)
415 (wl-delete-all-overlays)
416 (dolist (message msgs
)
417 (wl-thread-update-line-on-buffer-sub nil message
)
418 (elmo-progress-notify 'wl-thread-update-line
)))
420 (defun wl-thread-delete-line-from-buffer (msg)
421 "Simply delete msg line."
423 (if (wl-summary-jump-to-msg msg
)
427 (delete-region beg
(point))
431 (defun wl-thread-cleanup-symbols (msgs)
434 (when (setq entity
(wl-thread-get-entity (car msgs
)))
436 (setq wl-thread-entities
(delq entity wl-thread-entities
))
438 (elmo-clear-hash-val (format "#%d" (car msgs
))
439 wl-thread-entity-hashtb
))
440 (setq msgs
(cdr msgs
)))))
442 (defun wl-thread-get-exist-children (msg &optional include-self
)
443 (let ((msgs (list msg
))
447 (setq children
(wl-thread-entity-get-children
448 (setq entity
(wl-thread-get-entity (car msgs
)))))
449 (when (elmo-message-entity wl-summary-buffer-elmo-folder
(car msgs
))
450 (wl-append ret-val
(list (car msgs
)))
452 (setq msgs
(cdr msgs
))
454 (while (and (null msgs
) msgs-stack
)
455 (setq msgs
(wl-pop msgs-stack
)))
456 (wl-push msgs msgs-stack
)
457 (setq msgs children
)))
458 (unless include-self
(setq ret-val
(delq msg ret-val
)))
461 (defun wl-thread-delete-message (msg &optional deep update
)
462 "Delete MSG from entity and buffer."
464 (let ((entity (wl-thread-get-entity msg
))
465 top-child top-entity update-msgs invisible-top
)
466 (setq wl-summary-buffer-number-list
467 (delq msg wl-summary-buffer-number-list
))
470 (setq wl-summary-buffer-number-list
472 (wl-thread-entity-get-descendant entity
)
473 wl-summary-buffer-number-list
475 (let ((parent (wl-thread-entity-get-parent-entity entity
)))
479 (older-brothers (wl-thread-entity-get-older-brothers
481 (younger-brothers (wl-thread-entity-get-younger-brothers
484 (setq children
(wl-thread-entity-get-children entity
))
485 (wl-thread-reparent-children
486 children
(wl-thread-entity-get-number parent
))
488 (apply (function nconc
)
493 (wl-thread-get-children-msgs message t
)))
495 (wl-thread-entity-set-children
496 parent
(append older-brothers children younger-brothers
))
497 ;; If chidren and younger-brothers do not exist,
498 ;; update nearly older brother.
499 (when (and older-brothers
500 (not younger-brothers
)
504 (wl-thread-get-children-msgs (car (last older-brothers
))))))
505 ;; top...oldest child becomes top.
507 (let ((children (wl-thread-entity-get-children entity
)))
509 (setq top-child
(car children
)
510 children
(cdr children
))
511 (setq top-entity
(wl-thread-get-entity top-child
))
512 (wl-thread-entity-set-parent top-entity nil
)
513 (wl-thread-entity-set-linked top-entity nil
)
514 (wl-append update-msgs
515 (wl-thread-get-children-msgs top-child t
)))
517 (wl-thread-entity-set-children
520 (wl-thread-entity-get-children top-entity
)
522 (wl-thread-reparent-children children top-child
)
523 (wl-append update-msgs children
))))
524 ;; delete myself from top list.
525 (let ((match (memq msg wl-thread-entity-list
)))
528 (setcar match top-child
)
529 (setq wl-thread-entity-list
530 (delq msg wl-thread-entity-list
))))))))
533 ;; delete thread on buffer
534 (when (wl-summary-jump-to-msg msg
)
536 (wl-thread-goto-bottom-of-sub-thread)
537 (delete-region beg
(point))))
538 ;; delete myself from buffer.
539 (unless (wl-thread-delete-line-from-buffer msg
)
540 ;; jump to suitable point.
541 ;; just upon the oldest younger-brother of my top.
543 (car (wl-thread-entity-parent-invisible-p entity
)))
546 (wl-append update-msgs
(list invisible-top
))
547 (wl-summary-jump-to-msg invisible-top
))
548 (goto-char (point-max))))
550 ;; insert children if thread is closed or delete top.
552 (not (wl-thread-entity-get-opened entity
)))
553 (let (next-top insert-msgs ent grandchildren
)
556 (setq insert-msgs
(wl-thread-get-exist-children
557 top-child
'include-self
))
558 (setq next-top
(car insert-msgs
))
559 (setq ent
(wl-thread-get-entity next-top
))
561 (wl-thread-entity-get-opened entity
) ;; open
562 (not (wl-thread-entity-get-opened ent
)) ;; close
564 (wl-thread-entity-get-children ent
))
565 (wl-summary-jump-to-msg next-top
))
567 (setq insert-msgs
(append (cdr insert-msgs
) grandchildren
)))
568 (when top-entity
(wl-thread-entity-set-opened top-entity t
))
569 (when ent
(wl-thread-entity-set-opened ent t
)))
570 (when (not invisible-top
)
571 (setq insert-msgs
(wl-thread-get-exist-children msg
))
572 ;; First msg always opened, because first msg maybe becomes top.
573 (if (setq ent
(wl-thread-get-entity (car insert-msgs
)))
574 (wl-thread-entity-set-opened ent t
))))
577 ;; if no exists in summary, insert entity.
578 (when (and (car insert-msgs
)
579 (not (wl-summary-jump-to-msg (car insert-msgs
))))
580 (setq ent
(wl-thread-get-entity (car insert-msgs
)))
581 (wl-thread-insert-entity 0 ; no mean now...
583 (setq insert-msgs
(cdr insert-msgs
))))))
587 (wl-thread-update-line-on-buffer-sub nil
(pop update-msgs
)))
588 ;; don't update buffer
589 update-msgs
)))) ; return value
591 (defun wl-thread-insert-message (message-entity
592 msg parent-msg
&optional update linked
)
593 "Insert MSG to the entity.
594 When optional argument UPDATE is non-nil,
595 Message is inserted to the summary buffer."
596 (let ((parent (wl-thread-get-entity parent-msg
))
597 child-entity invisible-top
)
598 ;;; Update the thread view...not implemented yet.
599 ;;; (when force-insert
601 ;;; (wl-thread-entity-force-open parent))
602 (when (and wl-summary-max-thread-depth parent
)
607 (setq cur
(wl-thread-entity-get-parent-entity cur
)))
608 (when (> depth wl-summary-max-thread-depth
)
612 ;; insert as children.
613 (wl-thread-entity-insert-as-children
616 (wl-thread-create-entity
617 msg
(wl-thread-entity-get-number parent
) nil linked
)))
618 ;; insert as top message.
619 (wl-thread-entity-insert-as-top
620 (wl-thread-create-entity msg nil
)))
622 (if (not (setq invisible-top
623 (wl-thread-entity-parent-invisible-p child-entity
)))
626 (wl-summary-update-thread
629 (elmo-message-entity wl-summary-buffer-elmo-folder
632 ;; use thread structure.
633 ;;(wl-thread-entity-get-nearly-older-brother
634 ;; child-entity parent))) ; return value
635 (wl-thread-entity-get-number parent
))) ; return value
636 ;;; (setq beg (point))
637 ;;; (wl-thread-goto-bottom-of-sub-thread)
638 ;;; (wl-thread-update-indent-string-region beg (point)))
639 ;; currently invisible.. update closed line.
640 (wl-thread-update-children-number invisible-top
)
643 ;(defun wl-thread-get-parent-list (msgs)
644 ; ;; return ancestors
645 ; (let* ((msgs2 msgs)
648 ; (setq myself (car msgs2)
650 ; (while (not (eq myself (car msgs2)))
651 ; (if (wl-thread-descendant-p myself (car msgs2))
652 ; (setq msgs (delq (car msgs2) msgs)))
653 ; (setq msgs2 (or (cdr msgs2) msgs)))
654 ; (setq msgs2 (cdr msgs2)))
657 (defun wl-thread-get-parent-list (msgs)
658 ;; return connected ancestors
662 (setq parent
(wl-thread-entity-get-parent (wl-thread-get-entity (car ptr
))))
663 (when (or (not parent
)
664 (not (memq parent msgs
)))
665 (setq ret
(append ret
(list (car ptr
)))))
666 (setq ptr
(cdr ptr
)))
669 (defun wl-thread-update-indent-string-thread (top-list)
670 (let ((top-list (wl-thread-get-parent-list top-list
))
672 (elmo-with-progress-display
673 (wl-thread-update-indent-string-thread (length top-list
))
674 "Updating thread indent"
677 (wl-summary-jump-to-msg (car top-list
))
679 (wl-thread-goto-bottom-of-sub-thread)
680 (wl-thread-update-indent-string-region beg
(point)))
681 (elmo-progress-notify 'wl-thread-update-indent-string-thread
)
682 (setq top-list
(cdr top-list
))))))
684 (defun wl-thread-update-children-number (entity)
685 "Update the children number."
686 (wl-thread-update-line-on-buffer (wl-thread-entity-get-number entity
)))
689 ;; Thread oriented commands.
691 (defun wl-thread-call-region-func (func &optional arg
)
694 (wl-summary-goto-top-of-current-thread)
697 (wl-thread-goto-bottom-of-sub-thread)
698 (funcall func beg
(point)))))
700 (defun wl-thread-prefetch (&optional arg
)
702 (wl-thread-call-region-func 'wl-summary-prefetch-region arg
))
704 (defun wl-thread-mark-as-read (&optional arg
)
706 (wl-thread-call-region-func 'wl-summary-mark-as-read-region arg
))
708 (defun wl-thread-mark-as-unread (&optional arg
)
710 (wl-thread-call-region-func 'wl-summary-mark-as-unread-region arg
))
712 (defun wl-thread-mark-as-important (&optional arg
)
714 (wl-thread-call-region-func 'wl-summary-mark-as-important-region arg
))
716 (defun wl-thread-set-flags (&optional arg
)
718 (wl-thread-call-region-func 'wl-summary-set-flags-region arg
))
720 (defun wl-thread-mark-as-answered (&optional arg
)
722 (wl-thread-call-region-func 'wl-summary-mark-as-answered-region arg
))
724 (defun wl-thread-recover-messages (&optional arg
)
725 "Recover killed messages which are contained current thread."
727 (wl-thread-call-region-func 'wl-summary-recover-messages-region arg
))
729 (defun wl-thread-unmark (&optional arg
)
731 (wl-thread-call-region-func 'wl-summary-unmark-region arg
))
733 (defun wl-thread-exec (&optional arg
)
735 (wl-thread-call-region-func 'wl-summary-exec-region arg
))
737 (defun wl-thread-save (&optional arg
)
739 (wl-thread-call-region-func 'wl-summary-save-region arg
))
741 (defun wl-thread-force-open (&optional msg-num
)
742 "force open current folder"
744 (wl-summary-jump-to-msg msg-num
))
745 (wl-thread-open-close 'force-open
))
747 (defun wl-thread-entity-force-open (entity)
748 (let ((wl-thread-insert-force-opened t
)
750 (if (null (wl-thread-entity-get-parent entity
))
752 (if (and (not (wl-thread-entity-get-opened entity
))
753 (wl-thread-entity-get-children entity
))
754 (wl-thread-force-open (wl-thread-entity-get-number entity
)))
755 (if (setq notopen
(wl-thread-entity-parent-invisible-p entity
))
756 (wl-thread-force-open (wl-thread-entity-get-number notopen
))))))
758 (defun wl-thread-insert-top ()
759 (let ((elist wl-thread-entity-list
)
760 (len (length wl-thread-entity-list
)))
761 (elmo-with-progress-display
762 (wl-thread-insert-entity (length wl-thread-entity-list
))
764 (wl-delete-all-overlays)
766 (wl-thread-insert-entity
768 (wl-thread-get-entity (car elist
))
771 (elmo-progress-notify 'wl-thread-insert-entity
)
772 (setq elist
(cdr elist
))))))
774 (defsubst wl-thread-insert-entity-sub
(indent entity parent-entity all
)
779 (when (setq msg-num
(wl-thread-entity-get-number entity
))
780 (unless all
; all...means no temp-mark.
781 (cond ((memq msg-num wl-summary-buffer-target-mark-list
)
782 (setq temp-mark
"*"))
783 ((setq temp-mark
(wl-summary-registered-temp-mark msg-num
))
784 (setq temp-mark
(nth 1 temp-mark
)))))
786 (setq temp-mark
(wl-summary-get-score-mark msg-num
)))
788 (elmo-message-entity wl-summary-buffer-elmo-folder
790 ;;; (wl-delete-all-overlays)
792 (wl-summary-insert-line
793 (wl-summary-create-line
795 (elmo-message-entity wl-summary-buffer-elmo-folder
796 (wl-thread-entity-get-number parent-entity
))
798 (elmo-message-status wl-summary-buffer-elmo-folder msg-num
)
799 (if wl-thread-insert-force-opened
801 (wl-thread-maybe-get-children-num msg-num
))
802 (wl-thread-make-indent-string entity
)
803 (wl-thread-entity-get-linked entity
)))))))
805 (defun wl-thread-insert-entity (indent entity parent-entity all
)
806 "Insert thread entity in current buffer."
807 (let ((msgs (list (car entity
)))
810 (wl-thread-insert-entity-sub indent entity parent-entity all
)
811 (setq msgs
(cdr msgs
))
812 (setq children
(wl-thread-entity-get-children entity
))
815 (when (or wl-thread-insert-force-opened
816 (wl-thread-entity-get-opened entity
))
817 (wl-thread-entity-set-opened entity t
)
818 (wl-push msgs msgs-stack
)
821 parent-entity entity
)))
823 (while (and (null msgs
) msgs-stack
)
824 (setq msgs
(wl-pop msgs-stack
))
825 (setq indent
(1- indent
)))
827 (setq entity
(wl-thread-get-entity (car msgs
)))
828 (setq parent-entity
(wl-thread-entity-get-parent-entity entity
))))
829 (setq entity
(wl-thread-get-entity (car msgs
))))))
831 (defun wl-thread-descendant-p (mynumber number
)
832 (let ((cur (wl-thread-get-entity number
))
836 (setq cur
(wl-thread-entity-get-parent-entity cur
))
837 (if (null (setq num
(wl-thread-entity-get-number cur
))) ; top!
840 (eq mynumber
(wl-thread-entity-get-number cur
)))
844 ;; (defun wl-thread-goto-bottom-of-sub-thread ()
846 ;; (let ((depth (wl-thread-get-depth-of-current-line)))
848 ;; (while (and (not (eobp))
849 ;; (> (wl-thread-get-depth-of-current-line)
852 ;; (beginning-of-line)))
854 (defun wl-thread-goto-bottom-of-sub-thread (&optional msg
)
856 (let ((mynumber (or msg
(wl-summary-message-number))))
858 (while (wl-thread-descendant-p mynumber
(wl-summary-message-number))
860 (beginning-of-line)))
862 (defun wl-thread-remove-argument-region (beg end
)
865 (narrow-to-region beg end
)
866 (goto-char (point-min))
868 (wl-summary-remove-argument)
871 (defun wl-thread-print-argument-region (beg end
)
872 (if wl-summary-buffer-temp-mark-list
875 (narrow-to-region beg end
)
876 (goto-char (point-min))
878 (let ((num (wl-summary-message-number))
880 (when (and (setq temp-mark
881 (wl-summary-registered-temp-mark num
))
883 (setq pair
(cons (nth 0 temp-mark
)(nth 2 temp-mark
))))
884 (wl-summary-print-argument (car pair
) (cdr pair
))))
885 (forward-line 1))))))
887 (defsubst wl-thread-get-children-msgs
(msg &optional visible-only
)
888 (let ((msgs (list msg
))
892 (wl-append ret-val
(list (car msgs
)))
893 (setq children
(wl-thread-entity-get-children
894 (setq entity
(wl-thread-get-entity (car msgs
)))))
895 (if (and visible-only
896 (not (wl-thread-entity-get-opened entity
)))
898 (setq msgs
(cdr msgs
))
900 (while (and (null msgs
) msgs-stack
)
901 (setq msgs
(wl-pop msgs-stack
)))
902 (wl-push msgs msgs-stack
)
903 (setq msgs children
)))
906 (defun wl-thread-get-children-msgs-uncached (msg &optional uncached-marks
)
907 (let ((children-msgs (wl-thread-get-children-msgs msg
))
910 (if (and (not (eq msg
(car children-msgs
))) ; except itself
911 (or (and uncached-marks
912 (setq mark
(wl-summary-message-mark
913 wl-summary-buffer-elmo-folder
914 (car children-msgs
)))
915 (member mark uncached-marks
))
916 (and (not uncached-marks
)
917 (null (elmo-file-cache-exists-p
919 wl-summary-buffer-elmo-folder
922 (wl-append uncached-list
(list (car children-msgs
))))
923 (setq children-msgs
(cdr children-msgs
)))
926 (defun wl-thread-get-children-msgs-with-mark (msg mark
)
927 (let ((children-msgs (wl-thread-get-children-msgs msg
))
928 (check-func (cond ((string= mark
"o")
929 'wl-summary-msg-marked-as-refiled
)
931 'wl-summary-msg-marked-as-copied
)
933 'wl-summary-msg-marked-as-deleted
)
935 'wl-summary-msg-marked-as-target
)))
938 (if (funcall check-func
(car children-msgs
))
939 (wl-append ret-val
(list (car children-msgs
))))
940 (setq children-msgs
(cdr children-msgs
)))
943 (defun wl-thread-close (entity)
945 (wl-thread-entity-set-opened entity nil
)
946 (setq depth
(wl-thread-get-depth-of-current-line))
949 (wl-thread-goto-bottom-of-sub-thread)
950 (wl-thread-remove-argument-region beg
952 (forward-char -
1) ;; needed for mouse-face.
953 (delete-region beg
(point))
954 (wl-thread-insert-entity (- depth
1)
956 (wl-thread-get-entity
957 (wl-thread-entity-get-parent entity
))
959 (delete-char 1) ; delete '\n'
960 (wl-thread-print-argument-region beg
(point))))
962 (defun wl-thread-close-children (&optional number
)
964 (when (eq wl-summary-buffer-view
'thread
)
965 (setq number
(or number
(wl-summary-message-number)))
967 (let ((inhibit-read-only t
)
968 (entity (wl-thread-get-entity number
)))
969 (when (wl-thread-entity-get-opened entity
)
970 (wl-thread-close entity
))))))
972 (defun wl-thread-open (entity)
976 (setq depth
(wl-thread-get-depth-of-current-line))
978 (delete-region beg
(point))
979 (wl-thread-entity-set-opened entity t
)
980 (wl-thread-insert-entity depth
;(- depth 1)
982 (wl-thread-get-entity
983 (wl-thread-entity-get-parent entity
))
985 (delete-char 1) ; delete '\n'
986 (wl-thread-print-argument-region beg
(point))))
988 (defun wl-thread-open-children (&optional number
)
990 (when (eq wl-summary-buffer-view
'thread
)
991 (setq number
(or number
(wl-summary-message-number)))
993 (let ((inhibit-read-only t
)
994 (entity (wl-thread-get-entity number
)))
995 (unless (wl-thread-entity-get-opened entity
)
996 (wl-thread-open entity
))))))
998 (defun wl-thread-open-close (&optional force-open
)
1000 (when (eq wl-summary-buffer-view
'thread
)
1001 ;;; (if (equal wl-thread-top-entity '(nil t nil nil))
1002 ;;; (error "There's no thread structure"))
1004 (let ((inhibit-read-only t
)
1005 (buffer-read-only nil
)
1006 (wl-thread-insert-force-opened
1007 (or wl-thread-insert-force-opened
1010 (setq msg
(wl-summary-message-number))
1011 (setq entity
(wl-thread-get-entity msg
))
1012 (if (wl-thread-entity-get-opened entity
)
1013 ;; if already opened, close its child!
1014 (if (wl-thread-entity-get-children entity
)
1015 (wl-thread-close entity
)
1016 ;; opened, but has no children, close its parent!
1017 (when (setq parent
(wl-thread-entity-get-parent entity
))
1018 (wl-summary-jump-to-msg parent
)
1020 (wl-thread-get-entity (wl-summary-message-number)))))
1021 ;; if closed (or it is just a thread bottom message)
1022 ;; has children, open it!
1023 (if (wl-thread-entity-get-children entity
)
1024 (wl-thread-open entity
)
1025 ;; closed, and has no children, close its parent!
1026 (setq msg
(or (wl-thread-entity-get-parent entity
)
1027 (wl-thread-entity-get-number entity
)))
1029 (wl-summary-jump-to-msg msg
)
1031 (wl-thread-get-entity (wl-summary-message-number)))))))
1032 (when wl-summary-lazy-highlight
1033 (wl-highlight-summary-window))
1034 (wl-summary-set-message-modified)
1035 (set-buffer-modified-p nil
))))
1037 (defun wl-thread-get-depth-of-current-line ()
1038 (let ((entity (wl-thread-get-entity (wl-summary-message-number)))
1041 (while (setq number
(wl-thread-entity-get-parent entity
))
1043 (setq entity
(wl-thread-get-entity number
)))
1046 (defun wl-thread-update-indent-string-region (beg end
)
1050 (while (< (point) end
)
1052 (wl-thread-update-line-on-buffer-sub nil
(wl-summary-message-number)))
1055 (defsubst wl-thread-make-indent-string
(entity)
1058 (space-str (wl-repeat-string wl-thread-space-str-internal
1059 (- wl-thread-indent-level-internal
1)))
1061 (when (wl-thread-entity-get-number
1062 (setq parent
(wl-thread-entity-get-parent-entity cur
)))
1063 (if (wl-thread-entity-get-younger-brothers cur
)
1064 (setq ret-val wl-thread-have-younger-brother-str-internal
)
1065 (setq ret-val wl-thread-youngest-child-str-internal
))
1066 (setq ret-val
(concat ret-val
1068 wl-thread-horizontal-str-internal
1069 (- wl-thread-indent-level-internal
1))))
1071 (while (wl-thread-entity-get-number
1072 (wl-thread-entity-get-parent-entity cur
))
1073 (if (wl-thread-entity-get-younger-brothers cur
)
1074 (setq ret-val
(concat wl-thread-vertical-str-internal
1077 (setq ret-val
(concat wl-thread-space-str-internal
1080 (setq cur
(wl-thread-entity-get-parent-entity cur
))))
1083 (defun wl-thread-set-parent (&optional parent-number
)
1084 "Set current message's parent interactively."
1086 (let ((number (wl-summary-message-number))
1087 (dst-parent (if (interactive-p)
1088 (read-from-minibuffer "Parent Message (No.): ")))
1089 entity dst-parent-entity src-parent children
1092 (if (string= dst-parent
"")
1093 (setq dst-parent nil
)
1095 (setq dst-parent
(string-to-number dst-parent
))
1096 (setq dst-parent parent-number
)))
1098 (memq dst-parent
(wl-thread-get-children-msgs number
)))
1099 (error "Parent is children or myself"))
1100 (setq entity
(wl-thread-get-entity number
))
1101 (when (and number entity
)
1103 (setq update-msgs
(wl-thread-delete-message number
'deep
))
1104 ;; insert as child at new parent
1105 (setq dst-parent-entity
(wl-thread-get-entity dst-parent
))
1106 (if dst-parent-entity
1109 (wl-thread-entity-get-children dst-parent-entity
))
1110 (wl-append update-msgs
1111 (wl-thread-get-children-msgs
1112 (car (last children
)) t
)))
1113 (wl-thread-entity-set-children
1115 (append children
(list number
)))
1116 (wl-thread-entity-set-linked
1118 (let ((parent (elmo-message-entity-parent
1119 wl-summary-buffer-elmo-folder
1120 (elmo-message-entity
1121 wl-summary-buffer-elmo-folder
1124 (/= parent-number
(elmo-message-entity-number parent
))))))
1126 (wl-append wl-thread-entity-list
(list number
))
1127 (wl-thread-entity-set-linked entity nil
))
1130 (wl-append update-msgs
(wl-thread-get-children-msgs number t
))
1131 (setq update-msgs
(elmo-uniq-list update-msgs
))
1132 (wl-thread-entity-set-parent entity dst-parent
)
1133 ;; update thread on buffer
1134 (wl-thread-make-number-list)
1135 (wl-thread-update-line-msgs update-msgs
))))
1138 (product-provide (provide 'wl-thread
) (require 'wl-version
))
1140 ;;; wl-thread.el ends here