1 package be
.nikiroo
.utils
.serial
.server
;
3 import java
.io
.IOException
;
4 import java
.net
.Socket
;
5 import java
.net
.UnknownHostException
;
7 import be
.nikiroo
.utils
.Version
;
10 * This class implements a simple server that can listen for connections and
11 * send/receive Strings.
13 * Note: this {@link ServerString} has to be discarded after use (cannot be
18 abstract public class ServerString
extends Server
{
20 * Create a new server that will start listening on the network when
21 * {@link ServerString#start()} is called.
24 * the port to listen on, or 0 to assign any unallocated port
25 * found (which can later on be queried via
26 * {@link ServerString#getPort()}
28 * an optional key to encrypt all the communications (if NULL,
29 * everything will be sent in clear text)
32 * in case of I/O error
33 * @throws UnknownHostException
34 * if the IP address of the host could not be determined
35 * @throws IllegalArgumentException
36 * if the port parameter is outside the specified range of valid
37 * port values, which is between 0 and 65535, inclusive
39 public ServerString(int port
, String key
) throws IOException
{
44 * Create a new server that will start listening on the network when
45 * {@link ServerString#start()} is called.
48 * the server name (only used for debug info and traces)
50 * the port to listen on
52 * an optional key to encrypt all the communications (if NULL,
53 * everything will be sent in clear text)
56 * in case of I/O error
57 * @throws UnknownHostException
58 * if the IP address of the host could not be determined
59 * @throws IllegalArgumentException
60 * if the port parameter is outside the specified range of valid
61 * port values, which is between 0 and 65535, inclusive
63 public ServerString(String name
, int port
, String key
) throws IOException
{
64 super(name
, port
, key
);
68 protected ConnectActionServer
createConnectActionServer(Socket s
) {
69 return new ConnectActionServerString(s
, key
) {
71 public void action(Version clientVersion
) throws Exception
{
72 long id
= getNextId();
73 for (String data
= rec(); data
!= null; data
= rec()) {
76 rep
= onRequest(this, clientVersion
, data
, id
);
80 } catch (Exception e
) {
90 onRequestDone(id
, getBytesReceived(), getBytesSent());
94 protected void onError(Exception e
) {
95 ServerString
.this.onError(e
);
101 protected ConnectActionClient
getConnectionToMe()
102 throws UnknownHostException
, IOException
{
103 return new ConnectActionClientString(new Socket((String
) null,
108 * This is the method that is called on each client request.
110 * You are expected to react to it and return an answer (NULL will be
111 * converted to an empty {@link String}).
115 * @param clientVersion
118 * the data sent by the client
120 * an ID to identify this request (will also be re-used for
121 * {@link ServerObject#onRequestDone(long, long, long)}.
123 * @return the answer to return to the client
126 * in case of an exception, the error will only be logged
128 protected String
onRequest(ConnectActionServerString action
,
129 Version clientVersion
, String data
,
130 @SuppressWarnings("unused") long id
) throws Exception
{
131 // TODO: change to abstract when deprecated method is removed
132 // Default implementation for compat
133 return onRequest(action
, clientVersion
, data
);
139 * @deprecated SSL support has been replaced by key-based encryption.
141 * Please use the version with key encryption (this deprecated
142 * version uses an empty key when <tt>ssl</tt> is TRUE and no
143 * key (NULL) when <tt>ssl</tt> is FALSE).
146 public ServerString(int port
, boolean ssl
) throws IOException
{
147 this(port
, ssl ?
"" : null);
151 * @deprecated SSL support has been replaced by key-based encryption.
153 * Please use the version with key encryption (this deprecated
154 * version uses an empty key when <tt>ssl</tt> is TRUE and no
155 * key (NULL) when <tt>ssl</tt> is FALSE).
158 public ServerString(String name
, int port
, boolean ssl
) throws IOException
{
159 this(name
, port
, ssl ?
"" : null);
163 * Will be called if the correct version is not overrided.
165 * @deprecated use the version with the id.
170 * the data sent by the client
172 * @return the answer to return to the client
175 * in case of an exception, the error will only be logged
178 @SuppressWarnings("unused")
179 protected String
onRequest(ConnectActionServerString action
,
180 Version version
, String data
) throws Exception
{