11

根据示例代码https://developers.google.com/protocol-buffers/docs/cpptutorial,他们展示了如何解析二进制格式的 proto 文件。使用

tutorial::AddressBook address_book;

{
  // Read the existing address book.
  fstream input(argv[1], ios::in | ios::binary);
  if (!address_book.ParseFromIstream(&input)) {
    cerr << "Failed to parse address book." << endl;
    return -1;
  }
}

我尝试删除ios::binary文本格式的输入文件,但仍然无法读取文件。我需要做什么才能以文本格式读取 proto 文件?

4

3 回答 3

17

好吧,我想通了。将文本 proto 文件读入对象....

#include <iostream>
#include <fcntl.h>
#include <fstream>
#include <google/protobuf/text_format.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>

#include "YourProtoFile.pb.h"

using namespace std;

int main(int argc, char* argv[])
{

  // Verify that the version of the library that we linked against is
  // compatible with the version of the headers we compiled against.
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  Tasking *tasking = new Tasking(); //My protobuf object

  bool retValue = false;

  int fileDescriptor = open(argv[1], O_RDONLY);

  if( fileDescriptor < 0 )
  {
    std::cerr << " Error opening the file " << std::endl;
    return false;
  }

  google::protobuf::io::FileInputStream fileInput(fileDescriptor);
  fileInput.SetCloseOnDelete( true );

  if (!google::protobuf::TextFormat::Parse(&fileInput, tasking))
  {
    cerr << std::endl << "Failed to parse file!" << endl;
    return -1;
  }
  else
  {
    retValue = true;
    cerr << "Read Input File - " << argv[1] << endl;
  }

  cerr << "Id -" << tasking->taskid() << endl;
}

当我在终端执行它时,我的程序将 proto buff 的输入文件作为第一个参数。例如./myProg inputFile.txt

希望这可以帮助任何有同样问题的人

于 2012-06-01T01:16:07.160 回答
3

我需要做什么才能以文本格式读取 proto 文件?

使用TextFormat::Parse。我对 C++ 的了解不足以为您提供完整的示例代码,但这TextFormat是您应该寻找的地方。

于 2012-05-31T22:25:03.360 回答
1

简单总结一下要点:

#include <google/protobuf/text_format.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <fcntl.h>
using namespace google::protobuf;

(...)

MyMessage parsed;
int fd = open(textFileName, O_RDONLY);
io::FileInputStream fstream(fd);
TextFormat::Parse(&fstream, &parsed);

在 Linuxprotobuf-3.0.0-beta-1上检查过。g++ 4.9.2

于 2016-01-11T14:08:41.607 回答