qv4arrayobject.cpp 30.38 KiB
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtQml module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
** $QT_END_LICENSE$
****************************************************************************/
#include "qv4arrayobject_p.h"
#include "qv4sparsearray_p.h"
#include "qv4objectproto_p.h"
#include "qv4scopedvalue_p.h"
using namespace QV4;
DEFINE_OBJECT_VTABLE(ArrayCtor);
ArrayCtor::Data::Data(ExecutionContext *scope)
    : FunctionObject::Data(scope, QStringLiteral("Array"))
    setVTable(staticVTable());
ReturnedValue ArrayCtor::construct(Managed *m, CallData *callData)
    ExecutionEngine *v4 = m->engine();
    Scope scope(v4);
    Scoped<ArrayObject> a(scope, v4->newArrayObject());
    uint len;
    if (callData->argc == 1 && callData->args[0].isNumber()) {
        bool ok;
        len = callData->args[0].asArrayLength(&ok);
        if (!ok)
            return v4->currentContext()->throwRangeError(callData->args[0]);
        if (len < 0x1000)
            a->arrayReserve(len);
    } else {
        len = callData->argc;
        a->arrayReserve(len);
        a->arrayPut(0, callData->args, len);
    a->setArrayLengthUnchecked(len);
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
return a.asReturnedValue(); } ReturnedValue ArrayCtor::call(Managed *that, CallData *callData) { return construct(that, callData); } void ArrayPrototype::init(ExecutionEngine *engine, Object *ctor) { Scope scope(engine); ScopedObject o(scope); ctor->defineReadonlyProperty(engine->id_length, Primitive::fromInt32(1)); ctor->defineReadonlyProperty(engine->id_prototype, (o = this)); ctor->defineDefaultProperty(QStringLiteral("isArray"), method_isArray, 1); defineDefaultProperty(QStringLiteral("constructor"), (o = ctor)); defineDefaultProperty(engine->id_toString, method_toString, 0); defineDefaultProperty(QStringLiteral("toLocaleString"), method_toLocaleString, 0); defineDefaultProperty(QStringLiteral("concat"), method_concat, 1); defineDefaultProperty(QStringLiteral("join"), method_join, 1); defineDefaultProperty(QStringLiteral("pop"), method_pop, 0); defineDefaultProperty(QStringLiteral("push"), method_push, 1); defineDefaultProperty(QStringLiteral("reverse"), method_reverse, 0); defineDefaultProperty(QStringLiteral("shift"), method_shift, 0); defineDefaultProperty(QStringLiteral("slice"), method_slice, 2); defineDefaultProperty(QStringLiteral("sort"), method_sort, 1); defineDefaultProperty(QStringLiteral("splice"), method_splice, 2); defineDefaultProperty(QStringLiteral("unshift"), method_unshift, 1); defineDefaultProperty(QStringLiteral("indexOf"), method_indexOf, 1); defineDefaultProperty(QStringLiteral("lastIndexOf"), method_lastIndexOf, 1); defineDefaultProperty(QStringLiteral("every"), method_every, 1); defineDefaultProperty(QStringLiteral("some"), method_some, 1); defineDefaultProperty(QStringLiteral("forEach"), method_forEach, 1); defineDefaultProperty(QStringLiteral("map"), method_map, 1); defineDefaultProperty(QStringLiteral("filter"), method_filter, 1); defineDefaultProperty(QStringLiteral("reduce"), method_reduce, 1); defineDefaultProperty(QStringLiteral("reduceRight"), method_reduceRight, 1); } ReturnedValue ArrayPrototype::method_isArray(CallContext *ctx) { bool isArray = ctx->d()->callData->argc && ctx->d()->callData->args[0].asArrayObject(); return Encode(isArray); } ReturnedValue ArrayPrototype::method_toString(CallContext *ctx) { Scope scope(ctx); ScopedObject o(scope, ctx->d()->callData->thisObject, ScopedObject::Convert); if (ctx->d()->engine->hasException) return Encode::undefined(); ScopedString s(scope, ctx->d()->engine->newString(QStringLiteral("join"))); ScopedFunctionObject f(scope, o->get(s.getPointer())); if (!!f) { ScopedCallData d(scope, 0); d->thisObject = ctx->d()->callData->thisObject; return f->call(d); } return ObjectPrototype::method_toString(ctx); } ReturnedValue ArrayPrototype::method_toLocaleString(CallContext *ctx) { return method_toString(ctx); } ReturnedValue ArrayPrototype::method_concat(CallContext *ctx) { Scope scope(ctx); ScopedObject result(scope, ctx->d()->engine->newArrayObject());
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
ScopedObject thisObject(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!thisObject) return Encode::undefined(); ScopedArrayObject instance(scope, thisObject); if (instance) { result->copyArrayData(instance.getPointer()); } else { result->arraySet(0, thisObject); } ScopedArrayObject elt(scope); ScopedObject eltAsObj(scope); ScopedValue entry(scope); for (int i = 0; i < ctx->d()->callData->argc; ++i) { eltAsObj = ctx->d()->callData->args[i]; elt = ctx->d()->callData->args[i]; if (elt) { uint n = elt->getLength(); uint newLen = ArrayData::append(result.getPointer(), elt.getPointer(), n); result->setArrayLengthUnchecked(newLen); } else if (eltAsObj && eltAsObj->isListType()) { const uint startIndex = result->getLength(); for (int i = 0, len = eltAsObj->getLength(); i < len; ++i) { entry = eltAsObj->getIndexed(i); result->putIndexed(startIndex + i, entry); } } else { result->arraySet(result->getLength(), ValueRef(ctx->d()->callData->args[i])); } } return result.asReturnedValue(); } ReturnedValue ArrayPrototype::method_join(CallContext *ctx) { Scope scope(ctx); ScopedValue arg(scope, ctx->argument(0)); QString r4; if (arg->isUndefined()) r4 = QStringLiteral(","); else r4 = arg->toQString(); ScopedObject self(scope, ctx->d()->callData->thisObject); ScopedValue length(scope, self->get(ctx->d()->engine->id_length)); const quint32 r2 = length->isUndefined() ? 0 : length->toUInt32(); if (!r2) return ctx->d()->engine->newString(QString())->asReturnedValue(); QString R; // ### FIXME if (ArrayObject *a = self->asArrayObject()) { ScopedValue e(scope); for (uint i = 0; i < a->getLength(); ++i) { if (i) R += r4; e = a->getIndexed(i); if (scope.hasException()) return Encode::undefined(); if (!e->isNullOrUndefined()) R += e->toString(ctx)->toQString(); } } else { //
211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
// crazy! // ScopedString name(scope, ctx->d()->engine->newString(QStringLiteral("0"))); ScopedValue r6(scope, self->get(name.getPointer())); if (!r6->isNullOrUndefined()) R = r6->toString(ctx)->toQString(); ScopedValue r12(scope); for (quint32 k = 1; k < r2; ++k) { R += r4; name = Primitive::fromDouble(k).toString(ctx); r12 = self->get(name.getPointer()); if (scope.hasException()) return Encode::undefined(); if (!r12->isNullOrUndefined()) R += r12->toString(ctx)->toQString(); } } return ctx->d()->engine->newString(R)->asReturnedValue(); } ReturnedValue ArrayPrototype::method_pop(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); if (!len) { if (!instance->isArrayObject()) instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromInt32(0))); return Encode::undefined(); } ScopedValue result(scope, instance->getIndexed(len - 1)); if (scope.hasException()) return Encode::undefined(); instance->deleteIndexedProperty(len - 1); if (scope.hasException()) return Encode::undefined(); if (instance->isArrayObject()) instance->setArrayLength(len - 1); else instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(len - 1))); return result.asReturnedValue(); } ReturnedValue ArrayPrototype::method_push(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); instance->arrayCreate(); Q_ASSERT(instance->arrayData()); uint len = instance->getLength(); if (len + ctx->d()->callData->argc < len) { // ughh... double l = len; ScopedString s(scope); for (int i = 0; i < ctx->d()->callData->argc; ++i) { s = Primitive::fromDouble(l + i).toString(ctx);
281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
instance->put(s.getPointer(), ctx->d()->callData->args[i]); } double newLen = l + ctx->d()->callData->argc; if (!instance->isArrayObject()) instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(newLen))); else { ScopedString str(scope, ctx->d()->engine->newString(QStringLiteral("Array.prototype.push: Overflow"))); return ctx->throwRangeError(str); } return Encode(newLen); } if (!ctx->d()->callData->argc) { ; } else if (!instance->protoHasArray() && instance->arrayData()->length() <= len && instance->arrayType() == ArrayData::Simple) { instance->arrayData()->vtable()->putArray(instance.getPointer(), len, ctx->d()->callData->args, ctx->d()->callData->argc); len = instance->arrayData()->length(); } else { for (int i = 0; i < ctx->d()->callData->argc; ++i) instance->putIndexed(len + i, ctx->d()->callData->args[i]); len += ctx->d()->callData->argc; } if (instance->isArrayObject()) instance->setArrayLengthUnchecked(len); else instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(len))); return Encode(len); } ReturnedValue ArrayPrototype::method_reverse(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint length = instance->getLength(); int lo = 0, hi = length - 1; ScopedValue lval(scope); ScopedValue hval(scope); for (; lo < hi; ++lo, --hi) { bool loExists, hiExists; lval = instance->getIndexed(lo, &loExists); hval = instance->getIndexed(hi, &hiExists); if (scope.hasException()) return Encode::undefined(); if (hiExists) instance->putIndexed(lo, hval); else instance->deleteIndexedProperty(lo); if (scope.hasException()) return Encode::undefined(); if (loExists) instance->putIndexed(hi, lval); else instance->deleteIndexedProperty(hi); } return instance.asReturnedValue(); } ReturnedValue ArrayPrototype::method_shift(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); instance->arrayCreate();
351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
Q_ASSERT(instance->arrayData()); uint len = instance->getLength(); if (!len) { if (!instance->isArrayObject()) instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromInt32(0))); return Encode::undefined(); } ScopedValue result(scope); if (!instance->protoHasArray() && !instance->arrayData()->hasAttributes() && instance->arrayData()->length() <= len && instance->arrayData()->type() != ArrayData::Custom) { result = instance->arrayData()->vtable()->pop_front(instance.getPointer()); } else { result = instance->getIndexed(0); if (scope.hasException()) return Encode::undefined(); ScopedValue v(scope); // do it the slow way for (uint k = 1; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (scope.hasException()) return Encode::undefined(); if (exists) instance->putIndexed(k - 1, v); else instance->deleteIndexedProperty(k - 1); if (scope.hasException()) return Encode::undefined(); } instance->deleteIndexedProperty(len - 1); if (scope.hasException()) return Encode::undefined(); } if (instance->isArrayObject()) instance->setArrayLengthUnchecked(len - 1); else instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(len - 1))); return result.asReturnedValue(); } ReturnedValue ArrayPrototype::method_slice(CallContext *ctx) { Scope scope(ctx); ScopedObject o(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!o) return Encode::undefined(); Scoped<ArrayObject> result(scope, ctx->d()->engine->newArrayObject()); uint len = o->getLength(); double s = ScopedValue(scope, ctx->argument(0))->toInteger(); uint start; if (s < 0) start = (uint)qMax(len + s, 0.); else if (s > len) start = len; else start = (uint) s; uint end = len; if (ctx->d()->callData->argc > 1 && !ctx->d()->callData->args[1].isUndefined()) { double e = ctx->d()->callData->args[1].toInteger(); if (e < 0) end = (uint)qMax(len + e, 0.); else if (e > len) end = len; else end = (uint) e;
421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
} ScopedValue v(scope); uint n = 0; for (uint i = start; i < end; ++i) { bool exists; v = o->getIndexed(i, &exists); if (scope.hasException()) return Encode::undefined(); if (exists) result->arraySet(n, v); ++n; } return result.asReturnedValue(); } ReturnedValue ArrayPrototype::method_sort(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); ScopedValue comparefn(scope, ctx->argument(0)); ArrayData::sort(ctx, instance, comparefn, len); return ctx->d()->callData->thisObject.asReturnedValue(); } ReturnedValue ArrayPrototype::method_splice(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<ArrayObject> newArray(scope, ctx->d()->engine->newArrayObject()); double rs = ScopedValue(scope, ctx->argument(0))->toInteger(); uint start; if (rs < 0) start = (uint) qMax(0., len + rs); else start = (uint) qMin(rs, (double)len); uint deleteCount = (uint)qMin(qMax(ScopedValue(scope, ctx->argument(1))->toInteger(), 0.), (double)(len - start)); newArray->arrayReserve(deleteCount); ScopedValue v(scope); for (uint i = 0; i < deleteCount; ++i) { bool exists; v = instance->getIndexed(start + i, &exists); if (scope.hasException()) return Encode::undefined(); if (exists) newArray->arrayPut(i, v); } newArray->setArrayLengthUnchecked(deleteCount); uint itemCount = ctx->d()->callData->argc < 2 ? 0 : ctx->d()->callData->argc - 2; if (itemCount < deleteCount) { for (uint k = start; k < len - deleteCount; ++k) { bool exists; v = instance->getIndexed(k + deleteCount, &exists); if (scope.hasException()) return Encode::undefined(); if (exists)
491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
instance->putIndexed(k + itemCount, v); else instance->deleteIndexedProperty(k + itemCount); if (scope.hasException()) return Encode::undefined(); } for (uint k = len; k > len - deleteCount + itemCount; --k) { instance->deleteIndexedProperty(k - 1); if (scope.hasException()) return Encode::undefined(); } } else if (itemCount > deleteCount) { uint k = len - deleteCount; while (k > start) { bool exists; v = instance->getIndexed(k + deleteCount - 1, &exists); if (scope.hasException()) return Encode::undefined(); if (exists) instance->putIndexed(k + itemCount - 1, v); else instance->deleteIndexedProperty(k + itemCount - 1); if (scope.hasException()) return Encode::undefined(); --k; } } for (uint i = 0; i < itemCount; ++i) { instance->putIndexed(start + i, ctx->d()->callData->args[i + 2]); if (scope.hasException()) return Encode::undefined(); } ctx->d()->strictMode = true; instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(len - deleteCount + itemCount))); return newArray.asReturnedValue(); } ReturnedValue ArrayPrototype::method_unshift(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); instance->arrayCreate(); Q_ASSERT(instance->arrayData()); uint len = instance->getLength(); if (!instance->protoHasArray() && !instance->arrayData()->hasAttributes() && instance->arrayData()->length() <= len && instance->arrayData()->type() != ArrayData::Custom) { instance->arrayData()->vtable()->push_front(instance.getPointer(), ctx->d()->callData->args, ctx->d()->callData->argc); } else { ScopedValue v(scope); for (uint k = len; k > 0; --k) { bool exists; v = instance->getIndexed(k - 1, &exists); if (exists) instance->putIndexed(k + ctx->d()->callData->argc - 1, v); else instance->deleteIndexedProperty(k + ctx->d()->callData->argc - 1); } for (int i = 0; i < ctx->d()->callData->argc; ++i) instance->putIndexed(i, ctx->d()->callData->args[i]); } uint newLen = len + ctx->d()->callData->argc; if (instance->isArrayObject())
561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
instance->setArrayLengthUnchecked(newLen); else instance->put(ctx->d()->engine->id_length, ScopedValue(scope, Primitive::fromDouble(newLen))); return Encode(newLen); } ReturnedValue ArrayPrototype::method_indexOf(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); if (!len) return Encode(-1); ScopedValue searchValue(scope, ctx->d()->callData->argument(0)); uint fromIndex = 0; if (ctx->d()->callData->argc >= 2) { double f = ctx->d()->callData->args[1].toInteger(); if (scope.hasException()) return Encode::undefined(); if (f >= len) return Encode(-1); if (f < 0) f = qMax(len + f, 0.); fromIndex = (uint) f; } if (instance->isStringObject()) { ScopedValue v(scope); for (uint k = fromIndex; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (exists && RuntimeHelpers::strictEqual(v, searchValue)) return Encode(k); } return Encode(-1); } ScopedValue value(scope); if (instance->hasAccessorProperty() || (instance->arrayType() >= ArrayData::Sparse) || instance->protoHasArray()) { // lets be safe and slow for (uint i = fromIndex; i < len; ++i) { bool exists; value = instance->getIndexed(i, &exists); if (scope.hasException()) return Encode::undefined(); if (exists && RuntimeHelpers::strictEqual(value, searchValue)) return Encode(i); } } else if (!instance->arrayData()) { return Encode(-1); } else { Q_ASSERT(instance->arrayType() == ArrayData::Simple || instance->arrayType() == ArrayData::Complex); SimpleArrayData *sa = static_cast<SimpleArrayData *>(instance->arrayData()); if (len > sa->len()) len = sa->len(); uint idx = fromIndex; while (idx < len) { value = sa->data(idx); if (scope.hasException()) return Encode::undefined(); if (RuntimeHelpers::strictEqual(value, searchValue)) return Encode(idx); ++idx;
631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
} } return Encode(-1); } ReturnedValue ArrayPrototype::method_lastIndexOf(CallContext *ctx) { Scope scope(ctx); ScopedObject instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); if (!len) return Encode(-1); ScopedValue searchValue(scope); uint fromIndex = len; if (ctx->d()->callData->argc >= 1) searchValue = ctx->argument(0); else searchValue = Primitive::undefinedValue(); if (ctx->d()->callData->argc >= 2) { double f = ctx->d()->callData->args[1].toInteger(); if (scope.hasException()) return Encode::undefined(); if (f > 0) f = qMin(f, (double)(len - 1)); else if (f < 0) { f = len + f; if (f < 0) return Encode(-1); } fromIndex = (uint) f + 1; } ScopedValue v(scope); for (uint k = fromIndex; k > 0;) { --k; bool exists; v = instance->getIndexed(k, &exists); if (scope.hasException()) return Encode::undefined(); if (exists && RuntimeHelpers::strictEqual(v, searchValue)) return Encode(k); } return Encode(-1); } ReturnedValue ArrayPrototype::method_every(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); ScopedCallData callData(scope, 3); callData->args[2] = instance; callData->thisObject = ctx->argument(1); ScopedValue r(scope); ScopedValue v(scope);
701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
bool ok = true; for (uint k = 0; ok && k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (!exists) continue; callData->args[0] = v; callData->args[1] = Primitive::fromDouble(k); r = callback->call(callData); ok = r->toBoolean(); } return Encode(ok); } ReturnedValue ArrayPrototype::method_some(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); ScopedCallData callData(scope, 3); callData->thisObject = ctx->argument(1); callData->args[2] = instance; ScopedValue v(scope); ScopedValue r(scope); for (uint k = 0; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (!exists) continue; callData->args[0] = v; callData->args[1] = Primitive::fromDouble(k); r = callback->call(callData); if (r->toBoolean()) return Encode(true); } return Encode(false); } ReturnedValue ArrayPrototype::method_forEach(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); ScopedCallData callData(scope, 3); callData->thisObject = ctx->argument(1); callData->args[2] = instance; ScopedValue v(scope); for (uint k = 0; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists);
771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
if (!exists) continue; callData->args[0] = v; callData->args[1] = Primitive::fromDouble(k); callback->call(callData); } return Encode::undefined(); } ReturnedValue ArrayPrototype::method_map(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); Scoped<ArrayObject> a(scope, ctx->d()->engine->newArrayObject()); a->arrayReserve(len); a->setArrayLengthUnchecked(len); ScopedValue mapped(scope); ScopedCallData callData(scope, 3); callData->thisObject = ctx->argument(1); callData->args[2] = instance; ScopedValue v(scope); for (uint k = 0; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (!exists) continue; callData->args[0] = v; callData->args[1] = Primitive::fromDouble(k); mapped = callback->call(callData); a->arraySet(k, mapped); } return a.asReturnedValue(); } ReturnedValue ArrayPrototype::method_filter(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); Scoped<ArrayObject> a(scope, ctx->d()->engine->newArrayObject()); a->arrayReserve(len); ScopedValue selected(scope); ScopedCallData callData(scope, 3); callData->thisObject = ctx->argument(1); callData->args[2] = instance; ScopedValue v(scope);
841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910
uint to = 0; for (uint k = 0; k < len; ++k) { bool exists; v = instance->getIndexed(k, &exists); if (!exists) continue; callData->args[0] = v; callData->args[1] = Primitive::fromDouble(k); selected = callback->call(callData); if (selected->toBoolean()) { a->arraySet(to, v); ++to; } } return a.asReturnedValue(); } ReturnedValue ArrayPrototype::method_reduce(CallContext *ctx) { Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); uint k = 0; ScopedValue acc(scope); ScopedValue v(scope); if (ctx->d()->callData->argc > 1) { acc = ctx->argument(1); } else { bool kPresent = false; while (k < len && !kPresent) { v = instance->getIndexed(k, &kPresent); if (kPresent) acc = v; ++k; } if (!kPresent) return ctx->throwTypeError(); } ScopedCallData callData(scope, 4); callData->thisObject = Primitive::undefinedValue(); callData->args[0] = acc; callData->args[3] = instance; while (k < len) { bool kPresent; v = instance->getIndexed(k, &kPresent); if (kPresent) { callData->args[0] = acc; callData->args[1] = v; callData->args[2] = Primitive::fromDouble(k); acc = callback->call(callData); } ++k; } return acc.asReturnedValue(); } ReturnedValue ArrayPrototype::method_reduceRight(CallContext *ctx) {
911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
Scope scope(ctx); Scoped<Object> instance(scope, ctx->d()->callData->thisObject.toObject(ctx)); if (!instance) return Encode::undefined(); uint len = instance->getLength(); Scoped<FunctionObject> callback(scope, ctx->argument(0)); if (!callback) return ctx->throwTypeError(); if (len == 0) { if (ctx->d()->callData->argc == 1) return ctx->throwTypeError(); return ctx->argument(1); } uint k = len; ScopedValue acc(scope); ScopedValue v(scope); if (ctx->d()->callData->argc > 1) { acc = ctx->argument(1); } else { bool kPresent = false; while (k > 0 && !kPresent) { v = instance->getIndexed(k - 1, &kPresent); if (kPresent) acc = v; --k; } if (!kPresent) return ctx->throwTypeError(); } ScopedCallData callData(scope, 4); callData->thisObject = Primitive::undefinedValue(); callData->args[3] = instance; while (k > 0) { bool kPresent; v = instance->getIndexed(k - 1, &kPresent); if (kPresent) { callData->args[0] = acc; callData->args[1] = v; callData->args[2] = Primitive::fromDouble(k - 1); acc = callback->call(callData); } --k; } return acc.asReturnedValue(); }