Twisted web - 响应客户端后保留请求数据

时间:2012-07-19 04:02:44

标签: python file-upload upload twisted twisted.web

我有一个用Twisted Web编写的前端Web服务器,它与另一个Web服务器连接。客户端将文件上载到我的前端服务器,然后服务器将文件一起发送到后端服务器。我想收到上传的文件,然后在将文件发送到后端服务器之前立即向客户端发送响应。这样,客户端无需等待两次上传都发生,然后才能获得响应。

我正在尝试通过在单独的线程中启动上传到后端服务器来实现此目的。问题是,在向客户端发送响应后,我无法再从Request对象访问上传的文件。这是一个例子:

class PubDir(Resource):

    def render_POST(self, request):
        if request.args["t"][0] == 'upload':
            thread.start_new_thread(self.upload, (request,))

        ### Send response to client while the file gets uploaded to the back-end server:
        return redirectTo('http://example.com/uploadpage')

    def upload(self, request):
        postheaders = request.getAllHeaders()
        try:
            postfile = cgi.FieldStorage(
                fp = request.content,
                headers = postheaders,
                environ = {'REQUEST_METHOD':'POST',
                         'CONTENT_TYPE': postheaders['content-type'],
                        }
                )
        except Exception as e:
            print 'something went wrong: ' + str(e)

        filename = postfile["file"].filename

        file = request.args["file"][0]

        #code to upload file to back-end server goes here...

当我尝试这个时,我收到一个错误:I/O operation on closed file

1 个答案:

答案 0 :(得分:1)

在完成请求对象之前,您需要将文件实际复制到内存中的缓冲区或磁盘上的临时文件中(这是重定向时发生的情况)。

因此,您正在启动您的线程并将其交给请求对象,它可能会打开与您的后端服务器的连接,并在您重定向时开始复制完成请求并关闭任何关联的临时文件并且您遇到麻烦。

不是将整个请求传递给您的线程,而是快速测试将尝试将请求的内容传递给您的线程:

thread.start_new_thread(self.upload, (request.content.read(),))