TD2: Make the client send and receive object message.
[TD_SR.git] / TD2 / client / ClientSimplifie.java
1 import java.io.*;
2 import java.net.*;
3 import java.util.*;
4
5 public class ClientSimplifie {
6 BufferedReader lecture; // pour le flot d'entrée venant du serveur
7 PrintWriter ecriture; // pour le flot de sortie vers le serveur
8 Socket sock; // le socket client
9
10 public ClientSimplifie() {
11 // établie une connexion au serveur par un appel
12 // à connexionServeur()
13 attributesInit();
14 try {
15 connexionServeur("localhost", 5000);
16 }
17 catch (IOException e) {
18 System.err.println("IOException: " + e);
19 closeRWIO();
20 }
21 }
22
23 public ClientSimplifie(String adresseIPServeur, int portServeur) {
24 // établie une connexion au serveur par un appel
25 // à connexionServeur()
26 attributesInit();
27 try {
28 connexionServeur(adresseIPServeur, portServeur);
29 }
30 catch (IOException e) {
31 System.err.println("IOException: " + e);
32 closeRWIO();
33 }
34 }
35
36 private void connexionServeur(String adresseIPServeur, int portServeur) throws IOException {
37 // créer un objet socket lié au socket serveur et l'affecte à sock
38 // puis établie les chaînages de flot nécessaires
39 // pour l'envoi et la reception de messages
40 sock = new Socket(adresseIPServeur, portServeur);
41 InputStream IStream = null;
42 IStream = sock.getInputStream();
43 InputStreamReader IMesg = new InputStreamReader(IStream);
44 lecture = new BufferedReader(IMesg);
45
46 OutputStream OStream = null;
47 OStream = sock.getOutputStream();
48 ecriture = new PrintWriter(OStream);
49 }
50
51 private void attributesInit() {
52 sock = null;
53 lecture = null;
54 ecriture = null;
55 }
56
57 /**
58 * Send a message on the opened client socket
59 * @param msg a string containing the message to send
60 */
61 public void sendMsg(String msg) {
62 ecriture.println(msg);
63 ecriture.flush();
64 }
65
66 /**
67 * Receive a message sent on the opened client socket
68 * @return a string containing the received message
69 */
70 public String receiveMsg() throws IOException {
71 String line = new String();
72 //FIXME?: read only the line before the ending newline
73 line = lecture.readLine();
74 return line;
75 }
76
77 /**
78 * Close all opened I/O streams attached to this object instance
79 */
80 public void closeRWIO() {
81 try {
82 if (sock != null)
83 sock.close();
84 if (lecture != null)
85 lecture.close();
86 if (ecriture != null)
87 ecriture.close();
88 }
89 catch (IOException e) {
90 System.err.println("IOException: " + e);
91 }
92 }
93
94 } // fin classe ClientSimplifie