Hooray... sonews/0.5.0 final
HG: Enter commit message. Lines beginning with 'HG:' are removed.
HG: Remove all lines to abort the collapse operation.
3 * see AUTHORS for the list of contributors
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 package org.sonews.util.io;
21 import java.io.BufferedInputStream;
22 import java.io.BufferedOutputStream;
23 import java.io.ByteArrayOutputStream;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.io.UnsupportedEncodingException;
27 import java.net.Socket;
28 import java.net.UnknownHostException;
29 import org.sonews.util.Log;
32 * Reads an news article from a NNTP server.
33 * @author Christian Lins
36 public class ArticleReader
39 private BufferedOutputStream out;
40 private BufferedInputStream in;
41 private String messageID;
43 public ArticleReader(String host, int port, String messageID)
44 throws IOException, UnknownHostException
46 this.messageID = messageID;
48 // Connect to NNTP server
49 Socket socket = new Socket(host, port);
50 this.out = new BufferedOutputStream(socket.getOutputStream());
51 this.in = new BufferedInputStream(socket.getInputStream());
52 String line = readln(this.in);
53 if(!line.startsWith("200 "))
55 throw new IOException("Invalid hello from server: " + line);
59 private boolean eofArticle(byte[] buf)
66 int l = buf.length - 1;
67 return buf[l-3] == 10 // '*\n'
68 && buf[l-2] == '.' // '.'
69 && buf[l-1] == 13 && buf[l] == 10; // '\r\n'
72 public byte[] getArticleData()
73 throws IOException, UnsupportedEncodingException
77 this.out.write(("ARTICLE " + this.messageID + "\r\n").getBytes("UTF-8"));
80 String line = readln(this.in);
81 if(line.startsWith("220 "))
83 ByteArrayOutputStream buf = new ByteArrayOutputStream();
85 while(!eofArticle(buf.toByteArray()))
87 for(int b = in.read(); b != 10; b = in.read())
95 return buf.toByteArray();
99 Log.msg("ArticleReader: " + line, false);
103 catch(IOException ex)
109 this.out.write("QUIT\r\n".getBytes("UTF-8"));
115 private String readln(InputStream in)
118 ByteArrayOutputStream buf = new ByteArrayOutputStream();
119 for(int b = in.read(); b != 10 /* \n */; b = in.read())
124 return new String(buf.toByteArray());