Fix race condition while iterating over clients
This commit is contained in:
parent
176775f8f3
commit
8d97227965
|
@ -114,9 +114,10 @@ def moderated(fro, chan, message):
|
||||||
def kickAll(fro, chan, message):
|
def kickAll(fro, chan, message):
|
||||||
# Kick everyone but mods/admins
|
# Kick everyone but mods/admins
|
||||||
toKick = []
|
toKick = []
|
||||||
for key, value in glob.tokens.tokens.items():
|
with glob.tokens:
|
||||||
if not value.admin:
|
for key, value in glob.tokens.tokens.items():
|
||||||
toKick.append(key)
|
if not value.admin:
|
||||||
|
toKick.append(key)
|
||||||
|
|
||||||
# Loop though users to kick (we can't change dictionary size while iterating)
|
# Loop though users to kick (we can't change dictionary size while iterating)
|
||||||
for i in toKick:
|
for i in toKick:
|
||||||
|
@ -336,9 +337,10 @@ def systemMaintenance(fro, chan, message):
|
||||||
who = []
|
who = []
|
||||||
|
|
||||||
# Disconnect everyone but mod/admins
|
# Disconnect everyone but mod/admins
|
||||||
for _, value in glob.tokens.tokens.items():
|
with glob.tokens:
|
||||||
if not value.admin:
|
for _, value in glob.tokens.tokens.items():
|
||||||
who.append(value.userID)
|
if not value.admin:
|
||||||
|
who.append(value.userID)
|
||||||
|
|
||||||
glob.streams.broadcast("main", serverPackets.notification("Our bancho server is in maintenance mode. Please try to login again later."))
|
glob.streams.broadcast("main", serverPackets.notification("Our bancho server is in maintenance mode. Please try to login again later."))
|
||||||
glob.tokens.multipleEnqueue(serverPackets.loginError(), who)
|
glob.tokens.multipleEnqueue(serverPackets.loginError(), who)
|
||||||
|
|
|
@ -184,9 +184,10 @@ def handle(tornadoRequest):
|
||||||
responseToken.enqueue(serverPackets.mainMenuIcon(glob.banchoConf.config["menuIcon"]))
|
responseToken.enqueue(serverPackets.mainMenuIcon(glob.banchoConf.config["menuIcon"]))
|
||||||
|
|
||||||
# Send online users' panels
|
# Send online users' panels
|
||||||
for _, token in glob.tokens.tokens.items():
|
with glob.tokens:
|
||||||
if not token.restricted:
|
for _, token in glob.tokens.tokens.items():
|
||||||
responseToken.enqueue(serverPackets.userPanel(token.userID))
|
if not token.restricted:
|
||||||
|
responseToken.enqueue(serverPackets.userPanel(token.userID))
|
||||||
|
|
||||||
# Get location and country from ip.zxq.co or database
|
# Get location and country from ip.zxq.co or database
|
||||||
if glob.localize:
|
if glob.localize:
|
||||||
|
|
|
@ -13,6 +13,13 @@ from objects import osuToken
|
||||||
class tokenList:
|
class tokenList:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.tokens = {}
|
self.tokens = {}
|
||||||
|
self._lock = threading.Lock()
|
||||||
|
|
||||||
|
def __enter__(self):
|
||||||
|
self._lock.acquire()
|
||||||
|
|
||||||
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||||
|
self._lock.release()
|
||||||
|
|
||||||
def addToken(self, userID, ip = "", irc = False, timeOffset=0, tournament=False):
|
def addToken(self, userID, ip = "", irc = False, timeOffset=0, tournament=False):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user