Import 1.x.
[elisp/wanderlust.git] / elmo / elmo-archive.el
1 ;;; elmo-archive.el -- Archive folder of ELMO.
2
3 ;; Copyright 1998,1999,2000 OKUNISHI Fujikazu <fuji0924@mbox.kyoto-inet.or.jp>
4 ;;                          Yuuichi Teranishi <teranisi@gohome.org>
5
6 ;; Author:  OKUNISHI Fujikazu <fuji0924@mbox.kyoto-inet.or.jp>
7 ;; Keywords: mail, net news
8 ;; Created: Sep 13, 1998
9 ;; Revised: Dec 15, 1998
10
11 ;; This file is part of ELMO (Elisp Library for Message Orchestration).
12
13 ;; This program is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17 ;;
18 ;; This program is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 ;; GNU General Public License for more details.
22 ;;
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27 ;;
28
29 ;;; Commentary:
30 ;; 
31 ;; TODO:
32 ;; [\e$B%\%=\e(B] append-msgs() \e$B$,M_$7$$!J$1$I\e(B multi-refile \e$BIT2D!K!#\e(B
33 ;; Info-Zip \e$B@lMQ%(!<%8%'%s%H$rMQ$$$?F|K\8l8!:w!J\e(BOS/2 \e$B@lMQ!K!#\e(B
34
35 ;;; Code:
36 ;; 
37
38 (require 'elmo-msgdb)
39 (require 'emu)
40 (require 'std11)
41 (eval-when-compile (require 'elmo-localdir))
42
43 ;;; Const
44 (defconst elmo-archive-version "v0.18 [990729/alpha]")
45
46 ;;; User vars.
47 (defvar elmo-archive-lha-dos-compatible
48   (memq system-type '(OS/2 emx windows-nt))
49   "*If non-nil, regard your LHA as compatible to DOS version.")
50
51 (defvar elmo-archive-use-izip-agent (memq system-type '(OS/2 emx))
52   "*If non-nil, use the special agent in fetching headers.")
53
54 (defvar elmo-archive-folder-path "~/Mail"
55   "*Base directory for archive folders.")
56
57 (defvar elmo-archive-basename "elmo-archive"
58   "*Common basename of archive folder file, w/o suffix.")
59
60 (defvar elmo-archive-cmdstr-max-length 8000 ; SASAKI Osamu's suggestion
61   "*Command line string limitation under OS/2, exactly 8190 bytes.")
62
63 (defvar elmo-archive-fetch-headers-volume 50
64   "*Quantity of article headers to fetch per once.")
65
66 (defvar elmo-archive-dummy-file ".elmo-archive"
67   "*Name of dummy file that will be appended when the folder is null.")
68
69 (defvar elmo-archive-check-existance-strict t
70   "*Check existance of archive contents if non-nil.")
71
72 (defvar elmo-archive-load-hook nil
73   "*Hook called after loading elmo-archive.el.")
74
75 (defvar elmo-archive-treat-file nil
76   "*Treat archive folder as a file if non-nil.")
77
78 ;;; MMDF parser -- info-zip agent w/ REXX
79 (defvar elmo-mmdf-delimiter "^\01\01\01\01$"
80   "*Regular expression of MMDF delimiter.")
81
82 (defvar elmo-unixmail-delimiter "^From \\([^ \t]+\\) \\(.+\\)"
83   "*Regular expression of UNIX Mail delimiter.")
84
85 (defvar elmo-archive-header-regexp "^[ \t]*[-=][-=][-=][-=]"
86   "*Common regexp of the delimiter in listing archive.") ;; marche
87
88 (defvar elmo-archive-file-regexp-alist
89   (append
90    (if elmo-archive-lha-dos-compatible
91        '((lha . "^%s\\([0-9]+\\)$"))            ; OS/2,DOS w/  "-x"
92      '((lha . "^.*[ \t]%s\\([0-9]+\\)$")))
93    '((zip . "^.*[ \t]%s\\([0-9]+\\)$")
94      (zoo . "^.*[ \t]%s\\([0-9]+\\)$")
95      (tar . "^%s\\([0-9]+\\)$") ; ok
96      (tgz . "^%s\\([0-9]+\\)$") ; ok
97      (rar . "^[ \t]%s\\([0-9]+\\)$"))))
98
99 (defvar elmo-archive-suffix-alist
100    '((lha . ".lzh")  ; default
101 ;    (lha . ".lzs")
102      (zip . ".zip")
103      (zoo . ".zoo")
104 ;    (arc . ".arc")
105 ;    (arj . ".arj")
106      (rar . ".rar")
107      (tar . ".tar")
108      (tgz . ".tar.gz")))
109
110 ;;; lha
111 (defvar elmo-archive-lha-method-alist
112   (if elmo-archive-lha-dos-compatible
113       ;; OS/2
114       '((cp  . ("lha" "u" "-x"))
115         (mv  . ("lha" "m" "-x"))
116         (rm  . ("lha" "d"))
117         (ls  . ("lha" "l" "-x"))
118         (cat . ("lha" "p" "-n"))
119         (ext . ("lha" "x")) ; "-x"
120         )
121     ;; some UN|X
122     '((cp  . ("lha" "u"))
123       (mv  . ("lha" "m"))
124       (rm  . ("lha" "d"))
125       (ls  . ("lha" "l"))
126       (cat . ("lha" "pq"))
127       (ext . ("lha" "x")))))
128
129 ;;; info-zip/unzip
130 (defvar elmo-archive-zip-method-alist
131   '((cp       . ("zip" "-9q"))
132     (cp-pipe  . ("zip" "-9q@"))
133     (mv       . ("zip" "-mDq9"))
134     (mv-pipe  . ("zip" "-mDq9@"))
135     (rm       . ("zip" "-dq"))
136     (rm-pipe  . ("zip" "-dq@"))
137     (ls       . ("unzip" "-lq"))
138     (cat      . ("unzip" "-pq"))
139     (ext      . ("unzip"))
140     (cat-headers . ("izwlagent" "--cat"))))
141
142 ;;; zoo
143 (defvar elmo-archive-zoo-method-alist
144   '((cp       . ("zoo" "aq"))
145     (cp-pipe  . ("zoo" "aqI"))
146     (mv       . ("zoo" "aMq"))
147     (mv-pipe  . ("zoo" "aMqI"))
148     (rm       . ("zoo" "Dq"))
149     (ls       . ("zoo" "l"))  ; normal
150     (cat      . ("zoo" "xpq"))
151     (ext      . ("zoo" "xq"))))
152
153 ;;; rar
154 (defvar elmo-archive-rar-method-alist
155   '((cp       . ("rar" "u" "-m5"))
156     (mv       . ("rar" "m" "-m5"))
157     (rm       . ("rar" "d"))
158     (ls       . ("rar" "v"))
159     (cat      . ("rar" "p" "-inul"))
160     (ext      . ("rar" "x"))))
161
162 ;;; GNU tar (*.tar)
163 (defvar elmo-archive-tar-method-alist
164   (if elmo-archive-lha-dos-compatible
165       '((ls   . ("gtar" "-tf"))
166         (cat  . ("gtar" "--posix Oxf"))
167         (ext  . ("gtar" "-xf"))
168         ;;(rm   . ("gtar" "--posix" "--delete" "-f")) ;; well not work
169         )
170   '((ls    . ("gtar" "-tf"))
171     (cat   . ("gtar" "-Oxf"))
172     (ext   . ("gtar" "-xf"))
173     ;;(rm    . ("gtar" "--delete" "-f")) ;; well not work
174     )))
175
176 ;;; GNU tar (*.tar.gz, *.tar.Z, *.tar.bz2)
177 (defvar elmo-archive-tgz-method-alist
178   '((ls         . ("gtar" "-ztf"))
179     (cat        . ("gtar" "-Ozxf"))
180     (create     . ("gtar" "-zcf"))
181     ;;(rm       . elmo-archive-tgz-rm-func)
182     (cp         . elmo-archive-tgz-cp-func)
183     (mv         . elmo-archive-tgz-mv-func)
184     (ext        . ("gtar" "-zxf"))
185     ;; tgz special method
186     (decompress . ("gzip" "-d"))
187     (compress   . ("gzip"))
188     (append     . ("gtar" "-uf"))
189     ;;(delete     . ("gtar" "--delete" "-f")) ;; well not work
190     ))
191
192 (defvar elmo-archive-method-list
193   '(elmo-archive-lha-method-alist
194     elmo-archive-zip-method-alist
195     elmo-archive-zoo-method-alist
196 ;   elmo-archive-tar-method-alist
197     elmo-archive-tgz-method-alist
198 ;   elmo-archive-arc-method-alist
199 ;   elmo-archive-arj-method-alist
200     elmo-archive-rar-method-alist))
201
202 ;;; Internal vars.
203 (defvar elmo-archive-method-alist nil)
204 (defvar elmo-archive-suffixes nil)
205
206
207 ;;; Macro
208 (defmacro elmo-archive-get-method (type action)
209   (` (cdr (assq (, action) (cdr (assq (, type)
210                                       elmo-archive-method-alist))))))
211
212 (defmacro elmo-archive-get-suffix (type)
213   (` (cdr (assq (, type)
214                 elmo-archive-suffix-alist))))
215
216 (defmacro elmo-archive-get-regexp (type)
217   (` (cdr (assq (, type)
218                 elmo-archive-file-regexp-alist))))
219
220 (defsubst elmo-archive-call-process (prog args &optional output)
221   (= (apply 'call-process prog nil output nil args) 0))
222
223 (defsubst elmo-archive-call-method (method args &optional output)
224   (cond
225    ((functionp method)
226     (funcall method args output))
227    (t
228     (elmo-archive-call-process
229      (car method) (append (cdr method) args) output))))
230
231 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
232 ;;; Scan Folder
233
234 (defsubst elmo-archive-list-folder-subr (file type prefix &optional nonsort)
235   "*Returns list of number-file(int, not string) in archive FILE.
236 TYPE specifies the archiver's symbol."
237   (let* ((method (elmo-archive-get-method type 'ls))
238          (args (list file))
239          (file-regexp (format (elmo-archive-get-regexp type)
240                               (elmo-concat-path (regexp-quote prefix) "")))
241          buf file-list header-end)
242     (when (file-exists-p file)
243       (save-excursion
244         (set-buffer (setq buf (get-buffer-create " *ELMO ARCHIVE ls*")))
245         (unless (elmo-archive-call-method method args t)
246           (error "%s exited abnormally!" method))
247         (goto-char (point-min))
248         (when (re-search-forward elmo-archive-header-regexp nil t)
249           (forward-line 1)
250           (setq header-end (point))
251           (when (re-search-forward elmo-archive-header-regexp nil t)
252               (beginning-of-line)
253               (narrow-to-region header-end (point))
254               (goto-char (point-min))))
255         (while (and (re-search-forward file-regexp nil t)
256                     (not (eobp)))  ; for GNU tar 981010
257           (setq file-list (nconc file-list (list (string-to-int
258                                                   (match-string 1))))))
259         (kill-buffer buf)))
260     (if nonsort
261         (cons (or (elmo-max-of-list file-list) 0) (length file-list))
262       (sort file-list '<))))
263
264 (defun elmo-archive-list-folder (spec)
265   (let* ((type (nth 2 spec))
266          (prefix (nth 3 spec))
267          (arc (elmo-archive-get-archive-name (nth 1 spec) type spec)))
268     (elmo-archive-list-folder-subr arc type prefix)))
269
270 (defun elmo-archive-max-of-folder (spec)
271   (let* ((type (nth 2 spec))
272          (prefix (nth 3 spec))
273          (arc (elmo-archive-get-archive-name (nth 1 spec) type spec)))
274     (elmo-archive-list-folder-subr arc type prefix t)))
275
276
277 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
278 ;;; Folder related functions
279
280 (defsubst elmo-archive-get-archive-directory (name)
281   ;; allow fullpath. return format is "/foo/bar/".
282   (if (file-name-absolute-p name)
283       (if (find-file-name-handler name 'copy-file)
284           name
285         (expand-file-name name))
286     (expand-file-name name elmo-archive-folder-path)))
287
288 (defun elmo-archive-get-archive-name (folder type &optional spec)
289   (let ((dir (elmo-archive-get-archive-directory folder))
290         (suffix (elmo-archive-get-suffix type))
291         filename dbdir)
292     (if elmo-archive-treat-file
293         (if (string-match (concat (regexp-quote suffix) "$") folder)
294             (expand-file-name
295              folder
296              elmo-archive-folder-path)
297           (expand-file-name
298            (concat folder suffix)
299            elmo-archive-folder-path))
300       (if (and (not (find-file-name-handler dir 'copy-file)) ; dir is local.
301                (or (not (file-exists-p dir))
302                    (file-directory-p dir)))
303           (expand-file-name
304            (concat elmo-archive-basename suffix)
305            dir)
306         ;; for full-path specification.
307         (if (and (find-file-name-handler dir 'copy-file) ; ange-ftp, efs
308                  spec)
309             (progn
310               (setq filename (expand-file-name 
311                               (concat elmo-archive-basename suffix)
312                               (setq dbdir (elmo-msgdb-expand-path nil spec))))
313               (if (file-directory-p dbdir)
314                   (); ok.
315                 (if (file-exists-p dbdir)
316                     (error "File %s already exists" dbdir)
317                   (elmo-make-directory dbdir)))
318               (if (not (file-exists-p filename))
319                   (copy-file
320                    (if (file-directory-p dir)
321                        (expand-file-name
322                         (concat elmo-archive-basename suffix)
323                         dir)
324                      dir)
325                    filename))
326               filename)
327           dir)))))
328
329 (defun elmo-archive-folder-exists-p (spec)
330   (file-exists-p
331    (elmo-archive-get-archive-name (nth 1 spec) (nth 2 spec) spec)))
332
333 (defun elmo-archive-folder-creatable-p (spec)
334   t)
335
336 (defun elmo-archive-create-folder (spec)
337   (let* ((dir (directory-file-name ;; remove tail slash.
338                (elmo-archive-get-archive-directory (nth 1 spec))))
339          (type (nth 2 spec))
340          (arc (elmo-archive-get-archive-name (nth 1 spec) type)))
341     (if elmo-archive-treat-file
342         (setq dir (directory-file-name (file-name-directory dir))))
343     (cond ((and (file-exists-p dir)
344                 (not (file-directory-p dir)))
345            ;; file exists
346            (error "Create folder failed; File \"%s\" exists" dir))
347           ((file-directory-p dir)
348            (if (file-exists-p arc)
349                t  ; return value
350              (elmo-archive-create-file arc type spec)))
351           (t
352            (elmo-make-directory dir)
353            (elmo-archive-create-file arc type spec)
354            t))))
355
356 (defun elmo-archive-create-file (archive type spec)
357   (save-excursion
358     (let* ((tmp-dir (directory-file-name
359                      (elmo-msgdb-expand-path nil spec)))
360            (dummy elmo-archive-dummy-file)
361            (method (or (elmo-archive-get-method type 'create)
362                        (elmo-archive-get-method type 'mv)))
363            (args (list archive dummy)))
364       (when (null method)
365         (ding)
366         (error "WARNING: read-only mode: %s (method undefined)" type))
367       (cond
368        ((file-directory-p tmp-dir)
369         ()) ;nop
370        ((file-exists-p tmp-dir)
371         ;; file exists
372         (error "Create directory failed; File \"%s\" exists" tmp-dir))
373        (t
374         (elmo-make-directory tmp-dir)))
375       (elmo-bind-directory
376        tmp-dir
377        (write-region (point) (point) dummy nil 'no-msg)
378        (prog1
379            (elmo-archive-call-method method args)
380          (if (file-exists-p dummy)
381              (delete-file dummy)))
382        ))))
383
384 (defun elmo-archive-delete-folder (spec)
385   (let* ((arc (elmo-archive-get-archive-name (nth 1 spec) (nth 2 spec))))
386     (if (not (file-exists-p arc))
387         (error "no such file: %s" arc)
388       (delete-file arc)
389       t)))
390
391 (defun elmo-archive-rename-folder (old-spec new-spec)
392   (let* ((old-arc (elmo-archive-get-archive-name
393                    (nth 1 old-spec) (nth 2 old-spec)))
394          (new-arc (elmo-archive-get-archive-name
395                    (nth 1 new-spec) (nth 2 new-spec))))
396     (unless (and (eq (nth 2 old-spec) (nth 2 new-spec))
397                  (equal (nth 3 old-spec) (nth 3 new-spec)))
398       (error "not same archive type and prefix"))
399     (if (not (file-exists-p old-arc))
400         (error "no such file: %s" old-arc)
401       (if (file-exists-p new-arc)
402           (error "already exists: %s" new-arc)
403         (rename-file old-arc new-arc)
404         t))))
405
406 (defun elmo-archive-list-folders (spec &optional hierarchy)
407   (let ((folder (concat "$" (nth 1 spec)))
408         (elmo-localdir-folder-path elmo-archive-folder-path))
409     (if elmo-archive-treat-file
410         (let* ((path (elmo-localdir-get-folder-directory spec))
411                (base-folder (or (file-name-directory (nth 1 spec)) ""))
412                (suffix (nth 2 spec))
413                (prefix (if (string= (nth 3 spec) "")
414                            "" (concat ";" (nth 3 spec))))
415                (dir (if (file-directory-p path)
416                         path (file-name-directory path)))
417                (name (if (file-directory-p path)
418                          "" (file-name-nondirectory path)))
419                (flist (and (file-directory-p dir)
420                            (directory-files dir nil name nil)))
421                (regexp (format "^\\(.*\\)\\(%s\\)$"
422                                (mapconcat
423                                 '(lambda (x) (regexp-quote (cdr x)))
424                                 elmo-archive-suffix-alist
425                                 "\\|"))))
426           (delq
427            nil
428            (mapcar
429             '(lambda (x)
430                (when (and (string-match regexp x)
431                           (eq suffix
432                               (car
433                                (rassoc (elmo-match-string 2 x)
434                                        elmo-archive-suffix-alist))))
435                  (format "$%s;%s%s"
436                          (elmo-concat-path base-folder (elmo-match-string 1 x))
437                          suffix prefix)
438                  ))
439             flist)))
440       (elmo-localdir-list-folders-subr folder hierarchy))))
441
442
443 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
444 ;;; Article file related functions
445 ;;; read(extract) / append(move) / delete(delete) / query(list)
446
447 (defun elmo-archive-read-msg (spec number outbuf)
448   (save-excursion
449     (let* ((type (nth 2 spec))
450            (arc (elmo-archive-get-archive-name (nth 1 spec) type spec))
451            (prefix (nth 3 spec))
452            (method (elmo-archive-get-method type 'cat))
453            (args (list arc (elmo-concat-path 
454                             prefix (int-to-string number)))))
455       (set-buffer outbuf)
456       (erase-buffer)
457       (when (file-exists-p arc)
458         (and
459          (as-binary-process
460           (elmo-archive-call-method method args t))
461          (elmo-delete-cr-get-content-type))))))
462
463 (defun elmo-archive-append-msg (spec string &optional msg no-see) ;;; verrrrrry slow!!
464   (let* ((type (nth 2 spec))
465          (prefix (nth 3 spec))
466          (arc (elmo-archive-get-archive-name (nth 1 spec) type))
467          (method (elmo-archive-get-method type 'mv))
468          (tmp-buffer (get-buffer-create " *ELMO ARCHIVE mv*"))
469          (next-num (or msg
470                        (1+ (if (file-exists-p arc)
471                                (car (elmo-archive-max-of-folder spec)) 0))))
472          (tmp-dir (elmo-msgdb-expand-path nil spec))
473          newfile)
474     (when (null method)
475       (ding)
476       (error "WARNING: read-only mode: %s (method undefined)" type))
477     (save-excursion
478       (set-buffer tmp-buffer)
479       (erase-buffer)
480       (let ((tmp-dir (expand-file-name prefix tmp-dir)))
481         (when (not (file-directory-p tmp-dir))
482           (elmo-make-directory (directory-file-name tmp-dir))))
483       (setq newfile (elmo-concat-path
484                      prefix
485                      (int-to-string next-num)))
486       (unwind-protect
487           (elmo-bind-directory
488            tmp-dir
489            (if (and (or (functionp method) (car method))
490                     (file-writable-p newfile))
491                (progn
492                  (insert string)
493                  (as-binary-output-file
494                   (write-region (point-min) (point-max) newfile nil 'no-msg))
495                  (elmo-archive-call-method method (list arc newfile)))
496              nil))
497         (kill-buffer tmp-buffer)))))
498
499 ;;; (localdir, maildir, localnews, archive) -> archive
500 (defun elmo-archive-copy-msgs (dst-spec msgs src-spec
501                                         &optional loc-alist same-number)
502   (let* ((dst-type (nth 2 dst-spec))
503          (arc (elmo-archive-get-archive-name (nth 1 dst-spec) dst-type))
504          (prefix (nth 3 dst-spec))
505          (p-method (elmo-archive-get-method dst-type 'mv-pipe))
506          (n-method (elmo-archive-get-method dst-type 'mv))
507          (new (unless same-number
508                 (1+ (car (elmo-archive-max-of-folder dst-spec)))))
509          (src-dir (elmo-localdir-get-folder-directory src-spec))
510          (tmp-dir
511           (file-name-as-directory (elmo-msgdb-expand-path nil dst-spec)))
512          (do-link t)
513          src tmp newfile tmp-msgs)
514     (when (not (elmo-archive-folder-exists-p dst-spec))
515       (elmo-archive-create-folder dst-spec))
516     (when (null (or p-method n-method))
517       (ding)
518       (error "WARNING: read-only mode: %s (method undefined)" dst-type))
519     (when (and same-number
520                (not (eq (car src-spec) 'maildir))
521                (string-match (concat prefix "$") src-dir)
522                (or
523                 (elmo-archive-get-method dst-type 'cp-pipe)
524                 (elmo-archive-get-method dst-type 'cp)))
525       (setq tmp-dir (substring src-dir 0 (match-beginning 0)))
526       (setq p-method (elmo-archive-get-method dst-type 'cp-pipe)
527             n-method (elmo-archive-get-method dst-type 'cp))
528       (setq tmp-msgs (mapcar '(lambda (x) 
529                                 (elmo-concat-path prefix (int-to-string x)))
530                              msgs))
531       (setq do-link nil))
532     (when do-link
533       (let ((tmp-dir (expand-file-name prefix tmp-dir)))
534         (when (not (file-directory-p tmp-dir))
535           (elmo-make-directory (directory-file-name tmp-dir))))
536       (while msgs
537         (setq newfile (elmo-concat-path prefix (int-to-string
538                                                 (if same-number
539                                                     (car msgs)
540                                                   new))))
541         (setq tmp-msgs (nconc tmp-msgs (list newfile)))
542         (elmo-copy-file
543          ;; src file
544          (elmo-call-func src-spec "get-msg-filename" (car msgs) loc-alist)
545          ;; tmp file
546          (expand-file-name newfile tmp-dir))
547         (setq msgs (cdr msgs))
548         (unless same-number (setq new (1+ new)))))
549     (save-excursion
550       (elmo-bind-directory
551        tmp-dir
552        (cond
553         ((functionp n-method)
554          (funcall n-method (cons arc tmp-msgs)))
555         (p-method
556          (let ((p-prog (car p-method))
557                (p-prog-arg (cdr p-method)))
558            (elmo-archive-exec-msgs-subr1
559             p-prog (append p-prog-arg (list arc)) tmp-msgs)))
560         (t
561          (let ((n-prog (car n-method))
562                (n-prog-arg (cdr n-method)))
563            (elmo-archive-exec-msgs-subr2
564             n-prog (append n-prog-arg (list arc)) tmp-msgs (length arc)))))))))
565
566 ;;; archive -> (localdir, localnews, archive)
567 (defun elmo-archive-copy-msgs-froms (dst-spec msgs src-spec
568                                               &optional loc-alist same-number)
569   (let* ((src-type (nth 2 src-spec))
570          (arc (elmo-archive-get-archive-name (nth 1 src-spec) src-type))
571          (prefix (nth 3 src-spec))
572          (p-method (elmo-archive-get-method src-type 'ext-pipe))
573          (n-method (elmo-archive-get-method src-type 'ext))
574          (tmp-dir
575           (file-name-as-directory (elmo-msgdb-expand-path nil src-spec)))
576          (tmp-msgs (mapcar '(lambda (x) (elmo-concat-path
577                                          prefix
578                                          (int-to-string x)))
579                            msgs))
580          result)
581     (unwind-protect
582         (setq result
583               (and
584                ;; extract messages
585                (save-excursion
586                  (elmo-bind-directory
587                   tmp-dir
588                   (cond
589                    ((functionp n-method)
590                     (funcall n-method (cons arc tmp-msgs)))
591                    (p-method
592                     (let ((p-prog (car p-method))
593                           (p-prog-arg (cdr p-method)))
594                       (elmo-archive-exec-msgs-subr1
595                        p-prog (append p-prog-arg (list arc)) tmp-msgs)))
596                    (t
597                     (let ((n-prog (car n-method))
598                           (n-prog-arg (cdr n-method)))
599                       (elmo-archive-exec-msgs-subr2
600                        n-prog (append n-prog-arg (list arc)) tmp-msgs (length arc)))))))
601                ;; call elmo-*-copy-msgs of destination folder
602                (elmo-call-func dst-spec "copy-msgs"
603                                msgs src-spec loc-alist same-number)))
604       ;; clean up tmp-dir
605       (elmo-bind-directory
606        tmp-dir
607        (while tmp-msgs
608          (if (file-exists-p (car tmp-msgs))
609              (delete-file (car tmp-msgs)))
610          (setq tmp-msgs (cdr tmp-msgs))))
611       result)))
612
613 (defun elmo-archive-delete-msgs (spec msgs)
614   (save-excursion
615     (let* ((type (nth 2 spec))
616            (prefix (nth 3 spec))
617            (arc (elmo-archive-get-archive-name (nth 1 spec) type))
618            (p-method (elmo-archive-get-method type 'rm-pipe))
619            (n-method (elmo-archive-get-method type 'rm))
620            (msgs (mapcar '(lambda (x) (elmo-concat-path
621                                        prefix
622                                        (int-to-string x)))
623                          msgs)))
624       (cond ((functionp n-method)
625              (funcall n-method (cons arc msgs)))
626             (p-method
627              (let ((p-prog (car p-method))
628                    (p-prog-arg (cdr p-method)))
629                (elmo-archive-exec-msgs-subr1
630                 p-prog (append p-prog-arg (list arc)) msgs)))
631             (n-method
632              (let ((n-prog (car n-method))
633                    (n-prog-arg (cdr n-method)))
634                (elmo-archive-exec-msgs-subr2
635                 n-prog (append n-prog-arg (list arc)) msgs (length arc))))
636             (t
637              (ding)
638              (error "WARNING: not delete: %s (method undefined)" type))) )))
639
640 (defun elmo-archive-exec-msgs-subr1 (prog args msgs)
641   (let ((buf (get-buffer-create " *ELMO ARCHIVE exec*")))
642     (set-buffer buf)
643     (insert (mapconcat 'concat msgs "\n")) ;string
644     (unwind-protect
645         (= 0
646            (apply 'call-process-region (point-min) (point-max)
647                   prog nil nil nil args))
648       (kill-buffer buf))))
649
650 (defun elmo-archive-exec-msgs-subr2 (prog args msgs arc-length)
651   (let ((max-len (- elmo-archive-cmdstr-max-length arc-length))
652         (n (length msgs))
653         rest i sum)
654     (setq rest msgs) ;string
655     (setq i 1)
656     (setq sum 0)
657     (catch 'done
658       (while (and rest (<= i n))
659         (mapcar '(lambda (x)
660                    (let* ((len (length x))
661                           (files (member x (reverse rest))))
662                      ;; total(previous) + current + white space
663                      (if (<= max-len (+ sum len 1))
664                          (progn
665                            (unless
666                                (elmo-archive-call-process
667                                 prog (append args files))
668                              (throw 'done nil))
669                            (setq sum 0) ;; reset
670                            (setq rest (nthcdr i rest)))
671                        (setq sum (+ sum len 1)))
672                      (setq i (1+ i)))) msgs))
673       (throw 'done
674              (or (not rest)
675                  (elmo-archive-call-process prog (append args rest))))
676       )))
677
678 (defsubst elmo-archive-article-exists-p (arc msg type)
679   (if (not elmo-archive-check-existance-strict)
680       t  ; nop
681     (save-excursion ;; added 980915
682       (let* ((method (elmo-archive-get-method type 'ls))
683              (args (list arc msg))
684              (buf (get-buffer-create " *ELMO ARCHIVE query*"))
685              (error-msg "\\(no file\\|0 files\\)")
686              ret-val)
687         (set-buffer buf)
688         (erase-buffer)
689         (elmo-archive-call-method method args t)
690         ;; pointer: point-max
691         (setq ret-val (not (re-search-backward error-msg nil t)))
692         (kill-buffer buf)
693         ret-val))))
694
695 (defun elmo-archive-tgz-common-func (args exec-type &optional copy)
696   (let* ((arc (car args))
697          (tmp-msgs (cdr args))
698          (decompress (elmo-archive-get-method 'tgz 'decompress))
699          (compress (elmo-archive-get-method 'tgz 'compress))
700          (exec (elmo-archive-get-method 'tgz exec-type))
701          (suffix (elmo-archive-get-suffix 'tgz))
702          (tar-suffix (elmo-archive-get-suffix 'tar))
703          arc-tar ret-val
704          )
705     (when (null (and decompress compress exec))
706       (ding)
707       (error "WARNING: special method undefined: %s of %s"
708              (or (if (null decompress) 'decompress)
709                  (if (null compress) 'compress)
710                  (if (null exec) exec-type))
711              'tgz))
712     (unless tar-suffix
713       (ding)
714       (error "WARNING: `tar' suffix undefined"))
715     (if (string-match (concat (regexp-quote suffix) "$") arc)
716         (setq arc-tar
717               (concat (substring arc 0 (match-beginning 0)) tar-suffix))
718       (error "%s: not match suffix [%s]" arc suffix))
719     (and
720      ;; decompress
721      (elmo-archive-call-process
722       (car decompress) (append (cdr decompress) (list arc)))
723      ;; append (or delete)
724      (elmo-archive-exec-msgs-subr2
725       (car exec) (append (cdr exec) (list arc-tar)) tmp-msgs (length arc-tar))
726      ;; compress
727      (setq ret-val
728            (elmo-archive-call-process
729             (car compress) (append (cdr compress) (list arc-tar)))))
730     ;; delete tmporary messages
731     (if (and (not copy)
732              (eq exec-type 'append))
733         (while tmp-msgs
734           (if (file-exists-p (car tmp-msgs))
735               (delete-file (car tmp-msgs)))
736           (setq tmp-msgs (cdr tmp-msgs))))
737     ret-val))
738
739 (defun elmo-archive-tgz-cp-func (args &optional output)
740   (elmo-archive-tgz-common-func args 'append t))
741
742 (defun elmo-archive-tgz-mv-func (args &optional output)
743   (elmo-archive-tgz-common-func args 'append))
744
745 (defun elmo-archive-tgz-rm-func (args &optional output)
746   (elmo-archive-tgz-common-func args 'delete))
747
748 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
749 ;;; MessageDB functions (from elmo-localdir.el)
750
751 (defsubst elmo-archive-msgdb-create-entity-subr (number)
752   (let (header-end)
753     (elmo-set-buffer-multibyte default-enable-multibyte-characters)
754     (goto-char (point-min))
755     (if (re-search-forward "\\(^--.*$\\)\\|\\(\n\n\\)" nil t)
756         (setq header-end (point))
757       (setq header-end (point-max)))
758     (narrow-to-region (point-min) header-end)
759     (elmo-msgdb-create-overview-from-buffer number)))
760
761 (defsubst elmo-archive-msgdb-create-entity (method archive number type &optional prefix) ;; verrrry slow!!
762   (let* ((msg (elmo-concat-path prefix (int-to-string number)))
763          (arg-list (list archive msg)))
764     (when (elmo-archive-article-exists-p archive msg type)
765       ;; insert article.
766       (as-binary-process
767        (elmo-archive-call-method method arg-list t))
768       (elmo-archive-msgdb-create-entity-subr number))))
769
770 (defun elmo-archive-msgdb-create-as-numlist (spec numlist new-mark
771                                                   already-mark seen-mark
772                                                   important-mark seen-list)
773   (when numlist
774     (save-excursion ;; 981005
775       (if (and elmo-archive-use-izip-agent
776                (elmo-archive-get-method (nth 2 spec) 'cat-headers))
777           (elmo-archive-msgdb-create-as-numlist-subr2
778            spec numlist new-mark already-mark seen-mark important-mark 
779            seen-list)
780         (elmo-archive-msgdb-create-as-numlist-subr1
781          spec numlist new-mark already-mark seen-mark important-mark
782          seen-list)))))
783
784 (defalias 'elmo-archive-msgdb-create 'elmo-archive-msgdb-create-as-numlist)
785
786
787 (defun elmo-archive-msgdb-create-as-numlist-subr1 (spec numlist new-mark
788                                                         already-mark seen-mark
789                                                         important-mark 
790                                                         seen-list)
791   (let* ((type (nth 2 spec))
792          (file (elmo-archive-get-archive-name (nth 1 spec) type spec))
793          (method (elmo-archive-get-method type 'cat))
794          (tmp-buf (get-buffer-create " *ELMO ARCHIVE msgdb*"))
795          overview number-alist mark-alist entity
796          i percent num message-id seen gmark)
797     (save-excursion
798       (set-buffer tmp-buf)
799       (setq num (length numlist))
800       (setq i 0)
801       (message "Creating msgdb...")
802       (while numlist
803         (erase-buffer)
804         (setq entity
805               (elmo-archive-msgdb-create-entity
806                method file (car numlist) type (nth 3 spec)))
807         (when entity
808           (setq overview
809                 (elmo-msgdb-append-element
810                  overview entity))
811           (setq number-alist
812                 (elmo-msgdb-number-add
813                  number-alist
814                  (elmo-msgdb-overview-entity-get-number entity)
815                  (car entity)))
816           (setq message-id (car entity))
817           (setq seen (member message-id seen-list))
818           (if (setq gmark
819                     (or (elmo-msgdb-global-mark-get message-id)
820                         (if (elmo-cache-exists-p message-id) ; XXX
821                             (if seen
822                                 nil
823                               already-mark)
824                           (if seen
825                               seen-mark
826                             new-mark))))
827               (setq mark-alist
828                     (elmo-msgdb-mark-append 
829                      mark-alist
830                      (elmo-msgdb-overview-entity-get-number entity)
831                      gmark))))
832         (setq i (1+ i))
833         (setq percent (/ (* i 100) num))
834         (elmo-display-progress
835          'elmo-archive-msgdb-create-as-numlist-subr1 "Creating msgdb..."
836          percent)
837         (setq numlist (cdr numlist)))
838       (kill-buffer tmp-buf)
839       (message "Creating msgdb...done.")
840       (list overview number-alist mark-alist)) ))
841
842 ;;; info-zip agent
843 (defun elmo-archive-msgdb-create-as-numlist-subr2 (spec numlist new-mark
844                                                         already-mark seen-mark
845                                                         important-mark
846                                                         seen-list)
847   (let* ((buf (get-buffer-create " *ELMO ARCHIVE headers*"))
848          (delim1 elmo-mmdf-delimiter)           ;; MMDF
849          (delim2 elmo-unixmail-delimiter)       ;; UNIX Mail
850          (type (nth 2 spec))
851          (prefix (nth 3 spec))
852          (method (elmo-archive-get-method type 'cat-headers))
853          (prog (car method))
854          (args (cdr method))
855          (arc (elmo-archive-get-archive-name (nth 1 spec) type))
856          n i percent num result overview number-alist mark-alist
857          msgs case-fold-search)
858     (set-buffer buf)
859     (setq num (length numlist))
860     (setq i 0)
861     (message "Creating msgdb...")
862     (while numlist
863       (setq n (min (1- elmo-archive-fetch-headers-volume)
864                    (1- (length numlist))))
865       (setq msgs (reverse (memq (nth n numlist) (reverse numlist))))
866       (setq numlist (nthcdr (1+ n) numlist))
867       (erase-buffer)
868       (insert
869        (mapconcat
870         'concat
871         (mapcar '(lambda (x) (elmo-concat-path prefix (int-to-string x))) msgs)
872         "\n"))
873       (message "Fetching headers...")
874       (as-binary-process (apply 'call-process-region
875                                 (point-min) (point-max)
876                                 prog t t nil (append args (list arc))))
877       (goto-char (point-min))
878       (cond
879        ((looking-at delim1)     ;; MMDF
880         (setq result (elmo-archive-parse-mmdf msgs
881                                               new-mark
882                                               already-mark seen-mark
883                                               seen-list))
884         (setq overview (append overview (nth 0 result)))
885         (setq number-alist (append number-alist (nth 1 result)))
886         (setq mark-alist (append mark-alist (nth 2 result))))
887 ;      ((looking-at delim2)     ;; UNIX MAIL
888 ;       (setq result (elmo-archive-parse-unixmail msgs))
889 ;       (setq overview (append overview (nth 0 result)))
890 ;       (setq number-alist (append number-alist (nth 1 result)))
891 ;       (setq mark-alist (append mark-alist (nth 2 result))))
892        (t                       ;; unknown format
893         (error "unknown format!")))
894       (setq i (+ n i))
895       (setq percent (/ (* i 100) num))
896       (elmo-display-progress
897        'elmo-archive-msgdb-create-as-numlist-subr2 "Creating msgdb..."
898        percent))
899     (kill-buffer buf)
900     (list overview number-alist mark-alist)) )
901
902 (defun elmo-archive-parse-mmdf (msgs new-mark
903                                      already-mark 
904                                      seen-mark 
905                                      seen-list)
906   (let ((delim elmo-mmdf-delimiter)
907         number sp ep rest entity overview number-alist mark-alist ret-val
908         message-id seen gmark)
909     (goto-char (point-min))
910     (setq rest msgs)
911     (while (and rest (re-search-forward delim nil t)
912                 (not (eobp)))
913       (setq number (car rest))
914       (setq sp (1+ (point)))
915       (setq ep (prog2 (re-search-forward delim)
916                    (1+ (- (point) (length delim)))))
917       (if (>= sp ep) ; no article!
918           ()  ; nop
919         (save-excursion
920           (narrow-to-region sp ep)
921           (setq entity (elmo-archive-msgdb-create-entity-subr number))
922           (setq overview
923                 (elmo-msgdb-append-element
924                  overview entity))
925           (setq number-alist
926                 (elmo-msgdb-number-add
927                  number-alist
928                  (elmo-msgdb-overview-entity-get-number entity)
929                  (car entity)))
930           (setq message-id (car entity))
931           (setq seen (member message-id seen-list))
932           (if (setq gmark 
933                     (or (elmo-msgdb-global-mark-get message-id)
934                         (if (elmo-cache-exists-p message-id) ; XXX
935                             (if seen
936                                 nil
937                               already-mark)
938                           (if seen
939                               seen-mark
940                             new-mark))))
941               (setq mark-alist
942                     (elmo-msgdb-mark-append 
943                      mark-alist
944                      (elmo-msgdb-overview-entity-get-number entity)
945                      gmark)))
946           (setq ret-val (append ret-val (list overview number-alist mark-alist)))
947           (widen)))
948       (forward-line 1)
949       (setq rest (cdr rest)))
950     ret-val))
951
952
953 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
954 ;;; Search functions
955
956 (defsubst elmo-archive-field-condition-match (spec number condition prefix)
957   (save-excursion
958     (let* ((type (nth 2 spec))
959            (arc (elmo-archive-get-archive-name (nth 1 spec) type spec))
960            (method (elmo-archive-get-method type 'cat))
961            (args (list arc (elmo-concat-path prefix (int-to-string number)))))
962       (elmo-set-work-buf
963        (when (file-exists-p arc)
964          (as-binary-process
965           (elmo-archive-call-method method args t))
966          (elmo-set-buffer-multibyte default-enable-multibyte-characters)
967          (decode-mime-charset-region (point-min)(point-max) elmo-mime-charset)
968          (elmo-buffer-field-condition-match condition))))))
969
970 (defun elmo-archive-search (spec condition &optional from-msgs)
971   (let* (;;(args (elmo-string-to-list key))
972          ;; XXX: I don't know whether `elmo-archive-list-folder'
973          ;;      updates match-data.
974          ;; (msgs (or from-msgs (elmo-archive-list-folder spec)))
975          (msgs (or from-msgs (elmo-archive-list-folder spec)))
976          (num (length msgs))
977          (i 0)
978          (case-fold-search nil)
979          ret-val)
980     (while msgs
981       (if (elmo-archive-field-condition-match spec (car msgs)
982                                               condition
983                                               (nth 3 spec))
984           (setq ret-val (cons (car msgs) ret-val)))
985       (setq i (1+ i))
986       (elmo-display-progress
987        'elmo-archive-search "Searching..."
988        (/ (* i 100) num))
989       (setq msgs (cdr msgs)))
990     (nreverse ret-val)))
991
992
993 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
994 ;;; Misc functions
995
996 (defun elmo-archive-check-validity (spec validity-file)
997   t) ; ok.
998
999 (defun elmo-archive-sync-validity (spec validity-file)
1000   t) ; ok.
1001
1002 \f
1003 ;;; method(alist)
1004 (if (null elmo-archive-method-alist)
1005     (let ((mlist elmo-archive-method-list) ; from mew-highlight.el
1006           method type str)
1007       (while mlist
1008         (setq method (car mlist))
1009         (setq mlist (cdr mlist))
1010         (setq str (symbol-name method))
1011         (string-match "elmo-archive-\\([^-].*\\)-method-alist$" str)
1012         (setq type (intern-soft
1013                     (elmo-match-string 1 str)))
1014         (setq elmo-archive-method-alist
1015               (cons (cons type
1016                           (symbol-value method))
1017                     elmo-archive-method-alist)))))
1018
1019 ;;; valid suffix(list)
1020 (if (null elmo-archive-suffixes)
1021     (let ((slist elmo-archive-suffix-alist)
1022           tmp)
1023       (while slist
1024         (setq tmp (car slist))
1025         (setq elmo-archive-suffixes
1026               (nconc elmo-archive-suffixes (list (cdr tmp))))
1027         (setq slist (cdr slist)))))
1028
1029 (defun elmo-archive-use-cache-p (spec number)
1030   elmo-archive-use-cache)
1031
1032 (defun elmo-archive-local-file-p (spec number)
1033   nil)
1034
1035 (defun elmo-archive-get-msg-filename (spec number &optional loc-alist)
1036   (let ((tmp-dir (file-name-as-directory (elmo-msgdb-expand-path nil spec)))
1037         (prefix (nth 3 spec)))
1038     (expand-file-name
1039      (elmo-concat-path prefix (int-to-string number))
1040      tmp-dir)))
1041
1042 (defalias 'elmo-archive-sync-number-alist 
1043   'elmo-generic-sync-number-alist)
1044 (defalias 'elmo-archive-list-folder-unread 
1045   'elmo-generic-list-folder-unread)
1046 (defalias 'elmo-archive-list-folder-important
1047   'elmo-generic-list-folder-important)
1048 (defalias 'elmo-archive-commit 'elmo-generic-commit)
1049
1050 ;;; End
1051 (run-hooks 'elmo-archive-load-hook)
1052 (provide 'elmo-archive)
1053
1054 ;;; elmo-archive.el ends here