TD2: Be more informative at exception catching.
[TD_SR.git] / TD2 / client / SocketClient.java
CommitLineData
2c648f75
JB
1import java.io.*;
2import java.net.*;
3import java.util.*;
4
5public class SocketClient {
6 BufferedReader lecture; // pour le flot d'entrée venant du serveur
7 PrintWriter ecriture; // pour le flot de sortie vers le serveur
c4aaaeca
JB
8 ObjectInput oLecture;
9 ObjectOutput oEcriture;
2c648f75
JB
10 Socket sock; // le socket client
11
12 public SocketClient() {
13 // établie une connexion au serveur par un appel
14 // à connexionServeur()
e018d1ec
JB
15 attributesInit();
16 try {
17 connexionServeur("localhost", 5000);
18 }
19 catch (IOException e) {
20 System.err.println("IOException: " + e);
8c3c3f61 21 e.printStackTrace();
e018d1ec
JB
22 closeRWIO();
23 }
2c648f75
JB
24 }
25
26 public SocketClient(String adresseIPServeur, int portServeur) {
27 // établie une connexion au serveur par un appel
28 // à connexionServeur()
e018d1ec 29 attributesInit();
2c648f75 30 try {
e018d1ec 31 connexionServeur(adresseIPServeur, portServeur);
2c648f75
JB
32 }
33 catch (IOException e) {
34 System.err.println("IOException: " + e);
8c3c3f61 35 e.printStackTrace();
e018d1ec 36 closeRWIO();
2c648f75 37 }
e018d1ec
JB
38 }
39
40 private void connexionServeur(String adresseIPServeur, int portServeur) throws IOException {
41 // créer un objet socket lié au socket serveur et l'affecte à sock
42 // puis établie les chaînages de flot nécessaires
43 // pour l'envoi et la reception de messages
44 sock = new Socket(adresseIPServeur, portServeur);
2c648f75 45
da31e6da 46 OutputStream OStream = sock.getOutputStream();
2c648f75 47 ecriture = new PrintWriter(OStream);
c4aaaeca 48 oEcriture = new ObjectOutputStream(OStream);
da31e6da
JB
49
50 InputStream IStream = sock.getInputStream();
51 InputStreamReader IMesg = new InputStreamReader(IStream);
52 lecture = new BufferedReader(IMesg);
53 oLecture = new ObjectInputStream(IStream);
2c648f75
JB
54 }
55
e018d1ec 56 private void attributesInit() {
c4aaaeca 57 sock = null;
e018d1ec
JB
58 lecture = null;
59 ecriture = null;
c4aaaeca
JB
60 oLecture = null;
61 oEcriture = null;
e018d1ec
JB
62 }
63
2c648f75
JB
64 /**
65 * Send a message on the opened client socket
66 * @param msg a string containing the message to send
67 */
e018d1ec 68 public void sendMsg(String msg) {
2c648f75
JB
69 ecriture.println(msg);
70 ecriture.flush();
2c648f75
JB
71 }
72
c4aaaeca
JB
73 /**
74 * Send an object message on the opened client socket
75 * @param msg a string containing the message to send
76 */
77 public void sendoMsg(Message oMsg) throws IOException {
78 oEcriture.writeObject(oMsg);
79 oEcriture.flush();
80 }
81
2c648f75
JB
82 /**
83 * Receive a message sent on the opened client socket
84 * @return a string containing the received message
85 */
e018d1ec 86 public String receiveMsg() throws IOException {
2c648f75 87 String line = new String();
ef258436 88 //FIXME?: read only the line before the ending newline
e018d1ec 89 line = lecture.readLine();
2c648f75
JB
90 return line;
91 }
92
c4aaaeca
JB
93 /**
94 * Receive an object message sent on the opened client socket
95 * @return a string containing the received message
96 */
97 public Message receiveoMsg() throws IOException, ClassNotFoundException {
98 return (Message)oLecture.readObject();
99 }
100
2c648f75
JB
101 /**
102 * Close all opened I/O streams attached to this object instance
103 */
104 public void closeRWIO() {
2c648f75 105 try {
e018d1ec
JB
106 if (sock != null)
107 sock.close();
108 if (lecture != null)
109 lecture.close();
110 if (ecriture != null)
111 ecriture.close();
c4aaaeca
JB
112 if (oLecture != null)
113 oLecture.close();
114 if (oEcriture != null) {
115 oEcriture.close();
116 }
2c648f75
JB
117 }
118 catch (IOException e) {
119 System.err.println("IOException: " + e);
8c3c3f61 120 e.printStackTrace();
2c648f75
JB
121 }
122 }
123
124} // fin classe SocketClient