|
|
@ -3,6 +3,7 @@ package app.websocket.handlers; |
|
|
|
import app.entities.Stats; |
|
|
|
import app.entities.server.Server; |
|
|
|
import app.websocket.BaseWebsocketHandler; |
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException; |
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
@ -14,6 +15,8 @@ import org.springframework.web.socket.WebSocketSession; |
|
|
|
import org.springframework.web.socket.handler.TextWebSocketHandler; |
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
import java.util.Collection; |
|
|
|
import java.util.Collections; |
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
@ -40,7 +43,7 @@ public class ServersHandler extends TextWebSocketHandler implements BaseWebsocke |
|
|
|
logger.info("Session {} open", session.getId()); |
|
|
|
activeSessions.put(session.getId(), session); |
|
|
|
super.afterConnectionEstablished(session); |
|
|
|
session.sendMessage(new TextMessage(objectMapper.writeValueAsString(stats.getServers()))); |
|
|
|
session.sendMessage(getServersPayload()); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
@ -55,22 +58,45 @@ public class ServersHandler extends TextWebSocketHandler implements BaseWebsocke |
|
|
|
super.afterConnectionClosed(session, status); |
|
|
|
} |
|
|
|
|
|
|
|
private void push2All(String msg) throws IOException { |
|
|
|
for (Map.Entry<String, WebSocketSession> otherSession : activeSessions.entrySet()) { |
|
|
|
otherSession.getValue().sendMessage(new TextMessage(msg)); |
|
|
|
private void push2All(TextMessage msg) throws IOException { |
|
|
|
for (Map.Entry<String, WebSocketSession> otherSession : Collections.synchronizedSet(activeSessions.entrySet())) { |
|
|
|
try { |
|
|
|
otherSession.getValue().sendMessage(msg); |
|
|
|
} catch (Exception err) { |
|
|
|
logger.error("Cannot send update servers status to session: {}", otherSession.getValue().getId()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
private TextMessage getServersPayload() throws JsonProcessingException { |
|
|
|
return new TextMessage(objectMapper.writeValueAsString( |
|
|
|
new HashMap() {{ |
|
|
|
put("servers", stats.getServers()); |
|
|
|
put("state", State.INIT.ordinal()); |
|
|
|
}} |
|
|
|
)); |
|
|
|
} |
|
|
|
|
|
|
|
private TextMessage getServersPayload(String srv, Server server) throws JsonProcessingException { |
|
|
|
return new TextMessage(objectMapper.writeValueAsString( |
|
|
|
new HashMap() {{ |
|
|
|
put("servers", new HashMap<String, Server>(){{ |
|
|
|
put(srv, server); |
|
|
|
}}); |
|
|
|
put("state", State.AFTER.ordinal()); |
|
|
|
}} |
|
|
|
)); |
|
|
|
} |
|
|
|
|
|
|
|
public void pushServer(String srv, Server server) { |
|
|
|
try { |
|
|
|
push2All( |
|
|
|
objectMapper.writeValueAsString( |
|
|
|
new HashMap<String, HashMap>() {{ |
|
|
|
put("servers", new HashMap<String, Server>(){{ |
|
|
|
put(srv, server);}}); |
|
|
|
}})); |
|
|
|
push2All(getServersPayload(srv, server)); |
|
|
|
} catch (IOException err) { |
|
|
|
logger.error("Cannot send message"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public enum State { |
|
|
|
INIT, AFTER; |
|
|
|
} |
|
|
|
} |
|
|
|