- Port 3779 is reserved for this server
- ClockServer accepts command in format:
{"command": "GET_TIME"}
- ClockServer respond with:
{"command": "CLOCK_RESPONSE", "time": "currentTime"}
-
currentTime is got by
System.currentTimeMillis()
-
Server request Clock Server for time on start
-
Listener starts to accept incoming connection only after server clock is synchronized.
-
All other servers will create an outgoing connection to ClockServer, whenever it needs time, and close that connection once it gets result.
- changed
HashMap<String, Boolean> loginState
toHashMap<String, Long> loginTime
, to record login time of each user. Entry will be removed on user logout - added
HashMap<Connection, String> connectionToUsername
, to record association of client connection to username. Entry will be removed on user logout
- forward loginTime on new client login
- forward on client logout
- added attribute
int activityCounter
, to keep track of number of sent activity messages. - client will put a new field "serial" to activity object.
- add activity buffer,
HashMap<Integer, JSONObject> activityBuffer
for sent activity messages. Key is serial number. - add local clock to client, and clock synchronization.
- add
public JSONObject preprocess()
to timestamp activity messages.
- add
HashMap<String, HashMap<Integer, JSONObject>> messageBuffer
, to serve as message log for later query.HashMap<username, HashMap<serial, activityObject
- server will create an entry for each logged in client (not anonymous)
- server will clean this record when client logged out
- Changed message activity sending behaviour. Now user don't have to input username and password.
- New message format:
{"command": "ACTIVITY_MESSAGE", "activity": {"message": "hello"}}
#Login from anywhere. Added LOGIN_REQUEST, LOGIN_DENIED and LOGIN_ALLOWED. -Justin
- implemented message queue, to guarantee in order message delivery.