def listen(self, on_move_request):
"""
Waits a connection from a remote player via socket connection.
If the socket connection fails will NOT handle exceptions.
Raises BadRequestError, if the client request is not valid
or the client is not the opponent.
Blocking, can be cancelled from another thread by calling
stop() on the object.
When a valid request is made, on_move_request function is called
with the name of the opponent and the board he sent.
The function should return a move for the board.
The return value of the function is not checked! If it is
NOT a valid move, it WILL BE sent to the client.
"""
self.__socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.__socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
# self.__socket.settimeout(DEFAULT_SERVER_TIMEOUT)
with self.__socket:
self.__socket.bind((self.__host, self.__port))
self.__socket.listen(1)
connection, address = self.__socket.accept()
print('Connected by', address)
if self.opponent is not None and self.opponent != address[0]:
raise BadRequestError('Not opponent.')
with connection:
data = connection.recv(BYTES_LENGTH)
try:
unpickled_data = pickle.loads(data)
except (pickle.UnpicklingError, EOFError):
raise BadRequestError('Request unpickling failed.')
if self.__is_not_valid(unpickled_data):
raise BadRequestError('Request object is not valid.')
name, macroboard = unpickled_data
self.opponent = address[0]
move = on_move_request(name, macroboard)
connection.sendall(pickle.dumps((self.name, move)))
评论列表
文章目录