0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/website/app.js

232 lines
6 KiB
JavaScript
Raw Normal View History

2019-01-21 14:03:30 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-09-21 12:06:59 -04:00
// How much to multiply time values in order to process log graphs properly.
const TimeScaleFactor = 10000;
2018-09-24 11:31:14 -04:00
export async function getJson(path) {
return (await fetch(path)).json();
}
2018-09-21 12:06:59 -04:00
2018-10-11 16:55:22 -04:00
function getBenchmarkVarieties(data, benchmarkName) {
// Look at last sha hash.
const last = data[data.length - 1];
return Object.keys(last[benchmarkName]);
}
export function createColumns(data, benchmarkName) {
const varieties = getBenchmarkVarieties(data, benchmarkName);
return varieties.map(variety => [
variety,
2018-09-21 12:06:59 -04:00
...data.map(d => {
2018-10-11 16:55:22 -04:00
if (d[benchmarkName] != null) {
if (d[benchmarkName][variety] != null) {
const v = d[benchmarkName][variety];
if (benchmarkName == "benchmark") {
const meanValue = v ? v.mean : 0;
return meanValue || null;
} else {
return v;
}
}
}
return null;
2018-09-21 12:06:59 -04:00
})
]);
2018-09-24 11:31:14 -04:00
}
2018-10-11 16:55:22 -04:00
export function createExecTimeColumns(data) {
return createColumns(data, "benchmark");
}
export function createThroughputColumns(data) {
return createColumns(data, "throughput");
}
2018-10-15 16:44:35 -04:00
export function createReqPerSecColumns(data) {
return createColumns(data, "req_per_sec");
}
2018-09-24 11:31:14 -04:00
export function createBinarySizeColumns(data) {
const propName = "binary_size";
const binarySizeNames = Object.keys(data[data.length - 1][propName]);
2018-09-25 20:08:09 -04:00
return binarySizeNames.map(name => [
name,
...data.map(d => {
const binarySizeData = d["binary_size"];
switch (typeof binarySizeData) {
case "number": // legacy implementation
return name === "deno" ? binarySizeData : 0;
default:
if (!binarySizeData) {
2018-10-03 05:21:26 -04:00
return null;
2018-09-25 20:08:09 -04:00
}
2018-10-03 05:21:26 -04:00
return binarySizeData[name] || null;
2018-09-25 20:08:09 -04:00
}
})
]);
2018-09-24 11:31:14 -04:00
}
2018-09-24 18:12:52 -04:00
export function createThreadCountColumns(data) {
const propName = "thread_count";
const threadCountNames = Object.keys(data[data.length - 1][propName]);
2018-09-24 18:12:52 -04:00
return threadCountNames.map(name => [
name,
...data.map(d => {
const threadCountData = d[propName];
2018-09-24 18:12:52 -04:00
if (!threadCountData) {
2018-10-03 05:21:26 -04:00
return null;
2018-09-24 18:12:52 -04:00
}
2018-10-03 05:21:26 -04:00
return threadCountData[name] || null;
2018-09-24 18:12:52 -04:00
})
]);
}
export function createSyscallCountColumns(data) {
const propName = "syscall_count";
const syscallCountNames = Object.keys(data[data.length - 1][propName]);
return syscallCountNames.map(name => [
name,
...data.map(d => {
const syscallCountData = d[propName];
if (!syscallCountData) {
2018-10-03 05:21:26 -04:00
return null;
}
2018-10-03 05:21:26 -04:00
return syscallCountData[name] || null;
})
]);
}
2018-09-24 11:31:14 -04:00
export function createSha1List(data) {
return data.map(d => d.sha1);
}
export function formatMB(bytes) {
return (bytes / (1024 * 1024)).toFixed(2);
}
export function formatReqSec(reqPerSec) {
return reqPerSec / 1000;
2018-09-24 11:31:14 -04:00
}
2018-09-21 12:06:59 -04:00
/**
* @param {string} id The id of dom element
2018-10-20 12:43:40 -04:00
* @param {string[]} categories categories for x-axis values
* @param {any[][]} columns The columns data
2018-10-20 12:43:40 -04:00
* @param {function} onclick action on clicking nodes of chart
* @param {string} yLabel label of y axis
* @param {function} yTickFormat formatter of y axis ticks
*/
function generate(
2018-10-20 12:43:40 -04:00
id,
categories,
columns,
onclick,
yLabel = "",
yTickFormat = null
) {
const yAxis = {
padding: { bottom: 0 },
2019-02-11 17:41:13 -05:00
min: 0,
2018-10-20 12:43:40 -04:00
label: yLabel
};
if (yTickFormat) {
yAxis.tick = {
2018-10-20 12:43:40 -04:00
format: yTickFormat
};
if (yTickFormat == logScale) {
2019-02-11 17:41:13 -05:00
delete yAxis.min;
for (let col of columns) {
for (let i = 1; i < col.length; i++) {
if (col[i] == null) {
continue;
}
col[i] = Math.log10(col[i] * TimeScaleFactor);
}
}
}
2018-10-20 12:43:40 -04:00
}
2018-10-24 15:26:21 -04:00
// @ts-ignore
2018-10-18 06:23:26 -04:00
c3.generate({
bindto: id,
data: {
columns,
onclick
},
axis: {
x: {
type: "category",
show: false,
categories
},
y: yAxis
2018-10-18 06:23:26 -04:00
}
});
}
function logScale(t) {
return (Math.pow(10, t) / TimeScaleFactor).toFixed(4);
}
function formatSecsAsMins(t) {
// TODO use d3.round()
2018-09-26 20:26:34 -04:00
const a = t % 60;
const min = Math.floor(t / 60);
return a < 30 ? min : min + 1;
2018-09-26 20:26:34 -04:00
}
/**
* @param dataUrl The url of benchramk data json.
*/
export function drawCharts(dataUrl) {
// TODO Using window["location"]["hostname"] instead of
// window.location.hostname because when deno runs app_test.js it gets a type
// error here, not knowing about window.location. Ideally Deno would skip
// type check entirely on JS files.
if (window["location"]["hostname"] != "deno.github.io") {
dataUrl = "https://denoland.github.io/deno/" + dataUrl;
}
drawChartsFromBenchmarkData(dataUrl);
}
/**
* Draws the charts from the benchmark data stored in gh-pages branch.
*/
export async function drawChartsFromBenchmarkData(dataUrl) {
const data = await getJson(dataUrl);
2018-09-24 11:31:14 -04:00
const execTimeColumns = createExecTimeColumns(data);
2018-10-11 16:55:22 -04:00
const throughputColumns = createThroughputColumns(data);
2018-10-15 16:44:35 -04:00
const reqPerSecColumns = createReqPerSecColumns(data);
2018-09-24 11:31:14 -04:00
const binarySizeColumns = createBinarySizeColumns(data);
2018-09-24 18:12:52 -04:00
const threadCountColumns = createThreadCountColumns(data);
const syscallCountColumns = createSyscallCountColumns(data);
2018-09-24 11:31:14 -04:00
const sha1List = createSha1List(data);
2018-09-26 20:41:23 -04:00
const sha1ShortList = sha1List.map(sha1 => sha1.substring(0, 6));
const viewCommitOnClick = _sha1List => d => {
2018-10-24 15:26:21 -04:00
// @ts-ignore
window.open(
`https://github.com/denoland/deno/commit/${_sha1List[d["index"]]}`
);
};
2018-10-20 12:43:40 -04:00
function gen(id, columns, yLabel = "", yTickFormat = null) {
generate(
2018-10-20 12:43:40 -04:00
id,
sha1ShortList,
columns,
viewCommitOnClick(sha1List),
yLabel,
yTickFormat
);
2018-10-18 06:23:26 -04:00
}
gen("#exec-time-chart", execTimeColumns, "seconds", logScale);
2019-02-11 17:41:13 -05:00
gen("#throughput-chart", throughputColumns, "seconds", logScale);
gen("#req-per-sec-chart", reqPerSecColumns, "1000 req/sec", formatReqSec);
gen("#binary-size-chart", binarySizeColumns, "megabytes", formatMB);
gen("#thread-count-chart", threadCountColumns, "threads");
gen("#syscall-count-chart", syscallCountColumns, "syscalls");
}