为什么pahopython客户端发短消息不发长消息

Why does the paho python client publish short messages but not long ones

这个有效:

while True:
    print('')
    command_input = input()
    if command_input == 'q':
        break
    mcp = Mqtt_command_publisher
    mcp.publish_command(device_ids, command_input)

但这不是:

class Mqtt_command_bl:
    def update_minutes_to_run_at(json):
        if not json['device_ids']:
            return 'Request must contain device ids'

        device_ids = json['device_ids']
        minutes_to_run_at = json['minutes_to_run_at']

        minutes_to_run_at_command_section = ''
        for i in minutes_to_run_at:
            m = '"{}",'.format(i)
            if i == minutes_to_run_at[len(minutes_to_run_at) - 1]:
                m = '"{}"'.format(i)
            minutes_to_run_at_command_section += m

        #command_input = 'jq \'.+{{minutes_to_run_at:[{}]}}\' /home/pi/hallmonitor_lite/config.json > /home/pi/hallmonitor_lite/tmp.json && mv /home/pi/hallmonitor_lite/tmp.json /home/pi/hallmonitor_lite/new_config.json'.format(minutes_to_run_at_command_section)
        command_input = 'mkdir /home/pi/hallmonitor_lite/hello_world'

        mcp = Mqtt_command_publisher
        mcp.publish_command(device_ids, command_input)

        return 'Success'

class他们都叫:

class Mqtt_command_publisher:
    def publish_command(device_ids, command_input):
        mqtt_msg = json.dumps({'device_ids':device_ids,'command':command_input})
        print('\n{}'.format(mqtt_msg))
        client = mqtt.Client()
        client.connect('********', ****, 30)
        client.publish('topic/commands', mqtt_msg)
        client.disconnect()

查看 Mqtt_command_publisher 输出的打印语句,输出可能完全相同,但是,只有其中一个会执行,我不明白为什么一个有效而另一个无效.

我试过这个命令进行测试:mkdir /home/pi/hallmonitor_lite/hello_world

这是接收部分:

device_id = 0

with open('/home/pi/hallmonitor_lite/config.json') as json_data_file:
    data = json.load(json_data_file)

    device_id = data['device_id']

def on_connect(client, userdata, flags, rc):
    print("Connected with result code: " + str(rc))
    client.subscribe("topic/commands")

def on_message(client, userdata, msg):
    mqtt_message = msg.payload.decode()
    print(mqtt_message)
    ids_and_command = json.loads(mqtt_message)
    if str(device_id) in ids_and_command['device_ids'] or not ids_and_command['device_ids']:
        print(('Executing: {}').format(ids_and_command['command']))
        os.system(ids_and_command['command'])



client = mqtt.Client()
client.connect("********", ****, 30)

client.on_connect = on_connect
client.on_message = on_message

client.loop_forever()

有什么想法吗?

问题很可能是因为第二组代码创建的消息大于单个 TCP 数据包的容量。

这是一个问题,因为您不是 运行 客户端网络环路,因此 client.publish 命令只能发送一个数据包,其余消息将由网络环路发送,但即使它是 运行,您也在发布调用后立即调用断开连接。

客户端不是为了像这样的单个消息而旋转,它是为了启动然后离开 运行 你只是在你想发送时调用 publish 方法一个消息。如果您不想这样做或由于某种原因不能这样做,paho python 包中有一个特定的助手 class 可以完成启动客户端、发送消息等所有繁重工作然后把所有东西都拆掉。单个发布的文档是 here.

import paho.mqtt.publish as publish

publish.single("paho/test/single", "payload", hostname="mqtt.eclipse.org")