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

import javax.swing.JTextArea;

public class ChatClientReader extends Thread
{
	public static Scanner reader = new Scanner(System.in);
	private ChatClient client;
	private Socket soc;
	UserInterface ui;
	
	/** constructor 
	 * @param the socket */	
	public ChatClientReader (ChatClient client, Socket soc)
	{
		this.client = client;
		this.soc = soc;
	}
	
	public void setDisplay (UserInterface ui)
	{
		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);
			
			do {
				line = input.readLine(); // FIXME: more then 1 line
				if (line == null)
				{
					soc.close();
					System.err.println("The line is empty");
					break;
				}
				
				System.out.println("");
				System.out.println(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
				{
					ui.outputWriter("[" + line + "]");
				}				
			} while (line != null);
			// FIXME: close socket here?
		} catch (IOException e)	{
			System.err.println(e);
			return;
		}
		
		

	}

}