commit | e36ca63646d52fe94f2d8e8bd192d17759245ca2 | [log] [tgz] |
---|---|---|
author | Primiano Tucci <primiano@google.com> | Tue Aug 21 14:32:23 2018 +0200 |
committer | Primiano Tucci <primiano@google.com> | Tue Aug 21 14:32:23 2018 +0200 |
tree | bc60306121f3a4d0d2d3ba93b124176812ac6152 | |
parent | ee3986dc7034c863e4f76b1a25398708badafdba [diff] |
UI: Rearchitect controllers and improve tracks performance This CL involves several changes to the UI code. Major changes: - Introduce a new architecture for controllers, strongly inspired by the frontend's VDOM architecture. Controllers are organized as hierarchical state machines. The root AppController is invoked every time there is a state update, or by internal events triggered by the controller themselves. Like in the frontend, every time something changes we re-"render" the all controller tree. On each pass, each controller can: (i) alter its current state; (ii) specify some children controllers. The runtime (controller.ts) takes care of handling lifetime of child controllers, ensuring they are only created when they are returned for the first time and destroyed when they are not returned anymore. - Change the data format of tracks and make it more compact. Instead of sending one object per slice we now send slices in a columnar fashion, with one typed array per column. - Stop sending the whole slices all the time. Instead, let the frontend dynamically ask for slices as we pan around (% some caching) and specify a minimum resolution, so that slices shorter than 1 pixel are filtered out at the source. Change-Id: I6dfe88c5c469d906d3042b6ad5fe59d260c346ed
Perfetto is an open-source project for performance instrumentation and tracing of Linux/Android/Chrome platforms and user-space apps.
It consists of:
A portable, high efficiency, user-space tracing library
designed for tracing of multi-process systems, based on zero-alloc zero-copy zero-syscall (on fast-paths) writing of protobufs over shared memory.
OS-wide Linux/Android probes for platform debugging
Web-based frontend
A UI for inspection and analysis of traces (coming soon).
Batch processing of traces
A python / C++ (TBD) library for trace-based metrics (coming soon).
Perfetto is building the next-gen unified tracing ecosystem for:
The goal is to create an open, portable and developer friendly tracing ecosystem for app and platform performance debugging.
Designed for production
Perfetto's tracing library and daemons are designed for use in production. Privilege isolation is a key design goal:
See docs/security-model.md for more details.
Long traces
Pefetto aims at supporting hours-long / O(100GB) traces, both in terms of recording backend and UI frontend.
Interoperability
Perfetto traces (output) and configuration (input) consists of protobuf messages, in order to allow interoperability with several languages.
See docs/trace-format.md for more details.
Composability
As Perfetto is designed both for OS-level tracing and app-level tracing, its design allows to compose several instances of the Perfetto tracing library, allowing to nest multiple layers of tracing and drive then with the same frontend. This allows powerful blending of app-specific and OS-wide trace events. See docs/multi-layer-tracing.md for more details.
Portability
The only dependencies of Perfetto's tracing libraries are C++11 and Protobuf lite (plus google-test, google-benchmark, libprotobuf-full for testing).
Extensibility
Perfetto allows third parties to defined their own protobufs for:
Allowing apps to define their own strongly-typed input and output schema. See docs/trace-format.md for more details.