/* * This file is part of the KDE libraries * Copyright (C) 1999-2001 Harri Porten (porten@kde.org) * Copyright (C) 2001 Peter Kelly (pmk@post.com) * Copyright (C) 2003-2005 Apple Computer, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef KJS_VALUE_H #define KJS_VALUE_H #include "JSImmediate.h" #include "collector.h" #include "ustring.h" #include // for size_t #ifndef NDEBUG // protection against problems if committing with KJS_VERBOSE on // Uncomment this to enable very verbose output from KJS //#define KJS_VERBOSE // Uncomment this to debug memory allocation and garbage collection //#define KJS_DEBUG_MEM #endif namespace KJS { class ExecState; class JSObject; class JSCell; struct ClassInfo; /** * JSValue is the base type for all primitives (Undefined, Null, Boolean, * String, Number) and objects in ECMAScript. * * Note: you should never inherit from JSValue as it is for primitive types * only (all of which are provided internally by KJS). Instead, inherit from * JSObject. */ class JSValue : Noncopyable { friend class JSCell; // so it can derive from this class friend class Collector; // so it can call asCell() private: JSValue(); virtual ~JSValue(); public: // Querying the type. JSType type() const; bool isUndefined() const; bool isNull() const; bool isUndefinedOrNull() const; bool isBoolean() const; bool isNumber() const; bool isString() const; bool isObject() const; bool isObject(const ClassInfo *) const; // Extracting the value. bool getBoolean(bool&) const; bool getBoolean() const; // false if not a boolean bool getNumber(double&) const; double getNumber() const; // NaN if not a number bool getString(UString&) const; UString getString() const; // null string if not a string JSObject *getObject(); // NULL if not an object const JSObject *getObject() const; // NULL if not an object // Extracting integer values. bool getUInt32(uint32_t&) const; // Basic conversions. JSValue *toPrimitive(ExecState *exec, JSType preferredType = UnspecifiedType) const; bool toBoolean(ExecState *exec) const; double toNumber(ExecState *exec) const; UString toString(ExecState *exec) const; JSObject *toObject(ExecState *exec) const; // Integer conversions. double toInteger(ExecState*) const; int32_t toInt32(ExecState*) const; int32_t toInt32(ExecState*, bool& ok) const; uint32_t toUInt32(ExecState*) const; uint32_t toUInt32(ExecState*, bool& ok) const; uint16_t toUInt16(ExecState*) const; // Floating point conversions. float toFloat(ExecState*) const; // Garbage collection. void mark(); bool marked() const; private: // Implementation details. JSCell *asCell(); const JSCell *asCell() const; // Give a compile time error if we try to copy one of these. JSValue(const JSValue&); JSValue& operator=(const JSValue&); }; class JSCell : public JSValue { friend class Collector; friend class NumberImp; friend class StringImp; friend class JSObject; friend class GetterSetterImp; private: JSCell(); virtual ~JSCell(); public: // Querying the type. virtual JSType type() const = 0; bool isNumber() const; bool isString() const; bool isObject() const; bool isObject(const ClassInfo *) const; // Extracting the value. bool getNumber(double&) const; double getNumber() const; // NaN if not a number bool getString(UString&) const; UString getString() const; // null string if not a string JSObject *getObject(); // NULL if not an object const JSObject *getObject() const; // NULL if not an object // Extracting integer values. virtual bool getUInt32(uint32_t&) const; // Basic conversions. virtual JSValue *toPrimitive(ExecState *exec, JSType preferredType = UnspecifiedType) const = 0; virtual bool toBoolean(ExecState *exec) const = 0; virtual double toNumber(ExecState *exec) const = 0; virtual UString toString(ExecState *exec) const = 0; virtual JSObject *toObject(ExecState *exec) const = 0; // Garbage collection. void *operator new(size_t); virtual void mark(); bool marked() const; }; JSValue *jsNumberCell(double); JSCell *jsString(const UString&); // returns empty string if passed null string JSCell *jsString(const char* = ""); // returns empty string if passed 0 // should be used for strings that are owned by an object that will // likely outlive the JSValue this makes, such as the parse tree or a // DOM object that contains a UString JSCell *jsOwnedString(const UString&); extern const double NaN; extern const double Inf; inline JSValue *jsUndefined() { return JSImmediate::undefinedImmediate(); } inline JSValue *jsNull() { return JSImmediate::nullImmediate(); } inline JSValue *jsNaN() { return JSImmediate::NaNImmediate(); } inline JSValue *jsBoolean(bool b) { return b ? JSImmediate::trueImmediate() : JSImmediate::falseImmediate(); } inline JSValue *jsNumber(double d) { JSValue *v = JSImmediate::fromDouble(d); return v ? v : jsNumberCell(d); } inline JSValue::JSValue() { } inline JSValue::~JSValue() { } inline JSCell::JSCell() { } inline JSCell::~JSCell() { } inline bool JSCell::isNumber() const { return type() == NumberType; } inline bool JSCell::isString() const { return type() == StringType; } inline bool JSCell::isObject() const { return type() == ObjectType; } inline bool JSCell::marked() const { return Collector::isCellMarked(this); } inline void JSCell::mark() { return Collector::markCell(this); } inline JSCell *JSValue::asCell() { ASSERT(!JSImmediate::isImmediate(this)); return static_cast(this); } inline const JSCell *JSValue::asCell() const { ASSERT(!JSImmediate::isImmediate(this)); return static_cast(this); } inline bool JSValue::isUndefined() const { return this == jsUndefined(); } inline bool JSValue::isNull() const { return this == jsNull(); } inline bool JSValue::isUndefinedOrNull() const { return JSImmediate::isUndefinedOrNull(this); } inline bool JSValue::isBoolean() const { return JSImmediate::isBoolean(this); } inline bool JSValue::isNumber() const { return JSImmediate::isNumber(this) || !JSImmediate::isImmediate(this) && asCell()->isNumber(); } inline bool JSValue::isString() const { return !JSImmediate::isImmediate(this) && asCell()->isString(); } inline bool JSValue::isObject() const { return !JSImmediate::isImmediate(this) && asCell()->isObject(); } inline bool JSValue::getBoolean(bool& v) const { if (JSImmediate::isBoolean(this)) { v = JSImmediate::toBoolean(this); return true; } return false; } inline bool JSValue::getBoolean() const { return JSImmediate::isBoolean(this) ? JSImmediate::toBoolean(this) : false; } inline bool JSValue::getNumber(double& v) const { if (JSImmediate::isImmediate(this)) { v = JSImmediate::toDouble(this); return true; } return asCell()->getNumber(v); } inline double JSValue::getNumber() const { return JSImmediate::isImmediate(this) ? JSImmediate::toDouble(this) : asCell()->getNumber(); } inline bool JSValue::getString(UString& s) const { return !JSImmediate::isImmediate(this) && asCell()->getString(s); } inline UString JSValue::getString() const { return JSImmediate::isImmediate(this) ? UString() : asCell()->getString(); } inline JSObject *JSValue::getObject() { return JSImmediate::isImmediate(this) ? 0 : asCell()->getObject(); } inline const JSObject *JSValue::getObject() const { return JSImmediate::isImmediate(this) ? 0 : asCell()->getObject(); } inline bool JSValue::getUInt32(uint32_t& v) const { if (JSImmediate::isImmediate(this)) { double d = JSImmediate::toDouble(this); if (!(d >= 0) || d > 0xFFFFFFFFUL) // true for NaN return false; v = static_cast(d); return JSImmediate::isNumber(this); } return asCell()->getUInt32(v); } inline void JSValue::mark() { ASSERT(!JSImmediate::isImmediate(this)); // callers should check !marked() before calling mark() asCell()->mark(); } inline bool JSValue::marked() const { return JSImmediate::isImmediate(this) || asCell()->marked(); } inline JSType JSValue::type() const { return JSImmediate::isImmediate(this) ? JSImmediate::type(this) : asCell()->type(); } inline JSValue *JSValue::toPrimitive(ExecState *exec, JSType preferredType) const { return JSImmediate::isImmediate(this) ? const_cast(this) : asCell()->toPrimitive(exec, preferredType); } inline bool JSValue::toBoolean(ExecState *exec) const { return JSImmediate::isImmediate(this) ? JSImmediate::toBoolean(this) : asCell()->toBoolean(exec); } inline double JSValue::toNumber(ExecState *exec) const { return JSImmediate::isImmediate(this) ? JSImmediate::toDouble(this) : asCell()->toNumber(exec); } inline UString JSValue::toString(ExecState *exec) const { return JSImmediate::isImmediate(this) ? JSImmediate::toString(this) : asCell()->toString(exec); } inline JSObject* JSValue::toObject(ExecState* exec) const { return JSImmediate::isImmediate(this) ? JSImmediate::toObject(this, exec) : asCell()->toObject(exec); } } // namespace #endif // KJS_VALUE_H