Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit d3654ee

Browse files
committed
fix: Make takeHeapSnapshot() work
Instead of treating the total item count like an expected byte length, wait for the JSON data to end before considering the heap snapshot finished. Fixes: #56
1 parent a0b38c0 commit d3654ee

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

lib/internal/inspect_repl.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const Path = require('path');
2525
const Repl = require('repl');
2626
const util = require('util');
2727
const vm = require('vm');
28+
const JSONSplitStream = require('json-split-stream');
2829

2930
const debuglog = util.debuglog('inspect');
3031

@@ -900,10 +901,10 @@ function createRepl(inspector) {
900901
return new Promise((resolve, reject) => {
901902
const absoluteFile = Path.resolve(filename);
902903
const writer = FS.createWriteStream(absoluteFile);
903-
let totalSize;
904+
const jsonChunker = new JSONSplitStream({ storeData: false });
905+
jsonChunker.on('finishedJSON', onFinishedJSON);
904906
let sizeWritten = 0;
905907
function onProgress({ done, total, finished }) {
906-
totalSize = total;
907908
if (finished) {
908909
print('Heap snaphost prepared.');
909910
} else {
@@ -912,14 +913,16 @@ function createRepl(inspector) {
912913
}
913914
function onChunk({ chunk }) {
914915
sizeWritten += chunk.length;
915-
writer.write(chunk);
916-
print(`Writing snapshot: ${sizeWritten}/${totalSize}`, true);
917-
if (sizeWritten >= totalSize) {
918-
writer.end();
919-
teardown();
920-
print(`Wrote snapshot: ${absoluteFile}`);
921-
resolve();
922-
}
916+
writer.write(chunk, () => {
917+
print(`Writing snapshot: ${sizeWritten} bytes`, true);
918+
jsonChunker.write(chunk);
919+
});
920+
}
921+
function onFinishedJSON() {
922+
writer.end();
923+
teardown();
924+
print(`Wrote snapshot: ${absoluteFile} (${sizeWritten} bytes)`);
925+
resolve();
923926
}
924927
function teardown() {
925928
HeapProfiler.removeListener(

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
]
2626
}
2727
},
28-
"dependencies": {},
28+
"dependencies": {
29+
"json-split-stream": "^1.1.0"
30+
},
2931
"devDependencies": {
3032
"eslint": "^3.10.2",
3133
"nlm": "^3.0.0",

0 commit comments

Comments
 (0)