UNPKG

@quick-game/cli

Version:

Command line interface for rapid qg development

256 lines 11.1 kB
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import * as Common from '../../core/common/common.js'; import * as i18n from '../../core/i18n/i18n.js'; import * as Platform from '../../core/platform/platform.js'; import * as SDK from '../../core/sdk/sdk.js'; import * as UI from '../../ui/legacy/legacy.js'; const UIStrings = { /** *@description aria label for javascript VM instances target list in heap profiler */ javascriptVmInstances: 'JavaScript VM instances', /** *@description Text in Isolate Selector of a profiler tool */ totalJsHeapSize: 'Total JS heap size', /** *@description Total trend div title in Isolate Selector of a profiler tool *@example {3} PH1 */ totalPageJsHeapSizeChangeTrend: 'Total page JS heap size change trend over the last {PH1} minutes.', /** *@description Total value div title in Isolate Selector of a profiler tool */ totalPageJsHeapSizeAcrossAllVm: 'Total page JS heap size across all VM instances.', /** *@description Heap size change trend measured in kB/s *@example {2 kB} PH1 */ changeRate: '{PH1}/s', /** *@description Text for isolate selector list items with positive change rate *@example {1.0 kB} PH1 */ increasingBySPerSecond: 'increasing by {PH1} per second', /** *@description Text for isolate selector list items with negative change rate *@example {1.0 kB} PH1 */ decreasingBySPerSecond: 'decreasing by {PH1} per second', /** *@description Heap div title in Isolate Selector of a profiler tool */ heapSizeInUseByLiveJsObjects: 'Heap size in use by live JS objects.', /** *@description Trend div title in Isolate Selector of a profiler tool *@example {3} PH1 */ heapSizeChangeTrendOverTheLastS: 'Heap size change trend over the last {PH1} minutes.', /** *@description Text to show an item is empty */ empty: '(empty)', }; const str_ = i18n.i18n.registerUIStrings('panels/profiler/IsolateSelector.ts', UIStrings); const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); export class IsolateSelector extends UI.Widget.VBox { items; list; itemByIsolate; totalElement; totalValueDiv; totalTrendDiv; constructor() { super(false); this.items = new UI.ListModel.ListModel(); this.list = new UI.ListControl.ListControl(this.items, this, UI.ListControl.ListMode.NonViewport); this.list.element.classList.add('javascript-vm-instances-list'); UI.ARIAUtils.setLabel(this.list.element, i18nString(UIStrings.javascriptVmInstances)); this.contentElement.appendChild(this.list.element); this.itemByIsolate = new Map(); this.totalElement = document.createElement('div'); this.totalElement.classList.add('profile-memory-usage-item'); this.totalElement.classList.add('hbox'); this.totalValueDiv = this.totalElement.createChild('div', 'profile-memory-usage-item-size'); this.totalTrendDiv = this.totalElement.createChild('div', 'profile-memory-usage-item-trend'); this.totalElement.createChild('div').textContent = i18nString(UIStrings.totalJsHeapSize); const trendIntervalMinutes = Math.round(SDK.IsolateManager.MemoryTrendWindowMs / 60e3); UI.Tooltip.Tooltip.install(this.totalTrendDiv, i18nString(UIStrings.totalPageJsHeapSizeChangeTrend, { PH1: trendIntervalMinutes })); UI.Tooltip.Tooltip.install(this.totalValueDiv, i18nString(UIStrings.totalPageJsHeapSizeAcrossAllVm)); SDK.IsolateManager.IsolateManager.instance().observeIsolates(this); SDK.TargetManager.TargetManager.instance().addEventListener(SDK.TargetManager.Events.NameChanged, this.targetChanged, this); SDK.TargetManager.TargetManager.instance().addEventListener(SDK.TargetManager.Events.InspectedURLChanged, this.targetChanged, this); } wasShown() { super.wasShown(); SDK.IsolateManager.IsolateManager.instance().addEventListener(SDK.IsolateManager.Events.MemoryChanged, this.heapStatsChanged, this); } willHide() { SDK.IsolateManager.IsolateManager.instance().removeEventListener(SDK.IsolateManager.Events.MemoryChanged, this.heapStatsChanged, this); } isolateAdded(isolate) { this.list.element.tabIndex = 0; const item = new ListItem(isolate); const index = item.model().target() === SDK.TargetManager.TargetManager.instance().rootTarget() ? 0 : this.items.length; this.items.insert(index, item); this.itemByIsolate.set(isolate, item); if (this.items.length === 1 || isolate.isMainThread()) { this.list.selectItem(item); } this.update(); } isolateChanged(isolate) { const item = this.itemByIsolate.get(isolate); if (item) { item.updateTitle(); } this.update(); } isolateRemoved(isolate) { const item = this.itemByIsolate.get(isolate); if (item) { this.items.remove(this.items.indexOf(item)); } this.itemByIsolate.delete(isolate); if (this.items.length === 0) { this.list.element.tabIndex = -1; } this.update(); } targetChanged(event) { const target = event.data; const model = target.model(SDK.RuntimeModel.RuntimeModel); if (!model) { return; } const isolate = SDK.IsolateManager.IsolateManager.instance().isolateByModel(model); const item = isolate && this.itemByIsolate.get(isolate); if (item) { item.updateTitle(); } } heapStatsChanged(event) { const isolate = event.data; const listItem = this.itemByIsolate.get(isolate); if (listItem) { listItem.updateStats(); } this.updateTotal(); } updateTotal() { let total = 0; let trend = 0; for (const isolate of SDK.IsolateManager.IsolateManager.instance().isolates()) { total += isolate.usedHeapSize(); trend += isolate.usedHeapSizeGrowRate(); } this.totalValueDiv.textContent = Platform.NumberUtilities.bytesToString(total); IsolateSelector.formatTrendElement(trend, this.totalTrendDiv); } static formatTrendElement(trendValueMs, element) { const changeRateBytesPerSecond = trendValueMs * 1e3; const changeRateThresholdBytesPerSecond = 1000; if (Math.abs(changeRateBytesPerSecond) < changeRateThresholdBytesPerSecond) { return; } const changeRateText = Platform.NumberUtilities.bytesToString(Math.abs(changeRateBytesPerSecond)); let changeText, changeLabel; if (changeRateBytesPerSecond > 0) { changeText = '\u2B06' + i18nString(UIStrings.changeRate, { PH1: changeRateText }); element.classList.toggle('increasing', true); changeLabel = i18nString(UIStrings.increasingBySPerSecond, { PH1: changeRateText }); } else { changeText = '\u2B07' + i18nString(UIStrings.changeRate, { PH1: changeRateText }); element.classList.toggle('increasing', false); changeLabel = i18nString(UIStrings.decreasingBySPerSecond, { PH1: changeRateText }); } element.textContent = changeText; UI.ARIAUtils.setLabel(element, changeLabel); } totalMemoryElement() { return this.totalElement; } createElementForItem(item) { return item.element; } heightForItem(_item) { console.assert(false, 'should not be called'); return 0; } updateSelectedItemARIA(_fromElement, _toElement) { return false; } isItemSelectable(_item) { return true; } selectedItemChanged(_from, to, fromElement, toElement) { if (fromElement) { fromElement.classList.remove('selected'); } if (toElement) { toElement.classList.add('selected'); } const model = to && to.model(); UI.Context.Context.instance().setFlavor(SDK.HeapProfilerModel.HeapProfilerModel, model && model.heapProfilerModel()); UI.Context.Context.instance().setFlavor(SDK.CPUProfilerModel.CPUProfilerModel, model && model.target().model(SDK.CPUProfilerModel.CPUProfilerModel)); } update() { this.updateTotal(); this.list.invalidateRange(0, this.items.length); } } export class ListItem { isolate; element; heapDiv; trendDiv; nameDiv; constructor(isolate) { this.isolate = isolate; const trendIntervalMinutes = Math.round(SDK.IsolateManager.MemoryTrendWindowMs / 60e3); this.element = document.createElement('div'); this.element.classList.add('profile-memory-usage-item'); this.element.classList.add('hbox'); UI.ARIAUtils.markAsOption(this.element); this.heapDiv = this.element.createChild('div', 'profile-memory-usage-item-size'); UI.Tooltip.Tooltip.install(this.heapDiv, i18nString(UIStrings.heapSizeInUseByLiveJsObjects)); this.trendDiv = this.element.createChild('div', 'profile-memory-usage-item-trend'); UI.Tooltip.Tooltip.install(this.trendDiv, i18nString(UIStrings.heapSizeChangeTrendOverTheLastS, { PH1: trendIntervalMinutes })); this.nameDiv = this.element.createChild('div', 'profile-memory-usage-item-name'); this.updateTitle(); } model() { return this.isolate.runtimeModel(); } updateStats() { this.heapDiv.textContent = Platform.NumberUtilities.bytesToString(this.isolate.usedHeapSize()); IsolateSelector.formatTrendElement(this.isolate.usedHeapSizeGrowRate(), this.trendDiv); } updateTitle() { const modelCountByName = new Map(); for (const model of this.isolate.models()) { const target = model.target(); const name = SDK.TargetManager.TargetManager.instance().rootTarget() !== target ? target.name() : ''; const parsedURL = new Common.ParsedURL.ParsedURL(target.inspectedURL()); const domain = parsedURL.isValid ? parsedURL.domain() : ''; const title = target.decorateLabel(domain && name ? `${domain}: ${name}` : name || domain || i18nString(UIStrings.empty)); modelCountByName.set(title, (modelCountByName.get(title) || 0) + 1); } this.nameDiv.removeChildren(); const titles = []; for (const [name, count] of modelCountByName) { const title = count > 1 ? `${name} (${count})` : name; titles.push(title); const titleDiv = this.nameDiv.createChild('div'); titleDiv.textContent = title; UI.Tooltip.Tooltip.install(titleDiv, String(title)); } } } //# sourceMappingURL=IsolateSelector.js.map