Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qv4dataview.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include "qv4dataview_p.h"
5#include "qv4arraybuffer_p.h"
6#include "qv4symbol_p.h"
7
8#include <QtCore/private/qnumeric_p.h>
9#include "qendian.h"
10
11using namespace QV4;
12
15
17{
18 Heap::FunctionObject::init(engine, QStringLiteral("DataView"));
19}
20
22{
23 if (v.isUndefined())
24 return 0;
25 double index = v.toInteger();
26 if (index < 0) {
27 e->throwRangeError(QStringLiteral("index out of range"));
28 return 0;
29 }
30 uint idx = static_cast<uint>(index);
31 if (idx != index) {
32 e->throwRangeError(QStringLiteral("index out of range"));
33 return 0;
34 }
35 return idx;
36}
37
38ReturnedValue DataViewCtor::virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *newTarget)
39{
40 Scope scope(f->engine());
41 Scoped<SharedArrayBuffer> buffer(scope, argc ? argv[0] : Value::undefinedValue());
42 if (!newTarget || !buffer)
43 return scope.engine->throwTypeError();
44
45 uint offset = ::toIndex(scope.engine, argc > 1 ? argv[1] : Value::undefinedValue());
46 if (scope.hasException())
47 return Encode::undefined();
48 if (buffer->hasDetachedArrayData())
49 return scope.engine->throwTypeError();
50
51 uint bufferLength = buffer->arrayDataLength();
52 if (offset > bufferLength)
53 return scope.engine->throwRangeError(QStringLiteral("DataView: constructor arguments out of range"));
54
55 uint byteLength = (argc < 3 || argv[2].isUndefined()) ? (bufferLength - offset) : ::toIndex(scope.engine, argv[2]);
56 if (scope.hasException())
57 return Encode::undefined();
58 if (offset > bufferLength || byteLength > bufferLength - offset)
59 return scope.engine->throwRangeError(QStringLiteral("DataView: constructor arguments out of range"));
60
61 Scoped<DataView> a(scope, scope.engine->memoryManager->allocate<DataView>());
62 a->d()->buffer.set(scope.engine, buffer->d());
63 a->d()->byteLength = byteLength;
64 a->d()->byteOffset = offset;
65 return a.asReturnedValue();
66}
67
69{
70 return f->engine()->throwTypeError();
71}
72
74{
75 Scope scope(engine);
76 ScopedObject o(scope);
77 ctor->defineReadonlyConfigurableProperty(engine->id_length(), Value::fromInt32(1));
78 ctor->defineReadonlyProperty(engine->id_prototype(), (o = this));
79 defineDefaultProperty(engine->id_constructor(), (o = ctor));
80 defineAccessorProperty(QStringLiteral("buffer"), method_get_buffer, nullptr);
81 defineAccessorProperty(QStringLiteral("byteLength"), method_get_byteLength, nullptr);
82 defineAccessorProperty(QStringLiteral("byteOffset"), method_get_byteOffset, nullptr);
83
84 defineDefaultProperty(QStringLiteral("getInt8"), method_getChar<signed char>, 1);
85 defineDefaultProperty(QStringLiteral("getUint8"), method_getChar<unsigned char>, 1);
86 defineDefaultProperty(QStringLiteral("getInt16"), method_get<short>, 1);
87 defineDefaultProperty(QStringLiteral("getUint16"), method_get<unsigned short>, 1);
88 defineDefaultProperty(QStringLiteral("getInt32"), method_get<int>, 1);
89 defineDefaultProperty(QStringLiteral("getUint32"), method_get<unsigned int>, 1);
90 defineDefaultProperty(QStringLiteral("getFloat32"), method_getFloat<float>, 1);
91 defineDefaultProperty(QStringLiteral("getFloat64"), method_getFloat<double>, 1);
92
93 defineDefaultProperty(QStringLiteral("setInt8"), method_setChar<signed char>, 2);
94 defineDefaultProperty(QStringLiteral("setUint8"), method_setChar<unsigned char>, 2);
95 defineDefaultProperty(QStringLiteral("setInt16"), method_set<short>, 2);
96 defineDefaultProperty(QStringLiteral("setUint16"), method_set<unsigned short>, 2);
97 defineDefaultProperty(QStringLiteral("setInt32"), method_set<int>, 2);
98 defineDefaultProperty(QStringLiteral("setUint32"), method_set<unsigned int>, 2);
99 defineDefaultProperty(QStringLiteral("setFloat32"), method_setFloat<float>, 2);
100 defineDefaultProperty(QStringLiteral("setFloat64"), method_setFloat<double>, 2);
101
102 ScopedString name(scope, engine->newString(QStringLiteral("DataView")));
103 defineReadonlyConfigurableProperty(scope.engine->symbol_toStringTag(), name);
104
105 // For backword compatibility
106 defineDefaultProperty(QStringLiteral("getUInt8"), method_getChar<unsigned char>, 1);
107 defineDefaultProperty(QStringLiteral("getUInt16"), method_get<unsigned short>, 1);
108 defineDefaultProperty(QStringLiteral("getUInt32"), method_get<unsigned int>, 1);
109 defineDefaultProperty(QStringLiteral("setUInt8"), method_setChar<unsigned char>, 1);
110 defineDefaultProperty(QStringLiteral("setUInt16"), method_set<unsigned short>, 1);
111 defineDefaultProperty(QStringLiteral("setUInt32"), method_set<unsigned int>, 1);
112}
113
115{
116 const DataView *v = thisObject->as<DataView>();
117 if (!v)
118 return b->engine()->throwTypeError();
119
120 return v->d()->buffer->asReturnedValue();
121}
122
124{
125 const DataView *v = thisObject->as<DataView>();
126 if (!v)
127 return b->engine()->throwTypeError();
128
129 if (v->d()->buffer->hasDetachedArrayData())
130 return b->engine()->throwTypeError();
131
132 return Encode(v->d()->byteLength);
133}
134
136{
137 const DataView *v = thisObject->as<DataView>();
138 if (!v)
139 return b->engine()->throwTypeError();
140
141 if (v->d()->buffer->hasDetachedArrayData())
142 return b->engine()->throwTypeError();
143
144 return Encode(v->d()->byteOffset);
145}
146
147template <typename T>
148ReturnedValue DataViewPrototype::method_getChar(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
149{
150 ExecutionEngine *e = b->engine();
151 const DataView *v = thisObject->as<DataView>();
152 if (!v)
153 return e->throwTypeError();
154 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
155 if (e->hasException)
156 return Encode::undefined();
157 if (v->d()->buffer->hasDetachedArrayData())
158 return e->throwTypeError();
159 if (idx + sizeof(T) > v->d()->byteLength)
160 return e->throwRangeError(QStringLiteral("index out of range"));
161 idx += v->d()->byteOffset;
162
163 T t = T(v->d()->buffer->constArrayData()[idx]);
164
165 return Encode((int)t);
166}
167
168template <typename T>
169ReturnedValue DataViewPrototype::method_get(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
170{
171 ExecutionEngine *e = b->engine();
172 const DataView *v = thisObject->as<DataView>();
173 if (!v)
174 return e->throwTypeError();
175 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
176 if (e->hasException)
177 return Encode::undefined();
178 if (v->d()->buffer->hasDetachedArrayData())
179 return e->throwTypeError();
180 if (idx + sizeof(T) > v->d()->byteLength)
181 return e->throwRangeError(QStringLiteral("index out of range"));
182 idx += v->d()->byteOffset;
183
184 bool littleEndian = argc < 2 ? false : argv[1].toBoolean();
185
186 T t = littleEndian
187 ? qFromLittleEndian<T>((const uchar *)v->d()->buffer->constArrayData() + idx)
188 : qFromBigEndian<T>((const uchar *)v->d()->buffer->constArrayData() + idx);
189
190 return Encode(t);
191}
192
193template <typename T>
194ReturnedValue DataViewPrototype::method_getFloat(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
195{
196 ExecutionEngine *e = b->engine();
197 const DataView *v = thisObject->as<DataView>();
198 if (!v)
199 return e->throwTypeError();
200 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
201 if (e->hasException)
202 return Encode::undefined();
203 if (v->d()->buffer->hasDetachedArrayData())
204 return e->throwTypeError();
205 if (idx + sizeof(T) > v->d()->byteLength)
206 return e->throwRangeError(QStringLiteral("index out of range"));
207 idx += v->d()->byteOffset;
208
209 bool littleEndian = argc < 2 ? false : argv[1].toBoolean();
210
211 if (sizeof(T) == 4) {
212 // float
213 union {
214 uint i;
215 float f;
216 } u;
217 u.i = littleEndian
218 ? qFromLittleEndian<uint>((const uchar *)v->d()->buffer->constArrayData() + idx)
219 : qFromBigEndian<uint>((const uchar *)v->d()->buffer->constArrayData() + idx);
220 return Encode(u.f);
221 } else {
222 Q_ASSERT(sizeof(T) == 8);
223 union {
224 quint64 i;
225 double d;
226 } u;
227 u.i = littleEndian
228 ? qFromLittleEndian<quint64>((const uchar *)v->d()->buffer->constArrayData() + idx)
229 : qFromBigEndian<quint64>((const uchar *)v->d()->buffer->constArrayData() + idx);
230 return Encode(u.d);
231 }
232}
233
234template <typename T>
235ReturnedValue DataViewPrototype::method_setChar(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
236{
237 ExecutionEngine *e = b->engine();
238 const DataView *v = thisObject->as<DataView>();
239 if (!v)
240 return e->throwTypeError();
241 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
242 if (e->hasException)
243 return Encode::undefined();
244
245 int val = argc >= 2 ? argv[1].toInt32() : 0;
246
247 if (v->d()->buffer->hasDetachedArrayData())
248 return e->throwTypeError();
249
250 if (idx + sizeof(T) > v->d()->byteLength)
251 return e->throwRangeError(QStringLiteral("index out of range"));
252 idx += v->d()->byteOffset;
253
254 v->d()->buffer->arrayData()[idx] = (char)val;
255
257}
258
259template <typename T>
260ReturnedValue DataViewPrototype::method_set(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
261{
262 ExecutionEngine *e = b->engine();
263 const DataView *v = thisObject->as<DataView>();
264 if (!v)
265 return e->throwTypeError();
266 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
267 if (e->hasException)
268 return Encode::undefined();
269
270 int val = argc >= 2 ? argv[1].toInt32() : 0;
271 bool littleEndian = argc < 3 ? false : argv[2].toBoolean();
272
273 if (v->d()->buffer->hasDetachedArrayData())
274 return e->throwTypeError();
275
276 if (idx + sizeof(T) > v->d()->byteLength)
277 return e->throwRangeError(QStringLiteral("index out of range"));
278 idx += v->d()->byteOffset;
279
280
281 if (littleEndian)
282 qToLittleEndian<T>(val, (uchar *)v->d()->buffer->arrayData() + idx);
283 else
284 qToBigEndian<T>(val, (uchar *)v->d()->buffer->arrayData() + idx);
285
287}
288
289template <typename T>
290ReturnedValue DataViewPrototype::method_setFloat(const FunctionObject *b, const Value *thisObject, const Value *argv, int argc)
291{
292 ExecutionEngine *e = b->engine();
293 const DataView *v = thisObject->as<DataView>();
294 if (!v)
295 return e->throwTypeError();
296 uint idx = ::toIndex(e, argc ? argv[0] : Value::undefinedValue());
297 if (e->hasException)
298 return Encode::undefined();
299
300 double val = argc >= 2 ? argv[1].toNumber() : qt_qnan();
301 bool littleEndian = argc < 3 ? false : argv[2].toBoolean();
302
303 if (v->d()->buffer->hasDetachedArrayData())
304 return e->throwTypeError();
305
306 if (idx + sizeof(T) > v->d()->byteLength)
307 return e->throwRangeError(QStringLiteral("index out of range"));
308 idx += v->d()->byteOffset;
309
310 if (sizeof(T) == 4) {
311 // float
312 union {
313 uint i;
314 float f;
315 } u;
316 u.f = val;
317 if (littleEndian)
318 qToLittleEndian(u.i, (uchar *)v->d()->buffer->arrayData() + idx);
319 else
320 qToBigEndian(u.i, (uchar *)v->d()->buffer->arrayData() + idx);
321 } else {
322 Q_ASSERT(sizeof(T) == 8);
323 union {
324 quint64 i;
325 double d;
326 } u;
327 u.d = val;
328 if (littleEndian)
329 qToLittleEndian(u.i, (uchar *)v->d()->buffer->arrayData() + idx);
330 else
331 qToBigEndian(u.i, (uchar *)v->d()->buffer->arrayData() + idx);
332 }
334}
ObjectType::Data * allocate(Args &&... args)
Definition qv4mm_p.h:298
quint64 ReturnedValue
Scoped< String > ScopedString
constexpr T qToBigEndian(T source)
Definition qendian.h:172
constexpr T qToLittleEndian(T source)
Definition qendian.h:176
constexpr static Q_DECL_CONST_FUNCTION double qt_qnan() noexcept
Definition qnumeric_p.h:100
GLboolean GLboolean GLboolean b
GLsizei const GLfloat * v
[13]
GLboolean GLboolean GLboolean GLboolean a
[7]
GLuint index
[2]
GLfloat GLfloat f
GLenum GLuint buffer
GLenum GLuint GLintptr offset
GLuint name
GLuint GLfloat * val
GLdouble GLdouble t
Definition qopenglext.h:243
#define Q_ASSERT(cond)
Definition qrandom.cpp:47
#define QStringLiteral(str)
unsigned char uchar
Definition qtypes.h:32
unsigned long long quint64
Definition qtypes.h:61
unsigned int uint
Definition qtypes.h:34
static uint toIndex(ExecutionEngine *e, const Value &v)
#define RETURN_UNDEFINED()
#define DEFINE_OBJECT_VTABLE(classname)
QJSEngine engine
[0]
static ReturnedValue method_get_buffer(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_setFloat(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_getChar(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_getFloat(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_get_byteLength(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_setChar(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
void init(ExecutionEngine *engine, Object *ctor)
static ReturnedValue method_get(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_set(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static ReturnedValue method_get_byteOffset(const FunctionObject *, const Value *thisObject, const Value *argv, int argc)
static constexpr ReturnedValue undefined()
MemoryManager * memoryManager
ReturnedValue throwRangeError(const Value &value)
Symbol * symbol_toStringTag() const
ReturnedValue throwTypeError()
void init(ExecutionEngine *engine)
ExecutionEngine * engine() const
bool hasException() const
ExecutionEngine * engine
bool isUndefined() const
static constexpr VTable::CallAsConstructor virtualCallAsConstructor
static constexpr VTable::Call virtualCall
qint64 toIndex() const
Definition qv4value_p.h:381
static constexpr Value fromInt32(int i)
Definition qv4value_p.h:187
int toInt32() const
Definition qv4value_p.h:353
bool toBoolean() const
Definition qv4value_p.h:97
static constexpr Value undefinedValue()
Definition qv4value_p.h:191
double toNumber() const
Definition qv4value_p.h:323
const T * as() const
Definition qv4value_p.h:132