1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/website/app.ts

302 lines
7.8 KiB
TypeScript
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");
}
export function createProxyColumns(data) {
return createColumns(data, "req_per_sec_proxy");
}
2018-10-15 16:44:35 -04:00
export function createReqPerSecColumns(data) {
return createColumns(data, "req_per_sec");
}
2019-03-24 23:36:27 -04:00
export function createMaxLatencyColumns(data) {
return createColumns(data, "max_latency");
}
2019-04-16 13:57:05 -04:00
export function createMaxMemoryColumns(data) {
return createColumns(data, "max_memory");
}
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,
label: yLabel,
tick: null
2018-10-20 12:43:40 -04:00
};
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 || col[i] === 0) {
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 benchmark 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;
}
return drawChartsFromBenchmarkData(dataUrl);
}
const proxyFields = [
"req_per_sec"
//"max_latency"
];
function extractProxyFields(data) {
for (const row of data) {
for (const field of proxyFields) {
const d = row[field];
if (!d) continue;
const name = field + "_proxy";
const newField = {};
row[name] = newField;
for (const k of Object.getOwnPropertyNames(d)) {
if (k.includes("_proxy")) {
const v = d[k];
delete d[k];
newField[k] = v;
}
}
}
}
}
/**
* 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
// hack to extract proxy fields from req/s fields
extractProxyFields(data);
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);
const proxyColumns = createProxyColumns(data);
2019-03-24 23:36:27 -04:00
const maxLatencyColumns = createMaxLatencyColumns(data);
2019-04-16 13:57:05 -04:00
const maxMemoryColumns = createMaxMemoryColumns(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("#proxy-req-per-sec-chart", proxyColumns, "req/sec");
2019-03-24 23:36:27 -04:00
gen("#max-latency-chart", maxLatencyColumns, "milliseconds", logScale);
2019-04-16 13:57:05 -04:00
gen("#max-memory-chart", maxMemoryColumns, "megabytes", formatMB);
gen("#binary-size-chart", binarySizeColumns, "megabytes", formatMB);
gen("#thread-count-chart", threadCountColumns, "threads");
gen("#syscall-count-chart", syscallCountColumns, "syscalls");
}
export function main(): void {
window["chartWidth"] = 800;
const overlay = window["document"].getElementById("spinner-overlay");
function showSpinner() {
overlay.style.display = "block";
}
function hideSpinner() {
overlay.style.display = "none";
}
function updateCharts() {
const u = window.location.hash.match("all") ? "./data.json" : "recent.json";
showSpinner();
drawCharts(u)
.then(hideSpinner)
.catch(hideSpinner);
}
updateCharts();
window["onhashchange"] = updateCharts;
}