当客户端断开连接时,Python Asyncore会执行handle_read

时间:2017-11-24 14:02:09

标签: python tcp-ip asyncore disconnection

我是使用asyncore的python中的套接字TCP服务器。我的handle_read函数是:

def handle_read(self):

    data = self.recv(50)

    '''interpretar os comandos:
    operação: Ligar/Desligar Bomba, Ligar/Desligar Aquecedor, Alterar velocidade da bomba
    Modo: trocar de modo automático para remoto
    Armazenamento: ativar ou desativar o armazenamento de dados para o trend e
    também apagar dados
    '''
    if len(data) < 2:  #comandos digitais
        try:
            process_commands(data)
        except Exception as err:
            print(str(err))
    else: #comando analogico
        try:
            ld = json.loads(data.decode('utf-8'))
            bytescommand = pack('f',ld['pump_speed'])
            bus.write_block_data(arduinoAddress,53,list(bytescommand))
        except Exception as err:
            print(str(err))
        finally:
            pass

看,我测试收到的数据以执行功能。但是当客户端断开连接时,程序将返回:

“char格式需要长度为1的字节对象”

这表示当客户端断开连接时执行handle_read函数。 这是正常的?我如何处理这种情况?

非常感谢!

1 个答案:

答案 0 :(得分:0)

这是一个正常的电话。当对等体关闭其套接字(或简单地用SH_WR关闭它)时,读取调用立即返回0字节。

所以你的handle_read应该为套接字上的文件结尾做好准备:

def handle_read(self):

...
if len(data) == 0: # EOF on input socket
    pass           # or add disconnection processing...
elif len(data) < 2:  #comandos digitais
    ...