2015-06-19 21:59:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule PerformanceLogger
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-03-30 19:46:25 +00:00
|
|
|
const BatchedBridge = require('BatchedBridge');
|
2016-09-19 11:43:09 +00:00
|
|
|
const performanceNow = global.nativePerformanceNow || require('fbjs/lib/performanceNow');
|
2017-02-17 19:50:44 +00:00
|
|
|
const Systrace = require('Systrace');
|
2015-06-19 21:59:42 +00:00
|
|
|
|
|
|
|
var timespans = {};
|
2015-10-26 19:50:54 +00:00
|
|
|
var extras = {};
|
2017-02-17 19:50:44 +00:00
|
|
|
var cookies = {};
|
2015-06-19 21:59:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is meant to collect and log performance data in production, which means
|
|
|
|
* it needs to have minimal overhead.
|
|
|
|
*/
|
|
|
|
var PerformanceLogger = {
|
|
|
|
addTimespan(key, lengthInMs, description) {
|
|
|
|
if (timespans[key]) {
|
|
|
|
if (__DEV__) {
|
|
|
|
console.log(
|
2015-07-16 21:08:25 +00:00
|
|
|
'PerformanceLogger: Attempting to add a timespan that already exists ',
|
|
|
|
key
|
2015-06-19 21:59:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
timespans[key] = {
|
|
|
|
description: description,
|
|
|
|
totalTime: lengthInMs,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
startTimespan(key, description) {
|
|
|
|
if (timespans[key]) {
|
|
|
|
if (__DEV__) {
|
|
|
|
console.log(
|
2015-07-16 21:08:25 +00:00
|
|
|
'PerformanceLogger: Attempting to start a timespan that already exists ',
|
|
|
|
key,
|
2015-06-19 21:59:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
timespans[key] = {
|
|
|
|
description: description,
|
|
|
|
startTime: performanceNow(),
|
|
|
|
};
|
2017-02-17 19:50:44 +00:00
|
|
|
cookies[key] = Systrace.beginAsyncEvent(key);
|
2015-06-19 21:59:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
stopTimespan(key) {
|
|
|
|
if (!timespans[key] || !timespans[key].startTime) {
|
|
|
|
if (__DEV__) {
|
|
|
|
console.log(
|
2015-07-16 21:08:25 +00:00
|
|
|
'PerformanceLogger: Attempting to end a timespan that has not started ',
|
|
|
|
key,
|
2015-06-19 21:59:42 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2015-11-24 18:18:07 +00:00
|
|
|
if (timespans[key].endTime) {
|
|
|
|
if (__DEV__) {
|
|
|
|
console.log(
|
|
|
|
'PerformanceLogger: Attempting to end a timespan that has already ended ',
|
|
|
|
key
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2015-06-19 21:59:42 +00:00
|
|
|
|
2017-02-17 19:50:44 +00:00
|
|
|
Systrace.endAsyncEvent(key, cookies[key]);
|
|
|
|
delete cookies[key];
|
2015-06-19 21:59:42 +00:00
|
|
|
timespans[key].endTime = performanceNow();
|
|
|
|
timespans[key].totalTime =
|
|
|
|
timespans[key].endTime - timespans[key].startTime;
|
|
|
|
},
|
|
|
|
|
2015-10-30 19:03:52 +00:00
|
|
|
clear() {
|
2015-06-19 21:59:42 +00:00
|
|
|
timespans = {};
|
2015-10-26 19:50:54 +00:00
|
|
|
extras = {};
|
2015-06-19 21:59:42 +00:00
|
|
|
},
|
|
|
|
|
2015-10-30 19:03:52 +00:00
|
|
|
clearExceptTimespans(keys) {
|
|
|
|
timespans = Object.keys(timespans).reduce(function(previous, key) {
|
|
|
|
if (keys.indexOf(key) !== -1) {
|
|
|
|
previous[key] = timespans[key];
|
|
|
|
}
|
|
|
|
return previous;
|
|
|
|
}, {});
|
|
|
|
extras = {};
|
|
|
|
},
|
|
|
|
|
2015-06-19 21:59:42 +00:00
|
|
|
getTimespans() {
|
|
|
|
return timespans;
|
|
|
|
},
|
|
|
|
|
2015-07-16 21:08:25 +00:00
|
|
|
hasTimespan(key) {
|
|
|
|
return !!timespans[key];
|
|
|
|
},
|
|
|
|
|
2015-06-19 21:59:42 +00:00
|
|
|
logTimespans() {
|
|
|
|
for (var key in timespans) {
|
2015-07-29 17:37:32 +00:00
|
|
|
if (timespans[key].totalTime) {
|
|
|
|
console.log(key + ': ' + timespans[key].totalTime + 'ms');
|
|
|
|
}
|
2015-06-19 21:59:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addTimespans(newTimespans, labels) {
|
|
|
|
for (var i = 0, l = newTimespans.length; i < l; i += 2) {
|
|
|
|
var label = labels[i / 2];
|
|
|
|
PerformanceLogger.addTimespan(
|
|
|
|
label,
|
|
|
|
(newTimespans[i + 1] - newTimespans[i]),
|
|
|
|
label
|
|
|
|
);
|
|
|
|
}
|
2015-10-26 19:50:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setExtra(key, value) {
|
|
|
|
if (extras[key]) {
|
|
|
|
if (__DEV__) {
|
|
|
|
console.log(
|
|
|
|
'PerformanceLogger: Attempting to set an extra that already exists ',
|
|
|
|
key
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
extras[key] = value;
|
|
|
|
},
|
|
|
|
|
|
|
|
getExtras() {
|
|
|
|
return extras;
|
2015-06-19 21:59:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-08 23:57:34 +00:00
|
|
|
BatchedBridge.registerCallableModule(
|
|
|
|
'PerformanceLogger',
|
|
|
|
PerformanceLogger
|
|
|
|
);
|
|
|
|
|
2015-06-19 21:59:42 +00:00
|
|
|
module.exports = PerformanceLogger;
|