| #!/usr/bin/python |
| # Copyright (C) 2018 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 os import sys, path |
| |
| sys.path.append(path.dirname(path.dirname(path.abspath(__file__)))) |
| import synth_common |
| |
| |
| def add_startup(trace, ts, pid): |
| trace.add_ftrace_packet(cpu=0) |
| trace.add_atrace_begin( |
| ts=ts, |
| tid=2, |
| pid=2, |
| buf='MetricsLogger:launchObserverNotifyIntentStarted') |
| trace.add_atrace_end(ts=ts + 1, tid=2, pid=2) |
| trace.add_atrace_async_begin( |
| ts=ts + 2, tid=2, pid=2, buf='launching: com.google.android.calendar') |
| trace.add_newtask( |
| ts=ts + 3, |
| tid=1, |
| new_tid=pid, |
| new_comm='com.google.android.calendar', |
| flags=0) |
| trace.add_atrace_async_end( |
| ts=ts + 4, tid=2, pid=2, buf='launching: com.google.android.calendar') |
| trace.add_atrace_begin( |
| ts=ts + 5, |
| tid=2, |
| pid=2, |
| buf='MetricsLogger:launchObserverNotifyActivityLaunchFinished') |
| trace.add_atrace_end(ts=ts + 6, tid=2, pid=2) |
| |
| |
| # Build a trace where calendar starts, exits and restarts. |
| # Verify that each startup is only associated with a single process |
| # (i.e. process exit is taken into account). |
| trace = synth_common.create_trace() |
| trace.add_process_tree_packet() |
| trace.add_process(1, 0, 'init') |
| trace.add_process(2, 1, 'system_server') |
| add_startup(trace, ts=100, pid=3) |
| trace.add_process_free(ts=150, tid=3, comm='', prio=0) |
| add_startup(trace, ts=200, pid=4) |
| |
| print(trace.trace.SerializeToString()) |