@@ -326,55 +326,53 @@ function parseMeta(aParser, aString) {
326
326
}
327
327
exports . parseMeta = parseMeta ;
328
328
329
- exports . getMeta = function ( aChunks , aCallback ) {
329
+ exports . getMeta = function ( aBufs , aCallback ) {
330
330
// We need to convert the array of buffers to a string to
331
331
// parse the blocks. But strings are memory inefficient compared
332
332
// to buffers so we only convert the least number of chunks to
333
333
// get the metadata blocks.
334
+ var i = 0 ;
335
+ var len = 0 ;
336
+ var str = null ;
334
337
var parser = null ;
335
338
var rHeaderContent = null ;
336
339
var headerContent = null ;
337
340
var hasUserScriptHeaderContent = false ;
338
341
var blocksContent = { } ;
339
342
var blocks = { } ;
340
343
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
345
347
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' ) ;
348
351
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
+ }
353
361
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 ] ;
362
363
}
363
-
364
- blocksContent [ parser ] = headerContent [ 1 ] ;
365
364
}
366
- }
367
365
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
+ }
372
371
}
372
+ return aCallback ( blocks ) ;
373
373
}
374
- return aCallback ( blocks ) ;
375
374
}
376
375
377
-
378
376
aCallback ( null ) ;
379
377
} ;
380
378
0 commit comments