1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/tracing/core/proto_zero_message.h"
#include <string.h>
#include "components/tracing/core/proto_zero_message_handle.h"
#if !defined(ARCH_CPU_LITTLE_ENDIAN)
// The memcpy() for float and double below needs to be adjusted if we want to
// support big endian CPUs. There doesn't seem to be a compelling need today.
#error big-endian CPUs not supported by this translation unit.
#endif
namespace tracing {
namespace v2 {
ProtoZeroMessage::ProtoZeroMessage() {
// Do NOT add any code here, use the Reset() method below instead.
// Ctor and Dtor of ProtoZeroMessage are never called, with the exeception
// of root (non-nested) messages. Nested messages are allocated in the
// |nested_messages_arena_| and implictly destroyed when the arena of the
// root message goes away. This is fine as long as all the fields are PODs,
// hence the static_assert below.
static_assert(base::is_trivially_destructible<ProtoZeroMessage>::value,
"ProtoZeroMessage must be trivially destructible");
static_assert(
sizeof(ProtoZeroMessage::nested_messages_arena_) >=
kMaxNestingDepth * (sizeof(ProtoZeroMessage) -
sizeof(ProtoZeroMessage::nested_messages_arena_)),
"ProtoZeroMessage::nested_messages_arena_ is too small");
}
// This method is called to initialize both root and nested messages.
void ProtoZeroMessage::Reset(ScatteredStreamWriter* stream_writer) {
stream_writer_ = stream_writer;
size_ = 0;
size_field_.reset();
size_already_written_ = 0;
nested_message_ = nullptr;
nesting_depth_ = 0;
#if DCHECK_IS_ON()
sealed_ = false;
handle_ = nullptr;
#endif
}
void ProtoZeroMessage::AppendString(uint32_t field_id, const char* str) {
AppendBytes(field_id, str, strlen(str));
}
void ProtoZeroMessage::AppendBytes(uint32_t field_id,
const void* src,
size_t size) {
if (nested_message_)
EndNestedMessage();
DCHECK_LT(size, proto::kMaxMessageLength);
// Write the proto preamble (field id, type and length of the field).
uint8_t buffer[proto::kMaxSimpleFieldEncodedSize];
uint8_t* pos = buffer;
pos = proto::WriteVarInt(proto::MakeTagLengthDelimited(field_id), pos);
pos = proto::WriteVarInt(static_cast<uint32_t>(size), pos);
WriteToStream(buffer, pos);
const uint8_t* src_u8 = reinterpret_cast<const uint8_t*>(src);
WriteToStream(src_u8, src_u8 + size);
}
size_t ProtoZeroMessage::Finalize() {
if (nested_message_)
EndNestedMessage();
if (size_field_.is_valid()) {
// Write the length of the nested message a posteriori, using a leading-zero
// redundant varint encoding.
#if DCHECK_IS_ON()
DCHECK(!sealed_);
#endif
DCHECK_LT(size_, proto::kMaxMessageLength);
DCHECK_EQ(proto::kMessageLengthFieldSize, size_field_.size());
proto::WriteRedundantVarInt(
static_cast<uint32_t>(size_ - size_already_written_),
size_field_.begin);
size_field_.reset();
}
#if DCHECK_IS_ON()
sealed_ = true;
if (handle_)
handle_->reset_message();
#endif
return size_;
}
void ProtoZeroMessage::BeginNestedMessageInternal(uint32_t field_id,
ProtoZeroMessage* message) {
if (nested_message_)
EndNestedMessage();
// Write the proto preamble for the nested message.
uint8_t data[proto::kMaxTagEncodedSize];
uint8_t* data_end =
proto::WriteVarInt(proto::MakeTagLengthDelimited(field_id), data);
WriteToStream(data, data_end);
message->Reset(stream_writer_);
CHECK_LT(nesting_depth_, kMaxNestingDepth);
message->nesting_depth_ = nesting_depth_ + 1;
// The length of the nested message cannot be known upfront. So right now
// just reserve the bytes to encode the size after the nested message is done.
message->set_size_field(
stream_writer_->ReserveBytes(proto::kMessageLengthFieldSize));
size_ += proto::kMessageLengthFieldSize;
nested_message_ = message;
}
void ProtoZeroMessage::EndNestedMessage() {
size_ += nested_message_->Finalize();
nested_message_ = nullptr;
}
} // namespace v2
} // namespace tracing
|