• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef SRC_TRACE_PROCESSOR_FORWARDING_TRACE_PARSER_H_
18 #define SRC_TRACE_PROCESSOR_FORWARDING_TRACE_PARSER_H_
19 
20 #include "src/trace_processor/importers/common/chunked_trace_reader.h"
21 
22 #include "src/trace_processor/types/trace_processor_context.h"
23 
24 namespace perfetto {
25 namespace trace_processor {
26 
27 constexpr size_t kGuessTraceMaxLookahead = 64;
28 
29 enum TraceType {
30   kUnknownTraceType,
31   kProtoTraceType,
32   kJsonTraceType,
33   kFuchsiaTraceType,
34   kSystraceTraceType,
35   kGzipTraceType,
36   kCtraceTraceType,
37   kNinjaLogTraceType,
38 };
39 
40 TraceType GuessTraceType(const uint8_t* data, size_t size);
41 
42 class ForwardingTraceParser : public ChunkedTraceReader {
43  public:
44   explicit ForwardingTraceParser(TraceProcessorContext*);
45   ~ForwardingTraceParser() override;
46 
47   // ChunkedTraceReader implementation
48   util::Status Parse(TraceBlobView) override;
49   void NotifyEndOfFile() override;
50 
51  private:
52   TraceProcessorContext* const context_;
53   std::unique_ptr<ChunkedTraceReader> reader_;
54 };
55 
56 }  // namespace trace_processor
57 }  // namespace perfetto
58 
59 #endif  // SRC_TRACE_PROCESSOR_FORWARDING_TRACE_PARSER_H_
60