File: serialize_test_trace.py

package info (click to toggle)
perfetto 54.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 133,812 kB
  • sloc: cpp: 338,350; python: 74,464; sql: 46,895; ansic: 18,340; javascript: 2,557; java: 2,160; sh: 1,444; yacc: 776; xml: 563; makefile: 226
file content (85 lines) | stat: -rwxr-xr-x 3,176 bytes parent folder | download | duplicates (7)
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
#!/usr/bin/env python3
# Copyright (C) 2020 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.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import argparse
import os
import sys

ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(ROOT_DIR)

from python.generators.diff_tests.utils import serialize_textproto_trace, serialize_python_trace


def main():
  parser = argparse.ArgumentParser()
  parser.add_argument(
      '--out', type=str, help='out directory to search for trace descriptor')
  parser.add_argument(
      '--descriptor', type=str, help='path to the trace descriptor')
  parser.add_argument(
      '--extension-descriptor',
      action='append',
      type=str,
      help='paths to additional descriptors')
  parser.add_argument('trace_path', type=str, help='path of trace to serialize')
  args = parser.parse_args()

  if args.out and not args.descriptor:
    trace_protos_path = os.path.join(args.out, 'gen', 'protos', 'perfetto',
                                     'trace')
    chrome_extension_descriptor_path = os.path.join(
        args.out, 'gen', 'protos', 'third_party', 'chromium',
        'chrome_track_event.descriptor')
    trace_descriptor_path = os.path.join(trace_protos_path, 'trace.descriptor')
    test_extensions_descriptor_path = os.path.join(
        trace_protos_path, 'test_extensions.descriptor')
    winscope_extensions_descriptor_path = os.path.join(trace_protos_path,
                                                       'android',
                                                       'winscope.descriptor')
    extension_descriptors = [
        chrome_extension_descriptor_path, test_extensions_descriptor_path,
        winscope_extensions_descriptor_path
    ]
  elif args.descriptor and not args.out:
    trace_descriptor_path = args.descriptor
    extension_descriptors = []
  else:
    raise RuntimeError(
        'Exactly one of --out and --descriptor should be provided')

  if args.extension_descriptor:
    extension_descriptors.extend(args.extension_descriptor)

  trace_path = args.trace_path

  if trace_path.endswith('.py'):
    serialize_python_trace(ROOT_DIR, trace_descriptor_path,
                           extension_descriptors, trace_path, sys.stdout.buffer)
  elif trace_path.endswith('.textproto'):
    serialize_textproto_trace(trace_descriptor_path, extension_descriptors,
                              trace_path, sys.stdout.buffer)
  else:
    raise RuntimeError('Invalid extension for unserialized trace file')

  return 0


if __name__ == '__main__':
  sys.exit(main())