Ho un thread principale che attende la connessione. Genera thread client che rispecchieranno la risposta dal client (telnet in questo caso). Ma dimmi che voglio chiudere tutti i socket e tutti i thread dopo un po 'di tempo, come dopo 1 connessione. Come dovrei fare? Se faccio clientSocket.close() dal thread principale, non smetterà di fare il recv. Si fermerà solo se prima invierò qualcosa tramite telnet, quindi fallirà eseguendo ulteriori mandate e recvs.Come interrompere un socket.recv() da un altro thread in Python
mio aspetto codice come questo:
# Echo server program
import socket
from threading import Thread
import time
class ClientThread(Thread):
def __init__(self, clientSocket):
Thread.__init__(self)
self.clientSocket = clientSocket
def run(self):
while 1:
try:
# It will hang here, even if I do close on the socket
data = self.clientSocket.recv(1024)
print "Got data: ", data
self.clientSocket.send(data)
except:
break
self.clientSocket.close()
HOST = ''
PORT = 6000
serverSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
serverSocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
serverSocket.bind((HOST, PORT))
serverSocket.listen(1)
clientSocket, addr = serverSocket.accept()
print 'Got a new connection from: ', addr
clientThread = ClientThread(clientSocket)
clientThread.start()
time.sleep(1)
# This won't make the recv in the clientThread to stop immediately,
# nor will it generate an exception
clientSocket.close()
Non è possibile farlo con i thread come CPython ha il Global Interpreter Lock. http://docs.python.org/c-api/init.html#threads – badp