be more careful about closing files and connections
[org.ibex.mail.git] / src / org / ibex / mail / target / FileBasedMailbox.java
1 package org.ibex.mail.target;
2 import org.ibex.mail.*;
3 import org.ibex.util.*;
4 import org.ibex.io.*;
5 import org.ibex.net.*;
6 import java.io.*;
7 import java.net.*;
8 import java.util.*;
9 import java.text.*;
10
11 // FIXME: we can omit UIDNEXT!
12 // FIXME use directory date/time as UIDNEXT and file date/time as UID; need to 'correct' file date/time after changes
13
14 /** An exceptionally crude implementation of Mailbox relying on POSIXy filesystem semantics */
15 public class FileBasedMailbox extends Mailbox.Default {
16
17     public String toString() { return "[FileBasedMailbox " + path + "]"; }
18
19     private static final char slash = File.separatorChar;
20     private static final Hashtable instances = new Hashtable();
21     public static FileBasedMailbox getFileBasedMailbox(String path, boolean create) {
22         FileBasedMailbox ret = (FileBasedMailbox)instances.get(path);
23         if (ret != null) return ret;
24         File f = new File(path);
25         if (!create && !f.exists()) return null;
26         instances.put(path, ret = new FileBasedMailbox(path));
27         return ret;
28     }
29
30     public static final FilenameFilter filter = new FilenameFilter() {
31             public boolean accept(File f, String s) {
32                 return s.indexOf('.') != -1;
33             } };
34
35
36     // Instance //////////////////////////////////////////////////////////////////////////////
37
38     private String path;
39     private File uidNext;
40     private FileBasedMailbox(String path) throws MailException {
41         new File(this.path = path).mkdirs();
42         uidNext(false);
43     }
44
45     public Mailbox          slash(String name, boolean create) {
46         return FileBasedMailbox.getFileBasedMailbox(path + slash + name, create); }
47
48     public String[] children() {
49         Vec vec = new Vec();
50         String[] list = new File(path).list();
51         for(int i=0; i<list.length; i++) {
52             if (!(new File(path + slash + list[i]).isDirectory())) continue;
53             vec.addElement(list[i]);
54         }
55         String[] ret = new String[vec.size()];
56         vec.copyInto(ret);
57         return ret;
58     }
59
60     public Mailbox.Iterator iterator() { return new FileBasedMailbox.Iterator(); }
61     public int              uidValidity() { return (int)(new File(path).lastModified() & 0xffffffL); }
62
63     public int uidNext() { return uidNext(false); }
64     public int uidNext(boolean inc) {
65         try {
66             uidNext = new File(path + slash + "UIDNEXT");
67             if (!uidNext.exists()) {
68                 File tmp = new File(uidNext + "-");
69                 PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(tmp)));
70                 pw.println("1");
71                 pw.flush();
72                 pw.close();
73                 tmp.renameTo(uidNext);
74                 return 1;
75             }
76             BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(uidNext)));
77             int ret = Integer.parseInt(br.readLine());
78             br.close();
79             if (inc) {
80                 File tmp = new File(uidNext + "-");
81                 PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(tmp)));
82                 pw.println(ret+1);
83                 pw.flush();
84                 pw.close();
85                 tmp.renameTo(uidNext);
86             }
87             return ret;
88         } catch (IOException e) { throw new MailException.IOException(e); }
89     }        
90
91     public synchronized void add(Message message) { add(message, Mailbox.Flag.RECENT); }
92     public synchronized void add(Message message, int flags) {
93         Log.info(this, "adding message to ["+toString()+"]:\n" + message.summary());
94         try {
95             int num = new File(path).list(filter).length;
96             String name = path + slash + uidNext(true) + "." +
97                 ((flags & Mailbox.Flag.DELETED) == Mailbox.Flag.DELETED ? "x" : "") +
98                 ((flags & Mailbox.Flag.DRAFT) == Mailbox.Flag.DRAFT ? "d" : "") +
99                 ((flags & Mailbox.Flag.RECENT) == Mailbox.Flag.RECENT ? "r" : "") +
100                 ((flags & Mailbox.Flag.ANSWERED) == Mailbox.Flag.ANSWERED ? "a" : "") +
101                 ((flags & Mailbox.Flag.FLAGGED) == Mailbox.Flag.FLAGGED ? "f" : "") +
102                 ((flags & Mailbox.Flag.SEEN) == Mailbox.Flag.SEEN ? "s" : "");
103             File target = new File(name);
104             File f = new File(target.getCanonicalPath() + "-");
105             FileOutputStream fo = new FileOutputStream(f);
106             message.dump(new Stream(fo));
107             fo.close();
108             f.renameTo(target);
109         } catch (IOException e) { throw new MailException.IOException(e); }
110     }
111
112     private class Iterator extends Mailbox.Default.Iterator {
113         int cur = -1;
114         private String[] names;
115         private boolean seen = false, deleted = false, draft = false, flagged = false, answered = false, recent = false;
116         public Iterator() { names = new File(path).list(filter); }
117
118         public Message cur() {
119             if (cur >= names.length) return null;
120             try {
121                 File file = new File(path + File.separatorChar + names[cur]);
122                 FileInputStream fis = new FileInputStream(file);
123                 Message ret = new Message(null, null, new Stream(fis));
124                 fis.close();
125                 return ret;
126             } catch (IOException e) { throw new MailException.IOException(e);
127             } catch (Message.Malformed e) { throw new MailException(e.getMessage()); }
128         }
129         public boolean next() {
130             cur++;
131             if (cur >= names.length) return false;
132             String name = names[cur].substring(names[cur].indexOf('.') + 1);
133             if (!(new File(path + File.separatorChar + names[cur])).exists()) return next();
134             seen     = name.indexOf('s') != -1;
135             deleted  = name.indexOf('x') != -1;
136             flagged  = name.indexOf('f') != -1;
137             draft    = name.indexOf('d') != -1;
138             answered = name.indexOf('a') != -1;
139             recent   = name.indexOf('r') != -1;
140             return true;
141         }
142         public int num() { return cur; }
143         public int uid() {
144             try { return Integer.parseInt(names[cur].substring(0, names[cur].indexOf('.')));
145             } catch (NumberFormatException nfe) {
146                 Log.warn(FileBasedMailbox.class, "NumberFormatException: " + names[cur].substring(0, names[cur].length() - 1));
147                 return -1; } }
148
149         private void fixflags() {
150             String newName =
151                 names[cur].substring(0, names[cur].indexOf('.') + 1) +
152                 (seen ? "s" : "") +
153                 (deleted ? "x" : "") +
154                 (flagged ? "f" : "") +
155                 (draft ? "d" : "") +
156                 (recent ? "r" : "") +
157                 (answered ? "a" : "");
158             new File(path + File.separatorChar + names[cur]).renameTo(new File(path + File.separatorChar + newName));
159             names[cur] = newName;
160         }
161
162         public void    delete() {
163             new File(path + File.separatorChar + names[cur]).delete();
164             // FIXME remove from list?
165         }
166         public void    set(String key, String val) { throw new MailException("not supported"); }
167         public String  get(String key) { throw new MailException("not supported"); }
168
169         public boolean seen() { return seen; }
170         public boolean deleted() { return deleted; }
171         public boolean flagged() { return flagged; }
172         public boolean draft() { return draft; }
173         public boolean answered() { return answered; }
174         public boolean recent() { return recent; }
175         public void    seen(boolean on) { seen = on; fixflags(); }
176         public void    deleted(boolean on) { deleted = on; fixflags(); }
177         public void    flagged(boolean on) { flagged = on; fixflags(); }
178         public void    draft(boolean on) { draft = on; fixflags(); }
179         public void    answered(boolean on) { answered = on; fixflags(); }
180         public void    recent(boolean on) { recent = on; fixflags(); }
181
182     }
183 }