Python错误:发送图像时“socket.error:[Errno 11]资源暂时不可用”

时间:2022-09-22 12:48:14

I want to make a program that accesses images from files, encodes them, and sends them to an server. Than the server is supposed to decode the image, and save it to file. I tested the image encoding itself, and it worked, so the problem lies in the server and client connection.

我想创建一个程序来访问文件中的图像,对它们进行编码,然后将它们发送到服务器。比服务器应该解码图像,并将其保存到文件。我测试了图像编码本身,它工作,所以问题在于服务器和客户端连接。

Here is the server:

这是服务器:

import socket
import errno
import base64

from PIL import Image
import StringIO

def connect(c):
    try:
        image = c.recv(8192)
        return image
    except IOError as e:
        if e.errno == errno.EWOULDBLOCK:
            connect(c)


def Main():
    host = '138.106.180.21'
    port = 12345

    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_TCP)
    s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)
    s.bind((host, port))
    s.listen(1)


    while True:

        c, addr = s.accept()
        c.setblocking(0)

        print "Connection from: " + str(addr)

        image = c.recv(8192)#connect(c)

        imgname = 'test.png'

        fh = open(imgname, "wb")
        if image == 'cusdom_image':
            with open('images.png', "rb") as imageFile:
                image = ''
                image = base64.b64encode(imageFile.read())
                print image
        fh.write(image.decode('base64'))
        fh.close()


if __name__ == '__main__':
    Main()

And here is the client:

这是客户:

import socket
import base64

from PIL import Image
import StringIO
import os, sys

ip = '138.106.180.21'
port = 12345
print 'Add event executed'
s = socket.socket()
s.connect((ip, port))

image_path = '/home/gilgamesch/Bilder/Bildschirmfoto.png'

print os.getcwd()
olddir = os.getcwd()
os.chdir('/')
print os.getcwd()

if image_path != '':
    with open(image_path, "rb") as imageFile:
        image_data = base64.b64encode(imageFile.read())
        print 'open worked'
else:
    image_data = 'cusdom_image'

os.chdir(olddir)

s.send(image_data)


s.close()

And the error message is:

并且错误消息是:

Traceback (most recent call last):
  File "imgserv.py", line 49, in <module>
    Main()
  File "imgserv.py", line 34, in Main
    image = c.recv(8192)#connect(c)
socket.error: [Errno 11] Resource temporarily unavailable

1 个解决方案

#1


10  

In the server you are setting the remote socket (that returned by accept()) to non-blocking mode, which means that I/O on that socket will terminate immediately by an exception if there is no data to read.

在服务器中,您将远程套接字(由accept()返回)设置为非阻塞模式,这意味着如果没有要读取的数据,该套接字上的I / O将立即终止异常。

There will usually be a period of time between establishing the connection with the server and the image data being sent by the client. The server attempts to immediately read data from the client once the connection is accepted, however, there might not be any data to read yet, so c.recv() raises a socket.error: [Errno 11] Resource temporarily unavailable exception. Errno 11 corresponds to EWOULDBLOCK, so recv() aborted because there was no data ready to read.

在建立与服务器的连接和客户端发送的图像数据之间通常会有一段时间。一旦接受连接,服务器就会尝试立即从客户端读取数据,但是,可能还没有任何数据要读取,因此c.recv()会引发socket.error:[Errno 11]资源暂时不可用的异常。 Errno 11对应于EWOULDBLOCK,因此recv()因为没有准备好读取的数据而中止。

Your code does not seem to require non-blocking sockets because there is an accept() at the top of the while loop, and so only one connection can be handled at a time. You can just remove the call to c.setblocking(0) and this problem should go away.

您的代码似乎不需要非阻塞套接字,因为while循环顶部有一个accept(),因此一次只能处理一个连接。你可以删除对c.setblocking(0)的调用,这个问题应该消失。

#1


10  

In the server you are setting the remote socket (that returned by accept()) to non-blocking mode, which means that I/O on that socket will terminate immediately by an exception if there is no data to read.

在服务器中,您将远程套接字(由accept()返回)设置为非阻塞模式,这意味着如果没有要读取的数据,该套接字上的I / O将立即终止异常。

There will usually be a period of time between establishing the connection with the server and the image data being sent by the client. The server attempts to immediately read data from the client once the connection is accepted, however, there might not be any data to read yet, so c.recv() raises a socket.error: [Errno 11] Resource temporarily unavailable exception. Errno 11 corresponds to EWOULDBLOCK, so recv() aborted because there was no data ready to read.

在建立与服务器的连接和客户端发送的图像数据之间通常会有一段时间。一旦接受连接,服务器就会尝试立即从客户端读取数据,但是,可能还没有任何数据要读取,因此c.recv()会引发socket.error:[Errno 11]资源暂时不可用的异常。 Errno 11对应于EWOULDBLOCK,因此recv()因为没有准备好读取的数据而中止。

Your code does not seem to require non-blocking sockets because there is an accept() at the top of the while loop, and so only one connection can be handled at a time. You can just remove the call to c.setblocking(0) and this problem should go away.

您的代码似乎不需要非阻塞套接字,因为while循环顶部有一个accept(),因此一次只能处理一个连接。你可以删除对c.setblocking(0)的调用,这个问题应该消失。