1 package be
.nikiroo
.utils
.serial
.server
;
3 import java
.io
.BufferedReader
;
4 import java
.io
.IOException
;
5 import java
.io
.InputStreamReader
;
6 import java
.io
.OutputStreamWriter
;
7 import java
.net
.Socket
;
9 import be
.nikiroo
.utils
.Version
;
10 import be
.nikiroo
.utils
.serial
.Exporter
;
11 import be
.nikiroo
.utils
.serial
.Importer
;
14 * Base class used for the client/server basic handling.
16 * It represents a single action: a client is expected to only execute one
17 * action, while a server is expected to execute one action for each client
22 abstract class ConnectAction
{
24 private boolean server
;
25 private Version version
;
26 private Version clientVersion
;
28 private Object lock
= new Object();
29 private BufferedReader in
;
30 private OutputStreamWriter out
;
31 private boolean contentToSend
;
34 * Method that will be called when an action is performed on either the
35 * client or server this {@link ConnectAction} represent.
38 * the counter part version
41 * in case of I/O error
43 abstract protected void action(Version version
) throws Exception
;
46 * Method called when we negotiate the version with the client.
48 * Thus, it is only called on the server.
50 * Will return the actual server version by default.
52 * @param clientVersion
55 * @return the version to send to the client
57 abstract protected Version
negotiateVersion(Version clientVersion
);
60 * Handler called when an unexpected error occurs in the code.
63 * the exception that occurred
65 abstract protected void onError(Exception e
);
68 * Create a new {@link ConnectAction}.
71 * the socket to bind to
73 * TRUE for a server action, FALSE for a client action (will
76 * the version of this client-or-server
78 protected ConnectAction(Socket s
, boolean server
, Version version
) {
82 if (version
== null) {
83 this.version
= new Version();
85 this.version
= version
;
88 clientVersion
= new Version();
92 * The version of this client-or-server.
96 public Version
getVersion() {
101 * Actually start the process (this is synchronous).
103 public void connect() {
105 in
= new BufferedReader(new InputStreamReader(s
.getInputStream(),
108 out
= new OutputStreamWriter(s
.getOutputStream(), "UTF-8");
111 String line
= in
.readLine();
112 if (line
!= null && line
.startsWith("VERSION ")) {
113 // "VERSION client-version" (VERSION 1.0.0)
114 Version clientVersion
= new Version(
115 line
.substring("VERSION ".length()));
116 this.clientVersion
= clientVersion
;
117 Version v
= negotiateVersion(clientVersion
);
122 sendString("VERSION " + v
.toString());
125 action(clientVersion
);
127 String v
= sendString("VERSION " + version
.toString());
128 if (v
!= null && v
.startsWith("VERSION ")) {
129 v
= v
.substring("VERSION ".length());
132 action(new Version(v
));
142 } catch (Exception e
) {
147 } catch (Exception e
) {
154 * Serialise and send the given object to the counter part (and, only for
155 * client, return the deserialised answer -- the server will always receive
161 * @return the answer (which can be NULL) if this action is a client, always
162 * NULL if it is a server
164 * @throws IOException
165 * in case of I/O error
166 * @throws NoSuchFieldException
167 * if the serialised data contains information about a field
168 * which does actually not exist in the class we know of
169 * @throws NoSuchMethodException
170 * if a class described in the serialised data cannot be created
171 * because it is not compatible with this code
172 * @throws ClassNotFoundException
173 * if a class described in the serialised data cannot be found
175 protected Object
sendObject(Object data
) throws IOException
,
176 NoSuchFieldException
, NoSuchMethodException
, ClassNotFoundException
{
177 synchronized (lock
) {
178 String rep
= sendString(new Exporter().append(data
).toString(true));
180 return new Importer().read(rep
).getValue();
188 * Reserved for the server: flush the data to the client and retrieve its
191 * Also used internally for the client (only do something if there is
194 * Will only flush the data if there is contentToSend.
196 * @return the deserialised answer (which can actually be NULL)
198 * @throws IOException
199 * in case of I/O error
200 * @throws NoSuchFieldException
201 * if the serialised data contains information about a field
202 * which does actually not exist in the class we know of
203 * @throws NoSuchMethodException
204 * if a class described in the serialised data cannot be created
205 * because it is not compatible with this code
206 * @throws ClassNotFoundException
207 * if a class described in the serialised data cannot be found
208 * @throws java.lang.NullPointerException
209 * if the counter part has no data to send
211 protected Object
recObject() throws IOException
, NoSuchFieldException
,
212 NoSuchMethodException
, ClassNotFoundException
,
213 java
.lang
.NullPointerException
{
214 String str
= recString();
216 throw new NullPointerException("No more data available");
219 return new Importer().read(str
).getValue();
223 * Send the given string to the counter part (and, only for client, return
224 * the answer -- the server will always receive NULL).
227 * the data to send (we will add a line feed)
229 * @return the answer if this action is a client (without the added line
230 * feed), NULL if it is a server
232 * @throws IOException
233 * in case of I/O error
235 protected String
sendString(String line
) throws IOException
{
236 synchronized (lock
) {
245 contentToSend
= true;
251 * Reserved for the server (externally): flush the data to the client and
252 * retrieve its answer.
254 * Also used internally for the client (only do something if there is
257 * Will only flush the data if there is contentToSend.
259 * @return the answer (which can be NULL)
261 * @throws IOException
262 * in case of I/O error
264 protected String
recString() throws IOException
{
265 synchronized (lock
) {
266 if (server
|| contentToSend
) {
269 contentToSend
= false;
272 return in
.readLine();