d1e0a5e2841a3faeed138f6e8bc4e9ce87e273b2
[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 {
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
44     public Mailbox          slash(String name, boolean create) {
45         return FileBasedMailbox.getFileBasedMailbox(path + slash + name, create); }
46
47     public String[] children() {
48         Vec vec = new Vec();
49         String[] list = new File(path).list();
50         for(int i=0; i<list.length; i++) {
51             if (!(new File(path + slash + list[i]).isDirectory())) continue;
52             vec.addElement(list[i]);
53         }
54         String[] ret = new String[vec.size()];
55         vec.copyInto(ret);
56         return ret;
57     }
58
59     public Mailbox.Iterator iterator() { return new FileBasedMailbox.Iterator(); }
60     public int              uidValidity() { return (int)(new File(path).lastModified() & 0xffffffL); }
61
62     public int uidNext() { return uidNext(false); }
63     public int uidNext(boolean inc) {
64         try {
65             uidNext = new File(path + slash + "UIDNEXT");
66             if (!uidNext.exists()) {
67                 File tmp = new File(uidNext + "-");
68                 PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(tmp)));
69                 pw.println("1");
70                 pw.flush();
71                 pw.close();
72                 tmp.renameTo(uidNext);
73                 return 1;
74             }
75             BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(uidNext)));
76             int ret = Integer.parseInt(br.readLine());
77             br.close();
78             if (inc) {
79                 File tmp = new File(uidNext + "-");
80                 PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(tmp)));
81                 pw.println(ret+1);
82                 pw.flush();
83                 pw.close();
84                 tmp.renameTo(uidNext);
85             }
86             return ret;
87         } catch (IOException e) { throw new MailException.IOException(e); }
88     }        
89
90     public synchronized void add(Message message) { add(message, Mailbox.Flag.RECENT); }
91     public synchronized void add(Message message, int flags) {
92         Log.info(this, "adding message to ["+toString()+"]:\n" + message.summary());
93         try {
94             int num = new File(path).list(filter).length;
95             String name = path + slash + uidNext(true) + "." +
96                 ((flags & Mailbox.Flag.DELETED) == Mailbox.Flag.DELETED ? "x" : "") +
97                 ((flags & Mailbox.Flag.DRAFT) == Mailbox.Flag.DRAFT ? "d" : "") +
98                 ((flags & Mailbox.Flag.RECENT) == Mailbox.Flag.RECENT ? "r" : "") +
99                 ((flags & Mailbox.Flag.ANSWERED) == Mailbox.Flag.ANSWERED ? "a" : "") +
100                 ((flags & Mailbox.Flag.FLAGGED) == Mailbox.Flag.FLAGGED ? "f" : "") +
101                 ((flags & Mailbox.Flag.SEEN) == Mailbox.Flag.SEEN ? "s" : "");
102             Log.info(this, "    with chosen filename " + name);
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             Log.info(this, "    done writing.");
110         } catch (IOException e) { throw new MailException.IOException(e); }
111     }
112
113     private class Iterator extends Mailbox.Default.Iterator {
114         int cur = -1;
115         private String[] names;
116         private boolean seen = false, deleted = false, draft = false, flagged = false, answered = false, recent = false;
117         public Iterator() { names = new File(path).list(filter); }
118
119         public Message head() { return cur(); }
120         public Message cur() {
121             if (cur >= names.length) return null;
122             try {
123                 File file = new File(path + File.separatorChar + names[cur]);
124                 FileInputStream fis = new FileInputStream(file);
125                 Message ret = new Message(null, null, new Stream(fis));
126                 fis.close();
127                 return ret;
128             } catch (IOException e) { throw new MailException.IOException(e);
129             } catch (Message.Malformed e) { throw new MailException(e.getMessage()); }
130         }
131         public boolean next() {
132             cur++;
133             if (cur >= names.length) return false;
134             String name = names[cur].substring(names[cur].indexOf('.') + 1);
135             if (!(new File(path + File.separatorChar + names[cur])).exists()) return next();
136             seen     = name.indexOf('s') != -1;
137             deleted  = name.indexOf('x') != -1;
138             flagged  = name.indexOf('f') != -1;
139             draft    = name.indexOf('d') != -1;
140             answered = name.indexOf('a') != -1;
141             recent   = name.indexOf('r') != -1;
142             return true;
143         }
144         public int num() { return cur; }
145         public int uid() {
146             try { return Integer.parseInt(names[cur].substring(0, names[cur].indexOf('.')));
147             } catch (NumberFormatException nfe) {
148                 Log.warn(FileBasedMailbox.class, "NumberFormatException: " + names[cur].substring(0, names[cur].length() - 1));
149                 return -1; } }
150
151         private void fixflags() {
152             String newName =
153                 names[cur].substring(0, names[cur].indexOf('.') + 1) +
154                 (seen ? "s" : "") +
155                 (deleted ? "x" : "") +
156                 (flagged ? "f" : "") +
157                 (draft ? "d" : "") +
158                 (recent ? "r" : "") +
159                 (answered ? "a" : "");
160             new File(path + File.separatorChar + names[cur]).renameTo(new File(path + File.separatorChar + newName));
161             names[cur] = newName;
162         }
163
164         public void    delete() {
165             new File(path + File.separatorChar + names[cur]).delete();
166             // FIXME remove from list?
167         }
168         public void    set(String key, String val) { throw new MailException("not supported"); }
169         public String  get(String key) { throw new MailException("not supported"); }
170
171         public boolean seen() { return seen; }
172         public boolean deleted() { return deleted; }
173         public boolean flagged() { return flagged; }
174         public boolean draft() { return draft; }
175         public boolean answered() { return answered; }
176         public boolean recent() { return recent; }
177         public void    seen(boolean on) { seen = on; fixflags(); }
178         public void    deleted(boolean on) { deleted = on; fixflags(); }
179         public void    flagged(boolean on) { flagged = on; fixflags(); }
180         public void    draft(boolean on) { draft = on; fixflags(); }
181         public void    answered(boolean on) { answered = on; fixflags(); }
182         public void    recent(boolean on) { recent = on; fixflags(); }
183
184     }
185 }