手机
当前位置:查字典教程网 >编程开发 >C语言 >基于Protobuf C++ serialize到char*的实现方法分析
基于Protobuf C++ serialize到char*的实现方法分析
摘要:protobuf的Demo程序是C++版本的protubuf有几种serialize和unSerialize的方法:方法一:官方demo程序...

protobuf的Demo程序是

C++版本的protubuf有几种serialize和unSerialize的方法:

方法一:

官方demo程序采用的是

复制代码 代码如下:

// Write the new address book back to disk.

fstream output(argv[1], ios::out | ios::trunc | ios::binary);

if (!address_book.SerializeToOstream(&output)) {

cerr << "Failed to write address book." << endl;

return -1;

}

// Read the existing address book.

fstream input(argv[1], ios::in | ios::binary);

if (!input) {

cout << argv[1] << ": File not found. Creating a new file." << endl;

} else if (!address_book.ParseFromIstream(&input)) {

cerr << "Failed to parse address book." << endl;

return -1;

}

上面采用的是fstream,把数据序列(反序列)打磁盘文件中。

而如果想序列到char *,并且通过socket传输,则可以使用:

方法二:

复制代码 代码如下:

int size = address_book.ByteSize();

void *buffer = malloc(size);

address_book.SerializeToArray(buffer, size);

方法三:

复制代码 代码如下:

使用ostringstream ,

std::ostringstream stream;

address_book.SerializeToOstream(&stream);

string text = stream.str();

char* ctext = string.c_str();

【基于Protobuf C++ serialize到char*的实现方法分析】相关文章:

C++输出斐波那契数列的两种实现方法

DHCP:解析开发板上动态获取ip的2种实现方法详解

基于C++输出指针自增(++)运算的示例分析

求素数,用vector存储的实现方法

解析bitmap处理海量数据及其实现方法分析

c++中的4种类型转化方式详细解析

基于一致性hash算法 C++语言的实现详解

基于ios中的流状态的定义分析

C++中继承与组合的区别详细解析

分享C++面试中string类的一种正确写法

精品推荐
分类导航