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
44 (defvar wl-thread-indent-regexp nil)
46 (make-variable-buffer-local 'wl-thread-entity-hashtb)
47 (make-variable-buffer-local 'wl-thread-entities) ; ".wl-thread-entity"
48 (make-variable-buffer-local 'wl-thread-entity-list) ; ".wl-thread-entity-list"
49 (make-variable-buffer-local 'wl-thread-entity-cur)
50 (make-variable-buffer-local 'wl-thread-indent-regexp)
53 (defvar wl-thread-insert-force-opened nil)
55 ;;;;;; each entity is (number opened-or-not children parent) ;;;;;;;
57 (defun wl-thread-resume-entity (fld)
58 (let (entities top-list)
59 (setq entities (wl-summary-load-file-object
60 (expand-file-name wl-thread-entity-file
61 (elmo-folder-msgdb-path fld))))
63 (wl-summary-load-file-object
64 (expand-file-name wl-thread-entity-list-file
65 (elmo-folder-msgdb-path fld))))
66 (message "Resuming thread structure...")
68 (setq wl-thread-entity-hashtb (elmo-make-hash (* (length entities) 2)))
69 ;; set buffer local variables.
70 (setq wl-thread-entities entities)
71 (setq wl-thread-entity-list top-list)
73 (elmo-set-hash-val (format "#%d" (car (car entities))) (car entities)
74 wl-thread-entity-hashtb)
75 (setq entities (cdr entities)))
76 (wl-thread-make-number-list)
77 (message "Resuming thread structure...done")))
79 (defun wl-thread-make-number-list ()
80 "Make `wl-summary-buffer-number-list', a list of message numbers."
81 (let* ((node (wl-thread-get-entity (car wl-thread-entity-list)))
82 (children (wl-thread-entity-get-children node))
84 (setq wl-summary-buffer-number-list (list (car wl-thread-entity-list)))
86 (wl-thread-entity-make-number-list-from-children
87 (wl-thread-get-entity (car children)))
88 (setq children (cdr children)))
90 (setq parent (wl-thread-entity-get-parent-entity node)
91 sibling (wl-thread-entity-get-younger-brothers
94 (wl-thread-entity-make-number-list-from-children
95 (wl-thread-get-entity (car sibling)))
96 (setq sibling (cdr sibling)))
98 (setq wl-summary-buffer-number-list (nreverse
99 wl-summary-buffer-number-list))))
101 (defun wl-thread-entity-make-number-list-from-children (entity)
102 (let ((msgs (list (car entity)))
105 (setq wl-summary-buffer-number-list (cons (car entity)
106 wl-summary-buffer-number-list))
107 (setq msgs (cdr msgs))
108 (setq children (wl-thread-entity-get-children entity))
111 (wl-push msgs msgs-stack)
112 (setq msgs children))
114 (while (and (null msgs) msgs-stack)
115 (setq msgs (wl-pop msgs-stack)))))
116 (setq entity (wl-thread-get-entity (car msgs))))))
118 (defun wl-thread-save-entity (dir)
119 (wl-thread-save-entities dir)
120 (wl-thread-save-top-list dir))
122 (defun wl-thread-save-top-list (dir)
123 (let ((top-file (expand-file-name wl-thread-entity-list-file dir))
124 (entity wl-thread-entity-list)
125 (tmp-buffer (get-buffer-create " *wl-thread-save-top-list*")))
127 (set-buffer tmp-buffer)
129 (when (file-writable-p top-file)
130 (prin1 entity tmp-buffer)
131 (princ "\n" tmp-buffer)
132 (write-region (point-min) (point-max) top-file nil 'no-msg)
133 (kill-buffer tmp-buffer)))))
135 (defun wl-thread-save-entities (dir)
136 (let ((top-file (expand-file-name wl-thread-entity-file dir))
137 (entities wl-thread-entities)
138 (tmp-buffer (get-buffer-create " *wl-thread-save-entities*")))
140 (set-buffer tmp-buffer)
142 (when (file-writable-p top-file)
143 (prin1 entities tmp-buffer)
144 (princ "\n" tmp-buffer)
145 (write-region (point-min) (point-max) top-file nil 'no-msg)
146 (kill-buffer tmp-buffer)))))
148 (defsubst wl-thread-entity-get-number (entity)
150 (defsubst wl-thread-entity-get-opened (entity)
152 (defsubst wl-thread-entity-get-children (entity)
154 (defsubst wl-thread-entity-get-parent (entity)
156 (defsubst wl-thread-entity-get-linked (entity)
159 (defsubst wl-thread-create-entity (num parent &optional opened linked)
160 (list num (or opened wl-thread-insert-opened) nil parent linked))
162 (defsubst wl-thread-get-entity (num)
164 (elmo-get-hash-val (format "#%d" num) wl-thread-entity-hashtb)))
166 (defsubst wl-thread-entity-set-parent (entity parent)
167 (setcar (cdddr entity) parent)
170 (defsubst wl-thread-entity-set-children (entity children)
171 (setcar (cddr entity) children))
173 (defsubst wl-thread-entity-set-linked (entity linked)
175 (setcar (cddddr entity) linked)
176 (nconc entity (list linked)))
179 (defsubst wl-thread-reparent-children (children parent)
181 (wl-thread-entity-set-parent
182 (wl-thread-get-entity (car children)) parent)
183 (wl-thread-entity-set-linked
184 (wl-thread-get-entity (car children)) t)
185 (setq children (cdr children))))
187 (defsubst wl-thread-entity-insert-as-top (entity)
190 (wl-append wl-thread-entity-list (list (car entity)))
191 (setq wl-thread-entities (cons entity wl-thread-entities))
192 (setq wl-summary-buffer-number-list
193 (nconc wl-summary-buffer-number-list (list (car entity))))
194 (elmo-set-hash-val (format "#%d" (car entity)) entity
195 wl-thread-entity-hashtb)))
197 (defsubst wl-thread-entity-insert-as-children (to entity)
198 (let ((children (wl-thread-entity-get-children to))
201 (elmo-list-insert wl-summary-buffer-number-list
202 (wl-thread-entity-get-number entity)
205 (wl-thread-entity-get-children curp))
206 (setq curp (wl-thread-get-entity
207 (nth (- (length curc) 1)
209 (wl-thread-entity-get-number curp)))
210 (setcar (cddr to) (wl-append children
211 (list (car entity))))
212 (setq wl-thread-entities (cons entity wl-thread-entities))
213 (elmo-set-hash-val (format "#%d" (car entity)) entity
214 wl-thread-entity-hashtb)))
216 (defsubst wl-thread-entity-set-opened (entity opened)
217 (setcar (cdr entity) opened))
219 (defsubst wl-thread-entity-get-children-num (entity)
222 (msgs (list (car entity))))
224 (setq msgs (cdr msgs))
225 (setq children (wl-thread-entity-get-children entity))
227 (while (and (null msgs) msgs-stack)
228 (setq msgs (wl-pop msgs-stack)))
229 (setq ret-val (+ (or ret-val 0) (length children)))
230 (wl-push msgs msgs-stack)
231 (setq msgs children))
232 (setq entity (wl-thread-get-entity (car msgs))))
235 (defsubst wl-thread-entity-get-descendant (entity)
238 (msgs (list (car entity))))
240 (setq msgs (cdr msgs))
241 (setq children (wl-thread-entity-get-children entity))
243 (while (and (null msgs) msgs-stack)
244 (setq msgs (wl-pop msgs-stack)))
245 (setq ret-val (append ret-val (copy-sequence children)))
246 (wl-push msgs msgs-stack)
247 (setq msgs children))
248 (setq entity (wl-thread-get-entity (car msgs))))
251 (defsubst wl-thread-entity-get-parent-entity (entity)
252 (wl-thread-get-entity (wl-thread-entity-get-parent entity)))
254 (defun wl-thread-entity-get-top-entity (entity)
255 (let ((cur-entity entity)
257 (while (setq p-num (wl-thread-entity-get-parent cur-entity))
258 (setq cur-entity (wl-thread-get-entity p-num)))
261 (defun wl-thread-entity-parent-invisible-p (entity)
262 "If parent of ENTITY is invisible, the top invisible ancestor entity of
264 (let ((cur-entity entity)
267 (while (setq cur-entity (wl-thread-entity-get-parent-entity
269 (if (null (wl-thread-entity-get-number cur-entity))
274 (when (not (wl-thread-entity-get-opened cur-entity))
276 (setq ret-val cur-entity)))))
277 ;; top of closed entity in the path.
280 (defun wl-thread-entity-get-nearly-older-brother (entity &optional parent)
281 (let ((brothers (wl-thread-entity-get-older-brothers entity parent)))
283 (car (last brothers)))))
285 (defun wl-thread-entity-get-older-brothers (entity &optional parent)
286 (let* ((parent (or parent
287 (wl-thread-entity-get-parent-entity entity)))
288 (brothers (wl-thread-entity-get-children parent))
292 (setq brothers wl-thread-entity-list))
294 (not (eq (wl-thread-entity-get-number entity)
296 (wl-append ret-val (list (car brothers)))
297 (setq brothers (cdr brothers)))
300 (defun wl-thread-entity-get-younger-brothers (entity &optional parent)
301 (let* ((parent (or parent
302 (wl-thread-entity-get-parent-entity entity)))
303 (brothers (wl-thread-entity-get-children parent)))
305 (cdr (memq (wl-thread-entity-get-number entity)
308 (cdr (memq (car entity) wl-thread-entity-list)))))
310 (defun wl-thread-jump-to-msg (&optional number)
312 (let ((num (or number
314 (read-from-minibuffer "Jump to Message(No.): ")))))
315 (wl-thread-entity-force-open (wl-thread-get-entity num))
316 (wl-summary-jump-to-msg num)))
318 (defun wl-thread-close-all ()
319 "Close all top threads."
321 (message "Closing all threads...")
323 (let ((entities wl-thread-entity-list)
325 (len (length wl-thread-entity-list)))
327 (when (and (wl-thread-entity-get-opened (wl-thread-get-entity
329 (wl-thread-entity-get-children (wl-thread-get-entity
331 (wl-summary-jump-to-msg (car entities))
332 (wl-thread-open-close))
333 (when (> len elmo-display-progress-threshold)
335 (if (or (zerop (% cur 5)) (= cur len))
336 (elmo-display-progress
337 'wl-thread-close-all "Closing all threads..."
338 (/ (* cur 100) len))))
339 (setq entities (cdr entities)))))
340 (message "Closing all threads...done"))
342 (defun wl-thread-open-all ()
345 (message "Opening all threads...")
347 (goto-char (point-min))
348 (let ((len (count-lines (point-min) (point-max)))
352 (if (wl-thread-entity-get-opened
353 (setq entity (wl-thread-get-entity
354 (wl-summary-message-number))))
356 (wl-thread-force-open)
357 (wl-thread-goto-bottom-of-sub-thread))
358 (when (> len elmo-display-progress-threshold)
360 (elmo-display-progress
361 'wl-thread-open-all "Opening all threads..."
362 (/ (* cur 100) len)))))
363 ;; Make sure to be 100%.
364 (elmo-display-progress
365 'wl-thread-open-all "Opening all threads..."
367 (message "Opening all threads...done"))
369 (defun wl-thread-open-all-unread ()
371 (let ((mark-alist (elmo-msgdb-get-mark-alist (wl-summary-buffer-msgdb)))
374 (if (setq mark (nth 1 (car mark-alist)))
375 (if (or (string= mark wl-summary-unread-uncached-mark)
376 (string= mark wl-summary-unread-cached-mark)
377 (string= mark wl-summary-new-mark)
378 (string= mark wl-summary-important-mark))
379 (wl-thread-entity-force-open (wl-thread-get-entity
380 (nth 0 (car mark-alist))))))
381 (setq mark-alist (cdr mark-alist)))))
383 (defsubst wl-thread-maybe-get-children-num (msg)
384 (let ((entity (wl-thread-get-entity msg)))
385 (if (not (wl-thread-entity-get-opened entity))
386 (wl-thread-entity-get-children-num entity))))
388 (defsubst wl-thread-update-line-on-buffer-sub (entity msg &optional parent-msg)
389 (let* ((entity (or entity (wl-thread-get-entity msg)))
390 (parent-msg (or parent-msg (wl-thread-entity-get-parent entity)))
391 (overview (elmo-msgdb-get-overview (wl-summary-buffer-msgdb)))
392 (mark-alist (elmo-msgdb-get-mark-alist (wl-summary-buffer-msgdb)))
393 (buffer-read-only nil)
394 (inhibit-read-only t)
395 overview-entity temp-mark summary-line invisible-top dest-pair)
396 (if (wl-thread-delete-line-from-buffer msg)
399 ((memq msg wl-summary-buffer-delete-list)
400 (setq temp-mark "D"))
401 ((memq msg wl-summary-buffer-target-mark-list)
402 (setq temp-mark "*"))
403 ((setq dest-pair (assq msg wl-summary-buffer-refile-list))
404 (setq temp-mark "o"))
405 ((setq dest-pair (assq msg wl-summary-buffer-copy-list))
406 (setq temp-mark "O"))
407 (t (setq temp-mark (wl-summary-get-score-mark msg))))
408 (when (setq overview-entity
409 (elmo-msgdb-overview-get-entity
410 msg (wl-summary-buffer-msgdb)))
412 (wl-summary-overview-create-summary-line
415 (elmo-msgdb-overview-get-entity
416 parent-msg (wl-summary-buffer-msgdb))
419 (if wl-thread-insert-force-opened
421 (wl-thread-maybe-get-children-num msg))
424 (wl-summary-insert-line summary-line))
426 (wl-summary-print-destination (car dest-pair)
428 ;; insert thread (moving thread)
429 (if (not (setq invisible-top
430 (wl-thread-entity-parent-invisible-p entity)))
431 (wl-summary-update-thread
432 (elmo-msgdb-overview-get-entity msg (wl-summary-buffer-msgdb))
437 (elmo-msgdb-overview-get-entity
438 parent-msg (wl-summary-buffer-msgdb))))
439 ;; currently invisible.. update closed line.
440 (wl-thread-update-children-number invisible-top)))))
442 (defun wl-thread-update-line-on-buffer (&optional msg parent-msg updates)
444 (let ((msgs (list (or msg (wl-summary-message-number))))
445 entity children msgs-stack)
447 (setq msg (wl-pop msgs))
448 (setq updates (and updates (delete msg updates)))
449 (setq entity (wl-thread-get-entity msg))
450 (wl-thread-update-line-on-buffer-sub entity msg parent-msg)
452 (setq children (wl-thread-entity-get-children entity))
455 (when (wl-thread-entity-get-opened entity)
456 (wl-push msgs msgs-stack)
460 (while (and (null msgs) msgs-stack)
461 (setq msgs (wl-pop msgs-stack)))
464 (wl-thread-entity-get-number
465 (wl-thread-entity-get-parent-entity
466 (wl-thread-get-entity (car msgs)))))))))
469 (defun wl-thread-update-line-msgs (msgs &optional no-msg)
470 (wl-delete-all-overlays)
477 ;;; (wl-thread-get-children-msgs (car msgs))))
478 ;;; (setq msgs (cdr msgs)))
479 ;;; (setq updates (elmo-uniq-list updates))
480 (setq len (length updates))
482 (wl-thread-update-line-on-buffer-sub nil (car updates))
483 (setq updates (cdr updates))
484 (when (and (not no-msg)
485 (> len elmo-display-progress-threshold))
487 (if (or (zerop (% i 5)) (= i len))
488 (elmo-display-progress
489 'wl-thread-update-line-msgs "Updating deleted thread..."
490 (/ (* i 100) len)))))))
492 (defun wl-thread-delete-line-from-buffer (msg)
493 "Simply delete msg line."
495 (if (wl-summary-jump-to-msg msg)
499 (delete-region beg (point))
503 (defun wl-thread-cleanup-symbols (msgs)
506 (when (setq entity (wl-thread-get-entity (car msgs)))
508 (setq wl-thread-entities (delq entity wl-thread-entities))
510 (elmo-clear-hash-val (format "#%d" (car msgs))
511 wl-thread-entity-hashtb))
512 (setq msgs (cdr msgs)))))
514 (defun wl-thread-get-exist-children (msg)
515 (let ((msgs (list msg))
519 (setq children (wl-thread-entity-get-children
520 (setq entity (wl-thread-get-entity (car msgs)))))
521 (when (elmo-msgdb-overview-get-entity (car msgs) (wl-summary-buffer-msgdb))
522 (wl-append ret-val (list (car msgs)))
524 (setq msgs (cdr msgs))
526 (while (and (null msgs) msgs-stack)
527 (setq msgs (wl-pop msgs-stack)))
528 (wl-push msgs msgs-stack)
529 (setq msgs children)))
532 (defun wl-thread-delete-message (msg &optional deep update)
533 "Delete MSG from entity and buffer."
535 (let* ((entity (wl-thread-get-entity msg))
536 children older-brothers younger-brothers top-child ;;grandchildren
537 top-entity parent update-msgs beg invisible-top)
539 (setq parent (wl-thread-entity-get-parent-entity entity))
543 ;;; (setq brothers (wl-thread-entity-get-children parent))
544 (setq older-brothers (wl-thread-entity-get-older-brothers
546 (setq younger-brothers (wl-thread-entity-get-younger-brothers
550 (setq children (wl-thread-entity-get-children entity))
551 (wl-thread-reparent-children
552 children (wl-thread-entity-get-number parent))
554 (apply (function nconc)
559 (wl-thread-get-children-msgs message t)))
561 (wl-thread-entity-set-children
562 parent (append older-brothers children younger-brothers))
563 ;; If chidren and younger-brothers not exists,
564 ;; update nearly older brother.
565 (when (and older-brothers
566 (not younger-brothers)
570 (wl-thread-get-children-msgs (car (last older-brothers))))))
572 ;; top...oldest child becomes top.
574 (setq children (wl-thread-entity-get-children entity))
576 (setq top-child (car children)
577 children (cdr children))
578 (setq top-entity (wl-thread-get-entity top-child))
579 (wl-thread-entity-set-parent top-entity nil)
580 (wl-thread-entity-set-linked top-entity nil)
581 (wl-append update-msgs
582 (wl-thread-get-children-msgs top-child t)))
584 (wl-thread-entity-set-children
587 (wl-thread-entity-get-children top-entity)
589 (wl-thread-reparent-children children top-child)
590 (wl-append update-msgs children)))
591 ;; delete myself from top list.
592 (setq wl-summary-buffer-number-list
593 (delq msg wl-summary-buffer-number-list))
594 (setq older-brothers (wl-thread-entity-get-older-brothers
596 (setq younger-brothers (wl-thread-entity-get-younger-brothers
598 (setq wl-thread-entity-list
599 (append (append older-brothers
600 (and top-child (list top-child)))
604 ;; delete thread on buffer
605 (when (wl-summary-jump-to-msg msg)
607 (wl-thread-goto-bottom-of-sub-thread)
608 (delete-region beg (point)))
609 ;; delete myself from buffer.
610 (unless (wl-thread-delete-line-from-buffer msg)
611 ;; jump to suitable point.
612 ;; just upon the oldest younger-brother of my top.
614 (car (wl-thread-entity-parent-invisible-p entity)))
617 (wl-append update-msgs (list invisible-top))
618 (wl-summary-jump-to-msg invisible-top))
619 (goto-char (point-max))))
621 ;; insert children if thread is closed or delete top.
623 (not (wl-thread-entity-get-opened entity)))
624 (let* (next-top insert-msgs ent e grandchildren)
627 (setq insert-msgs (wl-thread-get-exist-children top-child))
628 (setq next-top (car insert-msgs))
629 (setq ent (wl-thread-get-entity next-top))
631 (wl-thread-entity-get-opened entity) ;; open
632 (not (wl-thread-entity-get-opened ent)) ;; close
634 (wl-thread-entity-get-children ent))
635 (wl-summary-jump-to-msg next-top))
637 (setq insert-msgs (append (cdr insert-msgs) grandchildren)))
638 (when top-entity (wl-thread-entity-set-opened top-entity t))
639 (when ent (wl-thread-entity-set-opened ent t)))
640 (when (not invisible-top)
641 (setq insert-msgs (wl-thread-get-exist-children msg))
642 ;; First msg always opened, because first msg maybe becomes top.
643 (if (setq ent (wl-thread-get-entity (car insert-msgs)))
644 (wl-thread-entity-set-opened ent t))))
647 ;; if no exists in summary, insert entity.
648 (when (and (car insert-msgs)
649 (not (wl-summary-jump-to-msg (car insert-msgs))))
650 (setq ent (wl-thread-get-entity (car insert-msgs)))
651 (wl-thread-insert-entity 0 ; no mean now...
653 (setq insert-msgs (cdr insert-msgs))))))
657 (wl-thread-update-line-on-buffer-sub nil (pop update-msgs)))
658 ;; don't update buffer
659 update-msgs)))) ; return value
661 (defun wl-thread-insert-message (overview-entity overview mark-alist
662 msg parent-msg &optional update linked)
663 "Insert MSG to the entity.
664 When optional argument UPDATE is non-nil,
665 Message is inserted to the summary buffer."
666 (let ((parent (wl-thread-get-entity parent-msg))
667 child-entity invisible-top)
668 ;;; Update the thread view...not implemented yet.
669 ;;; (when force-insert
671 ;;; (wl-thread-entity-force-open parent))
673 ;; insert as children.
674 (wl-thread-entity-insert-as-children
676 (setq child-entity (wl-thread-create-entity msg (nth 0 parent) nil linked)))
677 ;; insert as top message.
678 (wl-thread-entity-insert-as-top
679 (wl-thread-create-entity msg nil)))
681 (if (not (setq invisible-top
682 (wl-thread-entity-parent-invisible-p child-entity)))
685 (wl-summary-update-thread
690 (elmo-msgdb-overview-get-entity
691 parent-msg (wl-summary-buffer-msgdb)))
693 ;; use thread structure.
694 (wl-thread-entity-get-nearly-older-brother
695 child-entity parent))) ; return value
696 ;;; (wl-thread-entity-get-number
697 ;;; (wl-thread-entity-get-top-entity parent)))) ; return value;
698 ;;; (setq beg (point))
699 ;;; (wl-thread-goto-bottom-of-sub-thread)
700 ;;; (wl-thread-update-indent-string-region beg (point)))
701 ;; currently invisible.. update closed line.
702 (wl-thread-update-children-number invisible-top)
705 (defun wl-thread-get-parent-list (msgs)
709 (setq myself (car msgs2)
711 (while (not (eq myself (car msgs2)))
712 (if (wl-thread-descendant-p myself (car msgs2))
713 (setq msgs (delq (car msgs2) msgs)))
714 (setq msgs2 (or (cdr msgs2) msgs)))
715 (setq msgs2 (cdr msgs2)))
718 (defun wl-thread-update-indent-string-thread (top-list)
719 (let ((top-list (wl-thread-get-parent-list top-list))
723 (wl-summary-jump-to-msg (car top-list))
725 (wl-thread-goto-bottom-of-sub-thread)
726 (wl-thread-update-indent-string-region beg (point)))
727 (setq top-list (cdr top-list)))))
729 (defun wl-thread-update-children-number (entity)
730 "Update the children number."
732 (wl-summary-jump-to-msg (wl-thread-entity-get-number entity))
734 (let ((text-prop (get-text-property (point) 'face))
735 from from-end beg str)
737 ((looking-at (concat "^" wl-summary-buffer-number-regexp
738 "..../..\(.*\)..:.. ["
739 wl-thread-indent-regexp
740 "]*[[<]\\+\\([0-9]+\\):"))
741 (delete-region (match-beginning 1)(match-end 1))
742 (goto-char (match-beginning 1))
743 (setq str (format "%s" (wl-thread-entity-get-children-num entity)))
744 (if wl-summary-highlight
745 (put-text-property 0 (length str) 'face text-prop str))
747 ((looking-at (concat "^" wl-summary-buffer-number-regexp
748 "..../..\(.*\)..:.. ["
749 wl-thread-indent-regexp
751 (goto-char (match-end 0))
752 (setq beg (current-column))
753 (setq from-end (save-excursion
754 (move-to-column (+ 1 beg wl-from-width))
756 (setq from (buffer-substring (match-end 0) from-end))
757 (delete-region (match-end 0) from-end)
758 (setq str (wl-set-string-width
762 (wl-thread-entity-get-children-num
765 (if wl-summary-highlight
766 (put-text-property 0 (length str) 'face text-prop str))
768 (condition-case nil ; it's dangerous, so ignore error.
769 (run-hooks 'wl-thread-update-children-number-hook)
772 (message "Error in wl-thread-update-children-number-hook."))))))))
775 ;; Thread oriented commands.
777 (defun wl-thread-call-region-func (func &optional arg)
780 (wl-summary-goto-top-of-current-thread)
783 (wl-thread-goto-bottom-of-sub-thread)
784 (funcall func beg (point)))))
786 (defun wl-thread-prefetch (&optional arg)
788 (wl-thread-call-region-func 'wl-summary-prefetch-region arg))
790 (defun wl-thread-msg-mark-as-important (msg)
791 "Set mark as important for invisible MSG. Modeline is not changed."
792 (let* ((msgdb (wl-summary-buffer-msgdb))
793 (mark-alist (elmo-msgdb-get-mark-alist msgdb))
795 (setq cur-mark (cadr (assq msg mark-alist)))
797 (elmo-msgdb-mark-set mark-alist
799 (if (string= cur-mark wl-summary-important-mark)
801 wl-summary-important-mark)))
802 (elmo-msgdb-set-mark-alist msgdb mark-alist)
803 (wl-summary-set-mark-modified)))
805 (defun wl-thread-mark-as-read (&optional arg)
807 (wl-thread-call-region-func 'wl-summary-mark-as-read-region arg))
809 (defun wl-thread-mark-as-unread (&optional arg)
811 (wl-thread-call-region-func 'wl-summary-mark-as-unread-region arg))
813 (defun wl-thread-mark-as-important (&optional arg)
815 (wl-thread-call-region-func 'wl-summary-mark-as-important-region arg))
817 (defun wl-thread-copy (&optional arg)
819 (wl-thread-call-region-func 'wl-summary-copy-region arg))
821 (defun wl-thread-refile (&optional arg)
825 (wl-thread-call-region-func 'wl-summary-refile-region arg)
827 (wl-summary-goto-top-of-current-thread))
828 (wl-thread-goto-bottom-of-sub-thread))
830 (elmo-display-error err t)
833 (defun wl-thread-delete (&optional arg)
835 (wl-thread-call-region-func 'wl-summary-delete-region arg)
837 (wl-summary-goto-top-of-current-thread))
838 (if (not wl-summary-move-direction-downward)
840 (wl-thread-goto-bottom-of-sub-thread)
841 (if wl-summary-buffer-disp-msg
842 (wl-summary-redisplay))))
844 (defun wl-thread-target-mark (&optional arg)
846 (wl-thread-call-region-func 'wl-summary-target-mark-region arg))
848 (defun wl-thread-unmark (&optional arg)
850 (wl-thread-call-region-func 'wl-summary-unmark-region arg))
852 (defun wl-thread-exec (&optional arg)
854 (wl-thread-call-region-func 'wl-summary-exec-region arg))
856 (defun wl-thread-save (&optional arg)
858 (wl-thread-call-region-func 'wl-summary-save-region arg))
860 (defun wl-thread-force-open (&optional msg-num)
861 "force open current folder"
863 (wl-summary-jump-to-msg msg-num))
864 (let ((wl-thread-insert-force-opened t))
865 (wl-thread-open-close)))
867 (defun wl-thread-entity-force-open (entity)
868 (let ((wl-thread-insert-force-opened t)
870 (if (null (wl-thread-entity-get-parent entity))
872 (if (and (not (wl-thread-entity-get-opened entity))
873 (wl-thread-entity-get-children entity))
874 (wl-thread-force-open (wl-thread-entity-get-number entity)))
875 (if (setq notopen (wl-thread-entity-parent-invisible-p entity))
876 (wl-thread-force-open (wl-thread-entity-get-number notopen))))))
878 (defun wl-thread-insert-top ()
879 (let ((elist wl-thread-entity-list)
880 (len (length wl-thread-entity-list))
882 (wl-delete-all-overlays)
884 (wl-thread-insert-entity
886 (wl-thread-get-entity (car elist))
889 (setq elist (cdr elist))
890 (when (> len elmo-display-progress-threshold)
892 (if (or (zerop (% cur 2)) (= cur len))
893 (elmo-display-progress
894 'wl-thread-insert-top "Inserting thread..."
895 (/ (* cur 100) len)))))))
897 (defsubst wl-thread-insert-entity-sub (indent entity parent-entity all)
898 (let ((mark-alist (elmo-msgdb-get-mark-alist (wl-summary-buffer-msgdb)))
903 (when (setq msg-num (wl-thread-entity-get-number entity))
904 (unless all ; all...means no temp-mark.
905 (cond ((memq msg-num wl-summary-buffer-delete-list)
906 (setq temp-mark "D"))
907 ((memq msg-num wl-summary-buffer-target-mark-list)
908 (setq temp-mark "*"))
909 ((assq msg-num wl-summary-buffer-refile-list)
910 (setq temp-mark "o"))
911 ((assq msg-num wl-summary-buffer-copy-list)
912 (setq temp-mark "O"))))
914 (setq temp-mark (wl-summary-get-score-mark msg-num)))
915 (setq overview-entity
916 (elmo-msgdb-overview-get-entity
917 (nth 0 entity) (wl-summary-buffer-msgdb)))
918 ;;; (wl-delete-all-overlays)
919 (when overview-entity
921 (wl-summary-overview-create-summary-line
924 (elmo-msgdb-overview-get-entity
925 (nth 0 parent-entity) (wl-summary-buffer-msgdb))
928 (if wl-thread-insert-force-opened
930 (wl-thread-maybe-get-children-num msg-num))
932 (wl-summary-insert-line summary-line)))))
934 (defun wl-thread-insert-entity (indent entity parent-entity all)
935 "Insert thread entity in current buffer."
936 (let ((msgs (list (car entity)))
939 (wl-thread-insert-entity-sub indent entity parent-entity all)
940 (setq msgs (cdr msgs))
941 (setq children (nth 2 entity))
944 (when (or wl-thread-insert-force-opened
945 (wl-thread-entity-get-opened entity))
946 (wl-thread-entity-set-opened entity t)
947 (wl-push msgs msgs-stack)
950 parent-entity entity)))
952 (while (and (null msgs) msgs-stack)
953 (setq msgs (wl-pop msgs-stack))
954 (setq indent (1- indent)))
956 (setq entity (wl-thread-get-entity (car msgs)))
957 (setq parent-entity (wl-thread-entity-get-parent-entity entity))))
958 (setq entity (wl-thread-get-entity (car msgs))))))
960 (defun wl-thread-descendant-p (mynumber number)
961 (let ((cur (wl-thread-get-entity number))
965 (setq cur (wl-thread-entity-get-parent-entity cur))
966 (if (null (setq num (wl-thread-entity-get-number cur))) ; top!
969 (eq mynumber (wl-thread-entity-get-number cur)))
973 ;; (defun wl-thread-goto-bottom-of-sub-thread ()
975 ;; (let ((depth (wl-thread-get-depth-of-current-line)))
977 ;; (while (and (not (eobp))
978 ;; (> (wl-thread-get-depth-of-current-line)
981 ;; (beginning-of-line)))
983 (defun wl-thread-goto-bottom-of-sub-thread (&optional msg)
985 (let ((mynumber (or msg (wl-summary-message-number))))
987 (while (wl-thread-descendant-p mynumber (wl-summary-message-number))
989 (beginning-of-line)))
991 (defun wl-thread-remove-destination-region (beg end)
994 (narrow-to-region beg end)
995 (goto-char (point-min))
997 (let ((num (wl-summary-message-number)))
998 (if (assq num wl-summary-buffer-refile-list)
999 (wl-summary-remove-destination)))
1000 (forward-line 1)))))
1002 (defun wl-thread-print-destination-region (beg end)
1003 (if (or wl-summary-buffer-refile-list
1004 wl-summary-buffer-copy-list)
1007 (narrow-to-region beg end)
1008 (goto-char (point-min))
1010 (let ((num (wl-summary-message-number))
1012 (if (or (setq pair (assq num wl-summary-buffer-refile-list))
1013 (setq pair (assq num wl-summary-buffer-copy-list)))
1014 (wl-summary-print-destination (car pair) (cdr pair))))
1015 (forward-line 1))))))
1017 (defsubst wl-thread-get-children-msgs (msg &optional visible-only)
1018 (let ((msgs (list msg))
1022 (wl-append ret-val (list (car msgs)))
1023 (setq children (wl-thread-entity-get-children
1024 (setq entity (wl-thread-get-entity (car msgs)))))
1025 (if (and visible-only
1026 (not (wl-thread-entity-get-opened entity)))
1027 (setq children nil))
1028 (setq msgs (cdr msgs))
1030 (while (and (null msgs) msgs-stack)
1031 (setq msgs (wl-pop msgs-stack)))
1032 (wl-push msgs msgs-stack)
1033 (setq msgs children)))
1036 (defun wl-thread-get-children-msgs-uncached (msg &optional uncached-marks)
1037 (let ((children-msgs (wl-thread-get-children-msgs msg))
1038 (mark-alist (elmo-msgdb-get-mark-alist (wl-summary-buffer-msgdb)))
1039 (number-alist (elmo-msgdb-get-number-alist (wl-summary-buffer-msgdb)))
1042 (while children-msgs
1043 (if (and (not (eq msg (car children-msgs))) ; except itself
1044 (or (and uncached-marks
1045 (setq mark (cadr (assq (car children-msgs)
1047 (member mark uncached-marks))
1048 (and (not uncached-marks)
1049 (null (elmo-file-cache-exists-p
1051 wl-summary-buffer-elmo-folder
1054 (wl-append uncached-list (list (car children-msgs))))
1055 (setq children-msgs (cdr children-msgs)))
1058 (defun wl-thread-get-children-msgs-with-mark (msg mark)
1059 (let ((children-msgs (wl-thread-get-children-msgs msg))
1060 (check-func (cond ((string= mark "o")
1061 'wl-summary-msg-marked-as-refiled)
1063 'wl-summary-msg-marked-as-copied)
1065 'wl-summary-msg-marked-as-deleted)
1067 'wl-summary-msg-marked-as-target)))
1069 (while children-msgs
1070 (if (funcall check-func (car children-msgs))
1071 (wl-append ret-val (list (car children-msgs))))
1072 (setq children-msgs (cdr children-msgs)))
1075 (defun wl-thread-close (entity)
1077 (wl-thread-entity-set-opened entity nil)
1078 (setq depth (wl-thread-get-depth-of-current-line))
1081 (wl-thread-goto-bottom-of-sub-thread)
1082 (wl-thread-remove-destination-region beg
1084 (forward-char -1) ;; needed for mouse-face.
1085 (delete-region beg (point))
1086 (wl-thread-insert-entity (- depth 1)
1088 (wl-thread-get-entity
1091 (delete-char 1) ; delete '\n'
1092 (wl-thread-print-destination-region beg (point))))
1094 (defun wl-thread-open (entity)
1098 (setq depth (wl-thread-get-depth-of-current-line))
1100 (delete-region beg (point))
1101 (wl-thread-entity-set-opened entity t)
1102 (wl-thread-insert-entity depth ;(- depth 1)
1104 (wl-thread-get-entity
1105 (nth 3 entity)) nil)
1106 (delete-char 1) ; delete '\n'
1107 (wl-thread-print-destination-region beg (point))))
1109 (defun wl-thread-open-close (&optional force-open)
1111 (when (eq wl-summary-buffer-view 'thread)
1112 ;;; (if (equal wl-thread-top-entity '(nil t nil nil))
1113 ;;; (error "There's no thread structure"))
1115 (let ((inhibit-read-only t)
1116 (buffer-read-only nil)
1117 (wl-thread-insert-force-opened
1118 (or wl-thread-insert-force-opened
1121 (setq msg (wl-summary-message-number))
1122 (setq entity (wl-thread-get-entity msg))
1123 (if (wl-thread-entity-get-opened entity)
1124 ;; if already opened, close its child!
1125 (if (wl-thread-entity-get-children entity)
1126 (wl-thread-close entity)
1127 ;; opened, but has no children, close its parent!
1128 (when (setq parent (wl-thread-entity-get-parent entity))
1129 (wl-summary-jump-to-msg parent)
1131 (wl-thread-get-entity (wl-summary-message-number)))))
1132 ;; if closed (or it is just a thread bottom message)
1133 ;; has children, open it!
1134 (if (wl-thread-entity-get-children entity)
1135 (wl-thread-open entity)
1136 ;; closed, and has no children, close its parent!
1137 (setq msg (or (wl-thread-entity-get-parent entity)
1138 (wl-thread-entity-get-number entity)))
1140 (wl-summary-jump-to-msg msg)
1142 (wl-thread-get-entity (wl-summary-message-number)))))))
1143 (wl-summary-set-message-modified)
1144 (set-buffer-modified-p nil))))
1147 (defun wl-thread-get-depth-of-current-line ()
1152 (if (re-search-forward (concat "^" wl-summary-buffer-number-regexp
1153 "..../..\(.*\)..:.. ")
1155 (while (string-match wl-thread-indent-regexp
1157 (char-after (point))))
1158 (setq depth (1+ depth))
1160 (/ depth wl-thread-indent-level-internal))))
1162 (defun wl-thread-update-indent-string-region (beg end)
1166 (while (< (point) end)
1167 (wl-thread-update-indent-string)
1170 (defsubst wl-thread-make-indent-string (entity)
1173 (space-str (wl-repeat-string wl-thread-space-str-internal
1174 (- wl-thread-indent-level-internal 1)))
1176 (when (wl-thread-entity-get-number
1177 (setq parent (wl-thread-entity-get-parent-entity cur)))
1178 (if (wl-thread-entity-get-younger-brothers cur)
1179 (setq ret-val wl-thread-have-younger-brother-str-internal)
1180 (setq ret-val wl-thread-youngest-child-str-internal))
1181 (setq ret-val (concat ret-val
1183 wl-thread-horizontal-str-internal
1184 (- wl-thread-indent-level-internal 1))))
1186 (while (wl-thread-entity-get-number
1187 (wl-thread-entity-get-parent-entity cur))
1188 (if (wl-thread-entity-get-younger-brothers cur)
1189 (setq ret-val (concat wl-thread-vertical-str-internal
1192 (setq ret-val (concat wl-thread-space-str-internal
1195 (setq cur (wl-thread-entity-get-parent-entity cur))))
1198 (defun wl-thread-update-indent-string ()
1199 "Update indent string of current line."
1203 (let ((inhibit-read-only t)
1204 (buffer-read-only nil)
1206 (when (looking-at (concat "^ *\\([0-9]+\\)"
1207 "..../..\(.*\)..:.. \\("
1208 wl-highlight-thread-indent-string-regexp
1210 (goto-char (match-beginning 2))
1211 (delete-region (match-beginning 2)
1214 (wl-thread-make-indent-string
1215 (wl-thread-get-entity (string-to-int (wl-match-buffer 1)))))
1216 (if (and wl-summary-width
1217 wl-summary-indent-length-limit
1218 (< wl-summary-indent-length-limit
1219 (string-width thr-str)))
1220 (setq thr-str (wl-set-string-width
1221 wl-summary-indent-length-limit
1224 (if wl-summary-highlight
1225 (wl-highlight-summary-current-line))))))
1227 (defun wl-thread-set-parent (&optional parent-number)
1228 "Set current message's parent interactively."
1230 (let ((number (wl-summary-message-number))
1231 (dst-parent (if (interactive-p)
1232 (read-from-minibuffer "Parent Message (No.): ")))
1233 entity dst-parent-entity src-parent children
1236 (if (string= dst-parent "")
1237 (setq dst-parent nil)
1239 (setq dst-parent (string-to-int dst-parent))
1240 (setq dst-parent parent-number)))
1242 (memq dst-parent (wl-thread-get-children-msgs number)))
1243 (error "Parent is children or myself"))
1244 (setq entity (wl-thread-get-entity number))
1245 (when (and number entity)
1247 (setq update-msgs (wl-thread-delete-message number 'deep))
1248 ;; insert as child at new parent
1249 (setq dst-parent-entity (wl-thread-get-entity dst-parent))
1250 (if dst-parent-entity
1253 (wl-thread-entity-get-children dst-parent-entity))
1254 (wl-append update-msgs
1255 (wl-thread-get-children-msgs
1256 (car (last children)) t)))
1257 (wl-thread-entity-set-children
1259 (append children (list number)))
1260 (wl-thread-entity-set-linked entity t))
1262 (wl-append wl-thread-entity-list (list number))
1263 (wl-thread-entity-set-linked entity nil))
1266 (wl-append update-msgs (wl-thread-get-children-msgs number t))
1267 (setq update-msgs (elmo-uniq-list update-msgs))
1268 (wl-thread-entity-set-parent entity dst-parent)
1269 ;; update thread on buffer
1270 (wl-thread-update-line-msgs update-msgs t))))
1273 (product-provide (provide 'wl-thread) (require 'wl-version))
1275 ;;; wl-thread.el ends here