Files
sdk/runtime/observatory/web/timeline_message_handler.js
T
Ryan Macnak caffe45c7a [observatory] Dramatically reduce timeline loading time.
Restore fetching from the Catapult IFrame instead of the main frame to avoid the postMessage bottleneck.

Cf. 68dede011e

TEST=view timeline
Change-Id: I417ec40393fc149d0bf22657a2d9a46c3125f634
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/263160
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
2022-10-10 19:03:02 +00:00

58 lines
1.6 KiB
JavaScript

// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// This file is loaded before the about:tracing code is loaded so that we have
// an event listener registered early.
// Used to delay the initial timeline load until the timeline has finished
// loading.
timeline_loaded = false;
timeline_vm_address = undefined;
timeline_isolates = undefined;
function registerForMessages() {
window.addEventListener("message", onMessage, false);
window.addEventListener("hashchange", onHashChange, false);
}
registerForMessages();
function onMessage(event) {
var request = JSON.parse(event.data);
var method = request['method'];
var params = request['params'];
console.log('method: ' + method)
switch (method) {
case 'loading':
showLoadingOverlay('Fetching timeline...');
break;
case 'refresh':
timeline_vm_address = params['vmAddress'];
timeline_isolates = params['isolateIds'];
if (typeof fetchTimeline === "undefined") {
console.log('Delaying timeline refresh until loaded.');
} else {
fetchTimeline(timeline_vm_address, timeline_isolates);
}
break;
case 'clear':
clearTimeline();
break;
case 'save':
saveTimeline();
break;
case 'load':
loadTimeline();
break;
default:
console.log('Unknown method:' + method + '.');
}
}
function onHashChange() {
refreshTimeline();
}
console.log('message handler registered');