1 /****************************************************************************
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the QtScript module of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL-ONLY$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser
12 ** General Public License version 2.1 as published by the Free Software
13 ** Foundation and appearing in the file LICENSE.LGPL included in the
14 ** packaging of this file. Please review the following information to
15 ** ensure the GNU Lesser General Public License version 2.1 requirements
16 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 ** If you have questions regarding the use of this file, please contact
19 ** Nokia at qt-info@nokia.com.
22 ****************************************************************************/
25 #include "qscriptvalueiterator.h"
27 #include "qscriptstring.h"
28 #include "qscriptengine.h"
29 #include "qscriptengine_p.h"
30 #include "qscriptvalue_p.h"
31 #include "qlinkedlist.h"
35 #include "PropertyNameArray.h"
37 #include "JSFunction.h"
43 \class QScriptValueIterator
45 \brief The QScriptValueIterator class provides a Java-style iterator for QScriptValue.
50 The QScriptValueIterator constructor takes a QScriptValue as
51 argument. After construction, the iterator is located at the very
52 beginning of the sequence of properties. Here's how to iterate over
53 all the properties of a QScriptValue:
55 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 0
57 The next() advances the iterator. The name(), value() and flags()
58 functions return the name, value and flags of the last item that was
61 If you want to remove properties as you iterate over the
62 QScriptValue, use remove(). If you want to modify the value of a
63 property, use setValue().
65 Note that QScriptValueIterator only iterates over the QScriptValue's
66 own properties; i.e. it does not follow the prototype chain. You can
67 use a loop like this to follow the prototype chain:
69 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 1
71 Note that QScriptValueIterator will not automatically skip over
72 properties that have the QScriptValue::SkipInEnumeration flag set;
73 that flag only affects iteration in script code. If you want, you
74 can skip over such properties with code like the following:
76 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 2
78 \sa QScriptValue::property()
81 class QScriptValueIteratorPrivate
84 QScriptValueIteratorPrivate()
88 ~QScriptValueIteratorPrivate()
92 QScriptEnginePrivate *eng_p = engine();
95 QScript::APIShim shim(eng_p);
96 propertyNames.clear(); //destroying the identifiers need to be done under the APIShim guard
99 QScriptValuePrivate *object() const
101 return QScriptValuePrivate::get(objectValue);
104 QScriptEnginePrivate *engine() const
106 return QScriptEnginePrivate::get(objectValue.engine());
109 void ensureInitialized()
113 QScriptEnginePrivate *eng_p = engine();
114 QScript::APIShim shim(eng_p);
115 JSC::ExecState *exec = eng_p->globalExec();
116 JSC::PropertyNameArray propertyNamesArray(exec);
117 JSC::asObject(object()->jscValue)->getOwnPropertyNames(exec, propertyNamesArray, JSC::IncludeDontEnumProperties);
119 JSC::PropertyNameArray::const_iterator propertyNamesIt = propertyNamesArray.begin();
120 for(; propertyNamesIt != propertyNamesArray.end(); ++propertyNamesIt) {
121 propertyNames.append(*propertyNamesIt);
123 it = propertyNames.begin();
127 QScriptValue objectValue;
128 QLinkedList<JSC::Identifier> propertyNames;
129 QLinkedList<JSC::Identifier>::iterator it;
130 QLinkedList<JSC::Identifier>::iterator current;
135 Constructs an iterator for traversing \a object. The iterator is
136 set to be at the front of the sequence of properties (before the
139 QScriptValueIterator::QScriptValueIterator(const QScriptValue &object)
142 if (object.isObject()) {
143 d_ptr.reset(new QScriptValueIteratorPrivate());
144 d_ptr->objectValue = object;
149 Destroys the iterator.
151 QScriptValueIterator::~QScriptValueIterator()
156 Returns true if there is at least one item ahead of the iterator
157 (i.e. the iterator is \e not at the back of the property sequence);
158 otherwise returns false.
160 \sa next(), hasPrevious()
162 bool QScriptValueIterator::hasNext() const
164 Q_D(const QScriptValueIterator);
168 const_cast<QScriptValueIteratorPrivate*>(d)->ensureInitialized();
169 return d->it != d->propertyNames.end();
173 Advances the iterator by one position.
175 Calling this function on an iterator located at the back of the
176 container leads to undefined results.
178 \sa hasNext(), previous(), name()
180 void QScriptValueIterator::next()
182 Q_D(QScriptValueIterator);
185 d->ensureInitialized();
192 Returns true if there is at least one item behind the iterator
193 (i.e. the iterator is \e not at the front of the property sequence);
194 otherwise returns false.
196 \sa previous(), hasNext()
198 bool QScriptValueIterator::hasPrevious() const
200 Q_D(const QScriptValueIterator);
204 const_cast<QScriptValueIteratorPrivate*>(d)->ensureInitialized();
205 return d->it != d->propertyNames.begin();
209 Moves the iterator back by one position.
211 Calling this function on an iterator located at the front of the
212 container leads to undefined results.
214 \sa hasPrevious(), next(), name()
216 void QScriptValueIterator::previous()
218 Q_D(QScriptValueIterator);
221 d->ensureInitialized();
227 Moves the iterator to the front of the QScriptValue (before the
232 void QScriptValueIterator::toFront()
234 Q_D(QScriptValueIterator);
237 d->ensureInitialized();
238 d->it = d->propertyNames.begin();
242 Moves the iterator to the back of the QScriptValue (after the
245 \sa toFront(), previous()
247 void QScriptValueIterator::toBack()
249 Q_D(QScriptValueIterator);
252 d->ensureInitialized();
253 d->it = d->propertyNames.end();
257 Returns the name of the last property that was jumped over using
258 next() or previous().
262 QString QScriptValueIterator::name() const
264 Q_D(const QScriptValueIterator);
265 if (!d || !d->initialized || !d->engine())
267 return d->current->ustring();
273 Returns the name of the last property that was jumped over using
274 next() or previous().
276 QScriptString QScriptValueIterator::scriptName() const
278 Q_D(const QScriptValueIterator);
279 if (!d || !d->initialized || !d->engine())
280 return QScriptString();
281 return d->engine()->toStringHandle(*d->current);
285 Returns the value of the last property that was jumped over using
286 next() or previous().
288 \sa setValue(), name()
290 QScriptValue QScriptValueIterator::value() const
292 Q_D(const QScriptValueIterator);
293 if (!d || !d->initialized || !d->engine())
294 return QScriptValue();
295 QScript::APIShim shim(d->engine());
296 JSC::JSValue jsValue = d->object()->property(*d->current);
297 return d->engine()->scriptValueFromJSCValue(jsValue);
301 Sets the \a value of the last property that was jumped over using
302 next() or previous().
306 void QScriptValueIterator::setValue(const QScriptValue &value)
308 Q_D(QScriptValueIterator);
309 if (!d || !d->initialized || !d->engine())
311 QScript::APIShim shim(d->engine());
312 JSC::JSValue jsValue = d->engine()->scriptValueToJSCValue(value);
313 d->object()->setProperty(*d->current, jsValue);
317 Returns the flags of the last property that was jumped over using
318 next() or previous().
322 QScriptValue::PropertyFlags QScriptValueIterator::flags() const
324 Q_D(const QScriptValueIterator);
325 if (!d || !d->initialized || !d->engine())
327 QScript::APIShim shim(d->engine());
328 return d->object()->propertyFlags(*d->current);
332 Removes the last property that was jumped over using next()
337 void QScriptValueIterator::remove()
339 Q_D(QScriptValueIterator);
340 if (!d || !d->initialized || !d->engine())
342 QScript::APIShim shim(d->engine());
343 d->object()->setProperty(*d->current, JSC::JSValue());
344 d->propertyNames.erase(d->current);
348 Makes the iterator operate on \a object. The iterator is set to be
349 at the front of the sequence of properties (before the first
352 QScriptValueIterator& QScriptValueIterator::operator=(QScriptValue &object)
355 if (object.isObject()) {
356 d_ptr.reset(new QScriptValueIteratorPrivate());
357 d_ptr->objectValue = object;