1 | 'use strict';
|
---|
2 |
|
---|
3 | var GetIntrinsic = require('get-intrinsic');
|
---|
4 |
|
---|
5 | var $SyntaxError = require('es-errors/syntax');
|
---|
6 | var $TypeError = require('es-errors/type');
|
---|
7 | var $Uint8Array = GetIntrinsic('%Uint8Array%', true);
|
---|
8 | var isInteger = require('math-intrinsics/isInteger');
|
---|
9 |
|
---|
10 | var IsBigIntElementType = require('./IsBigIntElementType');
|
---|
11 | var IsDetachedBuffer = require('./IsDetachedBuffer');
|
---|
12 | var NumericToRawBytes = require('./NumericToRawBytes');
|
---|
13 |
|
---|
14 | var isArrayBuffer = require('is-array-buffer');
|
---|
15 | var isSharedArrayBuffer = require('is-shared-array-buffer');
|
---|
16 | var hasOwn = require('hasown');
|
---|
17 |
|
---|
18 | var tableTAO = require('./tables/typed-array-objects');
|
---|
19 |
|
---|
20 | var defaultEndianness = require('../helpers/defaultEndianness');
|
---|
21 | var forEach = require('../helpers/forEach');
|
---|
22 |
|
---|
23 | // https://262.ecma-international.org/11.0/#sec-setvalueinbuffer
|
---|
24 |
|
---|
25 | /* eslint max-params: 0 */
|
---|
26 |
|
---|
27 | module.exports = function SetValueInBuffer(arrayBuffer, byteIndex, type, value, isTypedArray, order) {
|
---|
28 | var isSAB = isSharedArrayBuffer(arrayBuffer);
|
---|
29 | if (!isArrayBuffer(arrayBuffer) && !isSAB) {
|
---|
30 | throw new $TypeError('Assertion failed: `arrayBuffer` must be an ArrayBuffer or a SharedArrayBuffer');
|
---|
31 | }
|
---|
32 |
|
---|
33 | if (!isInteger(byteIndex)) {
|
---|
34 | throw new $TypeError('Assertion failed: `byteIndex` must be an integer');
|
---|
35 | }
|
---|
36 |
|
---|
37 | if (typeof type !== 'string' || !hasOwn(tableTAO.size, '$' + type)) {
|
---|
38 | throw new $TypeError('Assertion failed: `type` must be a Typed Array Element Type');
|
---|
39 | }
|
---|
40 |
|
---|
41 | if (typeof value !== 'number' && typeof value !== 'bigint') {
|
---|
42 | throw new $TypeError('Assertion failed: `value` must be a Number or a BigInt');
|
---|
43 | }
|
---|
44 |
|
---|
45 | if (typeof isTypedArray !== 'boolean') {
|
---|
46 | throw new $TypeError('Assertion failed: `isTypedArray` must be a boolean');
|
---|
47 | }
|
---|
48 | if (order !== 'SeqCst' && order !== 'Unordered' && order !== 'Init') {
|
---|
49 | throw new $TypeError('Assertion failed: `order` must be `"SeqCst"`, `"Unordered"`, or `"Init"`');
|
---|
50 | }
|
---|
51 |
|
---|
52 | if (arguments.length > 6 && typeof arguments[6] !== 'boolean') {
|
---|
53 | throw new $TypeError('Assertion failed: `isLittleEndian` must be a boolean, if present');
|
---|
54 | }
|
---|
55 |
|
---|
56 | if (IsDetachedBuffer(arrayBuffer)) {
|
---|
57 | throw new $TypeError('Assertion failed: ArrayBuffer is detached'); // step 1
|
---|
58 | }
|
---|
59 |
|
---|
60 | // 2. Assert: There are sufficient bytes in arrayBuffer starting at byteIndex to represent a value of type.
|
---|
61 |
|
---|
62 | if (byteIndex < 0) {
|
---|
63 | throw new $TypeError('Assertion failed: `byteIndex` must be non-negative'); // step 3
|
---|
64 | }
|
---|
65 |
|
---|
66 | if (IsBigIntElementType(type) ? typeof value !== 'bigint' : typeof value !== 'number') { // step 4
|
---|
67 | throw new $TypeError('Assertion failed: `value` must be a BigInt if type is BigInt64 or BigUint64, otherwise a Number');
|
---|
68 | }
|
---|
69 |
|
---|
70 | // 5. Let block be arrayBuffer.[[ArrayBufferData]].
|
---|
71 |
|
---|
72 | var elementSize = tableTAO.size['$' + type]; // step 6
|
---|
73 |
|
---|
74 | // 7. If isLittleEndian is not present, set isLittleEndian to to the value of the [[LittleEndian]] field of the surrounding agent's Agent Record.
|
---|
75 | var isLittleEndian = arguments.length > 6 ? arguments[6] : defaultEndianness === 'little'; // step 8
|
---|
76 |
|
---|
77 | var rawBytes = NumericToRawBytes(type, value, isLittleEndian); // step 8
|
---|
78 |
|
---|
79 | if (isSAB) { // step 9
|
---|
80 | /*
|
---|
81 | Let execution be the [[CandidateExecution]] field of the surrounding agent's Agent Record.
|
---|
82 | Let eventList be the [[EventList]] field of the element in execution.[[EventsRecords]] whose [[AgentSignifier]] is AgentSignifier().
|
---|
83 | If isTypedArray is true and IsNoTearConfiguration(type, order) is true, let noTear be true; otherwise let noTear be false.
|
---|
84 | Append WriteSharedMemory { [[Order]]: order, [[NoTear]]: noTear, [[Block]]: block, [[ByteIndex]]: byteIndex, [[ElementSize]]: elementSize, [[Payload]]: rawBytes } to eventList.
|
---|
85 | */
|
---|
86 | throw new $SyntaxError('SharedArrayBuffer is not supported by this implementation');
|
---|
87 | } else {
|
---|
88 | // 10. Store the individual bytes of rawBytes into block, in order, starting at block[byteIndex].
|
---|
89 | var arr = new $Uint8Array(arrayBuffer, byteIndex, elementSize);
|
---|
90 | forEach(rawBytes, function (rawByte, i) {
|
---|
91 | arr[i] = rawByte;
|
---|
92 | });
|
---|
93 | }
|
---|
94 |
|
---|
95 | // 11. Return NormalCompletion(undefined).
|
---|
96 | };
|
---|