Skip to content

Commit db22db2

Browse files
authored
Add Python timeline viewer (#39)
This PR is the first commit of the Timeline Viewer, which is functional but still needs further refactoring and documentation needs adding.
1 parent 9434893 commit db22db2

File tree

456 files changed

+27382
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+27382
-17
lines changed

.github/workflows/build_test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
3030
- name: Check code style
3131
run: |
32-
python3 -m pycodestyle ./*.py
33-
python3 -m pycodestyle ./lglpy
34-
python3 -m pycodestyle ./generator
32+
python3 -m pycodestyle --config .pycodestyle.ini ./*.py
33+
python3 -m pycodestyle --config .pycodestyle.ini ./lglpy
34+
python3 -m pycodestyle --config .pycodestyle.ini ./generator
3535
3636
- name: Check typing
3737
run: |

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ build*
1111
# Data files and build outputs
1212
*.gputl
1313
*.log
14+
*.perfetto
1415
*.so
1516

1617
# Build and debug output files
1718
/.cache
19+
/.mypy_cache
1820
/bin*
1921
/log*
2022
/x_*

.mypy.ini

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[mypy]
2+
exclude = lglpy/timeline/protos/.*\.py
3+
ignore_missing_imports = True
4+
disable_error_code = annotation-unchecked
5+
6+
[mypy-lglpy.timeline.data.raw_trace]
7+
disable_error_code = attr-defined
8+
9+
[mypy-google.*]
10+
ignore_missing_imports = True

.pycodestyle.ini

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[pycodestyle]
2+
exclude = lglpy/timeline/protos
3+
ignore = E402,E126,E127
4+
max-line-length = 80

.pylintrc

+9-9
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fail-under=10
4646
#from-stdin=
4747

4848
# Files or directories to be skipped. They should be base names, not paths.
49-
ignore=CVS
49+
ignore=CVS,protos
5050

5151
# Add files or directories matching the regular expressions patterns to the
5252
# ignore-list. The regex matches against paths and can be in Posix or Windows
@@ -64,7 +64,7 @@ ignore-patterns=^\.#
6464
# manipulated during runtime and thus existing member attributes cannot be
6565
# deduced by static analysis). It supports qualified module names, as well as
6666
# Unix pattern matching.
67-
ignored-modules=
67+
ignored-modules=cairo,protos
6868

6969
# Python code to execute, usually for sys.path manipulation such as
7070
# pygtk.require().
@@ -73,7 +73,7 @@ ignored-modules=
7373
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
7474
# number of processors available to use, and will cap the count on Windows to
7575
# avoid hangs.
76-
jobs=1
76+
jobs=0
7777

7878
# Control the amount of potential inferred values when inferring a single
7979
# object. This can help the performance when dealing with large functions or
@@ -293,7 +293,7 @@ ignored-parents=
293293
max-args=5
294294

295295
# Maximum number of attributes for a class (see R0902).
296-
max-attributes=7
296+
max-attributes=12
297297

298298
# Maximum number of boolean expressions in an if statement (see R0916).
299299
max-bool-expr=5
@@ -342,7 +342,7 @@ indent-after-paren=4
342342
indent-string=' '
343343

344344
# Maximum number of characters on a single line.
345-
max-line-length=100
345+
max-line-length=80
346346

347347
# Maximum number of lines in a module.
348348
max-module-lines=1000
@@ -436,7 +436,8 @@ disable=raw-checker-failed,
436436
use-implicit-booleaness-not-comparison-to-string,
437437
use-implicit-booleaness-not-comparison-to-zero,
438438
use-symbolic-message-instead,
439-
duplicate-code
439+
duplicate-code,
440+
arguments-differ
440441

441442
# Enable the message, report, category or checker with the given id(s). You can
442443
# either give multiple identifier separated by comma (,) or put this option
@@ -456,8 +457,7 @@ timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.
456457

457458
# List of note tags to take in consideration, separated by a comma.
458459
notes=FIXME,
459-
XXX,
460-
TODO
460+
XXX
461461

462462
# Regular expression of note tags to take in consideration.
463463
notes-rgx=
@@ -521,7 +521,7 @@ ignore-imports=yes
521521
ignore-signatures=yes
522522

523523
# Minimum lines number of a similarity.
524-
min-similarity-lines=4
524+
min-similarity-lines=10
525525

526526

527527
[SPELLING]

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Arm Limited
3+
Copyright (c) 2024-2025 Arm Limited
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

lgl_mali_trace_viewer.py

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# SPDX-License-Identifier: MIT
2+
# -----------------------------------------------------------------------------
3+
# Copyright (c) 2024-2025 Arm Limited
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the 'Software'), to
7+
# deal in the Software without restriction, including without limitation the
8+
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9+
# sell copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
# -----------------------------------------------------------------------------
23+
'''
24+
TODO
25+
'''
26+
27+
import argparse
28+
import sys
29+
30+
from lglpy.timeline.gui.window import Window
31+
32+
33+
def parse_cli():
34+
'''
35+
Parse the command line.
36+
37+
Returns:
38+
Return an argparse results object.
39+
'''
40+
parser = argparse.ArgumentParser()
41+
42+
parser.add_argument('-s', '--style', dest='style',
43+
choices=('light', 'dark'), default='dark',
44+
help='GUI skin to use')
45+
46+
parser.add_argument('input', nargs='?', metavar='PERFETTO_IN',
47+
type=argparse.FileType('rb'), default=None,
48+
help='input Perfetto file to load')
49+
50+
parser.add_argument('input2', nargs='?', metavar='GPUTL_IN',
51+
type=argparse.FileType('rb'), default=None,
52+
help='input GPU timeline file to load')
53+
54+
args = parser.parse_args()
55+
return args
56+
57+
58+
def main():
59+
'''
60+
Generate a coverage report on stdout.
61+
'''
62+
args = parse_cli()
63+
64+
# Start the GUI - this enters the GTK message loop
65+
trace_file_name = None
66+
if args.input:
67+
trace_file_name = args.input.name
68+
args.input.close()
69+
70+
metadata_file_name = None
71+
if args.input2:
72+
metadata_file_name = args.input2.name
73+
args.input2.close()
74+
75+
Window(args.style, trace_file_name, metadata_file_name)
76+
77+
78+
if __name__ == '__main__':
79+
sys.exit(main())

lglpy/comms/service_gpu_timeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def handle_render_pass(self, msg: Any) -> None:
112112

113113
# If this is a continuation then merge records
114114
if last_render_pass and (last_render_pass['tid'] == msg['tid']):
115-
# Don't accumulate if tagID is flagged as ambiguous
115+
# Don't accumulate if tag_id is flagged as ambiguous
116116
if last_render_pass['drawCallCount'] != -1:
117117
last_render_pass['drawCallCount'] += msg['drawCallCount']
118118

lglpy/timeline/__init__.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# SPDX-License-Identifier: MIT
2+
# -----------------------------------------------------------------------------
3+
# Copyright (c) 2024-2025 Arm Limited
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the 'Software'), to
7+
# deal in the Software without restriction, including without limitation the
8+
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9+
# sell copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
# -----------------------------------------------------------------------------
23+
'''
24+
TODO
25+
'''
26+
27+
import sys
28+
import os
29+
30+
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))

lglpy/timeline/data/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)