Skip to content

Commit 1cf54b5

Browse files
committed
Merge pull request #761 from Martii/Issue-678restoreChunkedMethodology
Restore the "chunked" methodology in `getMeta` Auto-merge
2 parents 5d0788e + 9a09467 commit 1cf54b5

File tree

1 file changed

+26
-28
lines changed

1 file changed

+26
-28
lines changed

controllers/scriptStorage.js

+26-28
Original file line numberDiff line numberDiff line change
@@ -326,55 +326,53 @@ function parseMeta(aParser, aString) {
326326
}
327327
exports.parseMeta = parseMeta;
328328

329-
exports.getMeta = function (aChunks, aCallback) {
329+
exports.getMeta = function (aBufs, aCallback) {
330330
// We need to convert the array of buffers to a string to
331331
// parse the blocks. But strings are memory inefficient compared
332332
// to buffers so we only convert the least number of chunks to
333333
// get the metadata blocks.
334+
var i = 0;
335+
var len = 0;
336+
var str = null;
334337
var parser = null;
335338
var rHeaderContent = null;
336339
var headerContent = null;
337340
var hasUserScriptHeaderContent = false;
338341
var blocksContent = {};
339342
var blocks = {};
340343

341-
if (isDbg) {
342-
console.log('> getMeta() > aChunks.length');
343-
console.log(aChunks.length);
344-
}
344+
for (; i < aBufs.length; ++i) {
345+
// Convert the current Buffer to a `String` and accumulate it's `String` totalLength
346+
len += aBufs[i].toString('utf8').length; // NOTE: Watchpoint
345347

346-
var buf = Buffer.concat(aChunks);
347-
var str = buf.toString('utf8');
348+
// Read from the start of the Buffers to the `String` length end-point
349+
// See also #678
350+
str = Buffer.concat(aBufs, len).toString('utf8');
348351

349-
if (isDbg) {
350-
console.log('> getMeta() > str');
351-
console.log(str);
352-
}
352+
for (parser in parsers) {
353+
rHeaderContent = new RegExp(
354+
'^(?:\\uFEFF)?\/\/ ==' + parser + '==([\\s\\S]*?)^\/\/ ==\/'+ parser + '==', 'm'
355+
);
356+
headerContent = rHeaderContent.exec(str);
357+
if (headerContent && headerContent[1]) {
358+
if (parser === 'UserScript') {
359+
hasUserScriptHeaderContent = true;
360+
}
353361

354-
for (parser in parsers) {
355-
rHeaderContent = new RegExp(
356-
'^(?:\\uFEFF)?\/\/ ==' + parser + '==([\\s\\S]*?)^\/\/ ==\/'+ parser + '==', 'm'
357-
);
358-
headerContent = rHeaderContent.exec(str);
359-
if (headerContent && headerContent[1]) {
360-
if (parser === 'UserScript') {
361-
hasUserScriptHeaderContent = true;
362+
blocksContent[parser] = headerContent[1];
362363
}
363-
364-
blocksContent[parser] = headerContent[1];
365364
}
366-
}
367365

368-
if (hasUserScriptHeaderContent) {
369-
for (parser in parsers) {
370-
if (blocksContent[parser]) {
371-
blocks[parser] = parseMeta(parsers[parser], blocksContent[parser]);
366+
if (hasUserScriptHeaderContent) {
367+
for (parser in parsers) {
368+
if (blocksContent[parser]) {
369+
blocks[parser] = parseMeta(parsers[parser], blocksContent[parser]);
370+
}
372371
}
372+
return aCallback(blocks);
373373
}
374-
return aCallback(blocks);
375374
}
376375

377-
378376
aCallback(null);
379377
};
380378

0 commit comments

Comments
 (0)