summaryrefslogtreecommitdiff
path: root/src/Client/ChatClientReader.java
blob: 976bf847cd882bbd637d1a07bf11e6f8545cfc41 (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
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 Socket soc;
	UserInterface ui;
	
	/** constructor 
	 * @param the socket */	
	public ChatClientReader (Socket soc)
	{
		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");
				}
				line = "[" + line + "]";
				System.out.println("");
				System.out.println(line);
				
				ui.outputWriter(line);		

			} while (line != null);
			

		} catch (IOException e)	{
			System.err.println(e);
			return;
		}
		
		

	}

}