使用Protocol Buffers从文件中读取消息的问题

时间:2015-06-13 11:44:25

标签: c++ protocol-buffers

我正在尝试使用Google Protocol Buffers从文件中读取多条消息。使用$pfad = ".". $logen->logo; $image = Zend_Pdf_Image::imageWithPath('./images/logos/Berlin_1.png'); $page->drawImage($image, $posX-30, $posY, $posX+30, $posY-30); 的文档suggests

但如果我尝试阅读的信息不仅仅是一条非常小的消息,那么MergeFromCodedStream

就会失败

例如,如果我将消息定义为:

CodedInputStream

尝试将消息写入文件,然后将其读回:

message Chunk {
  repeated int64 values = 1 [packed=true];
}

其中int main() { GOOGLE_PROTOBUF_VERIFY_VERSION; { Chunk chunk; for (int i = 0; i != 26; ++i) chunk.add_values(i); std::ofstream output("D:\\temp.bin"); OstreamOutputStream raw_output(&output); if (!writeDelimitedTo(chunk, &raw_output)){ std::cout << "Unable to write chunk\n"; return 1; } } { std::ifstream input("D:\\temp.bin"); IstreamInputStream raw_input(&input); Chunk in_chunk; if (!readDelimitedFrom(&raw_input, &in_chunk)) { // <--- Fails here std::cout << "Unable to read chunk\n"; return 1; } std::cout << "Num values in chunk " << in_chunk.values_size() << "\n"; } google::protobuf::ShutdownProtobufLibrary(); } writeDelimitedTo来自this answer C ++ protobuf库的作者:

readDelimitedFrom

如果我只在我的消息中写入25个值,那么它可以工作,26并且它失败了。我已经在代码中显示了它失败的地方。

我已经尝试调试protobuf库,它似乎无法将新数据读入缓冲区,但我不知道为什么。

我正在使用Visual Studio 2013和protobuf 2.6.1。

1 个答案:

答案 0 :(得分:0)

正如@rashimoto正确地指出我无法以二进制模式打开我的文件!

通过修复,我可以成功地将多条消息写入文件:

int main() {
  GOOGLE_PROTOBUF_VERIFY_VERSION;
  {
    std::vector<Chunk> chunks = createChunks(NUM_CHUNKS, CHUNK_SIZE);

    std::ofstream output("D:\\temp.bin", std::ios::binary);
    OstreamOutputStream raw_output(&output);

    for (Chunk& chunk : chunks) {
      if (!writeDelimitedTo(chunk, &raw_output)){
        std::cout << "Unable to write chunk\n";
        return 1;
      }
    }
  }
  {
    std::ifstream input("D:\\temp.bin", std::ios::binary);
    IstreamInputStream raw_input(&input);
    std::vector<Chunk> chunks(NUM_CHUNKS);

    for (auto& chunk : chunks) {
      if (!readDelimitedFrom(&raw_input, &chunk)) {
        std::cout << "Unable to read chunk\n";
        return 1;
      }
    }

    std::cout << "Num values in first chunk " << chunks[0].values_size() << "\n";
  }

  google::protobuf::ShutdownProtobufLibrary();
}