current state
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpConnectionHandler.java
1 /*
2  * jSite2 - FcpConnectionHandler.java -
3  * Copyright © 2008 David Roden
4  *
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 2 of the License, or
8  * (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.util.fcp;
21
22 import java.io.IOException;
23 import java.io.InputStream;
24 import java.nio.ByteBuffer;
25 import java.nio.charset.Charset;
26
27 /**
28  * Handles an FCP connection to a node.
29  * 
30  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
31  * @version $Id$
32  */
33 public class FcpConnectionHandler implements Runnable {
34
35         /** The underlying connection. */
36         private final FcpConnection fcpConnection;
37
38         /** The input stream from the node. */
39         private final InputStream remoteInputStream;
40
41         /** Whether to stop the connection handler. */
42         private boolean shouldStop;
43
44         /** Whether the next read line feed should be ignored. */
45         private boolean ignoreNextLinefeed;
46
47         /**
48          * Creates a new connection handler that operates on the given connection
49          * and input stream.
50          * 
51          * @param fcpConnection
52          *            The underlying FCP connection
53          * @param remoteInputStream
54          *            The input stream from the node
55          */
56         public FcpConnectionHandler(FcpConnection fcpConnection, InputStream remoteInputStream) {
57                 this.fcpConnection = fcpConnection;
58                 this.remoteInputStream = remoteInputStream;
59         }
60
61         /**
62          * {@inheritDoc}
63          */
64         public void run() {
65                 FcpMessage fcpMessage = null;
66                 while (true) {
67                         synchronized (this) {
68                                 if (shouldStop) {
69                                         break;
70                                 }
71                         }
72                         try {
73                                 String line = readLine();
74                                 System.out.println("read line: " + line);
75                                 if (line == null) {
76                                         break;
77                                 }
78                                 if (line.length() == 0) {
79                                         continue;
80                                 }
81                                 line = line.trim();
82                                 if (fcpMessage == null) {
83                                         fcpMessage = new FcpMessage(line);
84                                         continue;
85                                 }
86                                 if ("EndMessage".equals(line)) {
87                                         fcpConnection.handleMessage(fcpMessage);
88                                         fcpMessage = null;
89                                 }
90                                 int equalSign = line.indexOf('=');
91                                 if (equalSign == -1) {
92                                         /* something's fishy! */
93                                         continue;
94                                 }
95                                 String field = line.substring(0, equalSign);
96                                 String value = line.substring(equalSign + 1);
97                                 fcpMessage.setField(field, value);
98                         } catch (IOException e) {
99                                 break;
100                         }
101                 }
102         }
103
104         /**
105          * Stops the connection handler.
106          */
107         public void stop() {
108                 synchronized (this) {
109                         shouldStop = true;
110                 }
111         }
112
113         //
114         // PRIVATE METHODS
115         //
116
117         /**
118          * Reads bytes from {@link #remoteInputStream} until ‘\r’ or ‘\n’ are
119          * encountered and decodes the read bytes using UTF-8.
120          * 
121          * @return The decoded line
122          * @throws IOException
123          *             if an I/O error occurs
124          */
125         private String readLine() throws IOException {
126                 byte[] readBytes = new byte[512];
127                 int readIndex = 0;
128                 while (true) {
129                         int nextByte = remoteInputStream.read();
130                         if (nextByte == -1) {
131                                 if (readIndex == 0) {
132                                         return null;
133                                 }
134                                 break;
135                         }
136                         if (nextByte == 10) {
137                                 if (!ignoreNextLinefeed) {
138                                         break;
139                                 }
140                         }
141                         ignoreNextLinefeed = false;
142                         if (nextByte == 13) {
143                                 ignoreNextLinefeed = true;
144                                 break;
145                         }
146                         if (readIndex == readBytes.length) {
147                                 /* recopy & enlarge array */
148                                 byte[] newReadBytes = new byte[readBytes.length * 2];
149                                 System.arraycopy(readBytes, 0, newReadBytes, 0, readBytes.length);
150                                 readBytes = newReadBytes;
151                         }
152                         readBytes[readIndex++] = (byte) nextByte;
153                 }
154                 ByteBuffer byteBuffer = ByteBuffer.wrap(readBytes, 0, readIndex);
155                 return Charset.forName("UTF-8").decode(byteBuffer).toString();
156         }
157
158 }