1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/benchmark/index.ts

82 lines
2.7 KiB
TypeScript
Raw Normal View History

2019-12-10 17:44:35 +08:00
import {Config} from '../src/common/config/private/Config';
import {ProjectPath} from '../src/backend/ProjectPath';
2020-12-31 04:13:19 +08:00
import {BenchmarkResult, BenchmarkRunner} from './BenchmarkRunner';
2019-12-10 17:44:35 +08:00
import {Utils} from '../src/common/Utils';
2020-12-29 05:08:57 +08:00
import {BMConfig} from './BMConfig';
2019-01-27 07:03:40 +08:00
2020-12-29 05:08:57 +08:00
Config.Server.Media.folder = BMConfig.path;
2019-01-27 07:03:40 +08:00
ProjectPath.reset();
2020-12-31 04:13:19 +08:00
const RUNS = BMConfig.RUNS;
2019-01-27 07:03:40 +08:00
let resultsText = '';
const printLine = (text: string) => {
resultsText += text + '\n';
};
2020-12-31 04:54:07 +08:00
const printHeader = async (statistic: string) => {
2019-01-27 07:03:40 +08:00
const dt = new Date();
printLine('## PiGallery2 v' + require('./../package.json').version +
2019-01-27 12:47:43 +08:00
', ' + Utils.zeroPrefix(dt.getDate(), 2) +
2019-01-27 07:03:40 +08:00
'.' + Utils.zeroPrefix(dt.getMonth() + 1, 2) +
'.' + dt.getFullYear());
2020-12-29 05:08:57 +08:00
printLine('**System**: ' + BMConfig.system);
2020-12-31 04:54:07 +08:00
printLine('\n**Gallery**: ' + statistic + '\n');
2019-01-27 07:03:40 +08:00
};
const printTableHeader = () => {
2020-12-31 19:35:28 +08:00
printLine('| Action | Sub action | Average Duration | Result |');
printLine('|:------:|:----------:|:----------------:|:-------:|');
2019-01-27 07:03:40 +08:00
};
2020-12-31 19:35:28 +08:00
const printResult = (result: BenchmarkResult, isSubResult = false) => {
2020-12-31 04:13:19 +08:00
console.log('benchmarked: ' + result.name);
2019-01-27 07:03:40 +08:00
let details = '-';
if (result.items) {
details = 'items: ' + result.items;
}
2020-12-31 04:13:19 +08:00
if (result.contentWrapper) {
if (result.contentWrapper.directory) {
details = 'media: ' + result.contentWrapper.directory.media.length +
2020-12-31 21:26:45 +08:00
', directories: ' + result.contentWrapper.directory.directories.length;
2020-12-31 04:13:19 +08:00
} else {
details = 'media: ' + result.contentWrapper.searchResult.media.length +
2020-12-31 21:26:45 +08:00
', directories: ' + result.contentWrapper.searchResult.directories.length;
2020-12-31 04:13:19 +08:00
}
}
if (isSubResult) {
2020-12-31 19:35:28 +08:00
printLine('| | ' + result.name + ' | ' + (result.duration).toFixed(1) + ' ms | ' + details + ' |');
2020-12-31 04:13:19 +08:00
} else {
2020-12-31 19:35:28 +08:00
printLine('| **' + result.name + '** | | **' + (result.duration).toFixed(1) + ' ms** | **' + details + '** |');
2020-12-31 04:13:19 +08:00
}
if (result.subBenchmarks && result.subBenchmarks.length > 1) {
for (const item of result.subBenchmarks) {
printResult(item, true);
2020-12-31 04:13:19 +08:00
}
2019-01-27 07:03:40 +08:00
}
};
const run = async () => {
2020-12-31 04:13:19 +08:00
console.log('Running, RUNS:' + RUNS);
2019-01-27 07:28:04 +08:00
const start = Date.now();
2020-12-31 04:13:19 +08:00
const bm = new BenchmarkRunner(RUNS);
2019-01-27 07:03:40 +08:00
// header
2020-12-31 04:54:07 +08:00
await printHeader(await bm.getStatistic());
2019-01-27 07:03:40 +08:00
printTableHeader();
2020-12-31 04:13:19 +08:00
printResult(await bm.bmScanDirectory());
printResult(await bm.bmSaveDirectory());
printResult(await bm.bmListDirectory());
printResult(await bm.bmListPersons());
2020-12-31 19:35:28 +08:00
(await bm.bmAllSearch('a')).forEach(res => printResult(res.result));
printResult(await bm.bmAutocomplete('a'));
2020-12-31 04:13:19 +08:00
printLine('*Measurements run ' + RUNS + ' times and an average was calculated.');
2019-01-27 07:03:40 +08:00
console.log(resultsText);
2019-01-27 07:28:04 +08:00
console.log('run for : ' + ((Date.now() - start)).toFixed(1) + 'ms');
2019-01-27 07:03:40 +08:00
};
2020-12-31 04:13:19 +08:00
run().then(console.log).catch(console.error);
2019-01-27 07:03:40 +08:00