这个protobuf解码有什么问题?

时间:2013-09-09 19:46:09

标签: javascript node.js protocol-buffers

我正在使用Google protobuffer解码一些缓冲区。我正在使用优秀的@decodeIO ProtoBuf.js模块。

当我尝试解码此缓冲区时:

<Buffer 0a 0b 47 57 5f 2d 31 38 5f 39 39 32 39>

从这条消息:

message PaymentResponseElement {
  optional int64  pnPaymentId       = 1;
  optional string messageCode       = 2; //won't use pb enum here
  optional int64  balanceAfterTransaction   = 3;
  optional int32  version           = 4;
}

我收到此错误:

Error: Illegal wire type for field Message.Field .core.comm.PaymentResponseElement.messageCode: 2 (0 expected)
    at ProtoBuf.Reflect.Field.decode (/home/joojo/node_modules/protobufjs/ProtoBuf.js:2095:27)
    at ProtoBuf.Reflect.Message.decode (/home/joojo/node_modules/protobufjs/ProtoBuf.js:1748:51)
    at ProtoBuf.Reflect.Field.decode (/home/joojo/node_modules/protobufjs/ProtoBuf.js:2196:46)
    at ProtoBuf.Reflect.Message.decode (/home/joojo/node_modules/protobufjs/ProtoBuf.js:1746:51)
    at Function.Message.decode (/home/joojo/node_modules/protobufjs/ProtoBuf.js:1630:41)
    at decode (/home/joojo/public_html/api/control/protoBuffer.js:94:52)
    at Object.module.exports.decode (/home/joojo/public_html/cageapi/control/protoBuffer.js:110:10)
    at decode (/home/joojo/public_html/api/control/messageStructurer.js:82:33)
    at Object.module.exports.decode (/home/joojo/public_html/api/control/messageStructurer.js:94:10
    at CleartextStream.month (/home/joojo/public_html/api/connectionHandler.js:83:32)

不知道发生了什么事,而且发生了几次。如何解决?

1 个答案:

答案 0 :(得分:3)

我必须同意实施。该数据只有1个字段 - 字段编号1,长度前缀(可以是字符串,二进制或子消息编辑或打包数组);如果我们推测性地将它解释为一个字符串(在protouf中始终是UTF-8),它就会显示为"GW_-18_9929",看起来很清醒。

但是,您的消息将字段1声明为int64。字符串/长度前缀有线类型(有线类型2)对int64无效 - 实际上,唯一有效的有线类型是64位(有线类型1)。

所以:您的数据有效,但它与您声明的架构不匹配。

要解读:

  • 0a是二进制1010 - 最后三位(010)是有线类型,2 =长度分隔;剩下的1是字段编号:1
  • 0b是十进制11,后面的字段长度
  • 47 57 5f 2d 31 38 5f 39 39 32 39是"GW_-18_9929"的有效载荷UTF-8