* wl-vars.el (wl-draft-disable-bcc-for-mime-bcc): New user option.
[elisp/wanderlust.git] / wl / wl-thread.el
1 ;;; wl-thread.el --- Thread display modules for Wanderlust.
2
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>
5
6 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
7 ;;      Masahiro MURATA  <muse@ba2.so-net.ne.jp>
8 ;; Keywords: mail, net news
9
10 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
11
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)
15 ;; any later version.
16 ;;
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.
21 ;;
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.
26 ;;
27
28 ;;; Commentary:
29 ;;
30
31 ;;; Code:
32 ;;
33
34 (require 'wl-summary)
35 (require 'wl-highlight)
36 (eval-when-compile (require 'cl))
37
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
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"
48
49 ;;; global flag
50 (defvar wl-thread-insert-force-opened nil)
51
52 ;;;;;; each entity is (number opened-or-not children parent) ;;;;;;;
53
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))))
59     (setq top-list
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...")
64     ;; set obarray value.
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)
69     (while entities
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")))
75
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))
80          parent sibling)
81     (setq wl-summary-buffer-number-list (list (car wl-thread-entity-list)))
82     (while children
83       (wl-thread-entity-make-number-list-from-children
84        (wl-thread-get-entity (car children)))
85       (setq children (cdr children)))
86     (while node
87       (setq parent (wl-thread-entity-get-parent-entity node)
88             sibling (wl-thread-entity-get-younger-brothers
89                      node parent))
90       (while sibling
91         (wl-thread-entity-make-number-list-from-children
92          (wl-thread-get-entity (car sibling)))
93         (setq sibling (cdr sibling)))
94       (setq node parent))
95     (setq wl-summary-buffer-number-list (nreverse
96                                          wl-summary-buffer-number-list))))
97
98 (defun wl-thread-entity-make-number-list-from-children (entity)
99   (let ((msgs (list (car entity)))
100         msgs-stack children)
101     (while msgs
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))
106       (if children
107           (progn
108             (wl-push msgs msgs-stack)
109             (setq msgs children))
110         (unless msgs
111           (while (and (null msgs) msgs-stack)
112             (setq msgs (wl-pop msgs-stack)))))
113       (setq entity (wl-thread-get-entity (car msgs))))))
114
115 (defun wl-thread-save-entity (dir)
116   (wl-thread-save-entities dir)
117   (wl-thread-save-top-list dir))
118
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)
122         (tmp-buffer (get-buffer-create " *wl-thread-save-top-list*")))
123     (save-excursion
124       (set-buffer tmp-buffer)
125       (erase-buffer)
126       (when (file-writable-p top-file)
127         (prin1 entity tmp-buffer)
128         (princ "\n" tmp-buffer)
129         (write-region (point-min) (point-max) top-file nil 'no-msg)
130         (kill-buffer tmp-buffer)))))
131
132 (defun wl-thread-save-entities (dir)
133   (let ((top-file (expand-file-name wl-thread-entity-file dir))
134         (entities wl-thread-entities)
135         (tmp-buffer (get-buffer-create " *wl-thread-save-entities*")))
136     (save-excursion
137       (set-buffer tmp-buffer)
138       (erase-buffer)
139       (when (file-writable-p top-file)
140         (prin1 entities tmp-buffer)
141         (princ "\n" tmp-buffer)
142         (write-region (point-min) (point-max) top-file nil 'no-msg)
143         (kill-buffer tmp-buffer)))))
144
145 (defsubst wl-thread-entity-get-number (entity)
146   (nth 0 entity))
147 (defsubst wl-thread-entity-get-opened (entity)
148   (nth 1 entity))
149 (defsubst wl-thread-entity-get-children (entity)
150   (nth 2 entity))
151 (defsubst wl-thread-entity-get-parent (entity)
152   (nth 3 entity))
153 (defsubst wl-thread-entity-get-linked (entity)
154   (nth 4 entity))
155
156 (defsubst wl-thread-create-entity (num parent &optional opened linked)
157   (list num (or opened wl-thread-insert-opened) nil parent linked))
158
159 (defsubst wl-thread-get-entity (num)
160   (and num
161        (elmo-get-hash-val (format "#%d" num) wl-thread-entity-hashtb)))
162
163 (defsubst wl-thread-entity-set-parent (entity parent)
164   (setcar (cdddr entity) parent)
165   entity)
166
167 (defsubst wl-thread-entity-set-children (entity children)
168   (setcar (cddr entity) children))
169
170 (defsubst wl-thread-entity-set-linked (entity linked)
171   (if (cddddr entity)
172       (setcar (cddddr entity) linked)
173     (nconc entity (list linked)))
174   entity)
175
176 (defsubst wl-thread-reparent-children (children parent)
177   (while children
178     (wl-thread-entity-set-parent
179      (wl-thread-get-entity (car children)) parent)
180     (wl-thread-entity-set-linked
181      (wl-thread-get-entity (car children)) t)
182     (setq children (cdr children))))
183
184 (defsubst wl-thread-entity-insert-as-top (entity)
185   (when (and entity
186              (car entity))
187     (wl-append wl-thread-entity-list (list (car entity)))
188     (setq wl-thread-entities (cons entity wl-thread-entities))
189     (setq wl-summary-buffer-number-list
190           (nconc wl-summary-buffer-number-list (list (car entity))))
191     (elmo-set-hash-val (format "#%d" (car entity)) entity
192                        wl-thread-entity-hashtb)))
193
194 (defsubst wl-thread-entity-insert-as-children (to entity)
195   (let ((children (wl-thread-entity-get-children to))
196         curp curc)
197     (setq curp to)
198     (elmo-list-insert wl-summary-buffer-number-list
199                       (wl-thread-entity-get-number entity)
200                       (progn
201                         (while (setq curc
202                                      (wl-thread-entity-get-children curp))
203                           (setq curp (wl-thread-get-entity
204                                       (nth (- (length curc) 1)
205                                            curc))))
206                         (wl-thread-entity-get-number curp)))
207     (setcar (cddr to) (wl-append children
208                                  (list (car entity))))
209     (setq wl-thread-entities (cons entity wl-thread-entities))
210     (elmo-set-hash-val (format "#%d" (car entity)) entity
211                        wl-thread-entity-hashtb)))
212
213 (defsubst wl-thread-entity-set-opened (entity opened)
214   (setcar (cdr entity) opened))
215
216 (defsubst wl-thread-entity-get-children-num (entity)
217   (let (children
218         ret-val msgs-stack
219         (msgs (list (car entity))))
220    (while msgs
221      (setq msgs (cdr msgs))
222      (setq children (wl-thread-entity-get-children entity))
223      (if (null children)
224          (while (and (null msgs) msgs-stack)
225            (setq msgs (wl-pop msgs-stack)))
226        (setq ret-val (+ (or ret-val 0) (length children)))
227        (wl-push msgs msgs-stack)
228        (setq msgs children))
229      (setq entity (wl-thread-get-entity (car msgs))))
230    ret-val))
231
232 (defsubst wl-thread-entity-get-descendant (entity)
233   (let (children
234         ret-val msgs-stack
235         (msgs (list (car entity))))
236    (while msgs
237      (setq msgs (cdr msgs))
238      (setq children (wl-thread-entity-get-children entity))
239      (if (null children)
240          (while (and (null msgs) msgs-stack)
241            (setq msgs (wl-pop msgs-stack)))
242        (setq ret-val (append ret-val (copy-sequence children)))
243        (wl-push msgs msgs-stack)
244        (setq msgs children))
245      (setq entity (wl-thread-get-entity (car msgs))))
246    ret-val))
247
248 (defsubst wl-thread-entity-get-parent-entity (entity)
249   (wl-thread-get-entity (wl-thread-entity-get-parent entity)))
250
251 (defun wl-thread-entity-get-top-entity (entity)
252   (let ((cur-entity entity)
253         p-num)
254     (while (setq p-num (wl-thread-entity-get-parent cur-entity))
255       (setq cur-entity (wl-thread-get-entity p-num)))
256     cur-entity))
257
258 (defun wl-thread-entity-parent-invisible-p (entity)
259   "If parent of ENTITY is invisible, the top invisible ancestor entity of
260 ENTITY is returned."
261   (let ((cur-entity entity)
262         ret-val)
263     (catch 'done
264       (while (setq cur-entity (wl-thread-entity-get-parent-entity
265                                cur-entity))
266         (if (null (wl-thread-entity-get-number cur-entity))
267             ;; top!!
268             (progn
269               ;;(setq ret-val nil)
270               (throw 'done nil))
271           (when (not (wl-thread-entity-get-opened cur-entity))
272             ;; not opened!!
273             (setq ret-val cur-entity)))))
274     ;; top of closed entity in the path.
275     ret-val))
276
277 (defun wl-thread-entity-get-nearly-older-brother (entity &optional parent)
278   (let ((brothers (wl-thread-entity-get-older-brothers entity parent)))
279     (when brothers
280       (car (last brothers)))))
281
282 (defun wl-thread-entity-get-older-brothers (entity &optional parent)
283   (let* ((parent (or parent
284                      (wl-thread-entity-get-parent-entity entity)))
285          (brothers (wl-thread-entity-get-children parent))
286          ret-val)
287     (if parent
288         brothers
289       (setq brothers wl-thread-entity-list))
290     (while (and brothers
291                 (not (eq (wl-thread-entity-get-number entity)
292                          (car brothers))))
293       (wl-append ret-val (list (car brothers)))
294       (setq brothers (cdr brothers)))
295     ret-val))
296
297 (defun wl-thread-entity-get-younger-brothers (entity &optional parent)
298   (let* ((parent (or parent
299                      (wl-thread-entity-get-parent-entity entity)))
300          (brothers (wl-thread-entity-get-children parent)))
301     (if parent
302         (cdr (memq (wl-thread-entity-get-number entity)
303                    brothers))
304       ;; top!!
305       (cdr (memq (car entity) wl-thread-entity-list)))))
306
307 (defun wl-thread-jump-to-msg (&optional number)
308   (interactive)
309   (let ((num (or number
310                  (string-to-int
311                   (read-from-minibuffer "Jump to Message(No.): ")))))
312     (wl-thread-entity-force-open (wl-thread-get-entity num))
313     (wl-summary-jump-to-msg num)))
314
315 (defun wl-thread-close-all ()
316   "Close all top threads."
317   (interactive)
318   (message "Closing all threads...")
319   (save-excursion
320     (let ((entities wl-thread-entity-list)
321           (cur 0)
322           (len (length wl-thread-entity-list)))
323       (while entities
324         (when (and (wl-thread-entity-get-opened (wl-thread-get-entity
325                                                  (car entities)))
326                    (wl-thread-entity-get-children (wl-thread-get-entity
327                                                    (car entities))))
328           (wl-summary-jump-to-msg (car entities))
329           (wl-thread-open-close))
330         (when (> len elmo-display-progress-threshold)
331           (setq cur (1+ cur))
332           (if (or (zerop (% cur 5)) (= cur len))
333               (elmo-display-progress
334                'wl-thread-close-all "Closing all threads..."
335                (/ (* cur 100) len))))
336         (setq entities (cdr entities)))))
337   (message "Closing all threads...done"))
338
339 (defun wl-thread-open-all ()
340   "Open all threads."
341   (interactive)
342   (message "Opening all threads...")
343   (save-excursion
344     (goto-char (point-min))
345     (let ((len (count-lines (point-min) (point-max)))
346           (cur 0)
347           entity)
348       (while (not (eobp))
349         (if (wl-thread-entity-get-opened
350              (setq entity (wl-thread-get-entity
351                            (wl-summary-message-number))))
352             (forward-line 1)
353           (wl-thread-force-open)
354           (wl-thread-goto-bottom-of-sub-thread))
355         (when (> len elmo-display-progress-threshold)
356           (setq cur (1+ cur))
357           (elmo-display-progress
358            'wl-thread-open-all "Opening all threads..."
359            (/ (* cur 100) len)))))
360     ;; Make sure to be 100%.
361     (elmo-display-progress
362      'wl-thread-open-all "Opening all threads..."
363      100))
364   (message "Opening all threads...done"))
365
366 (defun wl-thread-open-all-unread ()
367   (interactive)
368   (dolist (number (elmo-folder-list-messages-mark-match
369                    wl-summary-buffer-elmo-folder
370                    (wl-regexp-opt (list wl-summary-unread-uncached-mark
371                                         wl-summary-unread-cached-mark
372                                         wl-summary-new-mark
373                                         wl-summary-important-mark))))
374     (wl-thread-entity-force-open (wl-thread-get-entity number))))
375
376 (defsubst wl-thread-maybe-get-children-num (msg)
377   (let ((entity (wl-thread-get-entity msg)))
378     (if (not (wl-thread-entity-get-opened entity))
379         (wl-thread-entity-get-children-num entity))))
380
381 (defsubst wl-thread-update-line-on-buffer-sub (entity msg &optional parent-msg)
382   (let* ((entity (or entity (wl-thread-get-entity msg)))
383          (parent-msg (or parent-msg (wl-thread-entity-get-parent entity)))
384          (overview (elmo-msgdb-get-overview (wl-summary-buffer-msgdb)))
385          (buffer-read-only nil)
386          (inhibit-read-only t)
387          overview-entity temp-mark summary-line invisible-top dest-pair)
388     (if (wl-thread-delete-line-from-buffer msg)
389         (progn
390           (cond
391            ((memq msg wl-summary-buffer-delete-list)
392             (setq temp-mark "D"))
393            ((memq msg wl-summary-buffer-target-mark-list)
394             (setq temp-mark "*"))
395            ((setq dest-pair (assq msg wl-summary-buffer-refile-list))
396             (setq temp-mark "o"))
397            ((setq dest-pair (assq msg wl-summary-buffer-copy-list))
398             (setq temp-mark "O"))
399            (t (setq temp-mark (wl-summary-get-score-mark msg))))
400           (when (setq overview-entity
401                       (elmo-msgdb-overview-get-entity
402                        msg (wl-summary-buffer-msgdb)))
403             (wl-summary-insert-line 
404              (wl-summary-create-line
405               overview-entity
406               (elmo-msgdb-overview-get-entity
407                parent-msg (wl-summary-buffer-msgdb))
408               temp-mark
409               (elmo-msgdb-get-mark (wl-summary-buffer-msgdb) msg)
410               (if wl-thread-insert-force-opened
411                   nil
412                 (wl-thread-maybe-get-children-num msg))
413               (wl-thread-make-indent-string entity)
414               (wl-thread-entity-get-linked entity)))
415             (if dest-pair
416                 (wl-summary-print-destination (car dest-pair)
417                                               (cdr dest-pair)))))
418       ;; insert thread (moving thread)
419       (if (not (setq invisible-top
420                      (wl-thread-entity-parent-invisible-p entity)))
421           (wl-summary-update-thread
422            (elmo-msgdb-overview-get-entity msg (wl-summary-buffer-msgdb))
423            entity
424            (and parent-msg
425                 (elmo-msgdb-overview-get-entity
426                  parent-msg (wl-summary-buffer-msgdb))))
427         ;; currently invisible.. update closed line.
428         (wl-thread-update-children-number invisible-top)))))
429
430 (defun wl-thread-update-line-on-buffer (&optional msg parent-msg updates)
431   (interactive)
432   (let ((msgs (list (or msg (wl-summary-message-number))))
433         entity children msgs-stack)
434    (while msgs
435     (setq msg (wl-pop msgs))
436     (setq updates (and updates (delete msg updates)))
437     (setq entity (wl-thread-get-entity msg))
438     (wl-thread-update-line-on-buffer-sub entity msg parent-msg)
439     ;;
440     (setq children (wl-thread-entity-get-children entity))
441     (if children
442         ;; update children
443         (when (wl-thread-entity-get-opened entity)
444           (wl-push msgs msgs-stack)
445           (setq parent-msg msg
446                 msgs children))
447       (unless msgs
448         (while (and (null msgs) msgs-stack)
449           (setq msgs (wl-pop msgs-stack)))
450         (when msgs
451           (setq parent-msg
452                 (wl-thread-entity-get-number
453                  (wl-thread-entity-get-parent-entity
454                   (wl-thread-get-entity (car msgs)))))))))
455    updates))
456
457 (defun wl-thread-update-line-msgs (msgs &optional no-msg)
458   (wl-delete-all-overlays)
459   (let ((i 0)
460         (updates msgs)
461         len)
462 ;;; (while msgs
463 ;;;   (setq updates
464 ;;;         (append updates
465 ;;;                 (wl-thread-get-children-msgs (car msgs))))
466 ;;;   (setq msgs (cdr msgs)))
467 ;;; (setq updates (elmo-uniq-list updates))
468     (setq len (length updates))
469     (while updates
470       (wl-thread-update-line-on-buffer-sub nil (car updates))
471       (setq updates (cdr updates))
472       (when (and (not no-msg)
473                  (> len elmo-display-progress-threshold))
474         (setq i (1+ i))
475         (if (or (zerop (% i 5)) (= i len))
476             (elmo-display-progress
477              'wl-thread-update-line-msgs "Updating deleted thread..."
478              (/ (* i 100) len)))))))
479
480 (defun wl-thread-delete-line-from-buffer (msg)
481   "Simply delete msg line."
482   (let (beg)
483     (if (wl-summary-jump-to-msg msg)
484         (progn
485           (setq beg (point))
486           (forward-line 1)
487           (delete-region beg (point))
488           t)
489       nil)))
490
491 (defun wl-thread-cleanup-symbols (msgs)
492   (let (entity)
493     (while msgs
494       (when (setq entity (wl-thread-get-entity (car msgs)))
495         ;; delete entity.
496         (setq wl-thread-entities (delq entity wl-thread-entities))
497         ;; free symbol.
498         (elmo-clear-hash-val (format "#%d" (car msgs))
499                              wl-thread-entity-hashtb))
500       (setq msgs (cdr msgs)))))
501
502 (defun wl-thread-get-exist-children (msg &optional include-self)
503   (let ((msgs (list msg))
504         msgs-stack children
505         entity ret-val)
506     (while msgs
507       (setq children (wl-thread-entity-get-children
508                       (setq entity (wl-thread-get-entity (car msgs)))))
509       (when (elmo-msgdb-overview-get-entity (car msgs)
510                                             (wl-summary-buffer-msgdb))
511         (wl-append ret-val (list (car msgs)))
512         (setq children nil))
513       (setq msgs (cdr msgs))
514       (if (null children)
515           (while (and (null msgs) msgs-stack)
516             (setq msgs (wl-pop msgs-stack)))
517         (wl-push msgs msgs-stack)
518         (setq msgs children)))
519     (unless include-self (setq ret-val (delq msg ret-val)))
520     ret-val))
521
522 (defun wl-thread-delete-message (msg &optional deep update)
523   "Delete MSG from entity and buffer."
524   (save-excursion
525     (let* ((entity (wl-thread-get-entity msg))
526            children older-brothers younger-brothers top-child ;;grandchildren
527            top-entity parent update-msgs beg invisible-top)
528       (when entity
529         (setq parent (wl-thread-entity-get-parent-entity entity))
530         (if parent
531             (progn
532 ;;; has parent.
533 ;;;           (setq brothers (wl-thread-entity-get-children parent))
534               (setq older-brothers (wl-thread-entity-get-older-brothers
535                                     entity parent))
536               (setq younger-brothers (wl-thread-entity-get-younger-brothers
537                                       entity parent))
538               ;;
539               (unless deep
540                 (setq children (wl-thread-entity-get-children entity))
541                 (wl-thread-reparent-children
542                  children (wl-thread-entity-get-number parent))
543                 (setq update-msgs
544                       (apply (function nconc)
545                              update-msgs
546                              (mapcar
547                               (function
548                                (lambda (message)
549                                  (wl-thread-get-children-msgs message t)))
550                               children))))
551               (wl-thread-entity-set-children
552                parent (append older-brothers children younger-brothers))
553               ;; If chidren and younger-brothers not exists,
554               ;; update nearly older brother.
555               (when (and older-brothers
556                          (not younger-brothers)
557                          (not children))
558                 (wl-append
559                  update-msgs
560                  (wl-thread-get-children-msgs (car (last older-brothers))))))
561
562           ;; top...oldest child becomes top.
563           (unless deep
564             (setq children (wl-thread-entity-get-children entity))
565             (when children
566               (setq top-child (car children)
567                     children (cdr children))
568               (setq top-entity (wl-thread-get-entity top-child))
569               (wl-thread-entity-set-parent top-entity nil)
570               (wl-thread-entity-set-linked top-entity nil)
571               (wl-append update-msgs
572                          (wl-thread-get-children-msgs top-child t)))
573             (when children
574               (wl-thread-entity-set-children
575                top-entity
576                (append
577                 (wl-thread-entity-get-children top-entity)
578                 children))
579               (wl-thread-reparent-children children top-child)
580               (wl-append update-msgs children)))
581           ;; delete myself from top list.
582           (setq wl-summary-buffer-number-list
583                 (delq msg wl-summary-buffer-number-list))
584           (setq older-brothers (wl-thread-entity-get-older-brothers
585                                 entity nil))
586           (setq younger-brothers (wl-thread-entity-get-younger-brothers
587                                   entity nil))
588           (setq wl-thread-entity-list
589                 (append (append older-brothers
590                                 (and top-child (list top-child)))
591                         younger-brothers))))
592
593       (if deep
594           ;; delete thread on buffer
595           (when (wl-summary-jump-to-msg msg)
596             (setq beg (point))
597             (wl-thread-goto-bottom-of-sub-thread)
598             (delete-region beg (point)))
599         ;; delete myself from buffer.
600         (unless (wl-thread-delete-line-from-buffer msg)
601           ;; jump to suitable point.
602           ;; just upon the oldest younger-brother of my top.
603           (setq invisible-top
604                 (car (wl-thread-entity-parent-invisible-p entity)))
605           (if invisible-top
606               (progn
607                 (wl-append update-msgs (list invisible-top))
608                 (wl-summary-jump-to-msg invisible-top))
609             (goto-char (point-max))))
610
611         ;; insert children if thread is closed or delete top.
612         (when (or top-child
613                   (not (wl-thread-entity-get-opened entity)))
614           (let* (next-top insert-msgs ent e grandchildren)
615             (if top-child
616                 (progn
617                   (setq insert-msgs (wl-thread-get-exist-children
618                                      top-child 'include-self))
619                   (setq next-top (car insert-msgs))
620                   (setq ent (wl-thread-get-entity next-top))
621                   (when (and
622                          (wl-thread-entity-get-opened entity) ;; open
623                          (not (wl-thread-entity-get-opened ent)) ;; close
624                          (setq grandchildren
625                                (wl-thread-entity-get-children ent))
626                          (wl-summary-jump-to-msg next-top))
627                     (forward-line 1)
628                     (setq insert-msgs (append (cdr insert-msgs) grandchildren)))
629                   (when top-entity (wl-thread-entity-set-opened top-entity t))
630                   (when ent (wl-thread-entity-set-opened ent t)))
631               (when (not invisible-top)
632                 (setq insert-msgs (wl-thread-get-exist-children msg))
633                 ;; First msg always opened, because first msg maybe becomes top.
634                 (if (setq ent (wl-thread-get-entity (car insert-msgs)))
635                     (wl-thread-entity-set-opened ent t))))
636             ;; insert children
637             (while insert-msgs
638               ;; if no exists in summary, insert entity.
639               (when (and (car insert-msgs)
640                          (not (wl-summary-jump-to-msg (car insert-msgs))))
641                 (setq ent (wl-thread-get-entity (car insert-msgs)))
642                 (wl-thread-insert-entity 0 ; no mean now...
643                                          ent entity nil))
644               (setq insert-msgs (cdr insert-msgs))))))
645       (if update
646           ;; modify buffer.
647           (while update-msgs
648             (wl-thread-update-line-on-buffer-sub nil (pop update-msgs)))
649         ;; don't update buffer
650         update-msgs)))) ; return value
651
652 (defun wl-thread-insert-message (overview-entity
653                                  msg parent-msg &optional update linked)
654   "Insert MSG to the entity.
655 When optional argument UPDATE is non-nil,
656 Message is inserted to the summary buffer."
657   (let ((parent (wl-thread-get-entity parent-msg))
658         child-entity invisible-top)
659 ;;; Update the thread view...not implemented yet.
660 ;;;  (when force-insert
661 ;;;    (if parent
662 ;;;       (wl-thread-entity-force-open parent))
663     (if parent
664         ;; insert as children.
665         (wl-thread-entity-insert-as-children
666          parent
667          (setq child-entity (wl-thread-create-entity
668                              msg (nth 0 parent) nil linked)))
669       ;; insert as top message.
670       (wl-thread-entity-insert-as-top
671        (wl-thread-create-entity msg nil)))
672     (if update
673         (if (not (setq invisible-top
674                        (wl-thread-entity-parent-invisible-p child-entity)))
675             ;; visible.
676             (progn
677               (wl-summary-update-thread
678                overview-entity
679                child-entity
680                (elmo-msgdb-overview-get-entity
681                 parent-msg (wl-summary-buffer-msgdb)))
682               (when parent
683                 ;; use thread structure.
684                 (wl-thread-entity-get-nearly-older-brother
685                  child-entity parent))) ; return value
686 ;;;             (wl-thread-entity-get-number
687 ;;;              (wl-thread-entity-get-top-entity parent)))) ; return value;
688 ;;;           (setq beg (point))
689 ;;;           (wl-thread-goto-bottom-of-sub-thread)
690 ;;;           (wl-thread-update-indent-string-region beg (point)))
691           ;; currently invisible.. update closed line.
692           (wl-thread-update-children-number invisible-top)
693           nil))))
694
695 (defun wl-thread-get-parent-list (msgs)
696   (let* ((msgs2 msgs)
697          myself)
698     (while msgs2
699       (setq myself (car msgs2)
700             msgs2 (cdr msgs2))
701       (while (not (eq myself (car msgs2)))
702         (if (wl-thread-descendant-p myself (car msgs2))
703             (setq msgs (delq (car msgs2) msgs)))
704         (setq msgs2 (or (cdr msgs2) msgs)))
705       (setq msgs2 (cdr msgs2)))
706     msgs))
707
708 (defun wl-thread-update-indent-string-thread (top-list)
709   (let ((top-list (wl-thread-get-parent-list top-list))
710         beg)
711     (while top-list
712       (when (car top-list)
713         (wl-summary-jump-to-msg (car top-list))
714         (setq beg (point))
715         (wl-thread-goto-bottom-of-sub-thread)
716         (wl-thread-update-indent-string-region beg (point)))
717       (setq top-list (cdr top-list)))))
718
719 (defun wl-thread-update-children-number (entity)
720   "Update the children number."
721   (wl-thread-update-line-on-buffer (wl-thread-entity-get-number entity)))
722
723 ;;
724 ;; Thread oriented commands.
725 ;;
726 (defun wl-thread-call-region-func (func &optional arg)
727   (save-excursion
728     (if arg
729         (wl-summary-goto-top-of-current-thread)
730       (beginning-of-line))
731     (let ((beg (point)))
732       (wl-thread-goto-bottom-of-sub-thread)
733       (funcall func beg (point)))))
734
735 (defun wl-thread-prefetch (&optional arg)
736   (interactive "P")
737   (wl-thread-call-region-func 'wl-summary-prefetch-region arg))
738
739 (defun wl-thread-msg-mark-as-important (msg)
740   "Set mark as important for invisible MSG. Modeline is not changed."
741   (let ((msgdb (wl-summary-buffer-msgdb))
742         cur-mark)
743     (setq cur-mark (elmo-msgdb-get-mark msgdb msg))
744     (elmo-msgdb-set-mark msgdb
745                          msg
746                          (if (string= cur-mark wl-summary-important-mark)
747                              nil
748                            wl-summary-important-mark))
749     (wl-summary-set-mark-modified)))
750
751 (defun wl-thread-mark-as-read (&optional arg)
752   (interactive "P")
753   (wl-thread-call-region-func 'wl-summary-mark-as-read-region arg))
754
755 (defun wl-thread-mark-as-unread (&optional arg)
756   (interactive "P")
757   (wl-thread-call-region-func 'wl-summary-mark-as-unread-region arg))
758
759 (defun wl-thread-mark-as-important (&optional arg)
760   (interactive "P")
761   (wl-thread-call-region-func 'wl-summary-mark-as-important-region arg))
762
763 (defun wl-thread-copy (&optional arg)
764   (interactive "P")
765   (wl-thread-call-region-func 'wl-summary-copy-region arg))
766
767 (defun wl-thread-refile (&optional arg)
768   (interactive "P")
769   (condition-case err
770       (progn
771         (wl-thread-call-region-func 'wl-summary-refile-region arg)
772         (if arg
773             (wl-summary-goto-top-of-current-thread))
774         (wl-thread-goto-bottom-of-sub-thread))
775     (error
776      (elmo-display-error err t)
777      nil)))
778
779 (defun wl-thread-delete (&optional arg)
780   (interactive "P")
781   (wl-thread-call-region-func 'wl-summary-delete-region arg)
782   (if arg
783       (wl-summary-goto-top-of-current-thread))
784   (if (not wl-summary-move-direction-downward)
785       (wl-summary-prev)
786     (wl-thread-goto-bottom-of-sub-thread)
787     (if wl-summary-buffer-disp-msg
788         (wl-summary-redisplay))))
789
790 (defun wl-thread-target-mark (&optional arg)
791   (interactive "P")
792   (wl-thread-call-region-func 'wl-summary-target-mark-region arg))
793
794 (defun wl-thread-unmark (&optional arg)
795   (interactive "P")
796   (wl-thread-call-region-func 'wl-summary-unmark-region arg))
797
798 (defun wl-thread-exec (&optional arg)
799   (interactive "P")
800   (wl-thread-call-region-func 'wl-summary-exec-region arg))
801
802 (defun wl-thread-save (&optional arg)
803   (interactive "P")
804   (wl-thread-call-region-func 'wl-summary-save-region arg))
805
806 (defun wl-thread-force-open (&optional msg-num)
807   "force open current folder"
808   (if msg-num
809       (wl-summary-jump-to-msg msg-num))
810   (let ((wl-thread-insert-force-opened t))
811     (wl-thread-open-close)))
812
813 (defun wl-thread-entity-force-open (entity)
814   (let ((wl-thread-insert-force-opened t)
815         notopen)
816     (if (null (wl-thread-entity-get-parent entity))
817         ;; top!!
818         (if (and (not (wl-thread-entity-get-opened entity))
819                  (wl-thread-entity-get-children entity))
820             (wl-thread-force-open (wl-thread-entity-get-number entity)))
821       (if (setq notopen (wl-thread-entity-parent-invisible-p entity))
822           (wl-thread-force-open (wl-thread-entity-get-number notopen))))))
823
824 (defun wl-thread-insert-top ()
825   (let ((elist wl-thread-entity-list)
826         (len (length wl-thread-entity-list))
827         (cur 0))
828     (wl-delete-all-overlays)
829     (while elist
830       (wl-thread-insert-entity
831        0
832        (wl-thread-get-entity (car elist))
833        nil
834        len)
835       (setq elist (cdr elist))
836       (when (> len elmo-display-progress-threshold)
837         (setq cur (1+ cur))
838         (if (or (zerop (% cur 2)) (= cur len))
839             (elmo-display-progress
840              'wl-thread-insert-top "Inserting thread..."
841              (/ (* cur 100) len)))))))
842
843 (defsubst wl-thread-insert-entity-sub (indent entity parent-entity all)
844   (let (msg-num
845         overview-entity
846         temp-mark
847         summary-line)
848     (when (setq msg-num (wl-thread-entity-get-number entity))
849       (unless all ; all...means no temp-mark.
850         (cond ((memq msg-num wl-summary-buffer-delete-list)
851                (setq temp-mark "D"))
852               ((memq msg-num wl-summary-buffer-target-mark-list)
853                (setq temp-mark "*"))
854               ((assq msg-num wl-summary-buffer-refile-list)
855                (setq temp-mark "o"))
856               ((assq msg-num wl-summary-buffer-copy-list)
857                (setq temp-mark "O"))))
858       (unless temp-mark
859         (setq temp-mark (wl-summary-get-score-mark msg-num)))
860       (setq overview-entity
861             (elmo-msgdb-overview-get-entity
862              (nth 0 entity) (wl-summary-buffer-msgdb)))
863 ;;;   (wl-delete-all-overlays)
864       (when overview-entity
865         (wl-summary-insert-line
866          (wl-summary-create-line
867           overview-entity
868           (elmo-msgdb-overview-get-entity
869            (nth 0 parent-entity) (wl-summary-buffer-msgdb))
870           temp-mark
871           (elmo-msgdb-get-mark (wl-summary-buffer-msgdb) msg-num)
872           (if wl-thread-insert-force-opened
873               nil
874             (wl-thread-maybe-get-children-num msg-num))
875           (wl-thread-make-indent-string entity)
876           (wl-thread-entity-get-linked entity)))))))
877
878 (defun wl-thread-insert-entity (indent entity parent-entity all)
879   "Insert thread entity in current buffer."
880   (let ((msgs (list (car entity)))
881         children msgs-stack)
882     (while msgs
883       (wl-thread-insert-entity-sub indent entity parent-entity all)
884       (setq msgs (cdr msgs))
885       (setq children (nth 2 entity))
886       (if children
887           ;; insert children
888           (when (or wl-thread-insert-force-opened
889                     (wl-thread-entity-get-opened entity))
890             (wl-thread-entity-set-opened entity t)
891             (wl-push msgs msgs-stack)
892             (setq msgs children
893                   indent (1+ indent)
894                   parent-entity entity)))
895       (unless msgs
896         (while (and (null msgs) msgs-stack)
897           (setq msgs (wl-pop msgs-stack))
898           (setq indent (1- indent)))
899         (when msgs
900           (setq entity (wl-thread-get-entity (car msgs)))
901           (setq parent-entity (wl-thread-entity-get-parent-entity entity))))
902       (setq entity (wl-thread-get-entity (car msgs))))))
903
904 (defun wl-thread-descendant-p (mynumber number)
905   (let ((cur (wl-thread-get-entity number))
906         num)
907     (catch 'done
908       (while cur
909         (setq cur (wl-thread-entity-get-parent-entity cur))
910         (if (null (setq num (wl-thread-entity-get-number cur))) ; top!
911             (throw 'done nil))
912         (if (and num
913                  (eq mynumber (wl-thread-entity-get-number cur)))
914             (throw 'done t)))
915       nil)))
916
917 ;; (defun wl-thread-goto-bottom-of-sub-thread ()
918 ;;   (interactive)
919 ;;   (let ((depth (wl-thread-get-depth-of-current-line)))
920 ;;     (forward-line 1)
921 ;;     (while (and (not (eobp))
922 ;;              (> (wl-thread-get-depth-of-current-line)
923 ;;                 depth))
924 ;;       (forward-line 1))
925 ;;     (beginning-of-line)))
926
927 (defun wl-thread-goto-bottom-of-sub-thread (&optional msg)
928   (interactive)
929   (let ((mynumber (or msg (wl-summary-message-number))))
930     (forward-line 1)
931     (while (wl-thread-descendant-p mynumber (wl-summary-message-number))
932       (forward-line 1))
933     (beginning-of-line)))
934
935 (defun wl-thread-remove-destination-region (beg end)
936   (save-excursion
937     (save-restriction
938       (narrow-to-region beg end)
939       (goto-char (point-min))
940       (while (not (eobp))
941         (let ((num (wl-summary-message-number)))
942           (if (assq num wl-summary-buffer-refile-list)
943               (wl-summary-remove-destination)))
944         (forward-line 1)))))
945
946 (defun wl-thread-print-destination-region (beg end)
947   (if (or wl-summary-buffer-refile-list
948           wl-summary-buffer-copy-list)
949       (save-excursion
950         (save-restriction
951           (narrow-to-region beg end)
952           (goto-char (point-min))
953           (while (not (eobp))
954             (let ((num (wl-summary-message-number))
955                   pair)
956               (if (or (setq pair (assq num wl-summary-buffer-refile-list))
957                       (setq pair (assq num wl-summary-buffer-copy-list)))
958                   (wl-summary-print-destination (car pair) (cdr pair))))
959             (forward-line 1))))))
960
961 (defsubst wl-thread-get-children-msgs (msg &optional visible-only)
962   (let ((msgs (list msg))
963         msgs-stack children
964         entity ret-val)
965     (while msgs
966       (wl-append ret-val (list (car msgs)))
967       (setq children (wl-thread-entity-get-children
968                       (setq entity (wl-thread-get-entity (car msgs)))))
969       (if (and visible-only
970                (not (wl-thread-entity-get-opened entity)))
971           (setq children nil))
972       (setq msgs (cdr msgs))
973       (if (null children)
974           (while (and (null msgs) msgs-stack)
975             (setq msgs (wl-pop msgs-stack)))
976         (wl-push msgs msgs-stack)
977         (setq msgs children)))
978     ret-val))
979
980 (defun wl-thread-get-children-msgs-uncached (msg &optional uncached-marks)
981   (let ((children-msgs (wl-thread-get-children-msgs msg))
982         (number-alist (elmo-msgdb-get-number-alist (wl-summary-buffer-msgdb)))
983         mark
984         uncached-list)
985     (while children-msgs
986       (if (and (not (eq msg (car children-msgs))) ; except itself
987                (or (and uncached-marks
988                         (setq mark (elmo-msgdb-get-mark
989                                     (wl-summary-buffer-msgdb)
990                                     (car children-msgs)))
991                         (member mark uncached-marks))
992                    (and (not uncached-marks)
993                         (null (elmo-file-cache-exists-p
994                                (elmo-message-field
995                                 wl-summary-buffer-elmo-folder
996                                 (car children-msgs)
997                                 'message-id))))))
998           (wl-append uncached-list (list (car children-msgs))))
999       (setq children-msgs (cdr children-msgs)))
1000     uncached-list))
1001
1002 (defun wl-thread-get-children-msgs-with-mark (msg mark)
1003   (let ((children-msgs (wl-thread-get-children-msgs msg))
1004         (check-func (cond ((string= mark "o")
1005                            'wl-summary-msg-marked-as-refiled)
1006                           ((string= mark "O")
1007                            'wl-summary-msg-marked-as-copied)
1008                           ((string= mark "D")
1009                            'wl-summary-msg-marked-as-deleted)
1010                           ((string= mark "*")
1011                            'wl-summary-msg-marked-as-target)))
1012         ret-val)
1013     (while children-msgs
1014       (if (funcall check-func (car children-msgs))
1015           (wl-append ret-val (list (car children-msgs))))
1016       (setq children-msgs (cdr children-msgs)))
1017     ret-val))
1018
1019 (defun wl-thread-close (entity)
1020   (let (depth beg)
1021     (wl-thread-entity-set-opened entity nil)
1022     (setq depth (wl-thread-get-depth-of-current-line))
1023     (beginning-of-line)
1024     (setq beg (point))
1025     (wl-thread-goto-bottom-of-sub-thread)
1026     (wl-thread-remove-destination-region beg
1027                                          (point))
1028     (forward-char -1)   ;; needed for mouse-face.
1029     (delete-region beg (point))
1030     (wl-thread-insert-entity (- depth 1)
1031                              entity
1032                              (wl-thread-get-entity
1033                               (nth 3 entity))
1034                              nil)
1035     (delete-char 1) ; delete '\n'
1036     (wl-thread-print-destination-region beg (point))))
1037
1038 (defun wl-thread-open (entity)
1039   (let (depth beg)
1040     (beginning-of-line)
1041     (setq beg (point))
1042     (setq depth (wl-thread-get-depth-of-current-line))
1043     (end-of-line)
1044     (delete-region beg (point))
1045     (wl-thread-entity-set-opened entity t)
1046     (wl-thread-insert-entity depth ;(- depth 1)
1047                              entity
1048                              (wl-thread-get-entity
1049                               (nth 3 entity)) nil)
1050     (delete-char 1) ; delete '\n'
1051     (wl-thread-print-destination-region beg (point))))
1052
1053 (defun wl-thread-open-close (&optional force-open)
1054   (interactive "P")
1055   (when (eq wl-summary-buffer-view 'thread)
1056 ;;; (if (equal wl-thread-top-entity '(nil t nil nil))
1057 ;;;     (error "There's no thread structure"))
1058     (save-excursion
1059       (let ((inhibit-read-only t)
1060             (buffer-read-only nil)
1061             (wl-thread-insert-force-opened
1062              (or wl-thread-insert-force-opened
1063                  force-open))
1064             msg entity parent)
1065         (setq msg (wl-summary-message-number))
1066         (setq entity (wl-thread-get-entity msg))
1067         (if (wl-thread-entity-get-opened entity)
1068             ;; if already opened, close its child!
1069           (if (wl-thread-entity-get-children entity)
1070               (wl-thread-close entity)
1071             ;; opened, but has no children, close its parent!
1072             (when (setq parent (wl-thread-entity-get-parent entity))
1073               (wl-summary-jump-to-msg parent)
1074               (wl-thread-close
1075                (wl-thread-get-entity (wl-summary-message-number)))))
1076           ;; if closed (or it is just a thread bottom message)
1077           ;; has children, open it!
1078           (if (wl-thread-entity-get-children entity)
1079               (wl-thread-open entity)
1080             ;; closed, and has no children, close its parent!
1081             (setq msg (or (wl-thread-entity-get-parent entity)
1082                           (wl-thread-entity-get-number entity)))
1083             (when msg
1084               (wl-summary-jump-to-msg msg)
1085               (wl-thread-close
1086                (wl-thread-get-entity (wl-summary-message-number)))))))
1087       (when wl-summary-lazy-highlight
1088         (wl-highlight-summary-window))
1089       (wl-summary-set-message-modified)
1090       (set-buffer-modified-p nil))))
1091
1092 (defun wl-thread-get-depth-of-current-line ()
1093   (let ((entity (wl-thread-get-entity (wl-summary-message-number)))
1094         (depth 0)
1095         number)
1096     (while (setq number (wl-thread-entity-get-parent entity))
1097       (incf depth)
1098       (setq entity (wl-thread-get-entity number)))
1099     depth))
1100   
1101 (defun wl-thread-update-indent-string-region (beg end)
1102   (interactive "r")
1103   (save-excursion
1104     (goto-char beg)
1105     (while (< (point) end)
1106       ;(wl-thread-update-indent-string)
1107       (wl-thread-update-line-on-buffer)
1108       (forward-line 1))))
1109
1110 (defsubst wl-thread-make-indent-string (entity)
1111   (let ((cur entity)
1112         (ret-val "")
1113         (space-str (wl-repeat-string wl-thread-space-str-internal
1114                                      (- wl-thread-indent-level-internal 1)))
1115         parent)
1116     (when (wl-thread-entity-get-number
1117            (setq parent (wl-thread-entity-get-parent-entity cur)))
1118       (if (wl-thread-entity-get-younger-brothers cur)
1119           (setq ret-val wl-thread-have-younger-brother-str-internal)
1120         (setq ret-val wl-thread-youngest-child-str-internal))
1121       (setq ret-val (concat ret-val
1122                             (wl-repeat-string
1123                              wl-thread-horizontal-str-internal
1124                              (- wl-thread-indent-level-internal 1))))
1125       (setq cur parent)
1126       (while (wl-thread-entity-get-number
1127               (wl-thread-entity-get-parent-entity cur))
1128         (if (wl-thread-entity-get-younger-brothers cur)
1129             (setq ret-val (concat wl-thread-vertical-str-internal
1130                                   space-str
1131                                   ret-val))
1132           (setq ret-val (concat wl-thread-space-str-internal
1133                                 space-str
1134                                 ret-val)))
1135         (setq cur (wl-thread-entity-get-parent-entity cur))))
1136     ret-val))
1137
1138 (defun wl-thread-set-parent (&optional parent-number)
1139   "Set current message's parent interactively."
1140   (interactive)
1141   (let ((number (wl-summary-message-number))
1142         (dst-parent (if (interactive-p)
1143                         (read-from-minibuffer "Parent Message (No.): ")))
1144         entity dst-parent-entity src-parent children
1145         update-msgs
1146         buffer-read-only)
1147     (if (string= dst-parent "")
1148         (setq dst-parent nil)
1149       (if (interactive-p)
1150           (setq dst-parent (string-to-int dst-parent))
1151         (setq dst-parent parent-number)))
1152     (if (and dst-parent
1153              (memq dst-parent (wl-thread-get-children-msgs number)))
1154         (error "Parent is children or myself"))
1155     (setq entity (wl-thread-get-entity number))
1156     (when (and number entity)
1157       ;; delete thread
1158       (setq update-msgs (wl-thread-delete-message number 'deep))
1159       ;; insert as child at new parent
1160       (setq dst-parent-entity (wl-thread-get-entity dst-parent))
1161       (if dst-parent-entity
1162           (progn
1163             (if (setq children
1164                       (wl-thread-entity-get-children dst-parent-entity))
1165                 (wl-append update-msgs
1166                            (wl-thread-get-children-msgs
1167                             (car (last children)) t)))
1168             (wl-thread-entity-set-children
1169              dst-parent-entity
1170              (append children (list number)))
1171             (wl-thread-entity-set-linked entity t))
1172         ;; insert as top
1173         (wl-append wl-thread-entity-list (list number))
1174         (wl-thread-entity-set-linked entity nil))
1175
1176       ;; update my thread
1177       (wl-append update-msgs (wl-thread-get-children-msgs number t))
1178       (setq update-msgs (elmo-uniq-list update-msgs))
1179       (wl-thread-entity-set-parent entity dst-parent)
1180       ;; update thread on buffer
1181       (wl-thread-update-line-msgs update-msgs t))))
1182
1183 (require 'product)
1184 (product-provide (provide 'wl-thread) (require 'wl-version))
1185
1186 ;;; wl-thread.el ends here