source: imaps-frontend/node_modules/es-abstract/2022/SetValueInBuffer.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 4.1 KB
Line 
1'use strict';
2
3var GetIntrinsic = require('get-intrinsic');
4
5var $SyntaxError = require('es-errors/syntax');
6var $TypeError = require('es-errors/type');
7var isInteger = require('math-intrinsics/isInteger');
8var $Uint8Array = GetIntrinsic('%Uint8Array%', true);
9
10var IsBigIntElementType = require('./IsBigIntElementType');
11var IsDetachedBuffer = require('./IsDetachedBuffer');
12var NumericToRawBytes = require('./NumericToRawBytes');
13
14var isArrayBuffer = require('is-array-buffer');
15var isSharedArrayBuffer = require('is-shared-array-buffer');
16var hasOwn = require('hasown');
17
18var tableTAO = require('./tables/typed-array-objects');
19
20var defaultEndianness = require('../helpers/defaultEndianness');
21var forEach = require('../helpers/forEach');
22
23// https://262.ecma-international.org/12.0/#sec-setvalueinbuffer
24
25/* eslint max-params: 0 */
26
27module.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) || byteIndex < 0) {
34 throw new $TypeError('Assertion failed: `byteIndex` must be a non-negative 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 (IsBigIntElementType(type) ? typeof value !== 'bigint' : typeof value !== 'number') { // step 3
63 throw new $TypeError('Assertion failed: `value` must be a BigInt if type is BigInt64 or BigUint64, otherwise a Number');
64 }
65
66 // 4. Let block be arrayBuffer’s [[ArrayBufferData]] internal slot.
67
68 var elementSize = tableTAO.size['$' + type]; // step 5
69
70 // 6. If isLittleEndian is not present, set isLittleEndian to either true or false. The choice is implementation dependent and should be the alternative that is most efficient for the implementation. An implementation must use the same value each time this step is executed and the same value must be used for the corresponding step in the GetValueFromBuffer abstract operation.
71 var isLittleEndian = arguments.length > 6 ? arguments[6] : defaultEndianness === 'little'; // step 6
72
73 var rawBytes = NumericToRawBytes(type, value, isLittleEndian); // step 7
74
75 if (isSAB) { // step 8
76 /*
77 Let execution be the [[CandidateExecution]] field of the surrounding agent's Agent Record.
78 Let eventList be the [[EventList]] field of the element in execution.[[EventsRecords]] whose [[AgentSignifier]] is AgentSignifier().
79 If isTypedArray is true and IsNoTearConfiguration(type, order) is true, let noTear be true; otherwise let noTear be false.
80 Append WriteSharedMemory { [[Order]]: order, [[NoTear]]: noTear, [[Block]]: block, [[ByteIndex]]: byteIndex, [[ElementSize]]: elementSize, [[Payload]]: rawBytes } to eventList.
81 */
82 throw new $SyntaxError('SharedArrayBuffer is not supported by this implementation');
83 } else {
84 // 9. Store the individual bytes of rawBytes into block, in order, starting at block[byteIndex].
85 var arr = new $Uint8Array(arrayBuffer, byteIndex, elementSize);
86 forEach(rawBytes, function (rawByte, i) {
87 arr[i] = rawByte;
88 });
89 }
90
91 // 10. Return NormalCompletion(undefined).
92};
Note: See TracBrowser for help on using the repository browser.