]>
git.saurik.com Git - apple/javascriptcore.git/blob - qt/api/qscriptvalue.cpp
8a7a6c47aac0251f4e7d6fcd15e835d8dd83e7ad
2 Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
22 #include "qscriptvalue.h"
24 #include "qscriptengine.h"
25 #include "qscriptengine_p.h"
26 #include "qscriptvalue_p.h"
27 #include <QtCore/qdebug.h>
30 Constructs an invalid value.
32 QScriptValue::QScriptValue()
33 : d_ptr(new QScriptValuePrivate())
38 Constructs a new QScriptValue with a boolean \a value.
40 QScriptValue::QScriptValue(bool value
)
41 : d_ptr(new QScriptValuePrivate(value
))
46 Constructs a new QScriptValue with a number \a value.
48 QScriptValue::QScriptValue(int value
)
49 : d_ptr(new QScriptValuePrivate(value
))
54 Constructs a new QScriptValue with a number \a value.
56 QScriptValue::QScriptValue(uint value
)
57 : d_ptr(new QScriptValuePrivate(value
))
62 Constructs a new QScriptValue with a number \a value.
64 QScriptValue::QScriptValue(qsreal value
)
65 : d_ptr(new QScriptValuePrivate(value
))
70 Constructs a new QScriptValue with a string \a value.
72 QScriptValue::QScriptValue(const QString
& value
)
73 : d_ptr(new QScriptValuePrivate(value
))
78 Constructs a new QScriptValue with a special \a value.
80 QScriptValue::QScriptValue(SpecialValue value
)
81 : d_ptr(new QScriptValuePrivate(value
))
86 Constructs a new QScriptValue with a string \a value.
88 QScriptValue::QScriptValue(const char* value
)
89 : d_ptr(new QScriptValuePrivate(QString::fromUtf8(value
)))
94 Block automatic convertion to bool
97 QScriptValue::QScriptValue(void* d
)
103 Constructs a new QScriptValue from private
106 QScriptValue::QScriptValue(QScriptValuePrivate
* d
)
114 Constructs a new QScriptValue with the boolean \a value and
115 registers it with the script \a engine.
117 QScriptValue::QScriptValue(QScriptEngine
* engine
, bool value
)
120 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
122 d_ptr
= new QScriptValuePrivate(value
);
128 Constructs a new QScriptValue with the integer \a value and
129 registers it with the script \a engine.
131 QScriptValue::QScriptValue(QScriptEngine
* engine
, int value
)
134 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
136 d_ptr
= new QScriptValuePrivate(value
);
142 Constructs a new QScriptValue with the unsigned integer \a value and
143 registers it with the script \a engine.
145 QScriptValue::QScriptValue(QScriptEngine
* engine
, uint value
)
148 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
150 d_ptr
= new QScriptValuePrivate(value
);
156 Constructs a new QScriptValue with the qsreal \a value and
157 registers it with the script \a engine.
159 QScriptValue::QScriptValue(QScriptEngine
* engine
, qsreal value
)
162 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
164 d_ptr
= new QScriptValuePrivate(value
);
170 Constructs a new QScriptValue with the string \a value and
171 registers it with the script \a engine.
173 QScriptValue::QScriptValue(QScriptEngine
* engine
, const QString
& value
)
176 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
178 d_ptr
= new QScriptValuePrivate(value
);
184 Constructs a new QScriptValue with the string \a value and
185 registers it with the script \a engine.
187 QScriptValue::QScriptValue(QScriptEngine
* engine
, const char* value
)
190 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), QString::fromUtf8(value
));
192 d_ptr
= new QScriptValuePrivate(QString::fromUtf8(value
));
198 Constructs a new QScriptValue with the special \a value and
199 registers it with the script \a engine.
201 QScriptValue::QScriptValue(QScriptEngine
* engine
, SpecialValue value
)
204 d_ptr
= new QScriptValuePrivate(QScriptEnginePrivate::get(engine
), value
);
206 d_ptr
= new QScriptValuePrivate(value
);
210 Constructs a new QScriptValue that is a copy of \a other.
212 Note that if \a other is an object (i.e., isObject() would return
213 true), then only a reference to the underlying object is copied into
214 the new script value (i.e., the object itself is not copied).
216 QScriptValue::QScriptValue(const QScriptValue
& other
)
222 Destroys this QScriptValue.
224 QScriptValue::~QScriptValue()
229 Returns true if this QScriptValue is valid; otherwise returns
232 bool QScriptValue::isValid() const
234 return d_ptr
->isValid();
238 Returns true if this QScriptValue is of the primitive type Boolean;
239 otherwise returns false.
243 bool QScriptValue::isBool() const
245 return d_ptr
->isBool();
251 Use isBool() instead.
252 Returns true if this QScriptValue is of the primitive type Boolean;
253 otherwise returns false.
255 bool QScriptValue::isBoolean() const
257 return d_ptr
->isBool();
261 Returns true if this QScriptValue is of the primitive type Number;
262 otherwise returns false.
266 bool QScriptValue::isNumber() const
268 return d_ptr
->isNumber();
272 Returns true if this QScriptValue is of the primitive type Null;
273 otherwise returns false.
275 \sa QScriptEngine::nullValue()
277 bool QScriptValue::isNull() const
279 return d_ptr
->isNull();
283 Returns true if this QScriptValue is of the primitive type String;
284 otherwise returns false.
288 bool QScriptValue::isString() const
290 return d_ptr
->isString();
294 Returns true if this QScriptValue is of the primitive type Undefined;
295 otherwise returns false.
297 \sa QScriptEngine::undefinedValue()
299 bool QScriptValue::isUndefined() const
301 return d_ptr
->isUndefined();
305 Returns true if this QScriptValue is an object of the Error class;
306 otherwise returns false.
308 \sa QScriptContext::throwError()
310 bool QScriptValue::isError() const
312 return d_ptr
->isError();
316 Returns true if this QScriptValue is an object of the Array class;
317 otherwise returns false.
319 \sa QScriptEngine::newArray()
321 bool QScriptValue::isArray() const
323 return d_ptr
->isArray();
327 Returns true if this QScriptValue is an object of the Date class;
328 otherwise returns false.
330 \sa QScriptEngine::newDate()
332 bool QScriptValue::isDate() const
334 return d_ptr
->isDate();
338 Returns true if this QScriptValue is of the Object type; otherwise
341 Note that function values, variant values, and QObject values are
342 objects, so this function returns true for such values.
344 \sa toObject(), QScriptEngine::newObject()
346 bool QScriptValue::isObject() const
348 return d_ptr
->isObject();
352 Returns true if this QScriptValue is a function; otherwise returns
357 bool QScriptValue::isFunction() const
359 return d_ptr
->isFunction();
363 Returns the string value of this QScriptValue, as defined in
364 \l{ECMA-262} section 9.8, "ToString".
366 Note that if this QScriptValue is an object, calling this function
367 has side effects on the script engine, since the engine will call
368 the object's toString() function (and possibly valueOf()) in an
369 attempt to convert the object to a primitive value (possibly
370 resulting in an uncaught script exception).
374 QString
QScriptValue::toString() const
376 return d_ptr
->toString();
380 Returns the number value of this QScriptValue, as defined in
381 \l{ECMA-262} section 9.3, "ToNumber".
383 Note that if this QScriptValue is an object, calling this function
384 has side effects on the script engine, since the engine will call
385 the object's valueOf() function (and possibly toString()) in an
386 attempt to convert the object to a primitive value (possibly
387 resulting in an uncaught script exception).
389 \sa isNumber(), toInteger(), toInt32(), toUInt32(), toUInt16()
391 qsreal
QScriptValue::toNumber() const
393 return d_ptr
->toNumber();
397 Returns the boolean value of this QScriptValue, using the conversion
398 rules described in \l{ECMA-262} section 9.2, "ToBoolean".
400 Note that if this QScriptValue is an object, calling this function
401 has side effects on the script engine, since the engine will call
402 the object's valueOf() function (and possibly toString()) in an
403 attempt to convert the object to a primitive value (possibly
404 resulting in an uncaught script exception).
408 bool QScriptValue::toBool() const
410 return d_ptr
->toBool();
416 Use toBool() instead.
418 bool QScriptValue::toBoolean() const
420 return d_ptr
->toBool();
424 Returns the integer value of this QScriptValue, using the conversion
425 rules described in \l{ECMA-262} section 9.4, "ToInteger".
427 Note that if this QScriptValue is an object, calling this function
428 has side effects on the script engine, since the engine will call
429 the object's valueOf() function (and possibly toString()) in an
430 attempt to convert the object to a primitive value (possibly
431 resulting in an uncaught script exception).
435 qsreal
QScriptValue::toInteger() const
437 return d_ptr
->toInteger();
441 Returns the signed 32-bit integer value of this QScriptValue, using
442 the conversion rules described in \l{ECMA-262} section 9.5, "ToInt32".
444 Note that if this QScriptValue is an object, calling this function
445 has side effects on the script engine, since the engine will call
446 the object's valueOf() function (and possibly toString()) in an
447 attempt to convert the object to a primitive value (possibly
448 resulting in an uncaught script exception).
450 \sa toNumber(), toUInt32()
452 qint32
QScriptValue::toInt32() const
454 return d_ptr
->toInt32();
458 Returns the unsigned 32-bit integer value of this QScriptValue, using
459 the conversion rules described in \l{ECMA-262} section 9.6, "ToUint32".
461 Note that if this QScriptValue is an object, calling this function
462 has side effects on the script engine, since the engine will call
463 the object's valueOf() function (and possibly toString()) in an
464 attempt to convert the object to a primitive value (possibly
465 resulting in an uncaught script exception).
467 \sa toNumber(), toInt32()
469 quint32
QScriptValue::toUInt32() const
471 return d_ptr
->toUInt32();
475 Returns the unsigned 16-bit integer value of this QScriptValue, using
476 the conversion rules described in \l{ECMA-262} section 9.7, "ToUint16".
478 Note that if this QScriptValue is an object, calling this function
479 has side effects on the script engine, since the engine will call
480 the object's valueOf() function (and possibly toString()) in an
481 attempt to convert the object to a primitive value (possibly
482 resulting in an uncaught script exception).
486 quint16
QScriptValue::toUInt16() const
488 return d_ptr
->toUInt16();
494 This function is obsolete; use QScriptEngine::toObject() instead.
496 QScriptValue
QScriptValue::toObject() const
498 return QScriptValuePrivate::get(d_ptr
->toObject());
502 Returns a QDateTime representation of this value, in local time.
503 If this QScriptValue is not a date, or the value of the date is
504 NaN (Not-a-Number), an invalid QDateTime is returned.
508 QDateTime
QScriptValue::toDateTime() const
510 return d_ptr
->toDateTime();
514 Calls this QScriptValue as a function, using \a thisObject as
515 the `this' object in the function call, and passing \a args
516 as arguments to the function. Returns the value returned from
519 If this QScriptValue is not a function, call() does nothing
520 and returns an invalid QScriptValue.
522 Note that if \a thisObject is not an object, the global object
523 (see \l{QScriptEngine::globalObject()}) will be used as the
526 Calling call() can cause an exception to occur in the script engine;
527 in that case, call() returns the value that was thrown (typically an
528 \c{Error} object). You can call
529 QScriptEngine::hasUncaughtException() to determine if an exception
532 \snippet doc/src/snippets/code/src_script_qscriptvalue.cpp 2
536 QScriptValue
QScriptValue::call(const QScriptValue
& thisObject
, const QScriptValueList
& args
)
538 return d_ptr
->call(thisObject
.d_ptr
.data(), args
);
542 Returns the QScriptEngine that created this QScriptValue,
543 or 0 if this QScriptValue is invalid or the value is not
544 associated with a particular engine.
546 QScriptEngine
* QScriptValue::engine() const
548 QScriptEnginePrivate
* engine
= d_ptr
->engine();
550 return QScriptEnginePrivate::get(engine
);
555 If this QScriptValue is an object, returns the internal prototype
556 (\c{__proto__} property) of this object; otherwise returns an
557 invalid QScriptValue.
559 \sa setPrototype(), isObject()
561 QScriptValue
QScriptValue::prototype() const
563 return QScriptValuePrivate::get(d_ptr
->prototype());
567 If this QScriptValue is an object, sets the internal prototype
568 (\c{__proto__} property) of this object to be \a prototype;
569 otherwise does nothing.
571 The internal prototype should not be confused with the public
572 property with name "prototype"; the public prototype is usually
573 only set on functions that act as constructors.
575 \sa prototype(), isObject()
577 void QScriptValue::setPrototype(const QScriptValue
& prototype
)
579 d_ptr
->setPrototype(QScriptValuePrivate::get(prototype
));
583 Assigns the \a other value to this QScriptValue.
585 Note that if \a other is an object (isObject() returns true),
586 only a reference to the underlying object will be assigned;
587 the object itself will not be copied.
589 QScriptValue
& QScriptValue::operator=(const QScriptValue
& other
)
596 Returns true if this QScriptValue is equal to \a other, otherwise
597 returns false. The comparison follows the behavior described in
598 \l{ECMA-262} section 11.9.3, "The Abstract Equality Comparison
601 This function can return true even if the type of this QScriptValue
602 is different from the type of the \a other value; i.e. the
603 comparison is not strict. For example, comparing the number 9 to
604 the string "9" returns true; comparing an undefined value to a null
605 value returns true; comparing a \c{Number} object whose primitive
606 value is 6 to a \c{String} object whose primitive value is "6"
607 returns true; and comparing the number 1 to the boolean value
608 \c{true} returns true. If you want to perform a comparison
609 without such implicit value conversion, use strictlyEquals().
611 Note that if this QScriptValue or the \a other value are objects,
612 calling this function has side effects on the script engine, since
613 the engine will call the object's valueOf() function (and possibly
614 toString()) in an attempt to convert the object to a primitive value
615 (possibly resulting in an uncaught script exception).
617 \sa strictlyEquals(), lessThan()
619 bool QScriptValue::equals(const QScriptValue
& other
) const
621 return d_ptr
->equals(QScriptValuePrivate::get(other
));
625 Returns true if this QScriptValue is equal to \a other using strict
626 comparison (no conversion), otherwise returns false. The comparison
627 follows the behavior described in \l{ECMA-262} section 11.9.6, "The
628 Strict Equality Comparison Algorithm".
630 If the type of this QScriptValue is different from the type of the
631 \a other value, this function returns false. If the types are equal,
632 the result depends on the type, as shown in the following table:
635 \header \o Type \o Result
636 \row \o Undefined \o true
638 \row \o Boolean \o true if both values are true, false otherwise
639 \row \o Number \o false if either value is NaN (Not-a-Number); true if values are equal, false otherwise
640 \row \o String \o true if both values are exactly the same sequence of characters, false otherwise
641 \row \o Object \o true if both values refer to the same object, false otherwise
646 bool QScriptValue::strictlyEquals(const QScriptValue
& other
) const
648 return d_ptr
->strictlyEquals(QScriptValuePrivate::get(other
));
652 Returns true if this QScriptValue is an instance of
653 \a other; otherwise returns false.
655 This QScriptValue is considered to be an instance of \a other if
656 \a other is a function and the value of the \c{prototype}
657 property of \a other is in the prototype chain of this
660 bool QScriptValue::instanceOf(const QScriptValue
& other
) const
662 return d_ptr
->instanceOf(QScriptValuePrivate::get(other
));
666 Returns the value of this QScriptValue's property with the given \a name,
667 using the given \a mode to resolve the property.
669 If no such property exists, an invalid QScriptValue is returned.
671 If the property is implemented using a getter function (i.e. has the
672 PropertyGetter flag set), calling property() has side-effects on the
673 script engine, since the getter function will be called (possibly
674 resulting in an uncaught script exception). If an exception
675 occurred, property() returns the value that was thrown (typically
676 an \c{Error} object).
678 \sa setProperty(), propertyFlags(), QScriptValueIterator
680 QScriptValue
QScriptValue::property(const QString
& name
, const ResolveFlags
& mode
) const
682 return QScriptValuePrivate::get(d_ptr
->property(name
, mode
));
688 Returns the value of this QScriptValue's property with the given \a name,
689 using the given \a mode to resolve the property.
691 This overload of property() is useful when you need to look up the
692 same property repeatedly, since the lookup can be performed faster
693 when the name is represented as an interned string.
695 \sa QScriptEngine::toStringHandle(), setProperty()
697 QScriptValue
QScriptValue::property(const QScriptString
& name
, const ResolveFlags
& mode
) const
699 return QScriptValuePrivate::get(d_ptr
->property(QScriptStringPrivate::get(name
).constData(), mode
));
705 Returns the property at the given \a arrayIndex, using the given \a
706 mode to resolve the property.
708 This function is provided for convenience and performance when
709 working with array objects.
711 If this QScriptValue is not an Array object, this function behaves
712 as if property() was called with the string representation of \a
715 QScriptValue
QScriptValue::property(quint32 arrayIndex
, const ResolveFlags
& mode
) const
717 return QScriptValuePrivate::get(d_ptr
->property(arrayIndex
, mode
));
721 Sets the value of this QScriptValue's property with the given \a name to
724 If this QScriptValue is not an object, this function does nothing.
726 If this QScriptValue does not already have a property with name \a name,
727 a new property is created; the given \a flags then specify how this
728 property may be accessed by script code.
730 If \a value is invalid, the property is removed.
732 If the property is implemented using a setter function (i.e. has the
733 PropertySetter flag set), calling setProperty() has side-effects on
734 the script engine, since the setter function will be called with the
735 given \a value as argument (possibly resulting in an uncaught script
738 Note that you cannot specify custom getter or setter functions for
739 built-in properties, such as the \c{length} property of Array objects
740 or meta properties of QObject objects.
744 void QScriptValue::setProperty(const QString
& name
, const QScriptValue
& value
, const PropertyFlags
& flags
)
746 d_ptr
->setProperty(name
, QScriptValuePrivate::get(value
), flags
);
752 Sets the property at the given \a arrayIndex to the given \a value.
754 This function is provided for convenience and performance when
755 working with array objects.
757 If this QScriptValue is not an Array object, this function behaves
758 as if setProperty() was called with the string representation of \a
761 void QScriptValue::setProperty(quint32 arrayIndex
, const QScriptValue
& value
, const PropertyFlags
& flags
)
763 d_ptr
->setProperty(arrayIndex
, QScriptValuePrivate::get(value
), flags
);
767 Sets the value of this QScriptValue's property with the given \a
768 name to the given \a value. The given \a flags specify how this
769 property may be accessed by script code.
771 This overload of setProperty() is useful when you need to set the
772 same property repeatedly, since the operation can be performed
773 faster when the name is represented as an interned string.
775 \sa QScriptEngine::toStringHandle()
777 void QScriptValue::setProperty(const QScriptString
& name
, const QScriptValue
& value
, const PropertyFlags
& flags
)
779 d_ptr
->setProperty(QScriptStringPrivate::get(name
).constData(), QScriptValuePrivate::get(value
), flags
);
783 Returns the flags of the property with the given \a name, using the
784 given \a mode to resolve the property.
788 QScriptValue::PropertyFlags
QScriptValue::propertyFlags(const QString
& name
, const ResolveFlags
& mode
) const
790 return d_ptr
->propertyFlags(name
, mode
);
794 Returns the flags of the property with the given \a name, using the
795 given \a mode to resolve the property.
799 QScriptValue::PropertyFlags
QScriptValue::propertyFlags(const QScriptString
& name
, const ResolveFlags
& mode
) const
801 return d_ptr
->propertyFlags(QScriptStringPrivate::get(name
).constData(), mode
);