gpt4 book ai didi

Python连接套接字进行处理

转载 作者:可可西里 更新时间:2023-11-01 09:32:57 25 4
gpt4 key购买 nike

我有一个(非常)用 C 编写的简单 Web 服务器,我想测试它。我写它是为了让它在 stdin 上获取数据并在 stdout 上发送。我如何将套接字(使用 socket.accept() 创建)的输入/输出连接到使用 subprocess.Popen 创建的进程的输入/输出?

听起来很简单,对吧?这是 killer 锏:我正在运行 Windows。

有人能帮忙吗?

这是我尝试过的:

  1. 将客户端对象本身作为标准输入/输出传递给 subprocess.Popen。 (尝试永远不会有坏处。)
  2. 将 socket.makefile() 结果作为标准输入/输出传递给 subprocess.Popen。
  3. 将套接字的文件号传递给 os.fdopen()。

此外,如果问题不清楚,这里是我的代码的精简版:

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind(('', PORT))
sock.listen(5)
cli, addr = sock.accept()
p = subprocess.Popen([PROG])
#I want to connect 'p' to the 'cli' socket so whatever it sends on stdout
#goes to the client and whatever the client sends goes to its stdin.
#I've tried:
p = subprocess.Popen([PROG], stdin = cli.makefile("r"), stdout = cli.makefile("w"))
p = subprocess.Popen([PROG], stdin = cli, stdout = cli)
p = subprocess.Popen([PROG], stdin = os.fdopen(cli.fileno(), "r"), stdout = os.fdopen(cli.fileno(), "w"))
#but all of them give me either "Bad file descriptor" or "The handle is invalid".

最佳答案

我遇到了同样的问题,并尝试以同样的方式绑定(bind)套接字,同样在 Windows 上。我提出的解决方案是共享套接字并将其在进程中绑定(bind)到 stdinstdout。我的解决方案完全使用 Python,但我想它们很容易转换。

import socket, subprocess

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind(('', PORT))
sock.listen(5)
cli, addr = sock.accept()

process = subprocess.Popen([PROG], stdin=subprocess.PIPE)
process.stdin.write(cli.share(process.pid))
process.stdin.flush()

# you can now use `cli` as client normally

在另一个进程中:

import sys, os, socket

sock = socket.fromshare(os.read(sys.stdin.fileno(), 372))
sys.stdin = sock.makefile("r")
sys.stdout = sock.makefile("w")

# stdin and stdout now write to `sock`

372 是测量的 socket.share 调用的 len。我不知道这是否是恒定的,但它对我有用。这仅在 Windows 中可行,因为 share 功能仅在该操作系统上可用。

关于Python连接套接字进行处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40072777/

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