码迷,mamicode.com
首页 > 其他好文 > 详细

如何解析超长的protobuf zhuan

时间:2014-07-29 11:15:56      阅读:1294      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   line   amp   size   text   rom   

在调用protobuf的ParseFromString(str)方法时,默认情况下,如果str的长度>64MB,会返回失败。

 

这里给出了解释,主要是出于安全因素的考虑。

 

可以通过SetTotalBytesLimit方法去除这个限制:

// ::google::protobuf::Message req;

::google::protobuf::io::ArrayInputStream input(str.data(), str.size());
::google::protobuf::io::CodedInputStream decoder(&input);
decoder.SetTotalBytesLimit(1024*1024*1024, 64*1024*1024);
bool success = req.ParseFromCodedStream(&decoder) && decoder.ConsumedEntireMessage();

如何解析超长的protobuf zhuan,布布扣,bubuko.com

如何解析超长的protobuf zhuan

标签:style   io   ar   line   amp   size   text   rom   

原文地址:http://www.cnblogs.com/huashiyiqike/p/3874062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!