use*_*497 5 python sockets select
我正在研究异步套接字,我有这个代码:
#!/usr/bin/env python
"""
An echo server that uses select to handle multiple clients at a time.
Entering any line of input at the terminal will exit the server.
"""
import select
import socket
import sys
host = 'localhost'
port = 900
backlog = 5
size = 1024
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((host,port))
server.listen(backlog)
input = [server,sys.stdin]
running = 1
while running:
inputready,outputready,exceptready = select.select(input,[],[])
for s in inputready:
if s == server:
# handle the server socket
client, address = server.accept()
input.append(client)
elif s == sys.stdin:
# handle standard input
junk = sys.stdin.readline()
running = 0
else:
# handle all other sockets
data = s.recv(size)
if data:
s.send(data)
else:
s.close()
input.remove(s)
server.close()
Run Code Online (Sandbox Code Playgroud)
它应该是使用select()的基本类型的echo服务器,但是当我运行它时,我选择错误10038 - 尝试使用非套接字的东西进行操作.谁能告诉我有什么问题?谢谢:)
你正在使用Windows,不是吗?在Windows上,select仅适用于套接字.但是sys.stdin不是套接字.从第15行删除它应该工作.
在Linux或类似的东西,我希望它的工作原理如上所述.
关于文档,正确的交互方式select是
ready_to_read, ready_to_write, in_error = select.select(potential_readers,
potential_writers,
potential_errs,
timeout)
Run Code Online (Sandbox Code Playgroud)
在你的代码中,
input = [server,sys.stdin]
Run Code Online (Sandbox Code Playgroud)
sys.stdin不是套接字(而是文件描述符)。