3

我正在尝试在 protobuf 消息列表的开头插入一个项目。add_foo将项目附加到结尾。有没有一种简单的方法可以在开头插入它?

4

1 回答 1

10

使用协议缓冲区AFAIK没有内置方法可以做到这一点。当然,文档似乎没有表明任何此类选项。

一种相当有效的方法可能是像往常一样在末尾添加新元素,然后反向迭代元素,将新元素交换到前一个元素的前面,直到它位于列表的前面。例如,对于 protobuf 消息,例如:

message Bar {
  repeated bytes foo = 1;
}

你可以这样做:

Bar bar;
bar.add_foo("two");
bar.add_foo("three");

// Push back new element
bar.add_foo("one");
// Get mutable pointer to repeated field
google::protobuf::RepeatedPtrField<std::string> *foo_field(bar.mutable_foo());
// Reverse iterate, swapping new element in front each time
for (int i(bar.foo_size() - 1); i > 0; --i)
  foo_field->SwapElements(i, i - 1);

std::cout << bar.DebugString() << '\n';
于 2012-06-25T23:43:36.840 回答