mirror of
https://github.com/correl/mage.git
synced 2025-04-03 17:00:16 -09:00
Added logic to suppress failing callbacks to users that lost connection.
This commit is contained in:
parent
34a884546a
commit
7f17011bf0
2 changed files with 18 additions and 29 deletions
Mage.Server/src/main/java/mage/server
|
@ -28,7 +28,6 @@
|
||||||
package mage.server;
|
package mage.server;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
import java.util.concurrent.locks.ReentrantLock;
|
import java.util.concurrent.locks.ReentrantLock;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
@ -66,7 +65,6 @@ public class Session {
|
||||||
private final Date timeConnected;
|
private final Date timeConnected;
|
||||||
private boolean isAdmin = false;
|
private boolean isAdmin = false;
|
||||||
private final AsynchInvokerCallbackHandler callbackHandler;
|
private final AsynchInvokerCallbackHandler callbackHandler;
|
||||||
private boolean error = false;
|
|
||||||
|
|
||||||
private final ReentrantLock lock;
|
private final ReentrantLock lock;
|
||||||
|
|
||||||
|
@ -348,42 +346,30 @@ public class Session {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean setLock() {
|
||||||
|
return lock.tryLock();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void unlock() {
|
||||||
|
lock.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
public void kill(DisconnectReason reason) {
|
public void kill(DisconnectReason reason) {
|
||||||
boolean lockSet = false;
|
UserManager.instance.removeUserFromAllTablesAndChat(userId, reason);
|
||||||
try {
|
|
||||||
if (lock.tryLock(5000, TimeUnit.MILLISECONDS)) {
|
|
||||||
lockSet = true;
|
|
||||||
logger.debug("SESSION LOCK SET sessionId: " + sessionId);
|
|
||||||
} else {
|
|
||||||
logger.error("SESSION LOCK - kill: userId " + userId);
|
|
||||||
}
|
|
||||||
UserManager.instance.removeUserFromAllTablesAndChat(userId, reason);
|
|
||||||
} catch (InterruptedException ex) {
|
|
||||||
logger.error("SESSION LOCK - kill: userId " + userId, ex);
|
|
||||||
} finally {
|
|
||||||
if (lockSet) {
|
|
||||||
lock.unlock();
|
|
||||||
logger.debug("SESSION LOCK UNLOCK sessionId: " + sessionId);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void fireCallback(final ClientCallback call) {
|
public void fireCallback(final ClientCallback call) {
|
||||||
if (error) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
call.setMessageId(messageId++);
|
if (!isLocked()) { // only fire callback if session isn't about to be killed or in the process of handling disconnect detection
|
||||||
callbackHandler.handleCallbackOneway(new Callback(call));
|
call.setMessageId(messageId++);
|
||||||
|
callbackHandler.handleCallbackOneway(new Callback(call));
|
||||||
|
}
|
||||||
} catch (HandleCallbackException ex) {
|
} catch (HandleCallbackException ex) {
|
||||||
error = true; // to reduce repeated SESSION CALLBACK EXCEPTION
|
|
||||||
UserManager.instance.getUser(userId).ifPresent(user -> {
|
UserManager.instance.getUser(userId).ifPresent(user -> {
|
||||||
|
SessionManager.instance.disconnect(sessionId, LostConnection);
|
||||||
user.setUserState(User.UserState.Disconnected);
|
user.setUserState(User.UserState.Disconnected);
|
||||||
logger.warn("SESSION CALLBACK EXCEPTION - " + user.getName() + " userId " + userId + " - cause: " + getBasicCause(ex).toString());
|
logger.warn("SESSION CALLBACK EXCEPTION - " + user.getName() + " userId " + userId + " - cause: " + getBasicCause(ex).toString());
|
||||||
logger.trace("Stack trace:", ex);
|
logger.trace("Stack trace:", ex);
|
||||||
SessionManager.instance.disconnect(sessionId, LostConnection);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,6 +125,7 @@ public enum SessionManager {
|
||||||
public void disconnect(String sessionId, DisconnectReason reason) {
|
public void disconnect(String sessionId, DisconnectReason reason) {
|
||||||
Session session = sessions.get(sessionId);
|
Session session = sessions.get(sessionId);
|
||||||
if (session != null) {
|
if (session != null) {
|
||||||
|
boolean lockWasSet = session.setLock();
|
||||||
if (!sessions.containsKey(sessionId)) {
|
if (!sessions.containsKey(sessionId)) {
|
||||||
// session was removed meanwhile by another thread so we can return
|
// session was removed meanwhile by another thread so we can return
|
||||||
return;
|
return;
|
||||||
|
@ -148,7 +149,9 @@ public enum SessionManager {
|
||||||
default:
|
default:
|
||||||
logger.trace("endSession: unexpected reason " + reason.toString() + " - sessionId: " + sessionId);
|
logger.trace("endSession: unexpected reason " + reason.toString() + " - sessionId: " + sessionId);
|
||||||
}
|
}
|
||||||
|
if (lockWasSet) {
|
||||||
|
session.unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue