Stop using ByteSize (deprecated) to get the size of a proto message.

The method ByteSize has been deprecated [1], this CL switches to
ByteSizeLong.

[1] - https://cs.chromium.org/chromium/src/third_party/protobuf/src/google/protobuf/message_lite.h?l=252&rcl=ac47edd22c481fcfe119769d6b7abf365abea8fa

Bug: None
Change-Id: I1ba622df52f47719a5beda6d230cb603a0163d43
Reviewed-on: https://webrtc-review.googlesource.com/27021
Reviewed-by: Tommi <tommi@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20952}
This commit is contained in:
Mirko Bonadei
2017-11-29 15:20:26 +01:00
committed by Commit Bot
parent bba8e9eb85
commit 5b86f0a24b
5 changed files with 7 additions and 5 deletions

View File

@ -214,7 +214,7 @@ int main(int argc, char* argv[]) {
size_t malformed_event_size = 0;
size_t accumulated_event_size = 0;
for (const webrtc::rtclog::Event& event : events) {
size_t serialized_size = event.ByteSize();
size_t serialized_size = event.ByteSizeLong();
// When the event is written on the disk, it is part of an EventStream
// object. The event stream will prepend a 1 byte field number/wire type,
// and a varint encoding (base 128) of the event length.

View File

@ -12,6 +12,7 @@
#include "rtc_base/checks.h"
#include "rtc_base/ignore_wundef.h"
#include "rtc_base/numerics/safe_conversions.h"
#include "rtc_base/protobuf_utils.h"
#if WEBRTC_ENABLE_PROTOBUF
@ -37,7 +38,7 @@ void DumpEventToFile(const Event& event, FileWrapper* dump_file) {
RTC_CHECK(dump_file->is_open());
ProtoString dump_data;
event.SerializeToString(&dump_data);
int32_t size = event.ByteSize();
int32_t size = rtc::checked_cast<int32_t>(event.ByteSizeLong());
dump_file->Write(&size, sizeof(size));
dump_file->Write(dump_data.data(), dump_data.length());
}

View File

@ -46,7 +46,7 @@ bool WriteToFileTask::Run() {
ProtoString event_string;
event_.SerializeToString(&event_string);
const size_t event_byte_size = event_.ByteSize();
const size_t event_byte_size = event_.ByteSizeLong();
if (!IsRoomForNextEvent(event_byte_size)) {
debug_file_->CloseFile();

View File

@ -33,6 +33,7 @@
#include "rtc_base/checks.h"
#include "rtc_base/gtest_prod_util.h"
#include "rtc_base/ignore_wundef.h"
#include "rtc_base/numerics/safe_conversions.h"
#include "rtc_base/numerics/safe_minmax.h"
#include "rtc_base/protobuf_utils.h"
#include "rtc_base/refcountedobject.h"
@ -243,7 +244,7 @@ void OpenFileAndWriteMessage(const std::string& filename,
FILE* file = fopen(filename.c_str(), "wb");
ASSERT_TRUE(file != NULL);
int32_t size = msg.ByteSize();
int32_t size = rtc::checked_cast<int32_t>(msg.ByteSizeLong());
ASSERT_GT(size, 0);
std::unique_ptr<uint8_t[]> array(new uint8_t[size]);
ASSERT_TRUE(msg.SerializeToArray(array.get(), size));

View File

@ -51,7 +51,7 @@ void TestController::Run() {
void TestController::SendData(const NetworkTesterPacket& packet,
rtc::Optional<size_t> data_size) {
// Can be call from packet_sender or from test_controller thread.
size_t packet_size = packet.ByteSize();
size_t packet_size = packet.ByteSizeLong();
send_data_[0] = packet_size;
packet_size++;
packet.SerializeToArray(&send_data_[1], std::numeric_limits<char>::max());