首頁 > 後端開發 > C++ > 如何用 C 語言實作 Java Protocol Buffers 定界 I/O 功能?

如何用 C 語言實作 Java Protocol Buffers 定界 I/O 功能?

Barbara Streisand
發布: 2024-12-05 02:32:09
原創
1012 人瀏覽過

How to Achieve Java Protocol Buffers Delimited I/O Functionality in C  ?

Java Protocol Buffers 分隔I/O 函數的C 等效項

問題:
開發人員嘗試讀取和寫入多個Protocol Buffers 訊息從C 和Java 中的檔案使用Java 中可用的「定界」I/O函數可能會遇到問題,但看起來並非如此可在 C 中存取。

解決方案:
從版本3.3.0 開始,C 中的頭檔google/protobuf/util 中引入了用於讀寫分隔訊息的等效函數/delimited_message_util .h。這些函數是:

  • writeDelimitedTo():將分隔訊息寫入 google::protobuf::io::ZeroCopyOutputStream。
  • readDelimitedFrom():從 google::protobuf::io::ZeroCopyOutputStream 讀取分隔訊息。 google::protobuf::io::ZeroCopyInputStream.

注意:
由C 和Java protobuf 庫的原作者提供的替代實現提供了優化不存在於官方庫實現中。如下所示,此實作可以防止輸入 64MB 後出現潛在故障,同時仍強制單一訊息實施 64MB 限制:

bool writeDelimitedTo(
    const google::protobuf::MessageLite& message,
    google::protobuf::io::ZeroCopyOutputStream* rawOutput) {
  // We create a new coded stream for each message.  Don't worry, this is fast.
  google::protobuf::io::CodedOutputStream output(rawOutput);

  // Write the size.
  const int size = message.ByteSize();
  output.WriteVarint32(size);

  uint8_t* buffer = output.GetDirectBufferForNBytesAndAdvance(size);
  if (buffer != NULL) {
    // Optimization:  The message fits in one buffer, so use the faster
    // direct-to-array serialization path.
    message.SerializeWithCachedSizesToArray(buffer);
  } else {
    // Slightly-slower path when the message is multiple buffers.
    message.SerializeWithCachedSizes(&output);
    if (output.HadError()) return false;
  }

  return true;
}

bool readDelimitedFrom(
    google::protobuf::io::ZeroCopyInputStream* rawInput,
    google::protobuf::MessageLite* message) {
  // We create a new coded stream for each message.  Don't worry, this is fast,
  // and it makes sure the 64MB total size limit is imposed per-message rather
  // than on the whole stream.  (See the CodedInputStream interface for more
  // info on this limit.)
  google::protobuf::io::CodedInputStream input(rawInput);

  // Read the size.
  uint32_t size;
  if (!input.ReadVarint32(&size)) return false;

  // Tell the stream not to read beyond that size.
  google::protobuf::io::CodedInputStream::Limit limit =
      input.PushLimit(size);

  // Parse the message.
  if (!message->MergeFromCodedStream(&input)) return false;
  if (!input.ConsumedEntireMessage()) return false;

  // Release the limit.
  input.PopLimit(limit);

  return true;
}
登入後複製

以上是如何用 C 語言實作 Java Protocol Buffers 定界 I/O 功能?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板