Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import * as Common from '../common/common.js';
import {DebuggerModel, Location} from './DebuggerModel.js';
import {RuntimeModel} from './RuntimeModel.js'; // eslint-disable-line no-unused-vars
import {Capability, SDKModel, Target} from './SDKModel.js'; // eslint-disable-line no-unused-vars
/**
* @implements {Protocol.ProfilerDispatcher}
*/
export class CPUProfilerModel extends SDKModel {
/**
* @param {!Target} target
*/
constructor(target) {
super(target);
this._isRecording = false;
this._nextAnonymousConsoleProfileNumber = 1;
this._anonymousConsoleProfileIdToTitle = new Map();
this._profilerAgent = target.profilerAgent();
/** @type {?function(number, string, !Array)} */
this._preciseCoverageDeltaUpdateCallback = null;
target.registerProfilerDispatcher(this);
this._profilerAgent.enable();
this._debuggerModel = /** @type {!DebuggerModel} */ (target.model(DebuggerModel));
}
/**
* @return {!RuntimeModel}
*/
runtimeModel() {
return this._debuggerModel.runtimeModel();
}
/**
* @return {!DebuggerModel}
*/
debuggerModel() {
return this._debuggerModel;
}
/**
* @override
* @param {string} id
* @param {!Protocol.Debugger.Location} scriptLocation
* @param {string=} title
*/
consoleProfileStarted(id, scriptLocation, title) {
if (!title) {
title = Common.UIString.UIString('Profile %d', this._nextAnonymousConsoleProfileNumber++);
this._anonymousConsoleProfileIdToTitle.set(id, title);
}
this._dispatchProfileEvent(Events.ConsoleProfileStarted, id, scriptLocation, title);
}
/**
* @override
* @param {string} id
* @param {!Protocol.Debugger.Location} scriptLocation
* @param {!Protocol.Profiler.Profile} cpuProfile
* @param {string=} title
*/
consoleProfileFinished(id, scriptLocation, cpuProfile, title) {
if (!title) {
title = this._anonymousConsoleProfileIdToTitle.get(id);
this._anonymousConsoleProfileIdToTitle.delete(id);
}
// Make sure ProfilesPanel is initialized and CPUProfileType is created.
self.runtime.loadModulePromise('profiler').then(() => {
this._dispatchProfileEvent(Events.ConsoleProfileFinished, id, scriptLocation, title, cpuProfile);
});
}
/**
* @param {symbol} eventName
* @param {string} id
* @param {!Protocol.Debugger.Location} scriptLocation
* @param {string=} title
* @param {!Protocol.Profiler.Profile=} cpuProfile
*/
_dispatchProfileEvent(eventName, id, scriptLocation, title, cpuProfile) {
const debuggerLocation = Location.fromPayload(this._debuggerModel, scriptLocation);
const globalId = this.target().id() + '.' + id;
const data = /** @type {!EventData} */ (
{id: globalId, scriptLocation: debuggerLocation, cpuProfile: cpuProfile, title: title, cpuProfilerModel: this});
this.dispatchEventToListeners(eventName, data);
}
/**
* @return {boolean}
*/
isRecordingProfile() {
return this._isRecording;
}
/**
* @return {!Promise}
*/
startRecording() {
this._isRecording = true;
const intervalUs =
Common.Settings.Settings.instance().moduleSetting('highResolutionCpuProfiling').get() ? 100 : 1000;
this._profilerAgent.setSamplingInterval(intervalUs);
return this._profilerAgent.start();
}
/**
* @return {!Promise}
*/
stopRecording() {
this._isRecording = false;
return this._profilerAgent.stop();
}
/**
* @param {boolean} jsCoveragePerBlock - Collect per Block coverage if `true`, per function coverage otherwise.
* @param {?function(number, string, !Array)} preciseCoverageDeltaUpdateCallback - Callback for coverage updates initiated from the back-end
* @return {!Promise}
*/
startPreciseCoverage(jsCoveragePerBlock, preciseCoverageDeltaUpdateCallback) {
const callCount = false;
this._preciseCoverageDeltaUpdateCallback = preciseCoverageDeltaUpdateCallback;
const allowUpdatesTriggeredByBackend = true;
return this._profilerAgent.startPreciseCoverage(callCount, jsCoveragePerBlock, allowUpdatesTriggeredByBackend);
}
/**
* @return {!Promise<{timestamp:number, coverage:!Array}>}
*/
async takePreciseCoverage() {
const r = await this._profilerAgent.invoke_takePreciseCoverage({});
const timestamp = (r && r.timestamp) || 0;
const coverage = (r && r.result) || [];
return {timestamp, coverage};
}
/**
* @return {!Promise}
*/
stopPreciseCoverage() {
this._preciseCoverageDeltaUpdateCallback = null;
return this._profilerAgent.stopPreciseCoverage();
}
/**
* @suppress {missingOverride}
* @param {number} timestampInSeconds
* @param {string} occassion
* @param {!Array} coverageData
*/
preciseCoverageDeltaUpdate(timestampInSeconds, occassion, coverageData) {
if (this._preciseCoverageDeltaUpdateCallback) {
this._preciseCoverageDeltaUpdateCallback(timestampInSeconds, occassion, coverageData);
}
}
}
/** @enum {symbol} */
export const Events = {
ConsoleProfileStarted: Symbol('ConsoleProfileStarted'),
ConsoleProfileFinished: Symbol('ConsoleProfileFinished')
};
SDKModel.register(CPUProfilerModel, Capability.JS, true);
/** @typedef {!{id: string, scriptLocation: !DebuggerModel.Location, title: string, cpuProfile: (!Protocol.Profiler.Profile|undefined), cpuProfilerModel: !CPUProfilerModel}} */
export let EventData;