|
@@ -9,14 +9,10 @@ import java.awt.event.ActionEvent;
|
|
|
import java.awt.event.ActionListener;
|
|
|
import java.awt.event.KeyEvent;
|
|
|
import java.awt.event.KeyListener;
|
|
|
-import java.io.EOFException;
|
|
|
import java.io.File;
|
|
|
-import java.io.IOException;
|
|
|
import java.io.ObjectInputStream;
|
|
|
import java.io.PrintWriter;
|
|
|
-import java.net.InetSocketAddress;
|
|
|
import java.net.Socket;
|
|
|
-import java.net.SocketTimeoutException;
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
import javax.swing.DefaultListModel;
|
|
@@ -31,15 +27,28 @@ import javax.swing.ListSelectionModel;
|
|
|
import javax.swing.WindowConstants;
|
|
|
import javax.swing.border.EmptyBorder;
|
|
|
|
|
|
-import eu.tankernn.chat.common.InfoPacket;
|
|
|
import eu.tankernn.chat.common.MessagePacket;
|
|
|
import eu.tankernn.chat.common.MessagePacket.MessageType;
|
|
|
+import eu.tankernn.chat.common.Packet;
|
|
|
+import io.netty.bootstrap.Bootstrap;
|
|
|
+import io.netty.channel.ChannelFuture;
|
|
|
+import io.netty.channel.ChannelInitializer;
|
|
|
+import io.netty.channel.ChannelOption;
|
|
|
+import io.netty.channel.EventLoopGroup;
|
|
|
+import io.netty.channel.nio.NioEventLoopGroup;
|
|
|
+import io.netty.channel.socket.SocketChannel;
|
|
|
+import io.netty.channel.socket.nio.NioSocketChannel;
|
|
|
+import io.netty.handler.codec.serialization.ClassResolvers;
|
|
|
+import io.netty.handler.codec.serialization.ObjectDecoder;
|
|
|
+import io.netty.handler.codec.string.StringEncoder;
|
|
|
|
|
|
@SuppressWarnings("serial")
|
|
|
-public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyListener {
|
|
|
+public class ChatWindow extends JFrame implements ActionListener, KeyListener {
|
|
|
Thread getMessages;
|
|
|
static File confFile = new File("client.properties");
|
|
|
|
|
|
+ EventLoopGroup workerGroup = new NioEventLoopGroup();
|
|
|
+
|
|
|
String adress, username;
|
|
|
ArrayList<String> lastMess = new ArrayList<String>();
|
|
|
int port, messIndex = 0;
|
|
@@ -123,40 +132,70 @@ public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyL
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- void connect(String address, int port, String username) {
|
|
|
- chat.log(new MessagePacket("Connecting to " + address + " on port " + port + ".", MessageType.INFO));
|
|
|
- if (getMessages != null)
|
|
|
- getMessages.interrupt();
|
|
|
-
|
|
|
- try {
|
|
|
- so.close();
|
|
|
- objIn.close();
|
|
|
- out.close();
|
|
|
- } catch (NullPointerException ex) {
|
|
|
- // Nothing
|
|
|
- } catch (IOException ex) {
|
|
|
- chat.log(new MessagePacket(ex.toString(), MessageType.ERROR));
|
|
|
- }
|
|
|
-
|
|
|
+ // void connect(String address, int port, String username) {
|
|
|
+ // chat.log(new MessagePacket("Connecting to " + address + " on port " +
|
|
|
+ // port + ".", MessageType.INFO));
|
|
|
+ // if (getMessages != null)
|
|
|
+ // getMessages.interrupt();
|
|
|
+ //
|
|
|
+ // try {
|
|
|
+ // so.close();
|
|
|
+ // objIn.close();
|
|
|
+ // out.close();
|
|
|
+ // } catch (NullPointerException ex) {
|
|
|
+ // // Nothing
|
|
|
+ // } catch (IOException ex) {
|
|
|
+ // chat.log(new MessagePacket(ex.toString(), MessageType.ERROR));
|
|
|
+ // }
|
|
|
+ //
|
|
|
+ // try {
|
|
|
+ // so = new Socket();
|
|
|
+ // so.connect(new InetSocketAddress(address, port));
|
|
|
+ // objIn = new ObjectInputStream(so.getInputStream());
|
|
|
+ // out = new PrintWriter(so.getOutputStream(), true);
|
|
|
+ // } catch (SocketTimeoutException ex) {
|
|
|
+ // chat.log(new MessagePacket("Could not connect to server. (Connection
|
|
|
+ // timed out!)", MessageType.ERROR));
|
|
|
+ // return;
|
|
|
+ // } catch (IOException e) {
|
|
|
+ // chat.log(new MessagePacket(e.toString(), MessageType.ERROR));
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ //
|
|
|
+ // send(username); // First packet sent to server sets username
|
|
|
+ //
|
|
|
+ // getMessages = new Thread(this);
|
|
|
+ // getMessages.start();
|
|
|
+ //
|
|
|
+ // write.setEnabled(true);
|
|
|
+ // }
|
|
|
+
|
|
|
+ protected void connect(String address, int port, String username) {
|
|
|
try {
|
|
|
- so = new Socket();
|
|
|
- so.connect(new InetSocketAddress(address, port));
|
|
|
- objIn = new ObjectInputStream(so.getInputStream());
|
|
|
- out = new PrintWriter(so.getOutputStream(), true);
|
|
|
- } catch (SocketTimeoutException ex) {
|
|
|
- chat.log(new MessagePacket("Could not connect to server. (Connection timed out!)", MessageType.ERROR));
|
|
|
- return;
|
|
|
- } catch (IOException e) {
|
|
|
- chat.log(new MessagePacket(e.toString(), MessageType.ERROR));
|
|
|
- return;
|
|
|
+ Bootstrap b = new Bootstrap();
|
|
|
+ b.group(workerGroup);
|
|
|
+ b.channel(NioSocketChannel.class);
|
|
|
+ b.option(ChannelOption.SO_KEEPALIVE, true);
|
|
|
+ b.handler(new ChannelInitializer<SocketChannel>() {
|
|
|
+ @Override
|
|
|
+ public void initChannel(SocketChannel ch) throws Exception {
|
|
|
+ ch.pipeline().addLast("decoder",
|
|
|
+ new ObjectDecoder(ClassResolvers.weakCachingResolver(Packet.class.getClassLoader())));
|
|
|
+ ch.pipeline().addLast("encoder", new StringEncoder());
|
|
|
+ ch.pipeline().addLast("handler", new ChatClientHandler(ChatWindow.this));
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ // Start the client.
|
|
|
+ ChannelFuture f = b.connect(address, port).sync();
|
|
|
+
|
|
|
+ // Wait until the connection is closed.
|
|
|
+ f.channel().closeFuture().sync();
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ } finally {
|
|
|
+ workerGroup.shutdownGracefully();
|
|
|
}
|
|
|
-
|
|
|
- send(username); // First packet sent to server sets username
|
|
|
-
|
|
|
- getMessages = new Thread(this);
|
|
|
- getMessages.start();
|
|
|
-
|
|
|
- write.setEnabled(true);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -165,43 +204,20 @@ public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyL
|
|
|
connect(adress, port, username);
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public void run() {
|
|
|
- try {
|
|
|
- getMessages();
|
|
|
- } catch (EOFException eof) {
|
|
|
- chat.log(new MessagePacket(eof.toString() + " Disconnected from host.", MessageType.ERROR));
|
|
|
- } catch (ClassNotFoundException cnf) {
|
|
|
- chat.log(new MessagePacket(
|
|
|
- "The message recieved from the server could not be understood. Are you using the right version?",
|
|
|
- MessageType.ERROR));
|
|
|
- } catch (IOException e) {
|
|
|
- chat.log(new MessagePacket(e.toString(), MessageType.ERROR));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public void getMessages() throws IOException, ClassNotFoundException {
|
|
|
- while (!getMessages.isInterrupted()) {
|
|
|
- Object fromServer = objIn.readObject();
|
|
|
- if (fromServer instanceof MessagePacket) {
|
|
|
- MessagePacket mess = ((MessagePacket) fromServer);
|
|
|
- chat.log(mess);
|
|
|
- } else if (fromServer instanceof InfoPacket) {
|
|
|
- InfoPacket info = (InfoPacket) fromServer;
|
|
|
-
|
|
|
- infoLabel.setText("<html>" + info.toString().replace("\n", "<br>"));
|
|
|
-
|
|
|
- model = new DefaultListModel<String>();
|
|
|
- for (String user : info.usersOnline)
|
|
|
- model.addElement(user);
|
|
|
-
|
|
|
- userList.setModel(model);
|
|
|
- } else if (fromServer instanceof String) {
|
|
|
- chat.log(new MessagePacket((String) fromServer, MessageType.NORMAL));
|
|
|
- } else
|
|
|
- throw new ClassNotFoundException();
|
|
|
- }
|
|
|
- }
|
|
|
+// @Override
|
|
|
+// public void run() {
|
|
|
+// try {
|
|
|
+// getMessages();
|
|
|
+// } catch (EOFException eof) {
|
|
|
+// chat.log(new MessagePacket(eof.toString() + " Disconnected from host.", MessageType.ERROR));
|
|
|
+// } catch (ClassNotFoundException cnf) {
|
|
|
+// chat.log(new MessagePacket(
|
|
|
+// "The message recieved from the server could not be understood. Are you using the right version?",
|
|
|
+// MessageType.ERROR));
|
|
|
+// } catch (IOException e) {
|
|
|
+// chat.log(new MessagePacket(e.toString(), MessageType.ERROR));
|
|
|
+// }
|
|
|
+// }
|
|
|
|
|
|
@Override
|
|
|
public void keyPressed(KeyEvent eKey) {
|
|
@@ -241,7 +257,7 @@ public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyL
|
|
|
@Override
|
|
|
public void keyTyped(KeyEvent arg0) {
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public boolean isConnected() {
|
|
|
return so.isConnected() && !so.isClosed();
|
|
|
}
|