summaryrefslogtreecommitdiff
path: root/src/Client/ChatClientReader.java
blob: c5a279a8af5bc978f2abe3be89c9a37d2af68de3 (plain)
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
package Client;
import java.net.Socket;
import java.io.*;

public class ChatClientReader extends Thread
{
	private ChatClient client;
	private Socket soc;
	private UserInterface ui;
	
	/** constructor 
	 * @param the socket */	
	public ChatClientReader (ChatClient client, Socket soc, UserInterface ui)
	{
		this.client = client;
		this.soc = soc;
		this.ui = ui;
	}
	
	/** Running the object and translate the input from bytes to letters*/	
	public void run()
	{
		try
		{
			String line;
	
			InputStreamReader inputTemp = new InputStreamReader(this.soc.getInputStream());
			BufferedReader input = new BufferedReader(inputTemp);
			
			while (true)
			{
				line = input.readLine(); 
				if (line == null)
				{
					soc.close();
					System.err.println("The line is empty");
					break;
				}

				System.out.println("Got line: [" + line + "]");
				
				ParsedLine parsed = new ParsedLine(line);

				if (parsed.get("command").compareTo("PRIVMSG") == 0)
				{
					ui.outputWriter(parsed.get("nick") + ": " + parsed.get("message"));
				}

				else if (parsed.get("command").compareTo("PING") == 0)
				{
					this.client.runSendline("PONG :me");
				}
				
				else if (!client.getConnected())
				{
					if (parsed.get("command").compareTo("001") == 0)
					{
						client.joinChannel();
						ui.outputWriter("You've conected succesefully to the server!");
					}
					
					else if (parsed.get("command").compareTo("433") == 0) {
						System.err.println("fixing nick collision");
						client.fixNickCollision();
					}
					
					ui.outputWriter("[" + line + "]");
				}

				else
				{
					ui.outputWriter("[" + line + "]");
				}				
			}
		} catch (IOException e)	{
			System.err.println(e);
			return;
		}
		
		

	}

}