forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
940 lines (887 loc) · 28.8 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* eslint-disable max-len, no-restricted-syntax, no-invalid-this, max-lines */
'use strict';
// MODULES //
var isNonNegativeInteger = require( '@stdlib/assert/is-nonnegative-integer' ).isPrimitive;
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
var isCollection = require( '@stdlib/assert/is-collection' );
var isArrayBuffer = require( '@stdlib/assert/is-arraybuffer' );
var isObject = require( '@stdlib/assert/is-object' );
var isFunction = require( '@stdlib/assert/is-function' );
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
var isByteOrder = require( '@stdlib/array/base/assert/is-byte-order' );
var lowercase = require( '@stdlib/string/base/lowercase' );
var hasIteratorSymbolSupport = require( '@stdlib/assert/has-iterator-symbol-support' );
var ITERATOR_SYMBOL = require( '@stdlib/symbol/iterator' );
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
var isPrototypeOf = require( '@stdlib/assert/is-prototype-of' ); // eslint-disable-line stdlib/no-redeclare
var setReadOnlyAccessor = require( '@stdlib/utils/define-nonenumerable-read-only-accessor' );
var ArrayBuffer = require( '@stdlib/array/buffer' );
var DataView = require( '@stdlib/array/dataview' );
var getter = require( '@stdlib/array/base/getter' );
var accessorGetter = require( '@stdlib/array/base/accessor-getter' );
var contains = require( '@stdlib/array/base/assert/contains' ).factory;
var bytesPerElement = require( '@stdlib/ndarray/base/bytes-per-element' );
var capitalize = require( '@stdlib/string/base/capitalize' );
var format = require( '@stdlib/string/format' );
var fromIterator = require( './from_iterator.js' );
var fromIteratorMap = require( './from_iterator_map.js' );
// VARIABLES //
var HAS_ITERATOR_SYMBOL = hasIteratorSymbolSupport();
var LITTLE_ENDIAN = 'little-endian';
var BIG_ENDIAN = 'big-endian';
var DTYPES = [ 'float64', 'float32', 'int32', 'int16', 'uint32', 'uint16' ];
var DTYPE2SET = {
'float64': 'setFloat64',
'float32': 'setFloat32',
'int32': 'setInt32',
'int16': 'setInt16',
'uint32': 'setUint32',
'uint16': 'setUint16'
};
var DTYPE2GET = {
'float64': 'getFloat64',
'float32': 'getFloat32',
'int32': 'getInt32',
'int16': 'getInt16',
'uint32': 'getUint32',
'uint16': 'getUint16'
};
var CHAR2ARTICLE = {
'c': 'a',
'f': 'a',
'i': 'an',
'u': 'a',
'b': 'a'
};
var isDataType = contains( DTYPES );
// FUNCTIONS //
/**
* Normalizes a byte order value.
*
* @private
* @param {*} value - byte order
* @returns {(string|null)} normalized byte order
*/
function byteOrder( value ) {
return ( isString( value ) ) ? lowercase( value ) : null;
}
/**
* Tests whether a provided byte order is little-endian byte order.
*
* @private
* @param {string} value - byte order
* @returns {boolean} boolean indicating whether a byte order is little-endian byte order
*/
function isLittleEndian( value ) {
return ( value === LITTLE_ENDIAN );
}
/**
* Resolves a byte order string from a boolean flag.
*
* @private
* @param {boolean} isLE - flag indicating whether an array is little-endian
* @returns {string} resolved byte order
*/
function flag2byteOrder( isLE ) {
return ( isLE ) ? LITTLE_ENDIAN : BIG_ENDIAN;
}
/**
* Converts a data type string to a constructor name.
*
* @private
* @param {string} dtype - data type
* @returns {string} constructor name
*
* @example
* var n = dtype2ctor( 'float64' );
* // returns 'Float64ArrayFE'
*
* @example
* var n = dtype2ctor( 'int32' );
* // returns 'Int32ArrayFE'
*/
function dtype2ctor( dtype ) {
return capitalize( dtype ) + 'ArrayFE';
}
// MAIN //
/**
* Returns a typed array constructor for creating typed arrays having a specified byte order.
*
* @param {string} dtype - typed array data type
* @throws {TypeError} first argument must be a supported data type
* @returns {Function} typed array constructor
*
* @example
* var Float64ArrayFE = factory( 'float64' );
*
* var arr = new Float64ArrayFE( 'little-endian' );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 0
*
* @example
* var Float64ArrayFE = factory( 'float64' );
*
* var arr = new Float64ArrayFE( 'little-endian', 2 );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 2
*
* @example
* var Float64ArrayFE = factory( 'float64' );
*
* var arr = new Float64ArrayFE( 'little-endian', [ 1.0, 2.0 ] );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 2
*
* @example
* var ArrayBuffer = require( '@stdlib/array/buffer' );
*
* var Float64ArrayFE = factory( 'float64' );
*
* var buf = new ArrayBuffer( 16 );
* var arr = new Float64ArrayFE( 'little-endian', buf );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 2
*
* @example
* var ArrayBuffer = require( '@stdlib/array/buffer' );
*
* var Float64ArrayFE = factory( 'float64' );
*
* var buf = new ArrayBuffer( 16 );
* var arr = new Float64ArrayFE( 'little-endian', buf, 8 );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 1
*
* @example
* var ArrayBuffer = require( '@stdlib/array/buffer' );
*
* var Float64ArrayFE = factory( 'float64' );
*
* var buf = new ArrayBuffer( 32 );
* var arr = new Float64ArrayFE( 'little-endian', buf, 8, 2 );
* // returns <Float64ArrayFE>
*
* var len = arr.length;
* // returns 2
*/
function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdlib/jsdoc-require-throws-tags
var BYTES_PER_ELEMENT;
var CTOR_NAME;
var GETTER;
var SETTER;
if ( !isDataType( dtype ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a supported data type. Value: `%s`.', dtype ) );
}
BYTES_PER_ELEMENT = bytesPerElement( dtype );
CTOR_NAME = dtype2ctor( dtype );
GETTER = DTYPE2GET[ dtype ];
SETTER = DTYPE2SET[ dtype ];
/**
* Typed array constructor which returns a typed array representing an array of values in a specified byte order.
*
* @private
* @constructor
* @param {string} endianness - byte order
* @param {(NonNegativeInteger|Collection|ArrayBuffer|Iterable)} [arg] - length, typed array, array-like object, buffer, or an iterable
* @param {NonNegativeInteger} [byteOffset=0] - byte offset
* @param {NonNegativeInteger} [length] - view length
* @throws {TypeError} first argument must be a supported byte order
* @throws {TypeError} if provided only two arguments, the second argument must be a valid argument
* @throws {TypeError} byte offset must be a nonnegative integer
* @throws {RangeError} must provide sufficient memory to accommodate byte offset and view length requirements
* @returns {TypedArray} typed array instance
*/
function TypedArray() {
var byteOffset;
var endianness;
var nargs;
var isLE;
var buf;
var len;
var arg;
var tmp;
nargs = arguments.length;
if ( !(this instanceof TypedArray) ) {
if ( nargs < 2 ) {
return new TypedArray( arguments[0] );
}
if ( nargs === 2 ) {
return new TypedArray( arguments[0], arguments[1] );
}
if ( nargs === 3 ) {
return new TypedArray( arguments[0], arguments[1], arguments[2] );
}
return new TypedArray( arguments[0], arguments[1], arguments[2], arguments[3] );
}
endianness = byteOrder( arguments[ 0 ] );
if ( endianness === null || !isByteOrder( endianness ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a supported byte order. Value: `%s`.', arguments[ 0 ] ) );
}
isLE = isLittleEndian( endianness );
nargs -= 1;
// Create the underlying data buffer...
if ( nargs === 0 ) {
buf = new DataView( new ArrayBuffer( 0 ) ); // backward-compatibility
} else if ( nargs === 1 ) {
arg = arguments[ nargs ];
if ( isNonNegativeInteger( arg ) ) {
buf = new DataView( new ArrayBuffer( arg*BYTES_PER_ELEMENT ) );
} else if ( isCollection( arg ) ) {
buf = fromArray( new DataView( new ArrayBuffer( arg.length*BYTES_PER_ELEMENT ) ), arg, isLE );
} else if ( isArrayBuffer( arg ) ) {
buf = new DataView( arg );
} else if ( isObject( arg ) ) {
if ( HAS_ITERATOR_SYMBOL === false ) {
throw new TypeError( format( 'invalid argument. Environment lacks Symbol.iterator support. Must provide a length, ArrayBuffer, typed array, or array-like object. Value: `%s`.', arg ) );
}
if ( !isFunction( arg[ ITERATOR_SYMBOL ] ) ) {
throw new TypeError( format( 'invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.', arg ) );
}
buf = arg[ ITERATOR_SYMBOL ]();
if ( !isFunction( buf.next ) ) {
throw new TypeError( format( 'invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.', arg ) );
}
tmp = fromIterator( buf );
buf = fromArray( new DataView( new ArrayBuffer( tmp.length*BYTES_PER_ELEMENT ) ), tmp, isLE );
} else {
throw new TypeError( format( 'invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.', arg ) );
}
} else {
buf = arguments[ 1 ];
if ( !isArrayBuffer( buf ) ) {
throw new TypeError( format( 'invalid argument. Must provide an ArrayBuffer. Value: `%s`.', buf ) );
}
byteOffset = arguments[ 2 ];
if ( !isNonNegativeInteger( byteOffset ) ) {
throw new TypeError( format( 'invalid argument. Byte offset must be a nonnegative integer. Value: `%s`.', byteOffset ) );
}
if ( nargs === 2 ) {
buf = new DataView( buf, byteOffset );
} else {
len = arguments[ 3 ];
if ( !isNonNegativeInteger( len ) ) {
throw new TypeError( format( 'invalid argument. Length must be a nonnegative integer. Value: `%s`.', len ) );
}
len *= BYTES_PER_ELEMENT;
if ( len > (buf.byteLength-byteOffset) ) {
throw new RangeError( format( 'invalid arguments. ArrayBuffer has insufficient capacity. Either decrease the array length or provide a bigger buffer. Minimum capacity: `%u`.', len ) );
}
buf = new DataView( buf, byteOffset, len );
}
}
setReadOnly( this, '_buffer', buf );
setReadOnly( this, '_length', buf.byteLength/BYTES_PER_ELEMENT );
setReadOnly( this, '_isLE', isLE );
return this;
}
/**
* Size (in bytes) of each array element.
*
* @private
* @name BYTES_PER_ELEMENT
* @memberof TypedArray
* @readonly
* @type {PositiveInteger}
*/
setReadOnly( TypedArray, 'BYTES_PER_ELEMENT', BYTES_PER_ELEMENT );
/**
* Constructor name.
*
* @private
* @name name
* @memberof TypedArray
* @readonly
* @type {string}
*/
setReadOnly( TypedArray, 'name', CTOR_NAME );
/**
* Creates a new typed array from an array-like object or an iterable.
*
* @private
* @name from
* @memberof TypedArray
* @type {Function}
* @param {string} endianness - byte order
* @param {(Collection|Iterable)} src - array-like object or iterable
* @param {Function} [clbk] - callback to invoke for each source element
* @param {*} [thisArg] - context
* @throws {TypeError} `this` context must be a constructor
* @throws {TypeError} `this` must be a typed array constructor
* @throws {TypeError} first argument must be a supported byte order
* @throws {TypeError} second argument must be an array-like object or an iterable
* @throws {TypeError} third argument must be a function
* @returns {TypedArray} typed array instance
*/
setReadOnly( TypedArray, 'from', function from( endianness, src ) {
var thisArg;
var order;
var nargs;
var clbk;
var isLE;
var out;
var buf;
var tmp;
var get;
var len;
var i;
if ( !isFunction( this ) ) {
throw new TypeError( 'invalid invocation. `this` context must be a constructor.' );
}
if ( !isTypedArrayConstructor( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
order = byteOrder( endianness );
if ( order === null || !isByteOrder( order ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a supported byte order. Value: `%s`.', endianness ) );
}
isLE = isLittleEndian( order );
nargs = arguments.length;
if ( nargs > 2 ) {
clbk = arguments[ 2 ];
if ( !isFunction( clbk ) ) {
throw new TypeError( format( 'invalid argument. Third argument must be a function. Value: `%s`.', clbk ) );
}
if ( nargs > 3 ) {
thisArg = arguments[ 3 ];
}
}
if ( isCollection( src ) ) {
if ( clbk ) {
len = src.length;
if ( src.get && src.set ) {
get = accessorGetter( 'default' );
} else {
get = getter( 'default' );
}
out = new this( order, len );
buf = out._buffer; // eslint-disable-line no-underscore-dangle
for ( i = 0; i < len; i++ ) {
buf[ SETTER ]( i*BYTES_PER_ELEMENT, clbk.call( thisArg, get( src, i ), i ), isLE );
}
return out;
}
return new this( order, src );
}
if ( isObject( src ) && HAS_ITERATOR_SYMBOL && isFunction( src[ ITERATOR_SYMBOL ] ) ) {
buf = src[ ITERATOR_SYMBOL ]();
if ( !isFunction( buf.next ) ) {
throw new TypeError( format( 'invalid argument. Second argument must be an array-like object or an iterable. Value: `%s`.', src ) );
}
if ( clbk ) {
tmp = fromIteratorMap( buf, clbk, thisArg );
} else {
tmp = fromIterator( buf );
}
len = tmp.length;
out = new this( order, len );
buf = out._buffer; // eslint-disable-line no-underscore-dangle
for ( i = 0; i < len; i++ ) {
buf[ SETTER ]( i*BYTES_PER_ELEMENT, tmp[ i ], isLE );
}
return out;
}
throw new TypeError( format( 'invalid argument. Second argument must be an array-like object or an iterable. Value: `%s`.', src ) );
});
/**
* Creates a new typed array from a variable number of arguments.
*
* @private
* @name of
* @memberof TypedArray
* @type {Function}
* @param {string} endianness - byte order
* @param {...*} element - array elements
* @throws {TypeError} `this` context must be a constructor
* @throws {TypeError} `this` must be a typed array constructor
* @throws {TypeError} first argument must be a supported byte order
* @returns {TypedArray} typed array instance
*/
setReadOnly( TypedArray, 'of', function of( endianness ) {
var order;
var args;
var i;
if ( !isFunction( this ) ) {
throw new TypeError( 'invalid invocation. `this` context must be a constructor.' );
}
if ( !isTypedArrayConstructor( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
order = byteOrder( endianness );
if ( order === null || !isByteOrder( order ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a supported byte order. Value: `%s`.', endianness ) );
}
args = [];
for ( i = 1; i < arguments.length; i++ ) {
args.push( arguments[ i ] );
}
return new this( order, args );
});
/**
* Returns an array element located at integer position (index) `i`, with support for both nonnegative and negative integer indices.
*
* @private
* @name at
* @memberof TypedArray.prototype
* @type {Function}
* @param {integer} idx - element index
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} must provide an integer
* @returns {(*|void)} array element
*/
setReadOnly( TypedArray.prototype, 'at', function at( idx ) {
var len;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isInteger( idx ) ) {
throw new TypeError( format( 'invalid argument. Must provide an integer. Value: `%s`.', idx ) );
}
len = this._length;
if ( idx < 0 ) {
idx += len;
}
if ( idx < 0 || idx >= len ) {
return;
}
return this._buffer[ GETTER ]( idx * BYTES_PER_ELEMENT, this._isLE );
});
/**
* Pointer to the underlying data buffer.
*
* @private
* @name buffer
* @memberof TypedArray.prototype
* @readonly
* @type {ArrayBuffer}
*/
setReadOnlyAccessor( TypedArray.prototype, 'buffer', function get() {
return this._buffer.buffer;
});
/**
* Size (in bytes) of the array.
*
* @private
* @name byteLength
* @memberof TypedArray.prototype
* @readonly
* @type {NonNegativeInteger}
*/
setReadOnlyAccessor( TypedArray.prototype, 'byteLength', function get() {
return this._buffer.byteLength;
});
/**
* Offset (in bytes) of the array from the start of its underlying `ArrayBuffer`.
*
* @private
* @name byteOffset
* @memberof TypedArray.prototype
* @readonly
* @type {NonNegativeInteger}
*/
setReadOnlyAccessor( TypedArray.prototype, 'byteOffset', function get() {
return this._buffer.byteOffset;
});
/**
* Size (in bytes) of each array element.
*
* @private
* @name BYTES_PER_ELEMENT
* @memberof TypedArray.prototype
* @readonly
* @type {PositiveInteger}
*/
setReadOnly( TypedArray.prototype, 'BYTES_PER_ELEMENT', TypedArray.BYTES_PER_ELEMENT );
/**
* Tests whether all elements in an array pass a test implemented by a predicate function.
*
* @name every
* @memberof TypedArray.prototype
* @type {Function}
* @param {Function} predicate - predicate function
* @param {*} [thisArg] - predicate function execution context
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} first argument must be a function
* @returns {boolean} boolean indicating whether all elements pass a test
*/
setReadOnly( TypedArray.prototype, 'every', function every( predicate, thisArg ) {
var buf;
var i;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isFunction( predicate ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a function. Value: `%s`.', predicate ) );
}
buf = this._buffer;
for ( i = 0; i < this._length; i++ ) {
if ( !predicate.call( thisArg, buf[ GETTER ]( i * BYTES_PER_ELEMENT, this._isLE ), i, this ) ) {
return false;
}
}
return true;
});
/**
* Invokes a function once for each array element.
*
* @name forEach
* @memberof TypedArray.prototype
* @type {Function}
* @param {Function} fcn - function to invoke
* @param {*} [thisArg] - function invocation context
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} first argument must be a function
*/
setReadOnly( TypedArray.prototype, 'forEach', function forEach( fcn, thisArg ) {
var buf;
var i;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isFunction( fcn ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a function. Value: `%s`.', fcn ) );
}
buf = this._buffer;
for ( i = 0; i < this._length; i++ ) {
fcn.call( thisArg, buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE ), i, this );
}
});
/**
* Returns an array element.
*
* @private
* @name get
* @memberof TypedArray.prototype
* @type {Function}
* @param {NonNegativeInteger} idx - element index
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} must provide a nonnegative integer
* @returns {(*|void)} array element
*/
setReadOnly( TypedArray.prototype, 'get', function get( idx ) {
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isNonNegativeInteger( idx ) ) {
throw new TypeError( format( 'invalid argument. Must provide a nonnegative integer. Value: `%s`.', idx ) );
}
if ( idx >= this._length ) {
return;
}
return this._buffer[ GETTER ]( idx*BYTES_PER_ELEMENT, this._isLE );
});
/**
* Returns the index of the first occurrence of a given element.
*
* @private
* @name indexOf
* @memberof TypedArray.prototype
* @type {Function}
* @param {*} searchElement - element to search for
* @param {integer} [fromIndex=0] - starting index (inclusive)
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} second argument must be an integer
* @returns {integer} index or -1
*/
setReadOnly( TypedArray.prototype, 'indexOf', function indexOf( searchElement, fromIndex ) {
var buf;
var i;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( arguments.length > 1 ) {
if ( !isInteger( fromIndex ) ) {
throw new TypeError( format( 'invalid argument. Second argument must be an integer. Value: `%s`.', fromIndex ) );
}
if ( fromIndex < 0 ) {
fromIndex += this._length;
if ( fromIndex < 0 ) {
fromIndex = 0;
}
}
} else {
fromIndex = 0;
}
buf = this._buffer;
for ( i = fromIndex; i < this._length; i++ ) {
if ( buf[ GETTER ]( i * BYTES_PER_ELEMENT, this._isLE ) === searchElement ) {
return i;
}
}
return -1;
});
/**
* Number of array elements.
*
* @private
* @name length
* @memberof TypedArray.prototype
* @readonly
* @type {NonNegativeInteger}
*/
setReadOnlyAccessor( TypedArray.prototype, 'length', function get() {
return this._length;
});
/**
* Returns a new array with each element being the result of a provided callback function.
*
* @private
* @name map
* @memberof TypedArray.prototype
* @type {Function}
* @param {Function} fcn - function to invoke
* @param {*} [thisArg] - function invocation context
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} first argument must be a function
* @returns {TypedArray} new typed array
*/
setReadOnly( TypedArray.prototype, 'map', function map( fcn, thisArg ) {
var obuf;
var out;
var buf;
var i;
var v;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isFunction( fcn ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a function. Value: `%s`.', fcn ) );
}
buf = this._buffer;
out = new this.constructor( flag2byteOrder( this._isLE ), this._length );
obuf = out._buffer; // eslint-disable-line no-underscore-dangle
for ( i = 0; i < this._length; i++ ) {
v = fcn.call( thisArg, buf[ GETTER ]( i * BYTES_PER_ELEMENT, this._isLE ), i, this );
obuf[ SETTER ]( i * BYTES_PER_ELEMENT, v, this._isLE );
}
return out;
});
/**
* Sets an array element.
*
* ## Notes
*
* - When provided a typed array, we must check whether the source array shares the same buffer as the target array and whether the underlying memory overlaps. In particular, we are concerned with the following scenario:
*
* ```text
* buf: ---------------------
* src: ---------------------
* ```
*
* In the above, as we copy values from `src`, we will overwrite values in the `src` view, resulting in duplicated values copied into the end of `buf`, which is not intended. Hence, to avoid overwriting source values, we must **copy** source values to a temporary array.
*
* In the other overlapping scenario,
*
* ```text
* buf: ---------------------
* src: ---------------------
* ```
*
* by the time we begin copying into the overlapping region, we are copying from the end of `src`, a non-overlapping region, which means we don't run the risk of copying copied values, rather than the original `src` values, as intended.
*
* @private
* @name set
* @memberof TypedArray.prototype
* @type {Function}
* @param {(Collection|TypedArray|*)} value - value(s)
* @param {NonNegativeInteger} [i=0] - element index at which to start writing values
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} index argument must be a nonnegative integer
* @throws {RangeError} index argument is out-of-bounds
* @throws {RangeError} target array lacks sufficient storage to accommodate source values
* @returns {void}
*/
setReadOnly( TypedArray.prototype, 'set', function set( value ) {
var sbuf;
var idx;
var buf;
var tmp;
var get;
var N;
var i;
var j;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
buf = this._buffer;
if ( arguments.length > 1 ) {
idx = arguments[ 1 ];
if ( !isNonNegativeInteger( idx ) ) {
throw new TypeError( format( 'invalid argument. Index argument must be a nonnegative integer. Value: `%s`.', idx ) );
}
} else {
idx = 0;
}
if ( isCollection( value ) ) {
N = value.length;
if ( idx+N > this._length ) {
throw new RangeError( 'invalid arguments. Target array lacks sufficient storage to accommodate source values.' );
}
sbuf = value;
if ( sbuf.get && sbuf.set ) {
get = accessorGetter( 'default' );
} else {
get = getter( 'default' );
}
// Check for overlapping memory...
j = buf.byteOffset + (idx*BYTES_PER_ELEMENT);
if (
sbuf.buffer === buf.buffer &&
(
sbuf.byteOffset < j &&
sbuf.byteOffset+sbuf.byteLength > j
)
) {
// We need to copy source values...
tmp = [];
for ( i = 0; i < value.length; i++ ) {
tmp.push( get( value, i ) );
}
sbuf = tmp;
get = getter( 'default' );
}
for ( i = 0; i < N; idx++, i++ ) {
buf[ SETTER ]( idx*BYTES_PER_ELEMENT, get( sbuf, i ), this._isLE );
}
return;
}
if ( idx >= this._length ) {
throw new RangeError( format( 'invalid argument. Index argument is out-of-bounds. Value: `%u`.', idx ) );
}
buf[ SETTER ]( idx*BYTES_PER_ELEMENT, value, this._isLE );
});
/**
* Tests whether at least one element in the typed array passes a test implemented by a predicate function.
*
* @name some
* @memberof TypedArray.prototype
* @type {Function}
* @param {Function} predicate - predicate function
* @param {*} [thisArg] - predicate function execution context
* @throws {TypeError} `this` must be a typed array instance
* @throws {TypeError} first argument must be a function
* @returns {boolean} boolean indicating whether at least one element passes a test
*/
setReadOnly( TypedArray.prototype, 'some', function some( predicate, thisArg ) {
var buf;
var i;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
if ( !isFunction( predicate ) ) {
throw new TypeError( format( 'invalid argument. First argument must be a function. Value: `%s`.', predicate ) );
}
buf = this._buffer;
for ( i = 0; i < this._length; i++ ) {
if ( predicate.call( thisArg, buf[ GETTER ]( i * BYTES_PER_ELEMENT, this._isLE ), i, this ) ) {
return true;
}
}
return false;
});
/**
* Serializes an array as a string.
*
* @private
* @name toString
* @memberof TypedArray.prototype
* @type {Function}
* @throws {TypeError} `this` must be a typed array instance
* @returns {string} string representation
*/
setReadOnly( TypedArray.prototype, 'toString', function toString() {
var out;
var buf;
var i;
if ( !isTypedArray( this ) ) {
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[0] ], CTOR_NAME ) );
}
out = [];
buf = this._buffer;
for ( i = 0; i < this._length; i++ ) {
out.push( buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE ) );
}
return out.join( ',' );
});
return TypedArray;
/**
* Returns a boolean indicating if a value is a typed array constructor.
*
* @private
* @param {*} value - value to test
* @returns {boolean} boolean indicating if a value is a typed array constructor
*/
function isTypedArrayConstructor( value ) {
return ( value === TypedArray );
}
/**
* Returns a boolean indicating if a value is a typed array.
*
* @private
* @param {*} value - value to test
* @returns {boolean} boolean indicating if a value is a typed array
*/
function isTypedArray( value ) {
return (
typeof value === 'object' &&
value !== null &&
(
value.constructor.name === CTOR_NAME ||
isPrototypeOf( value, TypedArray.prototype )
) &&
value.BYTES_PER_ELEMENT === BYTES_PER_ELEMENT
);
}
/**
* Fills an output DataView with array values.
*
* @private
* @param {DataView} view - output data view
* @param {Array} arr - input array
* @param {boolean} isLE - boolean indicating whether to store values in little-endian byte order
* @returns {DataView} output data view
*/
function fromArray( view, arr, isLE ) {
var len;
var get;
var i;
len = arr.length;
if ( arr.get && arr.set ) {
get = accessorGetter( 'default' );
} else {
get = getter( 'default' );
}
for ( i = 0; i < len; i++ ) {
view[ SETTER ]( i*BYTES_PER_ELEMENT, get( arr, i ), isLE );
}
return view;
}
}
// EXPORTS //
module.exports = factory;