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