| /* |
| * Copyright (C) 2019 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include "perfetto/trace_processor/read_trace.h" |
| #include <cstdint> |
| #include <functional> |
| #include <memory> |
| #include <utility> |
| #include <vector> |
| |
| #include "perfetto/base/logging.h" |
| #include "perfetto/base/status.h" |
| #include "perfetto/ext/base/status_macros.h" |
| #include "perfetto/protozero/proto_utils.h" |
| #include "perfetto/trace_processor/trace_blob_view.h" |
| #include "perfetto/trace_processor/trace_processor.h" |
| #include "src/trace_processor/importers/archive/decompressing_trace_reader.h" |
| #include "src/trace_processor/importers/common/chunked_trace_reader.h" |
| #include "src/trace_processor/importers/proto/proto_trace_tokenizer.h" |
| #include "src/trace_processor/read_trace_internal.h" |
| #include "src/trace_processor/util/decompress.h" |
| #include "src/trace_processor/util/trace_type.h" |
| |
| #include "protos/perfetto/trace/trace.pbzero.h" |
| #include "protos/perfetto/trace/trace_packet.pbzero.h" |
| |
| namespace perfetto::trace_processor { |
| namespace { |
| |
| class SerializingProtoTraceReader : public ChunkedTraceReader { |
| public: |
| explicit SerializingProtoTraceReader(std::vector<uint8_t>* output) |
| : output_(output) {} |
| |
| base::Status Parse(TraceBlobView blob) override { |
| return tokenizer_.Tokenize(std::move(blob), [this](TraceBlobView packet) { |
| uint8_t buffer[protozero::proto_utils::kMaxSimpleFieldEncodedSize]; |
| |
| uint8_t* pos = buffer; |
| pos = protozero::proto_utils::WriteVarInt(kTracePacketTag, pos); |
| pos = protozero::proto_utils::WriteVarInt(packet.length(), pos); |
| output_->insert(output_->end(), buffer, pos); |
| |
| output_->insert(output_->end(), packet.data(), |
| packet.data() + packet.length()); |
| return base::OkStatus(); |
| }); |
| } |
| |
| base::Status OnPushDataToSorter() override { return base::OkStatus(); } |
| void OnEventsFullyExtracted() override {} |
| |
| private: |
| static constexpr uint8_t kTracePacketTag = |
| protozero::proto_utils::MakeTagLengthDelimited( |
| protos::pbzero::Trace::kPacketFieldNumber); |
| |
| ProtoTraceTokenizer tokenizer_; |
| std::vector<uint8_t>* output_; |
| }; |
| |
| } // namespace |
| |
| base::Status ReadTrace( |
| TraceProcessor* tp, |
| const char* filename, |
| const std::function<void(uint64_t parsed_size)>& progress_callback, |
| bool call_notify_end_of_file, |
| const ReadTraceArgs& args) { |
| RETURN_IF_ERROR(ReadTraceUnfinalized(tp, filename, progress_callback, args)); |
| if (call_notify_end_of_file) { |
| return tp->NotifyEndOfFile(); |
| } |
| return base::OkStatus(); |
| } |
| |
| base::Status DecompressTrace(const uint8_t* data, |
| size_t size, |
| std::vector<uint8_t>* output) { |
| TraceType type = GuessTraceType(data, size); |
| if (type != TraceType::kGzipTraceType && type != TraceType::kZstdTraceType && |
| type != TraceType::kProtoTraceType) { |
| return base::ErrStatus( |
| "Only GZIP, ZSTD and proto trace types are supported by " |
| "DecompressTrace"); |
| } |
| |
| if (type == TraceType::kGzipTraceType || type == TraceType::kZstdTraceType) { |
| auto codec = type == TraceType::kZstdTraceType |
| ? util::CompressionType::kZstd |
| : util::CompressionType::kGzip; |
| std::unique_ptr<ChunkedTraceReader> reader( |
| new SerializingProtoTraceReader(output)); |
| DecompressingTraceReader parser(std::move(reader), codec); |
| RETURN_IF_ERROR(parser.ParseUnowned(data, size)); |
| RETURN_IF_ERROR(parser.OnPushDataToSorter()); |
| parser.OnEventsFullyExtracted(); |
| return base::OkStatus(); |
| } |
| |
| PERFETTO_CHECK(type == TraceType::kProtoTraceType); |
| |
| protos::pbzero::Trace::Decoder decoder(data, size); |
| if (size > 0 && !decoder.packet()) { |
| return base::ErrStatus("Trace does not contain valid packets"); |
| } |
| // Reused across compressed_packets entries; rebuilt only if the codec changes |
| // (it doesn't within a trace). |
| std::unique_ptr<util::StreamDecompressor> decompressor; |
| util::CompressionType decompressor_type = util::CompressionType::kNone; |
| for (auto it = decoder.packet(); it; ++it) { |
| protos::pbzero::TracePacket::Decoder packet(*it); |
| if (!packet.has_compressed_packets()) { |
| it->SerializeAndAppendTo(output); |
| continue; |
| } |
| |
| auto bytes = packet.compressed_packets(); |
| auto consumer = [&output](const uint8_t* buf, size_t buf_len) { |
| output->insert(output->end(), buf, buf + buf_len); |
| }; |
| util::CompressionType codec = |
| util::DetectPacketCompression(bytes.data, bytes.size); |
| if (!decompressor || decompressor_type != codec) { |
| decompressor = util::CreateDecompressor(codec); |
| decompressor_type = codec; |
| if (!decompressor) { |
| return base::ErrStatus( |
| "Cannot decompress compressed_packets: %s is not enabled in the " |
| "build config", |
| codec == util::CompressionType::kZstd ? "zstd" : "zlib"); |
| } |
| } else { |
| decompressor->Reset(); |
| } |
| if (decompressor->FeedAndExtract(bytes.data, bytes.size, consumer) != |
| util::StreamDecompressor::ResultCode::kEof) { |
| return base::ErrStatus("Failed while decompressing compressed_packets"); |
| } |
| } |
| return base::OkStatus(); |
| } |
| |
| } // namespace perfetto::trace_processor |