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

Add show-memory-usage script #32

Merged
merged 1 commit into from
Sep 4, 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 .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
coverage/
*.heapsnapshot
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
Copy link
Contributor Author

@mjethani mjethani Sep 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the .npmignore file is independent of the .gitignore file and replaces the latter as far as npm is concerned.

This file must contain anything that is not to be published.

coverage/
scripts/
tests/
*.heapsnapshot
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "publicsuffixlist.js",
"type": "module",
"scripts": {
"show-memory-usage": "node --expose-gc scripts/show-memory-usage.js",
"test": "c8 --include=publicsuffixlist.js mocha --experimental-vm-modules --no-warnings tests --check-leaks"
},
"repository": {
Expand Down
91 changes: 91 additions & 0 deletions scripts/show-memory-usage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*******************************************************************************

publicsuffixlist.js - an efficient javascript implementation to deal with
Mozilla Foundation's Public Suffix List <http://publicsuffix.org/list/>

Copyright (C) 2013-present Raymond Hill

License: pick the one which suits you:
GPL v3 see <https://www.gnu.org/licenses/gpl.html>
APL v2 see <http://www.apache.org/licenses/LICENSE-2.0>

*/

import { createWriteStream, readFileSync } from 'fs';
import { domainToASCII } from 'url';
import v8 from 'v8';

const content = readFileSync('./docs/public_suffix_list.dat', 'utf8');

let publicSuffixList = null;

function wait(milliseconds) {
return new Promise(resolve => {
setTimeout(resolve, milliseconds);
});
}

function printMemoryUsage(label, values) {
console.log(label);
console.log(` * Heap used: ${Math.ceil(values.heapUsed / 1024).toLocaleString()} KiB`);
console.log(` * Heap total: ${Math.ceil(values.heapTotal / 1024).toLocaleString()} KiB`);
console.log();
}

async function memoryUsage() {
return process.memoryUsage();
}

async function runGC() {
gc();

await wait(1000);
}

function saveHeapSnapshot(name) {
const snapshotStream = v8.getHeapSnapshot();
const fileStream = createWriteStream(`${name}.heapsnapshot`);
snapshotStream.pipe(fileStream);
}

(async function () {
const now = Date.now();

await runGC();

if ( process.argv[2] === '--heap-snapshot' ) {
saveHeapSnapshot(`${now}--initial`);
}

printMemoryUsage('Initial:', await memoryUsage());

publicSuffixList = (await import('../publicsuffixlist.js')).default;

printMemoryUsage('On import():', await memoryUsage());

publicSuffixList.parse(content, domainToASCII);

printMemoryUsage('On parse():', await memoryUsage());

publicSuffixList.getDomain('example.com');

printMemoryUsage(`On getDomain('example.com'):`, await memoryUsage());

publicSuffixList.getDomain('example.s3-website.us-east-2.amazonaws.com');

printMemoryUsage(`On getDomain('example.s3-website.us-east-2.amazonaws.com'):`,
await memoryUsage());

publicSuffixList.getDomain('this.is.a.very.long.hostname.that.does.not.have.a.public.suffix');

printMemoryUsage(`On getDomain('this.is.a.very.long.hostname.that.does.not.have.a.public.suffix'):`,
await memoryUsage());

await runGC();

if ( process.argv[2] === '--heap-snapshot' ) {
saveHeapSnapshot(`${now}--after-gc`);
}

printMemoryUsage('After GC:', await memoryUsage());
})();