I am using telnet to test it out. I telnet in and it works find, but it always says I'm still connected on the other side. I can even call isConnected(); on the channel and it still returns true. You need Java 1.5 to compile this since I am using BlockingQueue and Generics. You can find the precompiled versions at
http://files.amdfanboy.com under JChat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
| import java.net.*; import java.nio.*; import java.nio.channels.*; import java.io.*;
public class JChatServer { public static void main(String[] args) { ChatController controller = new ChatController(); try { ServerSocketChannel ssc = ServerSocketChannel.open(); ssc.configureBlocking(true); ssc.socket().bind(new InetSocketAddress(70)); while(true) { ChatThread t = new ChatThread(ssc.accept(), controller); controller.register(t); t.start(); } } catch(IOException ioe) { System.out.println(ioe); } } }
import java.util.*;
public class ChatController { private ArrayList<ChatThread> registeredThreads; public ChatController() { this.registeredThreads = new ArrayList<ChatThread>(); } public boolean register(ChatThread ct) { this.registeredThreads.add(ct); return true; } public boolean unregister(ChatThread ct) { return this.registeredThreads.remove(ct); } public void pushToAll(Message m) { for(ChatThread ct : this.registeredThreads) { ct.addMessage(m); } } public void shutdownThreads() { for(ChatThread ct : this.registeredThreads) { ct.shutdown(); } } }
import java.util.concurrent.*; import java.io.*; import java.nio.*; import java.nio.channels.*;
public class ChatThread extends Thread { private BlockingQueue<Message> queue; private SocketChannel channel; private ChatController controller; private boolean shutdown = false; public ChatThread(SocketChannel sc, ChatController cc) { this.channel = sc; this.controller = cc; this.queue = new LinkedBlockingQueue<Message>(); } public void run() { try { this.channel.configureBlocking(false); } catch(IOException ioe) { } while(!shutdown) { try { if(!this.channel.isConnected()) { throw new IOException("Disconnected"); } this.readMessage(); this.pushMessages(); TimeUnit.SECONDS.sleep(1); } catch(IOException ioe) { System.out.println(ioe); shutdown(); break; } catch(InterruptedException ie) { } } } public void readMessage() throws IOException { if(!this.channel.isConnected()) { throw new IOException("Disconnected"); } System.out.println("Reading"); try { ByteBuffer buffer = ByteBuffer.allocate(1024); StringBuilder strBuild = new StringBuilder(); buffer.clear(); boolean readMessage = false; while(this.channel.read(buffer) > 0) { buffer.flip(); for(int i = 0; i < buffer.limit(); i++) { strBuild.append((char) buffer.get(i)); } buffer.clear(); readMessage = true; } System.out.println("Done Reading"); if(readMessage) { this.controller.pushToAll(new Message(strBuild.toString())); } } catch(IOException ioe) { System.out.println(ioe); throw ioe; }
} public void pushMessages() throws IOException { System.out.println("Pushing messages"); try { if(!this.channel.isConnected()) { throw new IOException("Disconnected"); } this.channel.configureBlocking(true); while(this.queue.size() > 0) { Message m = this.queue.poll(); ObjectOutputStream oos = new ObjectOutputStream(this.channel.socket().getOutputStream()); oos.writeObject(m); } this.channel.configureBlocking(false); } catch(IOException ioe) { System.out.println(ioe); throw ioe; } } public boolean addMessage(Message m) { boolean answer = this.queue.offer(m); System.out.println("Got a message"); return answer; } public void shutdown() { this.controller.unregister(this); this.shutdown = true; } }
public class Message extends Object implements java.io.Serializable { private String data; public Message(String s) { this.data = s; } public String getData() { return data; } }
|