Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TRIVIAL: add fdir to product benchmark #322

Merged
merged 1 commit into from
Jun 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"eslint-config-mrmlnc": "^1.1.0",
"execa": "^2.0.4",
"fast-glob": "^3.0.4",
"fdir": "^5.1.0",
"glob": "^7.1.4",
"is-ci": "^2.0.0",
"log-update": "^4.0.0",
Expand Down
26 changes: 26 additions & 0 deletions src/benchmark/suites/product/async/fdir.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import * as path from 'path';

import { fdir as GlobBuilder, PathsOutput } from 'fdir';

import * as utils from '../../../utils';

const CWD = path.join(process.cwd(), process.env.BENCHMARK_BASE_DIR as string);
const PATTERN = process.env.BENCHMARK_PATTERN as string;

const fdir = new GlobBuilder()
.glob(PATTERN)
.crawl(CWD);

const timeStart = utils.timeStart();

fdir.withPromise()
.then((matches) => {
const memory = utils.getMemory();
const time = utils.timeEnd(timeStart);
const measures = utils.formatMeasures((matches as PathsOutput).length, time, memory);

console.info(measures);
})
.catch(() => {
process.exit(0);
});
25 changes: 25 additions & 0 deletions src/benchmark/suites/product/sync/fdir.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import * as path from 'path';

import { fdir as GlobBuilder, PathsOutput } from 'fdir';

import * as utils from '../../../utils';

const CWD = path.join(process.cwd(), process.env.BENCHMARK_BASE_DIR as string);
const PATTERN = process.env.BENCHMARK_PATTERN as string;

const glob = new GlobBuilder()
.glob(PATTERN)
.crawl(CWD);

const timeStart = utils.timeStart();

try {
const matches = glob.sync() as PathsOutput;
const memory = utils.getMemory();
const time = utils.timeEnd(timeStart);
const measures = utils.formatMeasures(matches.length, time, memory);

console.info(measures);
} catch {
process.exit(0);
}