For ghost summary problem.
[elisp/wanderlust.git] / elmo / elmo-pipe.el
1 ;;; elmo-pipe.el -- PIPE Interface for ELMO.
2
3 ;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
4
5 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
6 ;; Keywords: mail, net news
7
8 ;; This file is part of ELMO (Elisp Library for Message Orchestration).
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14 ;;
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19 ;;
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24 ;;
25
26 ;;; Commentary:
27 ;; 
28
29 ;;; Code:
30 ;; 
31
32 (require 'elmo-msgdb)
33
34 (defsubst elmo-pipe-spec-src (spec)
35   (nth 1 spec))
36
37 (defsubst elmo-pipe-spec-dst (spec)
38   (nth 2 spec))
39
40 (defalias 'elmo-pipe-msgdb-create 'elmo-pipe-msgdb-create-as-numlist)
41
42 (defun elmo-pipe-msgdb-create-as-numlist (spec numlist new-mark already-mark
43                                                seen-mark important-mark
44                                                seen-list)
45   (elmo-msgdb-create-as-numlist (elmo-pipe-spec-dst spec)
46                                 numlist new-mark already-mark
47                                 seen-mark important-mark seen-list))
48
49 (defun elmo-pipe-list-folders (spec &optional hierarchy)
50   nil)
51
52 (defun elmo-pipe-append-msg (spec string &optional msg no-see)
53   (elmo-append-msg (elmo-pipe-spec-dst spec) string))
54
55 (defun elmo-pipe-read-msg (spec number outbuf)
56   (elmo-call-func (elmo-pipe-spec-dst spec)
57                   "read-msg"
58                   number outbuf))
59
60 (defun elmo-pipe-delete-msgs (spec msgs)
61   (elmo-delete-msgs (elmo-pipe-spec-dst spec) msgs))
62
63 (defvar elmo-pipe-drained-hook nil "A hook called when the pipe is flushed.")
64
65 (defun elmo-pipe-drain (src dst)
66   (let ((msgdb (elmo-msgdb-load src))
67         elmo-nntp-use-cache
68         elmo-imap4-use-cache
69         elmo-pop3-use-cache ; Inhibit caching while moving messages.
70         elmo-pop3-use-uidl) ; No need to use UIDL
71     (message "Checking %s..." src)
72     (elmo-move-msgs src (elmo-list-folder src) dst msgdb)
73     ;; Don't save msgdb here.
74     ;; Because summary view of original folder is not updated yet.
75     ;; (elmo-msgdb-save src msgdb)
76     (elmo-commit src)
77     (run-hooks 'elmo-pipe-drained-hook)))
78
79 (defun elmo-pipe-list-folder (spec)
80   (elmo-pipe-drain (elmo-pipe-spec-src spec)
81                    (elmo-pipe-spec-dst spec))
82   (let ((killed (and elmo-use-killed-list
83                      (elmo-msgdb-killed-list-load
84                       (elmo-msgdb-expand-path spec))))
85         numbers)
86     (setq numbers (elmo-list-folder (elmo-pipe-spec-dst spec)))
87     (elmo-living-messages numbers killed)))
88
89 (defun elmo-pipe-list-folder-unread (spec number-alist mark-alist unread-marks)
90   (elmo-list-folder-unread (elmo-pipe-spec-dst spec)
91                            number-alist mark-alist unread-marks))
92   
93 (defun elmo-pipe-list-folder-important (spec number-alist)
94   (elmo-list-folder-important (elmo-pipe-spec-dst spec) number-alist))
95
96 (defun elmo-pipe-max-of-folder (spec)
97   (let* (elmo-pop3-use-uidl
98          (src-length (length (elmo-list-folder (elmo-pipe-spec-src spec))))
99          (dst-list (elmo-list-folder (elmo-pipe-spec-dst spec))))
100     (cons (+ src-length (elmo-max-of-list dst-list))
101           (+ src-length (length dst-list)))))
102
103 (defun elmo-pipe-folder-exists-p (spec)
104   (and (elmo-folder-exists-p (elmo-pipe-spec-src spec))
105        (elmo-folder-exists-p (elmo-pipe-spec-dst spec))))
106
107 (defun elmo-pipe-folder-creatable-p (spec)
108   (or (elmo-folder-creatable-p (elmo-pipe-spec-src spec))
109       (elmo-folder-creatable-p (elmo-pipe-spec-dst spec))))
110
111 (defun elmo-pipe-create-folder (spec)
112   (if (and (not (elmo-folder-exists-p (elmo-pipe-spec-src spec)))
113            (elmo-folder-creatable-p (elmo-pipe-spec-src spec)))
114       (elmo-create-folder (elmo-pipe-spec-src spec)))
115   (if (and (not (elmo-folder-exists-p (elmo-pipe-spec-dst spec)))
116            (elmo-folder-creatable-p (elmo-pipe-spec-dst spec)))
117       (elmo-create-folder (elmo-pipe-spec-dst spec))))
118
119 (defun elmo-pipe-search (spec condition &optional numlist)
120   (elmo-search (elmo-pipe-spec-dst spec) condition numlist))
121
122 (defun elmo-pipe-use-cache-p (spec number)
123   (elmo-use-cache-p (elmo-pipe-spec-dst spec) number))
124
125 (defun elmo-pipe-commit (spec)
126   (elmo-commit (elmo-pipe-spec-src spec))
127   (elmo-commit (elmo-pipe-spec-dst spec)))
128
129 (defun elmo-pipe-plugged-p (spec)
130   (and (elmo-folder-plugged-p (elmo-pipe-spec-src spec))
131        (elmo-folder-plugged-p (elmo-pipe-spec-dst spec))))
132
133 (defun elmo-pipe-set-plugged (spec plugged add)
134   (elmo-folder-set-plugged (elmo-pipe-spec-src spec) plugged add)
135   (elmo-folder-set-plugged (elmo-pipe-spec-dst spec) plugged add))
136
137 (defun elmo-pipe-local-file-p (spec number)
138   (elmo-local-file-p (elmo-pipe-spec-dst spec) number))
139
140 (defun elmo-pipe-get-msg-filename (spec number &optional loc-alist)
141   (elmo-get-msg-filename (elmo-pipe-spec-dst spec) number loc-alist))
142
143 (defun elmo-pipe-sync-number-alist (spec number-alist)
144   (elmo-call-func (elmo-pipe-spec-src spec)
145                   "sync-number-alist" number-alist)) ; ??
146
147 (defun elmo-pipe-server-diff (spec)
148   nil)
149
150 (defalias 'elmo-pipe-folder-diff 'elmo-generic-folder-diff)
151
152 (require 'product)
153 (product-provide (provide 'elmo-pipe) (require 'elmo-version))
154
155 ;;; elmo-pipe.el ends here