python struct模块(python 2.4)

时间:2014-03-21 19:11:24

标签: python

我正在尝试通过unix域套接字向应用程序发送缓冲区,使用更新的值接收相同的结构,然后将该缓冲区发送回该应用程序。我能够发送一个新打包的数据并收到响应,但如果我尝试打包收到的缓冲区并通过套接字再次发送它,我将面临错误,说发送给应用程序的大小不匹配正在侦听套接字并关闭套接字。

下面的剪辑就是我想要实现的目标。看起来像我依赖的endianess / string转换发送数据不正确。

""" request struct
#structure i am sending over unix domain socket
struct prod_entry {
    unsigned int        Model;
    unsigned int        year;
    char                    prodname[64];
    }
"""


value = (1, 1992, "mustang")

我在这里做错了什么。我想收到一个缓冲包并再次发送。

prod_entry = struct.pack('I I 64s', *value)


def update(update_records):
    try:
        comm_sock = socket.socket(socket.AF_UNIX,socket.SOCK_STREAM)
    except socket.error:
        return 


    try:
        comm_sock.connect(PROD_UNIX_DOMAIN_SKT)
    except socket.gaierror:
        return 

    try:
        comm_sock.sendall(update_records)
    except socket.error:
        return  

    reply = comm_sock.recv(struct.calcsize('I I 64s '))
    out1 = struct.unpack('<I I 64s',reply)

    rebound = struct.pack('I I 64s', *out1)
    comm_sock.sendall(rebound)

    reply2 = comm_sock.recv(struct.calcsize('I I 64s '))
    out2 = struct.unpack('<I I 64s',reply2)

    comm_sock.close()

update(prod_entry)

我得到:: struct.error:unpack str size与格式

不匹配

1 个答案:

答案 0 :(得分:0)

recv bufsize参数仅指定最大大小。 recv可能会返回比指定的最大大小更小的块。如果它没有返回完整的打包字符串,你需要遍历recv

您很快就会发现需要这样的网络通信协议。您可能有必要熟悉(例如)HTTP协议,尤其是。 request methods