本文介绍Python语言的自定义Topic消息解析脚本模板和示例。

脚本模板

SELF_DEFINE_TOPIC_UPDATE_FLAG = '/user/update'  #自定义Topic:/user/update。
SELF_DEFINE_TOPIC_ERROR_FLAG = '/user/update/error' #自定义Topic:/user/update/error。

# 将设备自定义Topic消息数据转换为JSON格式数据,设备上报数据到物联网平台时调用。
# 入参: topic,字符串,设备上报消息的Topic。   
# 入参: rawData,列表,列表元素取值为int类型,不能为空。
# 出参: jsonObj,字典。    
def transform_payload(topic, rawData):
   jsonObj = {}
   return jsonObj

脚本示例

说明 以下示例脚本仅用于解析自定义Topic消息。如果产品的数据格式透传/自定义,还需编写物模型消息解析脚本。物模型消息解析脚本编写指导,请参见提交物模型消息解析脚本

有关透传/自定义说明,请参见创建产品

# coding=UTF-8
SELF_DEFINE_TOPIC_UPDATE_FLAG = '/user/update'  #自定义Topic:/user/update。
SELF_DEFINE_TOPIC_ERROR_FLAG = '/user/update/error' #自定义Topic:/user/update/error。

#  示例数据:
#  自定义Topic:/user/update,上报数据。
#  输入参数:
#     topic: /${productKey}/${deviceName}/user/update
#     bytes: 0x000000000100320100000000
#  输出参数:
#  {
#     "prop_float": 0,
#     "prop_int16": 50,
#     "prop_bool": 1,
#     "topic": "/${productKey}/${deviceName}/user/update"
#   }
def transform_payload(topic, bytes):
    uint8Array = []
    for byteValue in bytes:
        uint8Array.append(byteValue & 0xff)

    jsonMap = {}
    if SELF_DEFINE_TOPIC_ERROR_FLAG in topic:
        jsonMap['topic'] = topic
        jsonMap['errorCode'] = bytes_to_int(uint8Array[0:1])

    elif SELF_DEFINE_TOPIC_UPDATE_FLAG in topic:
        jsonMap['topic'] = topic
        jsonMap['prop_int16'] = bytes_to_int(uint8Array[5:7])
        jsonMap['prop_bool'] = bytes_to_int(uint8Array[7: 8])
        jsonMap['prop_float'] = bytes_to_int(uint8Array[8:])

    return jsonMap

# byte数组转换为整型。
def bytes_to_int(bytes):
    data = ['%02X' % i for i in bytes]
    return int(''.join(data), 16)