@@ -442,27 +442,37 @@ function allocate(size) {
442
442
}
443
443
444
444
function fromStringFast ( string , ops ) {
445
- const length = ops . byteLength ( string ) ;
445
+ const stringLength = string . length
446
446
447
- if ( length >= ( Buffer . poolSize >>> 1 ) )
447
+ if ( stringLength > maxLength )
448
+ return createFromString ( string , ops . encodingVal ) ;
449
+
450
+ let length = stringLength * 4 ; // max utf8 byte length
451
+
452
+ if ( length > Buffer . poolSize )
453
+ length = ops . byteLength ( string ) ;
454
+
455
+ if ( length > ( Buffer . poolSize >>> 1 ) )
448
456
return createFromString ( string , ops . encodingVal ) ;
449
457
450
458
if ( length > ( poolSize - poolOffset ) )
451
459
createPool ( ) ;
460
+
452
461
let b = new FastBuffer ( allocPool , poolOffset , length ) ;
453
462
const actual = ops . write ( b , string , 0 , length ) ;
454
463
if ( actual !== length ) {
455
- // byteLength() may overestimate. That's a rare case, though.
456
464
b = new FastBuffer ( allocPool , poolOffset , actual ) ;
457
465
}
466
+
458
467
poolOffset += actual ;
459
468
alignPool ( ) ;
469
+
460
470
return b ;
461
471
}
462
472
463
473
function fromString ( string , encoding ) {
464
474
let ops ;
465
- if ( typeof encoding !== 'string' || encoding . length === 0 ) {
475
+ if ( typeof encoding !== 'string' || encoding === 'utf8' || encoding . length === 0 ) {
466
476
if ( string . length === 0 )
467
477
return new FastBuffer ( ) ;
468
478
ops = encodingOps . utf8 ;
0 commit comments