Native UI scan

Summary: Added scheduler to scan the Native UI every 500 ms to test, Also added instrumentation in a separate event with the timings of each stage visualised in a Data table on desktop which can be accessed with ctrl+I. Currently this instrumentation event is sent every time but it could be a config option controlled from the desktop in the future

Reviewed By: lblasa

Differential Revision: D39205313

fbshipit-source-id: ca034171db6b062396b4ef28028aaa663c4d852a
This commit is contained in:
Luke De Feo
2022-09-07 04:37:17 -07:00
committed by Facebook GitHub Bot
parent a5da6923eb
commit 41068d1c90
9 changed files with 273 additions and 99 deletions

View File

@@ -7,62 +7,43 @@
* @format
*/
import {PluginClient, createState} from 'flipper-plugin';
import {PluginClient, createState, createDataSource} from 'flipper-plugin';
import {Id, UINode} from './types';
export type Inspectable =
| InspectableObject
| InspectableText
| InspectableNumber
| InspectableColor;
export type InspectableText = {
type: 'text';
value: string;
mutable: boolean;
};
export type InspectableNumber = {
type: 'number';
value: number;
mutable: boolean;
};
export type InspectableColor = {
type: 'number';
value: number;
mutable: boolean;
};
export type InspectableObject = {
type: 'object';
fields: Record<string, Inspectable>;
};
export type Id = string;
export type UINode = {
id: Id;
name: string;
attributes: Record<string, Inspectable>;
children: Id[];
export type PerfStatsEvent = {
txId: number;
start: number;
scanComplete: number;
serializationComplete: number;
socketComplete: number;
nodesCount: number;
};
type Events = {
init: {rootId: string};
nativeScan: {nodes: UINode[]};
nativeScan: {txId: number; nodes: UINode[]};
perfStats: PerfStatsEvent;
};
export function plugin(client: PluginClient<Events>) {
const rootId = createState<Id | undefined>(undefined);
const nodesAtom = createState<Map<Id, UINode>>(new Map());
client.onMessage('init', (root) => rootId.set(root.rootId));
const perfEvents = createDataSource<PerfStatsEvent, 'txId'>([], {
key: 'txId',
limit: 10 * 1024,
});
client.onMessage('perfStats', (event) => {
perfEvents.append(event);
});
const nodesAtom = createState<Map<Id, UINode>>(new Map());
client.onMessage('nativeScan', ({nodes}) => {
nodesAtom.set(new Map(nodes.map((node) => [node.id, node])));
console.log(nodesAtom.get());
});
return {rootId, nodes: nodesAtom};
return {rootId, nodes: nodesAtom, perfEvents};
}
export {Component} from './components/main';