2013-01-10 21:42:58 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
|
|
|
** This file is part of the V4VM module of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** 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 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: 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.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
#include "qv4objectiterator.h"
|
2013-01-21 20:54:53 +00:00
|
|
|
#include "qv4object.h"
|
2013-01-21 13:20:19 +00:00
|
|
|
#include "qv4stringobject.h"
|
2013-01-10 21:42:58 +00:00
|
|
|
|
|
|
|
namespace QQmlJS {
|
|
|
|
namespace VM {
|
|
|
|
|
2013-01-14 14:54:07 +00:00
|
|
|
ObjectIterator::ObjectIterator(ExecutionContext *context, Object *o, uint flags)
|
|
|
|
: context(context)
|
|
|
|
, object(o)
|
2013-01-10 21:42:58 +00:00
|
|
|
, current(o)
|
|
|
|
, arrayNode(0)
|
|
|
|
, arrayIndex(0)
|
|
|
|
, tableIndex(0)
|
|
|
|
, flags(flags)
|
|
|
|
{
|
2013-01-14 14:54:07 +00:00
|
|
|
if (current && current->asStringObject())
|
|
|
|
this->flags |= CurrentIsString;
|
2013-01-10 21:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PropertyDescriptor *ObjectIterator::next(String **name, uint *index)
|
|
|
|
{
|
|
|
|
PropertyDescriptor *p = 0;
|
|
|
|
*name = 0;
|
|
|
|
*index = UINT_MAX;
|
|
|
|
while (1) {
|
|
|
|
if (!current)
|
|
|
|
break;
|
|
|
|
|
2013-01-14 14:54:07 +00:00
|
|
|
if (flags & CurrentIsString) {
|
|
|
|
StringObject *s = static_cast<StringObject *>(current);
|
|
|
|
uint slen = s->value.stringValue()->toQString().length();
|
|
|
|
while (arrayIndex < slen) {
|
|
|
|
*index = arrayIndex;
|
|
|
|
++arrayIndex;
|
|
|
|
return s->__getOwnProperty__(context, *index);
|
|
|
|
}
|
|
|
|
flags &= ~CurrentIsString;
|
2013-02-03 10:36:55 +00:00
|
|
|
arrayNode = current->sparseArrayBegin();
|
2013-01-14 14:54:07 +00:00
|
|
|
// iterate until we're past the end of the string
|
|
|
|
while (arrayNode && arrayNode->key() < slen)
|
|
|
|
arrayNode = arrayNode->nextNode();
|
|
|
|
}
|
|
|
|
|
2013-01-10 21:42:58 +00:00
|
|
|
if (!arrayIndex)
|
2013-02-03 10:36:55 +00:00
|
|
|
arrayNode = current->sparseArrayBegin();
|
2013-01-10 21:42:58 +00:00
|
|
|
|
|
|
|
// sparse arrays
|
|
|
|
if (arrayNode) {
|
2013-02-03 10:36:55 +00:00
|
|
|
while (arrayNode != current->sparseArrayEnd()) {
|
2013-01-10 21:42:58 +00:00
|
|
|
int k = arrayNode->key();
|
2013-02-03 10:36:55 +00:00
|
|
|
p = current->arrayAt(k);
|
2013-01-10 21:42:58 +00:00
|
|
|
arrayNode = arrayNode->nextNode();
|
|
|
|
if (p && (!(flags & EnumberableOnly) || p->isEnumerable())) {
|
|
|
|
arrayIndex = k + 1;
|
|
|
|
*index = k;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
arrayNode = 0;
|
|
|
|
arrayIndex = UINT_MAX;
|
|
|
|
}
|
|
|
|
// dense arrays
|
2013-02-03 10:36:55 +00:00
|
|
|
while (arrayIndex < current->arrayLength()) {
|
|
|
|
p = current->arrayAt(arrayIndex);
|
2013-01-10 21:42:58 +00:00
|
|
|
++arrayIndex;
|
2013-01-14 14:54:07 +00:00
|
|
|
if (p && p->type != PropertyDescriptor::Generic && (!(flags & EnumberableOnly) || p->isEnumerable())) {
|
2013-01-10 21:42:58 +00:00
|
|
|
*index = arrayIndex - 1;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!current->members || tableIndex >= (uint)current->members->_propertyCount) {
|
|
|
|
if (flags & WithProtoChain)
|
|
|
|
current = current->prototype;
|
|
|
|
else
|
|
|
|
current = 0;
|
2013-01-14 14:54:07 +00:00
|
|
|
if (current && current->asStringObject())
|
|
|
|
flags |= CurrentIsString;
|
|
|
|
else
|
|
|
|
flags &= ~CurrentIsString;
|
|
|
|
|
|
|
|
|
2013-01-10 21:42:58 +00:00
|
|
|
arrayIndex = 0;
|
|
|
|
tableIndex = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
PropertyTableEntry *pt = current->members->_properties[tableIndex];
|
|
|
|
++tableIndex;
|
|
|
|
// ### check that it's not a repeated attribute
|
2013-02-01 14:59:22 +00:00
|
|
|
if (pt) {
|
2013-02-03 11:34:32 +00:00
|
|
|
PropertyDescriptor *pd = current->memberData + pt->valueIndex;
|
2013-02-01 14:59:22 +00:00
|
|
|
if (!(flags & EnumberableOnly) || pd->isEnumerable()) {
|
|
|
|
*name = pt->name;
|
|
|
|
p = pd;
|
|
|
|
return p;
|
|
|
|
}
|
2013-01-10 21:42:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value ObjectIterator::nextPropertyName()
|
|
|
|
{
|
|
|
|
uint index;
|
|
|
|
String *name;
|
|
|
|
next(&name, &index);
|
|
|
|
if (name)
|
|
|
|
return Value::fromString(name);
|
|
|
|
if (index < UINT_MAX)
|
|
|
|
return Value::fromDouble(index);
|
|
|
|
return Value::nullValue();
|
|
|
|
}
|
|
|
|
|
2013-01-14 14:54:07 +00:00
|
|
|
Value ObjectIterator::nextPropertyNameAsString()
|
2013-01-10 21:42:58 +00:00
|
|
|
{
|
|
|
|
uint index;
|
|
|
|
String *name;
|
|
|
|
next(&name, &index);
|
|
|
|
if (name)
|
|
|
|
return Value::fromString(name);
|
|
|
|
if (index < UINT_MAX)
|
|
|
|
return __qmljs_to_string(Value::fromDouble(index), context);
|
|
|
|
return Value::nullValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|