protoc-c:带有可选字符串的嵌套结构抛出seg fault

时间:2015-02-20 07:56:44

标签: c serialization deserialization protocols protocol-buffers

使用C语言为我的代码试用Google协议缓冲区。

messagefile.proto
===================
mesage othermessage
{
  optional string otherstring = 1;
}

message onemessage
{
  optional string messagestring = 1;
  optional int32 aninteger      = 2;
  optional othermessage otr_message= 3;
}

============================================== < / p>

- &GT; protoc -c messagefile.proto --c_out =。/ 这导致了两个文件

- &GT; messagefile.pb-c.c和messagefile.pb-c.h

现在我的代码文件会尝试使用 simpleexample.c

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "messagefile.pb-c.h"
#include <stdbool.h>

int main(int argc, const char * argv[])
{
    onemessage msg = ONE__MESSAGE__INIT; //from generated .h  code file
    void *buf;
    unsigned int len;
    char *ptr;

    //integer initialization 
    msg.has_aninteger = true;
    msg.aninteger = 1;

    //accessing the string in onemessage
    msg.messagestring = malloc(sizeof("a simple string"));
    strncpy(msg.messagestring,"a simple string",strlen("a simple string"));

    //trying to initialize the string in the nested structure othermessage        
    msg.otr_message = malloc(sizeof(othermessage));
    msg.otr_message->otherstring = malloc(sizeof("a not so simple string"));
    strncpy(msg.otr_message->otherstring,"a not so simple string",strlen("a not so simple string"));

    //lets find the length of the packed structure
    len = one_message__get_packed_size(&msg); //from generated .h code
 
    //lets arrange for as much size as len
    buf = malloc(len);

    //lets get the serialized structure in buf
    one_message__pack_to_buffer(&msg,buf); //from generated code

    //write it to a stream, for now the screen
    fwrite(buf,len,1,stdout);

    //free buffer
    free(buf);
     
     return 0;
}

我将其编译为gcc -o testout messagefile.pb-c.c simpleexample.c -lprotobuf-c

我面临的问题是在尝试初始化嵌套的其他消息变量然后调用get_packed_size时会引发分段错误。

我尝试了各种组合,我可以说,无论何时在嵌套类中使用字符串,我都会遇到使用google protoc访问它们的问题。 我错过了什么吗?有什么不对吗。

任何人都可以帮忙。

注意:可能存在一些常规语法错误,请忽略它们。

THANKYOU。

1 个答案:

答案 0 :(得分:0)

  

注意:可能存在一些常规语法错误,请忽略它们。

错误......由于您的代码无法编译,因此很难忽略它们: - )

无论如何,除了语法错误之外,您还需要对代码进行多次更正。要使用字段otr_message,仅仅malloc()是不够的。您还需要初始化它,以便消息中的标题获得正确的值。这是通过init()完成的,如下所示:

//trying to initialize the string in the nested structure othermessage        
msg.otr_message = malloc(sizeof(othermessage));
othermessage__init(msg.otr_message);

然后使用错误的函数对自己的数组进行打包。正如here所述,您需要使用pack()而不是pack_to_buffer(),如下所示:

//lets get the serialized structure in buf
onemessage__pack(&msg,buf); //from generated code

最后,您的strncpy()次调用有误。使用strlen()计算的长度不包括您需要的空终止符。因此,您需要strlen()+1或使用sizeof(),如下所示:

strncpy(msg.messagestring,"a simple string",sizeof("a simple string"));

进行这些更改后,该示例对我有用:

$ ./testout 

a simple string
a not so simple string