gpt4 book ai didi

python - 在等待连接时如何关闭服务器套接字?

转载 作者:行者123 更新时间:2023-11-30 23:29:44 35 4
gpt4 key购买 nike

我有一个可以与多个客户端保持连接的服务器程序。我希望能够关闭主服务器套接字(对于所有人)以响应客户端的消息 CLOSE,或出于其他原因。问题是服务器卡在accept()方法上并且不关心我是否在其他地方关闭套接字。

我可以在主服务器 while 中使用一些标志,并在这段时间之后关闭套接字,但这意味着我必须在客户端请求后自己连接到服务器,以便检查 while 条件,这闻起来像是非常糟糕的编程。

代码:

import socket
import sys
from thread import *

HOST = '' # Symbolic name meaning all available interfaces
PORT = 9992 # Arbitrary non-privileged port


s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print 'Socket created'

#Bind socket to local host and port
try:
s.bind((HOST, PORT))
except socket.error , msg:
print 'Bind failed. Error Code : ' + str(msg[0]) + ' Message ' + msg[1]
sys.exit()

print 'Socket bind complete'

#Start listening on socket
s.listen(10)
print 'Socket now listening'

#Function for handling connections. This will be used to create threads
def clientthread(conn):
#Sending message to connected client
conn.send('Welcome to the server. Type something and hit enter\r\n') #send only takes string
data=''
#infinite loop so that function do not terminate and thread do not end.
while True:

#Receiving from client
data += conn.recv(1024)
print data
if data == 'CLOSE':
global s
conn.sendall('You have requested to destroy the connection...')
conn.close()
s.close()
return
if data.find('\n') != -1:
conn.sendall('OK...' + data + '\r\n')
data=''






#now keep talking with the client
while 1:
#wait to accept a connection - blocking call
try:
conn, addr = s.accept()
print 'Connected with ' + addr[0] + ':' + str(addr[1])

#start new thread takes 1st argument as a function name to be run, second is the tuple of arguments to the function.
start_new_thread(clientthread ,(conn,))
except:
print 'socket issue sorry'
break

最佳答案

这就是 Python 标准库为您提供帮助的地方。查看asyncore模块,或Twisted .

通常没有理由不使用 Python 进行异步,因为它非常简单。作为奖励,您的代码将更具可读性和可维护性。

您使用asyncore的代码:

import asyncore
import socket
import sys

HOST = '' # Symbolic name meaning all available interfaces
PORT = 9992 # Arbitrary non-privileged port

class ExampleHandler(asyncore.dispatcher_with_send):
data = ''

def handle_read(self):
self.data += self.recv(1024)
lines = self.data.split('\n')
if len(lines) > 1:
self.data = lines[-1]
for line in lines:
if not line: continue
if line == 'CLOSE':
global s
self.send('You have requested to destroy the connection...\r\n')
self.close()
# To exit asyncore.loop() immediately,
# closing all client connections
raise asyncore.ExitNow()
# If you want to finish processing the client connections, you
# could instead close the server,
server.close()
else:
self.send('OK...%s\r\n' % line)

def handle_write(self):
self.send('Welcome to the server. Type something and hit enter\r\n')

class ExampleServer(asyncore.dispatcher):

def __init__(self, host, port):
asyncore.dispatcher.__init__(self)
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.set_reuse_addr()
self.bind((host, port))
self.listen(5)

def handle_accept(self):
pair = self.accept()
if pair is not None:
sock, addr = pair
print 'Connected with ' + addr[0] + ':' + str(addr[1])
handler = ExampleHandler(sock)
else:
print 'socket issue sorry'

server = ExampleServer(HOST, PORT)
try:
asyncore.loop()
except asyncore.ExitNow:
pass

注意:我还通过添加行缓冲区修复了原始代码中的字符串/缓冲问题。

关于python - 在等待连接时如何关闭服务器套接字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20983839/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com