X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fmail%2FMIME.java;fp=src%2Forg%2Fibex%2Fmail%2FMIME.java;h=5b62faaaf148b2755f20a2b58ad0738c9e66d557;hb=f91f71f3897e6b72c81d889397ccb972c6cff11d;hp=e17dd8ced260a1586c98fc3febbd9b81ea97e5fd;hpb=1fceeb3f8780b18f3def747fccdf8e4b8ac8d55d;p=org.ibex.mail.git diff --git a/src/org/ibex/mail/MIME.java b/src/org/ibex/mail/MIME.java index e17dd8c..5b62faa 100644 --- a/src/org/ibex/mail/MIME.java +++ b/src/org/ibex/mail/MIME.java @@ -33,8 +33,19 @@ public class MIME { public long getLength() { return all.getLength(); } public Fountain getBody() { return body; } - public Part(Fountain all) { - this.headers = new Headers(all); + public JS get(JS key) throws JSExn { + String k = JSU.toString(key); + if ("body".equals(k)) { + StringBuffer sb = new StringBuffer(); + getBody().getStream().transcribe(sb); + return JSU.S(sb.toString()); + } + return super.get(key); + } + + public Part(final Fountain fount, String[] keyval) { + Headers h = new Headers(fount); + this.headers = keyval==null ? h : new Headers(h, keyval); String ctype = headers.get("content-type"); this.encoding = headers.get("content-transfer-encoding"); String enc = this.encoding; @@ -45,12 +56,17 @@ public class MIME { ctype = "application/octet-stream"; } this.contentType = new ContentType(ctype, headers.get("content-description"), headers.get("content-id"), encoding); - this.all = all; + final long bodylength = fount.getLength() - h.getLength() - 2; /*CRLF*/ + // FIXME: this is a horrible, tangled mess. this.body = new Fountain() { public int getNumLines() { return Stream.countLines(getStream()); } - public long getLength() { return Part.this.getLength() - headers.getLength() - 2 /*CRLF*/; } - public Stream getStream() { return transformBodyStream(Headers.skip(Part.this.all.getStream())); } + public long getLength() { return bodylength; } + public Stream getStream() { return transformBodyStream(Headers.skip(fount.getStream())); } }; + this.all = + keyval==null + ? fount + : Fountain.Util.concat(this.headers, Fountain.Util.create("\r\n"), this.body); } private Stream transformBodyStream(Stream body) {