30

以下のプロトコルバッファがあります。StockStatic は繰り返しフィールドであることに注意してください。

message ServiceResponse
{
    enum Type
    {
        REQUEST_FAILED = 1;
        STOCK_STATIC_SNAPSHOT = 2;
    }

    message StockStaticSnapshot
    {
        repeated StockStatic stock_static = 1;
    }
    required Type type = 1;
    optional StockStaticSnapshot stock_static_snapshot = 2;
}

message StockStatic
{
    optional string sector      = 1;
    optional string subsector   = 2;
}

ベクトルを繰り返し処理しながら、StockStatic フィールドに入力しています。

ServiceResponse.set_type(ServiceResponse_Type_STOCK_STATIC_SNAPSHOT);

ServiceResponse_StockStaticSnapshot stockStaticSnapshot;

for (vector<stockStaticInfo>::iterator it = m_staticStocks.begin(); it!= m_staticStocks.end(); ++it)
{
    StockStatic* pStockStaticEntity = stockStaticSnapshot.add_stock_static();

    SetStockStaticProtoFields(*it, pStockStaticEntity); // sets sector and subsector field to pStockStaticEntity by reading the fields using (*it)
}

ただし、上記のコードが正しいのは、StockStatic がオプション フィールドであり、繰り返しフィールドではない場合のみです。私の質問は、繰り返しフィールドにするために欠落しているコード行は何ですか?

4

3 に答える 3

43

いいえ、あなたは正しいことをしています。

これが私のプロトコルバッファのスニペットです(簡潔にするために詳細は省略されています):

message DemandSummary
{
    required uint32 solutionIndex     = 1;
    required uint32 demandID          = 2;
}
message ComputeResponse
{
    repeated DemandSummary solutionInfo  = 3;
}

...そして ComputeResponse::solutionInfo を埋めるための C++:

ComputeResponse response;

for ( int i = 0; i < demList.size(); ++i ) {

    DemandSummary* summary = response.add_solutioninfo();
    summary->set_solutionindex(solutionID);
    summary->set_demandid(demList[i].toUInt());
}

response.solutionInfodemList.size()要素が含まれるようになりました。

于 2009-11-20T15:15:49.310 に答える
0

同じことを達成する別の方法:

message SearchResponse {
  message Result {
  required string url = 1;
  optional string title = 2;
  repeated string snippets = 3;
  }  
  repeated Result result = 1;
}
于 2009-11-20T15:11:34.857 に答える
0

ここに C++ のサンプル コードがありますが、効率的ではない可能性があります。

message MyArray
{
    repeated uint64 my_data = 1;
}
//Copy
std::array<unsigned long long, 5> test={1,1,2,3,5};
mynamespace::MyArray pbvar;
auto *dst_ptr = keys.my_data();
google::protobuf::RepeatedField<google::protobuf::uint64> field{test.begin(), test.end()};
dst_ptr->CopyFrom(field);

//Output
for (auto it : pbvar.my_data())
    std::cout<<it<<" ";
std::cout<<std::endl;
于 2021-01-10T08:07:44.500 に答える