使用zmq创建客户端时,`tempfile.NamedTemporaryFile`的作用是什么?

时间:2018-12-06 07:35:14

标签: python sockets zeromq pyzmq

我正在阅读AMP的源代码,而我对目的tempfile.NamedTemporaryFile感到困惑,而该代码却使用zmq创建了一个客户端。

以下是代码工作原理的草图:

服务器:

import pexpect
import sys
import zmq
from socket import gethostname

python = sys.executable
context = zmq.Context()
socket = context.socket(zmq.REP)
port = socket.bind_to_random_port('tcp://*')
serverhostname = gethostname()
serversocket = '%s:%s' % (serverhostname, port)
workercommand = "%s -m %s %s" % (python, <python_module>, serversocket)

child = pexpect.spawn(workercommand)
child.expect('<amp-connect>')

通过运行<python-module>,将创建一个客户端

客户:

import zmq
import sys
import tempfile

print('<amp-connect>')
sys.stderr = tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.stderr')
sys.stderr.write('initiated\n')
sys.stderr.flush()
context = zmq.Context()

sys.stderr.write('context started\n')
sys.stderr.flush()
socket = context.socket(zmq.REQ)

sys.stderr.write('socket started\n')
sys.stderr.flush()
socket.connect('tcp://%s' % hostsocket)

我的困惑:

  1. sys.stderr = tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.stderr')的用途是什么?为什么必须创建带有sys.stderr行的客户端?

  2. 为什么child.expect('<amp-connect>')在代码中起作用?

我写了类似的代码。

import pexpect
import sys
import test
python = sys.executable
workercommand = "%s -m %s" % (python, test)
child = pexpect.spawn(workercommand)
child.expect('<ahh>')
print(child.before)

其中test.py只是

print(100)
print('<ahh>')

但是,出现错误: pexpect.exceptions.EOF: End Of File (EOF). Empty string style platform.

为什么我的代码不起作用?

0 个答案:

没有答案