viztracer 1.0.2__cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl → 1.0.3__cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of viztracer might be problematic. Click here for more details.
- viztracer/__init__.py +1 -1
- viztracer/decorator.py +1 -1
- viztracer/main.py +12 -2
- viztracer/patch.py +113 -28
- viztracer/snaptrace.cpython-313t-i386-linux-gnu.so +0 -0
- viztracer/util.py +8 -0
- viztracer/vcompressor.cpython-313t-i386-linux-gnu.so +0 -0
- viztracer/viztracer.py +5 -9
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/LICENSE +43 -4
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/METADATA +45 -6
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/NOTICE.txt +15 -1
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/RECORD +85 -85
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/WHEEL +1 -1
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/entry_points.txt +0 -0
- {viztracer-1.0.2.dist-info → viztracer-1.0.3.dist-info}/top_level.txt +0 -0
viztracer/__init__.py
CHANGED
viztracer/decorator.py
CHANGED
|
@@ -81,7 +81,7 @@ def trace_and_save(method: Optional[Callable[..., R]] = None,
|
|
|
81
81
|
if not os.path.exists(output_dir):
|
|
82
82
|
os.mkdir(output_dir)
|
|
83
83
|
file_name = os.path.join(output_dir, f"result_{func.__name__}_{int(100000 * time.time())}.json")
|
|
84
|
-
if multiprocessing.get_start_method() == "fork":
|
|
84
|
+
if multiprocessing.get_start_method() == "fork" and not multiprocessing.current_process().daemon:
|
|
85
85
|
tracer.fork_save(file_name)
|
|
86
86
|
else:
|
|
87
87
|
tracer.save(file_name)
|
viztracer/main.py
CHANGED
|
@@ -25,7 +25,7 @@ from . import __version__
|
|
|
25
25
|
from .code_monkey import CodeMonkey
|
|
26
26
|
from .patch import install_all_hooks
|
|
27
27
|
from .report_builder import ReportBuilder
|
|
28
|
-
from .util import color_print, pid_exists, same_line_print, time_str_to_us, unique_file_name
|
|
28
|
+
from .util import color_print, frame_stack_has_func, pid_exists, same_line_print, time_str_to_us, unique_file_name
|
|
29
29
|
from .viztracer import VizTracer
|
|
30
30
|
|
|
31
31
|
# For all the procedures in VizUI, return a tuple as the result
|
|
@@ -139,6 +139,8 @@ class VizUI:
|
|
|
139
139
|
"Will by default generate json files"))
|
|
140
140
|
parser.add_argument("--module", "-m", nargs="?", default=None,
|
|
141
141
|
help="run module with VizTracer")
|
|
142
|
+
parser.add_argument("--patch_only", action="store_true", default=False,
|
|
143
|
+
help=argparse.SUPPRESS)
|
|
142
144
|
parser.add_argument("--compress", nargs="?", default=None,
|
|
143
145
|
help="Compress a json report to a compact cvf format")
|
|
144
146
|
parser.add_argument("--decompress", nargs="?", default=None,
|
|
@@ -357,8 +359,16 @@ class VizUI:
|
|
|
357
359
|
self.args,
|
|
358
360
|
patch_multiprocess=not options.ignore_multiprocess)
|
|
359
361
|
|
|
362
|
+
if options.patch_only:
|
|
363
|
+
exec(code, global_dict)
|
|
364
|
+
return True, None
|
|
365
|
+
|
|
360
366
|
def term_handler(signalnum, frame):
|
|
361
|
-
|
|
367
|
+
# Exit if we are not already doing exit routine
|
|
368
|
+
if not frame_stack_has_func(frame, (self.exit_routine,
|
|
369
|
+
tracer.exit_routine,
|
|
370
|
+
multiprocessing.util._exit_function)):
|
|
371
|
+
sys.exit(0)
|
|
362
372
|
|
|
363
373
|
signal.signal(signal.SIGTERM, term_handler)
|
|
364
374
|
|
viztracer/patch.py
CHANGED
|
@@ -6,6 +6,7 @@ from __future__ import annotations
|
|
|
6
6
|
import functools
|
|
7
7
|
import os
|
|
8
8
|
import re
|
|
9
|
+
import shutil
|
|
9
10
|
import sys
|
|
10
11
|
import textwrap
|
|
11
12
|
from multiprocessing import Process
|
|
@@ -62,6 +63,20 @@ def patch_subprocess(viz_args: list[str]) -> None:
|
|
|
62
63
|
return [sys.executable, *py_args, "-m", "viztracer", "--quiet", *viz_args, *mode, "--", *args_iter]
|
|
63
64
|
return None
|
|
64
65
|
|
|
66
|
+
def is_python_entry(path: str) -> bool:
|
|
67
|
+
real_path = shutil.which(path)
|
|
68
|
+
if real_path is None:
|
|
69
|
+
return False
|
|
70
|
+
try:
|
|
71
|
+
with open(real_path, "rb") as f:
|
|
72
|
+
if f.read(2) == b"#!":
|
|
73
|
+
executable = f.readline().decode("utf-8").strip()
|
|
74
|
+
if "python" in executable.split('/')[-1]:
|
|
75
|
+
return True
|
|
76
|
+
except Exception: # pragma: no cover
|
|
77
|
+
pass
|
|
78
|
+
return False
|
|
79
|
+
|
|
65
80
|
@functools.wraps(subprocess.Popen.__init__)
|
|
66
81
|
def subprocess_init(self: subprocess.Popen[Any], args: Union[str, Sequence[Any], Any], **kwargs: Any) -> None:
|
|
67
82
|
new_args = args
|
|
@@ -70,13 +85,15 @@ def patch_subprocess(viz_args: list[str]) -> None:
|
|
|
70
85
|
if isinstance(new_args, Sequence):
|
|
71
86
|
if "python" in os.path.basename(new_args[0]):
|
|
72
87
|
new_args = build_command(new_args)
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
# if it was passed as string
|
|
76
|
-
# This is mostly for Unix shell
|
|
77
|
-
new_args = " ".join(new_args)
|
|
88
|
+
elif is_python_entry(new_args[0]):
|
|
89
|
+
new_args = ["python", "-m", "viztracer", "--quiet", *viz_args, "--", *new_args]
|
|
78
90
|
else:
|
|
79
91
|
new_args = None
|
|
92
|
+
if new_args is not None and kwargs.get("shell") and isinstance(args, str):
|
|
93
|
+
# For shell=True, we should convert the commands back to string
|
|
94
|
+
# if it was passed as string
|
|
95
|
+
# This is mostly for Unix shell
|
|
96
|
+
new_args = " ".join(new_args)
|
|
80
97
|
|
|
81
98
|
if new_args is None:
|
|
82
99
|
new_args = args
|
|
@@ -94,7 +111,7 @@ def patch_subprocess(viz_args: list[str]) -> None:
|
|
|
94
111
|
setattr(subprocess.Popen, "__init__", subprocess_init)
|
|
95
112
|
|
|
96
113
|
|
|
97
|
-
def patch_multiprocessing(tracer: VizTracer,
|
|
114
|
+
def patch_multiprocessing(tracer: VizTracer, viz_args: list[str]) -> None:
|
|
98
115
|
|
|
99
116
|
# For fork process
|
|
100
117
|
def func_after_fork(tracer: VizTracer):
|
|
@@ -107,31 +124,68 @@ def patch_multiprocessing(tracer: VizTracer, args: list[str]) -> None:
|
|
|
107
124
|
tracer._afterfork_cb(tracer, *tracer._afterfork_args, **tracer._afterfork_kwargs)
|
|
108
125
|
|
|
109
126
|
import multiprocessing.spawn
|
|
127
|
+
import multiprocessing.util
|
|
110
128
|
from multiprocessing.util import register_after_fork # type: ignore
|
|
111
129
|
|
|
112
130
|
register_after_fork(tracer, func_after_fork)
|
|
113
131
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
132
|
+
if sys.platform == "win32":
|
|
133
|
+
# For spawn process on Windows
|
|
134
|
+
@functools.wraps(multiprocessing.spawn.get_command_line)
|
|
135
|
+
def get_command_line(**kwds) -> list[str]:
|
|
136
|
+
"""
|
|
137
|
+
Returns prefix of command line used for spawning a child process
|
|
138
|
+
"""
|
|
139
|
+
if getattr(sys, 'frozen', False): # pragma: no cover
|
|
140
|
+
return ([sys.executable, '--multiprocessing-fork']
|
|
141
|
+
+ ['%s=%r' % item for item in kwds.items()])
|
|
142
|
+
else:
|
|
143
|
+
prog = textwrap.dedent(f"""
|
|
144
|
+
from multiprocessing.spawn import spawn_main;
|
|
145
|
+
from viztracer.patch import patch_spawned_process;
|
|
146
|
+
patch_spawned_process({tracer.init_kwargs}, {viz_args});
|
|
147
|
+
spawn_main(%s)
|
|
148
|
+
""")
|
|
149
|
+
prog %= ', '.join('%s=%r' % item for item in kwds.items())
|
|
150
|
+
opts = multiprocessing.util._args_from_interpreter_flags() # type: ignore
|
|
151
|
+
return [multiprocessing.spawn._python_exe] + opts + ['-c', prog, '--multiprocessing-fork'] # type: ignore
|
|
152
|
+
|
|
153
|
+
multiprocessing.spawn.get_command_line = get_command_line
|
|
154
|
+
else:
|
|
155
|
+
# POSIX
|
|
156
|
+
# For forkserver process and spawned process
|
|
157
|
+
# We patch spawnv_passfds to trace forkserver parent process so the forked
|
|
158
|
+
# children can be traced
|
|
159
|
+
_spawnv_passfds = multiprocessing.util.spawnv_passfds
|
|
160
|
+
|
|
161
|
+
@functools.wraps(_spawnv_passfds)
|
|
162
|
+
def spawnv_passfds(path, args, passfds):
|
|
163
|
+
if "-c" in args:
|
|
164
|
+
idx = args.index("-c")
|
|
165
|
+
cmd = args[idx + 1]
|
|
166
|
+
if "forkserver" in cmd:
|
|
167
|
+
# forkserver will not end before main process, avoid deadlock by --patch_only
|
|
168
|
+
args = (
|
|
169
|
+
args[:idx]
|
|
170
|
+
+ ["-m", "viztracer", "--patch_only", *viz_args]
|
|
171
|
+
+ ["--subprocess_child", "--dump_raw", "-o", tracer.output_file]
|
|
172
|
+
+ args[idx:]
|
|
173
|
+
)
|
|
174
|
+
elif "resource_tracker" not in cmd:
|
|
175
|
+
# We don't trace resource_tracker as it does not quit before the main process
|
|
176
|
+
# This is a normal spawned process. Only one of spawnv_passfds and spawn._main
|
|
177
|
+
# can be patched. forkserver process will use spawn._main after forking a child,
|
|
178
|
+
# so on POSIX we patch spawnv_passfds which has a similar effect on spawned processes.
|
|
179
|
+
args = (
|
|
180
|
+
args[:idx]
|
|
181
|
+
+ ["-m", "viztracer", *viz_args]
|
|
182
|
+
+ ["--subprocess_child", "--dump_raw", "-o", tracer.output_file]
|
|
183
|
+
+ args[idx:]
|
|
184
|
+
)
|
|
185
|
+
ret = _spawnv_passfds(path, args, passfds)
|
|
186
|
+
return ret
|
|
187
|
+
|
|
188
|
+
multiprocessing.util.spawnv_passfds = spawnv_passfds # type: ignore
|
|
135
189
|
|
|
136
190
|
|
|
137
191
|
class SpawnProcess:
|
|
@@ -185,11 +239,29 @@ def patch_spawned_process(viztracer_kwargs: dict[str, Any], cmdline_args: list[s
|
|
|
185
239
|
multiprocessing.spawn._main = _main # type: ignore
|
|
186
240
|
|
|
187
241
|
|
|
242
|
+
def filter_args(args: list[str]) -> list[str]:
|
|
243
|
+
new_args = []
|
|
244
|
+
i = 0
|
|
245
|
+
while i < len(args):
|
|
246
|
+
arg = args[i]
|
|
247
|
+
if arg == "-u" or arg == "--unique_output_file":
|
|
248
|
+
i += 1
|
|
249
|
+
continue
|
|
250
|
+
elif arg == "-o" or arg == "--output_file":
|
|
251
|
+
i += 2
|
|
252
|
+
continue
|
|
253
|
+
new_args.append(arg)
|
|
254
|
+
i += 1
|
|
255
|
+
return new_args
|
|
256
|
+
|
|
257
|
+
|
|
188
258
|
def install_all_hooks(
|
|
189
259
|
tracer: VizTracer,
|
|
190
260
|
args: list[str],
|
|
191
261
|
patch_multiprocess: bool = True) -> None:
|
|
192
262
|
|
|
263
|
+
args = filter_args(args)
|
|
264
|
+
|
|
193
265
|
# multiprocess hook
|
|
194
266
|
if patch_multiprocess:
|
|
195
267
|
patch_multiprocessing(tracer, args)
|
|
@@ -205,7 +277,20 @@ def install_all_hooks(
|
|
|
205
277
|
if event == "os.exec":
|
|
206
278
|
tracer.exit_routine()
|
|
207
279
|
sys.addaudithook(audit_hook) # type: ignore
|
|
208
|
-
|
|
280
|
+
|
|
281
|
+
def callback():
|
|
282
|
+
if "--patch_only" in args:
|
|
283
|
+
# We use --patch_only for forkserver process so we need to
|
|
284
|
+
# turn on tracer in the forked child process and register
|
|
285
|
+
# for exit routine
|
|
286
|
+
tracer.register_exit()
|
|
287
|
+
tracer.start()
|
|
288
|
+
else:
|
|
289
|
+
# otherwise just make sure to label the file because it's a
|
|
290
|
+
# new process
|
|
291
|
+
tracer.label_file_to_write()
|
|
292
|
+
os.register_at_fork(after_in_child=callback) # type: ignore
|
|
293
|
+
|
|
209
294
|
if tracer.log_audit is not None:
|
|
210
295
|
audit_regex_list = [re.compile(regex) for regex in tracer.log_audit]
|
|
211
296
|
|
|
Binary file
|
viztracer/util.py
CHANGED
|
Binary file
|
viztracer/viztracer.py
CHANGED
|
@@ -14,6 +14,7 @@ from viztracer.snaptrace import Tracer
|
|
|
14
14
|
|
|
15
15
|
from . import __version__
|
|
16
16
|
from .report_builder import ReportBuilder
|
|
17
|
+
from .util import frame_stack_has_func
|
|
17
18
|
from .vizevent import VizEvent
|
|
18
19
|
from .vizplugin import VizPluginBase, VizPluginManager
|
|
19
20
|
|
|
@@ -365,13 +366,10 @@ class VizTracer(Tracer):
|
|
|
365
366
|
def term_handler(sig, frame):
|
|
366
367
|
# For multiprocessing.pool, it's possible we receive SIGTERM
|
|
367
368
|
# in util._exit_function(), but before tracer.exit_routine()
|
|
368
|
-
# executes. In this case,
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
# as it was protected my self._exiting
|
|
373
|
-
self.exit_routine()
|
|
374
|
-
sys.exit(0)
|
|
369
|
+
# executes. In this case, we can just let the exit finish
|
|
370
|
+
if not frame_stack_has_func(frame, (self.exit_routine,
|
|
371
|
+
multiprocessing.util._exit_function)):
|
|
372
|
+
sys.exit(0)
|
|
375
373
|
|
|
376
374
|
self.label_file_to_write()
|
|
377
375
|
|
|
@@ -381,8 +379,6 @@ class VizTracer(Tracer):
|
|
|
381
379
|
Finalize(self, self.exit_routine, exitpriority=-1)
|
|
382
380
|
|
|
383
381
|
def exit_routine(self) -> None:
|
|
384
|
-
# We need to avoid SIGTERM terminate our process when we dump data
|
|
385
|
-
signal.signal(signal.SIGTERM, lambda sig, frame: 0)
|
|
386
382
|
self.stop(stop_option="flush_as_finish")
|
|
387
383
|
if not self._exiting:
|
|
388
384
|
self._exiting = True
|
|
@@ -175,9 +175,48 @@
|
|
|
175
175
|
|
|
176
176
|
END OF TERMS AND CONDITIONS
|
|
177
177
|
|
|
178
|
-
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
181
188
|
|
|
182
|
-
|
|
183
|
-
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
========================================================================
|
|
205
|
+
|
|
206
|
+
VizTracer Subcomponents:
|
|
207
|
+
|
|
208
|
+
VizTracer contains subcomponents with separate copyright notices and
|
|
209
|
+
license terms. Your use of the source code for these subcomponents is
|
|
210
|
+
also subject to the terms and conditions of the following licenses.
|
|
211
|
+
|
|
212
|
+
BSD-3-Clause (src/viztracer/html/LICENSE):
|
|
213
|
+
|
|
214
|
+
src/viztracer/html/trace_viewer_*.html
|
|
215
|
+
|
|
216
|
+
Apache License V2 (src/viztracer/web_dist/LICENSE):
|
|
217
|
+
|
|
218
|
+
src/viztracer/web_dist/*
|
|
219
|
+
|
|
220
|
+
Eclipse Public License v1.0 (src/viztracer/attach_process/LICENSE)
|
|
221
|
+
|
|
222
|
+
src/viztracer/attach_process/*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: viztracer
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: A debugging and profiling tool that can trace and visualize python code execution
|
|
5
5
|
Author-email: Tian Gao <gaogaotiantian@hotmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -180,16 +180,55 @@ License: Apache License
|
|
|
180
180
|
|
|
181
181
|
END OF TERMS AND CONDITIONS
|
|
182
182
|
|
|
183
|
-
|
|
183
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
184
184
|
|
|
185
|
-
|
|
185
|
+
To apply the Apache License to your work, attach the following
|
|
186
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
187
|
+
replaced with your own identifying information. (Don't include
|
|
188
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
189
|
+
comment syntax for the file format. We also recommend that a
|
|
190
|
+
file or class name and description of purpose be included on the
|
|
191
|
+
same "printed page" as the copyright notice for easier
|
|
192
|
+
identification within third-party archives.
|
|
186
193
|
|
|
187
|
-
|
|
188
|
-
|
|
194
|
+
Copyright [yyyy] [name of copyright owner]
|
|
195
|
+
|
|
196
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
197
|
+
you may not use this file except in compliance with the License.
|
|
198
|
+
You may obtain a copy of the License at
|
|
199
|
+
|
|
200
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
201
|
+
|
|
202
|
+
Unless required by applicable law or agreed to in writing, software
|
|
203
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
204
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
205
|
+
See the License for the specific language governing permissions and
|
|
206
|
+
limitations under the License.
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
========================================================================
|
|
210
|
+
|
|
211
|
+
VizTracer Subcomponents:
|
|
212
|
+
|
|
213
|
+
VizTracer contains subcomponents with separate copyright notices and
|
|
214
|
+
license terms. Your use of the source code for these subcomponents is
|
|
215
|
+
also subject to the terms and conditions of the following licenses.
|
|
216
|
+
|
|
217
|
+
BSD-3-Clause (src/viztracer/html/LICENSE):
|
|
218
|
+
|
|
219
|
+
src/viztracer/html/trace_viewer_*.html
|
|
220
|
+
|
|
221
|
+
Apache License V2 (src/viztracer/web_dist/LICENSE):
|
|
222
|
+
|
|
223
|
+
src/viztracer/web_dist/*
|
|
224
|
+
|
|
225
|
+
Eclipse Public License v1.0 (src/viztracer/attach_process/LICENSE)
|
|
226
|
+
|
|
227
|
+
src/viztracer/attach_process/*
|
|
189
228
|
|
|
190
229
|
Project-URL: Homepage, https://github.com/gaogaotiantian/viztracer
|
|
191
230
|
Project-URL: Documentation, https://viztracer.readthedocs.io
|
|
192
|
-
Classifier: Development Status ::
|
|
231
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
193
232
|
Classifier: Programming Language :: Python :: 3.9
|
|
194
233
|
Classifier: Programming Language :: Python :: 3.10
|
|
195
234
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
VizTracer
|
|
2
|
+
Copyright 2020-2025 Tian Gao
|
|
2
3
|
|
|
3
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
5
|
you may not use this file except in compliance with the License.
|
|
@@ -11,3 +12,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
11
12
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
13
|
See the License for the specific language governing permissions and
|
|
13
14
|
limitations under the License.
|
|
15
|
+
|
|
16
|
+
This project contains code from the following projects:
|
|
17
|
+
|
|
18
|
+
Catapult (https://github.com/catapult-project/catapult)
|
|
19
|
+
Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
20
|
+
- src/viztracer/html/trace_viewer_*.html
|
|
21
|
+
|
|
22
|
+
Perfetto (https://github.com/google/perfetto)
|
|
23
|
+
Copyright (c) 2017, The Android Open Source Project
|
|
24
|
+
- src/viztracer/web_dist/*
|
|
25
|
+
|
|
26
|
+
PyDev.Debugger (https://github.com/fabioz/PyDev.Debugger)
|
|
27
|
+
- src/viztracer/attach_process/*
|
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
viztracer/
|
|
2
|
-
viztracer/
|
|
3
|
-
viztracer/snaptrace.pyi,sha256=Rwe712Vs99btG_R1cbrgrlW3ocnYxXOpVIJFk_e4Rlg,1849
|
|
4
|
-
viztracer/vcompressor.cpython-313t-i386-linux-gnu.so,sha256=Bvqc8f3lBxOpiMcaKaXyBbnOYYBrQ12bTtTme3UJyDI,178424
|
|
5
|
-
viztracer/report_builder.py,sha256=hAwlUyk8T9VJsTSB_58AKaxGJY_RR_TyVjrDOKSbFGM,13340
|
|
6
|
-
viztracer/util.py,sha256=KUjyC5m5Jx4Wy6qd_wERZVrZHkTbkt6U77Pjus8mr5o,5937
|
|
1
|
+
viztracer/__init__.py,sha256=6svIXaPYENvexhitVH0g63EO6rRdAUATYoSpOhKvF8Y,507
|
|
2
|
+
viztracer/__main__.py,sha256=-hhsTtiwE9cbgOj7DJGOaTJC8URmcRdicHRMSp4SnPo,226
|
|
7
3
|
viztracer/attach.py,sha256=VsEE3G_mpqMkiGwWiV0kNPe7VMlG_cjiOr8opDRiUAI,1991
|
|
8
4
|
viztracer/cellmagic.py,sha256=SLibORC1-Rjk2a66IIMMuV-Q6Rotg-4FaawzGH0oWIM,3365
|
|
9
5
|
viztracer/code_monkey.py,sha256=YpcaKrAnJ7tXlTjEDk5tAWXVAIzaQ8XGGxa2ESOodwo,15443
|
|
10
|
-
viztracer/
|
|
11
|
-
viztracer/
|
|
12
|
-
viztracer/
|
|
13
|
-
viztracer/
|
|
14
|
-
viztracer/
|
|
15
|
-
viztracer/
|
|
16
|
-
viztracer/
|
|
17
|
-
viztracer/
|
|
18
|
-
viztracer/
|
|
19
|
-
viztracer/
|
|
20
|
-
viztracer/snaptrace.cpython-313t-i386-linux-gnu.so,sha256=mgL3ECmft_Sc3DhwOM2IpZF6wEOQzYpeJ59dQQgmJXo,326256
|
|
21
|
-
viztracer/main.py,sha256=GrTDkn-dGkDvSLT-TRWjqzI68nrBwuBGFaCd2I0l3lU,31605
|
|
6
|
+
viztracer/decorator.py,sha256=0mys7egG9UF4Zm9p5vnDla9Zmoi3CVMRmxdSt2DigdU,5925
|
|
7
|
+
viztracer/event_base.py,sha256=Br52zdV3-e0r9jyQ-3dkC-OpNxi9oozLr6YqeYkD3cw,3143
|
|
8
|
+
viztracer/functree.py,sha256=304Ctmg7kkmvDkYzH3gL7TkIT2Wbcwq-UYMkRAyJKgc,5216
|
|
9
|
+
viztracer/main.py,sha256=OgWfWoQ-Pbc_Kr5k7wwDZ-njL7-Isx4CPK8pRddtVw8,32144
|
|
10
|
+
viztracer/patch.py,sha256=mpXRzCReu6oJ2ljLMhWQGaWc4LYcYYVlEqXjD4z1CSs,12063
|
|
11
|
+
viztracer/report_builder.py,sha256=hAwlUyk8T9VJsTSB_58AKaxGJY_RR_TyVjrDOKSbFGM,13340
|
|
12
|
+
viztracer/snaptrace.cpython-313t-i386-linux-gnu.so,sha256=zOO_vgJOmRYbUIb-FlfERDE5TK_yYbeeMUO21eMF1ws,326256
|
|
13
|
+
viztracer/snaptrace.pyi,sha256=Rwe712Vs99btG_R1cbrgrlW3ocnYxXOpVIJFk_e4Rlg,1849
|
|
14
|
+
viztracer/util.py,sha256=-PJ2T0berFlH6LiIM1HinNQaeK74IBCyy67xP5yTwrw,6131
|
|
15
|
+
viztracer/vcompressor.cpython-313t-i386-linux-gnu.so,sha256=NUHDNqTws_igAs_AqL66BVth5sfMFgJyC0h6IzvlVgo,178424
|
|
22
16
|
viztracer/vcompressor.pyi,sha256=6F6W8rREivfR1G4WI20xd50mSoayX9DkEf2Wi43-k-A,320
|
|
17
|
+
viztracer/viewer.py,sha256=OwQbWdXFr3Aj6yCwVZqSHwsSKthef084WHxuho1bHBo,19704
|
|
23
18
|
viztracer/vizcounter.py,sha256=aqTTg0FxYE82fn__TXF_Mk3nU9Sbn5N3P1AdlSwV7bg,793
|
|
24
|
-
viztracer/
|
|
19
|
+
viztracer/vizevent.py,sha256=5fKdUp1RDx5SescpffDNvDaV2SaF8H1WgNuvk2ybujY,971
|
|
20
|
+
viztracer/vizlogging.py,sha256=vVBeFpYzGnbd0mOMroJfDGqVjQy4VjWId3v_O4RLj1M,699
|
|
21
|
+
viztracer/vizobject.py,sha256=vBoPBIzCIYb6yCrLTzsSdPNAtN3fprD1Yd7a36Tlccs,1240
|
|
22
|
+
viztracer/vizplugin.py,sha256=TZQIhEM95Vsp4D_qa_D6E1K1eFC9onNVeXc7Q5n0rIs,5368
|
|
23
|
+
viztracer/viztracer.py,sha256=o9a8BBJ0igDbtPwys43BhsH758PnsXvPcY-VdP7g0Sc,17919
|
|
24
|
+
viztracer/attach_process/LICENSE,sha256=2CiOEfxCmIYp98C2SfoAczLdAYewENAl_q97GSU3bo0,11513
|
|
25
|
+
viztracer/attach_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
+
viztracer/attach_process/add_code_to_python_process.py,sha256=Eny4uJLuaAEOtY6xtBpdtMyS1FERIUyhpwLtZnBHvUE,20599
|
|
27
|
+
viztracer/attach_process/attach_linux_x86.so,sha256=m9P8nmk67lhGZXMQG4K9x8uWTAJMA9-322UAi5V7L_4,21388
|
|
28
|
+
viztracer/attach_process/linux_and_mac/lldb_prepare.py,sha256=h8dcRDjmohAxrWPpq5FZZ_9DkqHT2RLr1LI1eWbbPUw,1691
|
|
25
29
|
viztracer/html/flamegraph.html,sha256=BxbaPmmacZHdFXXD3LwTu0-IlE5ui3Y6s7fQbaPTY1k,1663
|
|
30
|
+
viztracer/html/trace_viewer_embedder.html,sha256=hkY7VyVe6pq5syldbwRsqEW2wm9wgdnrHembwm7mC-o,6734
|
|
26
31
|
viztracer/html/trace_viewer_full.html,sha256=h1TCFm2omE61KE0n-lovJcVVmxvGAIFxjJbI6yiJGjM,2598333
|
|
32
|
+
viztracer/modules/eventnode.c,sha256=hIdE7fCW_BqwDE6zulfPC_dXpxLPSxkxH1-PXph-mYU,5711
|
|
33
|
+
viztracer/modules/eventnode.h,sha256=hQ9AoNjHLZqYlI3R2BoCITjFVw16XSrbFefx1lV0ews,1541
|
|
34
|
+
viztracer/modules/pythoncapi_compat.h,sha256=9Fk7ww3THeLnoOmpEUnh0C86ZHD2Tfe4kDA7oDlahOc,46185
|
|
35
|
+
viztracer/modules/quicktime.c,sha256=iT3AkQw2pxPOzVhY1OlWEStavSsY_j_kDwR3SyDCTSk,4102
|
|
36
|
+
viztracer/modules/quicktime.h,sha256=Aooi4aRl3awX9BoU99FHnvF0MMc7YxGulbMacsIbzg0,2354
|
|
37
|
+
viztracer/modules/snaptrace.c,sha256=uS8ufDPpzYFjoS1N580eH2OWOH3F2seOjq9uJBRHhJQ,69694
|
|
38
|
+
viztracer/modules/snaptrace.h,sha256=Vf21wB9-rhfgKzB-lDwvGlxYyT0hDuJ7lTtlg0X0NoA,4016
|
|
39
|
+
viztracer/modules/snaptrace_member.c,sha256=mkAN7xibIplRshyEXubKYT3ZFd2Leg93OEeVxtfhDp0,13757
|
|
40
|
+
viztracer/modules/util.c,sha256=NR3h0Nm90ZnuYC5CPdAOHewTXkRg4s2LSXFYyzPebIM,1437
|
|
41
|
+
viztracer/modules/util.h,sha256=x5V0b71CjSD2HLjW513mMM1Hf1pxzBiD-0G2i477cFM,586
|
|
42
|
+
viztracer/modules/vcompressor/vc_dump.c,sha256=FZ2iHUN3QC2wqpzYxsB_SK-PiQewEe4ghkdwV1f-cn8,40059
|
|
43
|
+
viztracer/modules/vcompressor/vc_dump.h,sha256=gxFuI3Pm3DPXHvO00XF5QJ8AT9PeAtHo7ojwUgvO8Lk,1421
|
|
44
|
+
viztracer/modules/vcompressor/vcompressor.c,sha256=vtEoi4wKebA_We0ry3UfTzhW_3xwK9Dp4g6UaDtpioQ,12651
|
|
45
|
+
viztracer/modules/vcompressor/vcompressor.h,sha256=ZV6Z1N_C8gsmXH7J6vIZm6EXcsrwdBo4mxv-RuIkJ9U,230
|
|
27
46
|
viztracer/web_dist/LICENSE,sha256=AFZNSXZCRl1_ltEJ84_xRJl_CrwE7xZ0EPaxcq1eks0,10689
|
|
28
|
-
viztracer/web_dist/
|
|
47
|
+
viztracer/web_dist/index.html,sha256=bJWluu5gzsUU-qHju6FZhXvkv4cVewgnE1mIEBXQHsY,5790
|
|
29
48
|
viztracer/web_dist/service_worker.js,sha256=DvLmJNi6FjTi3E5vrgEOXpx8OLMTCd1BzaoIwvlXR_s,12645
|
|
49
|
+
viztracer/web_dist/service_worker.js.map,sha256=AmlyGgVgo-XGe78TwlC7Vwb6YdUvmdEOcsOIuNvtckY,20989
|
|
30
50
|
viztracer/web_dist/trace_processor,sha256=oS8xIS-UjcD9bZGSwe_GXqfh5TqE2AOv5xPSYCKnrUo,9965
|
|
31
|
-
viztracer/web_dist/index.html,sha256=bJWluu5gzsUU-qHju6FZhXvkv4cVewgnE1mIEBXQHsY,5790
|
|
32
|
-
viztracer/web_dist/v47.0-02b2414d5/perfetto.css.map,sha256=YdCoF5GtxU1T6ahLFdUEEkzLcm7j1fTR1BDkmkAqI_I,25618
|
|
33
|
-
viztracer/web_dist/v47.0-02b2414d5/frontend_bundle.js,sha256=h4ysEqB053FgwMBfOTgifFlJ-0arcM8hyQss2bqbWWM,9840728
|
|
34
|
-
viztracer/web_dist/v47.0-02b2414d5/traceconv.wasm,sha256=AJ2aP1e1w72x9UzQocRVz8ZvH7msoryzywdczQIoQW0,10076381
|
|
35
|
-
viztracer/web_dist/v47.0-02b2414d5/manifest.json,sha256=H4S7cp_71SdxKveaOSmLLlbNgQob6Q6IRugNzBDbFtE,4040
|
|
36
51
|
viztracer/web_dist/v47.0-02b2414d5/engine_bundle.js,sha256=e1dCT4qj_GM44suarNGMZVFBAiyenY_xIr9wHkFwO9w,245612
|
|
37
|
-
viztracer/web_dist/v47.0-02b2414d5/traceconv_bundle.js.map,sha256=nalTZEUMWzID5Y6Ltt3TUnb6ocF8rKxLZcKXHP6JGJ0,509406
|
|
38
|
-
viztracer/web_dist/v47.0-02b2414d5/trace_processor.wasm,sha256=eqK3L_viwaiLLGzIWVIAbiZ-dtcCo-OdRoMgNJv4inM,9481862
|
|
39
|
-
viztracer/web_dist/v47.0-02b2414d5/traceconv_bundle.js,sha256=O8rKrMhLP0THFp1Cg8Urwi4kmICNyULaUNEuaTsmrxg,246395
|
|
40
|
-
viztracer/web_dist/v47.0-02b2414d5/frontend_bundle.js.map,sha256=hSg6wUoYPxLXQXuUQEzlDhcrwIJ0xMvW9qsDzXUNSHA,17915831
|
|
41
52
|
viztracer/web_dist/v47.0-02b2414d5/engine_bundle.js.map,sha256=nbAOWxXbNDKu0Mz96Z5hiKtcnzNYCra6tSLZP7VJsS4,504163
|
|
53
|
+
viztracer/web_dist/v47.0-02b2414d5/frontend_bundle.js,sha256=h4ysEqB053FgwMBfOTgifFlJ-0arcM8hyQss2bqbWWM,9840728
|
|
54
|
+
viztracer/web_dist/v47.0-02b2414d5/frontend_bundle.js.map,sha256=hSg6wUoYPxLXQXuUQEzlDhcrwIJ0xMvW9qsDzXUNSHA,17915831
|
|
42
55
|
viztracer/web_dist/v47.0-02b2414d5/index.html,sha256=uYT4NcrZQZP1BFcs_jLhErQDBimxtw0QF7u_XLoSuJQ,5788
|
|
56
|
+
viztracer/web_dist/v47.0-02b2414d5/manifest.json,sha256=H4S7cp_71SdxKveaOSmLLlbNgQob6Q6IRugNzBDbFtE,4040
|
|
43
57
|
viztracer/web_dist/v47.0-02b2414d5/perfetto.css,sha256=b6o5-7rtLbCVkp1MOGh5o_UiF475FZ0bOiJbatrjdDE,119899
|
|
44
|
-
viztracer/web_dist/v47.0-02b2414d5/
|
|
58
|
+
viztracer/web_dist/v47.0-02b2414d5/perfetto.css.map,sha256=YdCoF5GtxU1T6ahLFdUEEkzLcm7j1fTR1BDkmkAqI_I,25618
|
|
59
|
+
viztracer/web_dist/v47.0-02b2414d5/trace_processor.wasm,sha256=eqK3L_viwaiLLGzIWVIAbiZ-dtcCo-OdRoMgNJv4inM,9481862
|
|
60
|
+
viztracer/web_dist/v47.0-02b2414d5/traceconv.wasm,sha256=AJ2aP1e1w72x9UzQocRVz8ZvH7msoryzywdczQIoQW0,10076381
|
|
61
|
+
viztracer/web_dist/v47.0-02b2414d5/traceconv_bundle.js,sha256=O8rKrMhLP0THFp1Cg8Urwi4kmICNyULaUNEuaTsmrxg,246395
|
|
62
|
+
viztracer/web_dist/v47.0-02b2414d5/traceconv_bundle.js.map,sha256=nalTZEUMWzID5Y6Ltt3TUnb6ocF8rKxLZcKXHP6JGJ0,509406
|
|
63
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/._MaterialSymbolsOutlined.woff2,sha256=rV4tcN8eflfBNS7DMTmDK1gZqu1PDOSgGLuoaF1jeao,510
|
|
64
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/MaterialSymbolsOutlined.woff2,sha256=_n860MwbjBXNu9elB7w-y0ibhcikbvw4IJjz1GnmEGE,2287204
|
|
65
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-100.woff2,sha256=IkglhK6qex103gcnkyRsZeOLQCrCMfOLsNkQKAJUMjA,15712
|
|
66
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-300.woff2,sha256=M1MLAHBxKBqX55uqsT3ffMS53pQuvT4hIiSFczX3y5c,15732
|
|
67
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-400.woff2,sha256=zEYyLVxNQdpEfyb3-nFIJ_LsmhEpaMEu9XNsdJSYXso,15688
|
|
68
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-500.woff2,sha256=u0btB5w908Oa9QUbStpI8p9JFR2tT6IYEXutL9teYW8,15920
|
|
45
69
|
viztracer/web_dist/v47.0-02b2414d5/assets/RobotoCondensed-Light.woff2,sha256=rELob_HQ_Hinhwpyz10bvwpQmoUtuh2Kvcc0iSsNSEQ,11052
|
|
46
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
70
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/RobotoCondensed-Regular.woff2,sha256=SaG04SlmRaovUTyHoOX-VqMFp-1njC9kmWMewfOzWFY,10968
|
|
71
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/RobotoMono-Regular.woff2,sha256=5DK7glyj4CZ9Yo-ttqjKY7DMo_xzRfFcfwgPeouCFl4,16028
|
|
72
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/brand.png,sha256=qQtoKOldUDc8Nzh2Ub8e3dnoXMGRUOxrdSCL42YmNbk,3260
|
|
73
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/catapult_trace_viewer.html,sha256=wLrVZQID01LZXrQygBUzpUlJcvHKCcoetygA1jrOjj8,141206
|
|
74
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/catapult_trace_viewer.js,sha256=tpvMkJYBPHRuDjmhKIiiuCVJzjgWa4LcIRxqsb3axf0,2723531
|
|
75
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/favicon.png,sha256=sor3K6wnzaql75B5y8ZxCEDN2YFe17tmqE-yvWYi2-E,1966
|
|
76
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/logo-128.png,sha256=XitC0usT0U7vEJBZwae257GKyY75m56_26Fii2mnnKo,12078
|
|
77
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/logo-3d.png,sha256=WI2BmF9A64gFzZSraFJXfOXEqJP3PIhaz9OasMFKz3Q,18376
|
|
47
78
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_atrace.png,sha256=vT3mgQCULhTTtItfHBzlUDpCNvRsJmVGYx8uywilK1g,12307
|
|
48
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/MaterialSymbolsOutlined.woff2,sha256=_n860MwbjBXNu9elB7w-y0ibhcikbvw4IJjz1GnmEGE,2287204
|
|
49
79
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_battery_counters.png,sha256=ijAy8hVxldcrRGNA_fe2wmahyewH6O3il3fwgpbDTh0,10237
|
|
50
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
51
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
52
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
53
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_voltage.png,sha256=ZSTitbm3yGRGLupYhjKOQh0ibOfFplGKZNDh3A3qSgc,8265
|
|
54
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/rec_long_trace.png,sha256=8ZNsE-AOhS6LiRLEkdqwOJuUQC3L_ErExByhJGIZvew,9940
|
|
55
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/rec_logcat.png,sha256=7zPKP0FpayanH7e9LpKrO5eKm8NeZv71txSFjSvI66I,13216
|
|
80
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_board_voltage.png,sha256=8BIn67H_6oUbv529ZCNAOf1AMCiEzARJYFdPqNSl8y0,9027
|
|
81
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_coarse.png,sha256=uHhKocq2CeYpWaV-SmSVDXLgbXnEi79-V5jGDvRNNz0,15696
|
|
82
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_fine.png,sha256=Pzs2n6ZOwD2Ug1DX1YaaoyJ0iy7mnXmwxZwI7TB-ut0,23575
|
|
56
83
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_freq.png,sha256=X9pgx6F2f-Rk1ONZh8pE538vCBk8dUhHp0NrR2MKar4,9035
|
|
84
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_voltage.png,sha256=ZSTitbm3yGRGLupYhjKOQh0ibOfFplGKZNDh3A3qSgc,8265
|
|
85
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_frame_timeline.png,sha256=-KGhOsbxx04f2Hsyyq-lxhj-YAIkhKK173EtOfKvrok,11159
|
|
57
86
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_ftrace.png,sha256=VThuh_OGltpvuDgUyOEfEOpbsPumW2MCvTVF7S5Q6Hw,7418
|
|
87
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_gpu_mem_total.png,sha256=4iEInY0xQQgdI1r2nng7geZWTeoBqNWmRmNYZQBlei4,16501
|
|
88
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_java_heap_dump.png,sha256=Stu8IkRjep9gI_7gGtB_g0hdZBNYOq6psmz7csFzv6Y,12633
|
|
89
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_lmk.png,sha256=KMgNuukjCxcUogqUFqCWPPxhZ3vDdFr8U9GSUdN6Clc,12519
|
|
90
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_logcat.png,sha256=7zPKP0FpayanH7e9LpKrO5eKm8NeZv71txSFjSvI66I,13216
|
|
91
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_long_trace.png,sha256=8ZNsE-AOhS6LiRLEkdqwOJuUQC3L_ErExByhJGIZvew,9940
|
|
92
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_mem_hifreq.png,sha256=QxhmLA10n1HX5WKFjS8rhP_OcI3zWhqfaf1ZDgy6eUc,6043
|
|
58
93
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_meminfo.png,sha256=k71vAECd0Hle8TJqmdhe93R86d9WGe3ADKeFekwXQ7A,16605
|
|
59
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-500.woff2,sha256=u0btB5w908Oa9QUbStpI8p9JFR2tT6IYEXutL9teYW8,15920
|
|
60
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/RobotoCondensed-Regular.woff2,sha256=SaG04SlmRaovUTyHoOX-VqMFp-1njC9kmWMewfOzWFY,10968
|
|
61
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/logo-128.png,sha256=XitC0usT0U7vEJBZwae257GKyY75m56_26Fii2mnnKo,12078
|
|
62
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-300.woff2,sha256=M1MLAHBxKBqX55uqsT3ffMS53pQuvT4hIiSFczX3y5c,15732
|
|
63
94
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_native_heap_profiler.png,sha256=ewas12596LRXr_rXNKwqr41oSdMMtbCLHwN0TUIN-Gc,12943
|
|
64
|
-
viztracer/web_dist/v47.0-02b2414d5/assets
|
|
65
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-400.woff2,sha256=zEYyLVxNQdpEfyb3-nFIJ_LsmhEpaMEu9XNsdJSYXso,15688
|
|
95
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_one_shot.png,sha256=g8YXF1vZWhowKZsSPx8c498Hq8Lx0wVXTL0u5Rf7-c0,9445
|
|
66
96
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_profiling.png,sha256=hM8jBeyyqvrpbFEGqnewcj50xT5GFsBF5qBLmS_UHIk,17686
|
|
67
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
68
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
69
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
70
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/catapult_trace_viewer.js,sha256=tpvMkJYBPHRuDjmhKIiiuCVJzjgWa4LcIRxqsb3axf0,2723531
|
|
71
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/vscode-icon.png,sha256=gnDKIFtMec1sbVIFhIz6CLCas3ddURGjUzZ8QC8iBrk,40522
|
|
72
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/Roboto-100.woff2,sha256=IkglhK6qex103gcnkyRsZeOLQCrCMfOLsNkQKAJUMjA,15712
|
|
73
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/rec_cpu_fine.png,sha256=Pzs2n6ZOwD2Ug1DX1YaaoyJ0iy7mnXmwxZwI7TB-ut0,23575
|
|
97
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_ps_stats.png,sha256=Ii-3QkS3iMNiaEKJIiG8YFqHvNi0lMn8qNMyeCfaPh0,19929
|
|
98
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_ring_buf.png,sha256=_1-5esQP9EZmTLCSuoCwIcU9l1wrzQSLNQ9wzIGdbKc,10420
|
|
99
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/rec_syscalls.png,sha256=JtxPGmHopytXrEgwJbKIaqiHMMum6M5aJgmggybCcIU,12154
|
|
74
100
|
viztracer/web_dist/v47.0-02b2414d5/assets/rec_vmstat.png,sha256=lCtlnOQNTNfGrt-U5iSnfyfQx7Hd-z7s3MKMgGv9s5o,14651
|
|
75
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/RobotoMono-Regular.woff2,sha256=5DK7glyj4CZ9Yo-ttqjKY7DMo_xzRfFcfwgPeouCFl4,16028
|
|
76
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/logo-3d.png,sha256=WI2BmF9A64gFzZSraFJXfOXEqJP3PIhaz9OasMFKz3Q,18376
|
|
77
101
|
viztracer/web_dist/v47.0-02b2414d5/assets/scheduling_latency.png,sha256=o08K-ewOuGio7sBa83hTtd1_rJZU7M_nYvF927TLyWI,5446
|
|
78
|
-
viztracer/web_dist/v47.0-02b2414d5/assets/
|
|
79
|
-
viztracer
|
|
80
|
-
viztracer
|
|
81
|
-
viztracer
|
|
82
|
-
viztracer
|
|
83
|
-
viztracer
|
|
84
|
-
viztracer/
|
|
85
|
-
viztracer/
|
|
86
|
-
viztracer/modules/snaptrace.c,sha256=uS8ufDPpzYFjoS1N580eH2OWOH3F2seOjq9uJBRHhJQ,69694
|
|
87
|
-
viztracer/modules/snaptrace.h,sha256=Vf21wB9-rhfgKzB-lDwvGlxYyT0hDuJ7lTtlg0X0NoA,4016
|
|
88
|
-
viztracer/modules/snaptrace_member.c,sha256=mkAN7xibIplRshyEXubKYT3ZFd2Leg93OEeVxtfhDp0,13757
|
|
89
|
-
viztracer/modules/quicktime.c,sha256=iT3AkQw2pxPOzVhY1OlWEStavSsY_j_kDwR3SyDCTSk,4102
|
|
90
|
-
viztracer/modules/eventnode.c,sha256=hIdE7fCW_BqwDE6zulfPC_dXpxLPSxkxH1-PXph-mYU,5711
|
|
91
|
-
viztracer/modules/util.h,sha256=x5V0b71CjSD2HLjW513mMM1Hf1pxzBiD-0G2i477cFM,586
|
|
92
|
-
viztracer/modules/eventnode.h,sha256=hQ9AoNjHLZqYlI3R2BoCITjFVw16XSrbFefx1lV0ews,1541
|
|
93
|
-
viztracer/modules/pythoncapi_compat.h,sha256=9Fk7ww3THeLnoOmpEUnh0C86ZHD2Tfe4kDA7oDlahOc,46185
|
|
94
|
-
viztracer/modules/vcompressor/vcompressor.h,sha256=ZV6Z1N_C8gsmXH7J6vIZm6EXcsrwdBo4mxv-RuIkJ9U,230
|
|
95
|
-
viztracer/modules/vcompressor/vc_dump.c,sha256=FZ2iHUN3QC2wqpzYxsB_SK-PiQewEe4ghkdwV1f-cn8,40059
|
|
96
|
-
viztracer/modules/vcompressor/vc_dump.h,sha256=gxFuI3Pm3DPXHvO00XF5QJ8AT9PeAtHo7ojwUgvO8Lk,1421
|
|
97
|
-
viztracer/modules/vcompressor/vcompressor.c,sha256=vtEoi4wKebA_We0ry3UfTzhW_3xwK9Dp4g6UaDtpioQ,12651
|
|
98
|
-
viztracer/attach_process/LICENSE,sha256=2CiOEfxCmIYp98C2SfoAczLdAYewENAl_q97GSU3bo0,11513
|
|
99
|
-
viztracer/attach_process/add_code_to_python_process.py,sha256=Eny4uJLuaAEOtY6xtBpdtMyS1FERIUyhpwLtZnBHvUE,20599
|
|
100
|
-
viztracer/attach_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
viztracer/attach_process/attach_linux_x86.so,sha256=m9P8nmk67lhGZXMQG4K9x8uWTAJMA9-322UAi5V7L_4,21388
|
|
102
|
-
viztracer/attach_process/linux_and_mac/lldb_prepare.py,sha256=h8dcRDjmohAxrWPpq5FZZ_9DkqHT2RLr1LI1eWbbPUw,1691
|
|
103
|
-
viztracer-1.0.2.dist-info/LICENSE,sha256=erV3GrfDUau3mXH0L7Y62Tl52Cbh6nbpAdBUoaa4fZQ,10421
|
|
104
|
-
viztracer-1.0.2.dist-info/WHEEL,sha256=u4ZSr1jnuw8o5hz8GginCJD-SBD0W1dABam1QhWLoNU,149
|
|
105
|
-
viztracer-1.0.2.dist-info/RECORD,,
|
|
106
|
-
viztracer-1.0.2.dist-info/NOTICE.txt,sha256=p00VH2K3inbdZII0ZVLUNGGsm6vVdTq8DgEK6t4uwKg,554
|
|
107
|
-
viztracer-1.0.2.dist-info/top_level.txt,sha256=xph8Zo9F28dycmRhR2cr64PLrKzc_ulOQ_lzqT3Di28,10
|
|
108
|
-
viztracer-1.0.2.dist-info/entry_points.txt,sha256=-MeyWMzg_Ci74E8Y3dr_pjzZlYWq3nQYTA41OQcrZ48,91
|
|
109
|
-
viztracer-1.0.2.dist-info/METADATA,sha256=ved-HOddhRxWemixQag3mTY6k9g5KmUo4gLyVsYydfw,24866
|
|
102
|
+
viztracer/web_dist/v47.0-02b2414d5/assets/vscode-icon.png,sha256=gnDKIFtMec1sbVIFhIz6CLCas3ddURGjUzZ8QC8iBrk,40522
|
|
103
|
+
viztracer-1.0.3.dist-info/LICENSE,sha256=pvJg_eSaSgdfGDmIDrCrtrz-nU5svUG8y1u1AafTWt8,11935
|
|
104
|
+
viztracer-1.0.3.dist-info/METADATA,sha256=O-nKgHR1IBFEW5gnasfSv9a6HHl_LKg_0h0XXw_IjhY,26705
|
|
105
|
+
viztracer-1.0.3.dist-info/NOTICE.txt,sha256=0TrouYbPH7Zwnrq2k2H6PfRyQJWO4aUew3685aqraZQ,1031
|
|
106
|
+
viztracer-1.0.3.dist-info/WHEEL,sha256=VUFNO4TY_rBB2uX6rFwMCkuJySBPCILd5JHmbMdqnrk,149
|
|
107
|
+
viztracer-1.0.3.dist-info/entry_points.txt,sha256=-MeyWMzg_Ci74E8Y3dr_pjzZlYWq3nQYTA41OQcrZ48,91
|
|
108
|
+
viztracer-1.0.3.dist-info/top_level.txt,sha256=xph8Zo9F28dycmRhR2cr64PLrKzc_ulOQ_lzqT3Di28,10
|
|
109
|
+
viztracer-1.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|