aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlxmlhttprequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlxmlhttprequest.cpp')
-rw-r--r--src/qml/qml/qqmlxmlhttprequest.cpp1401
1 files changed, 728 insertions, 673 deletions
diff --git a/src/qml/qml/qqmlxmlhttprequest.cpp b/src/qml/qml/qqmlxmlhttprequest.cpp
index be0c70c80a..162f3dbd22 100644
--- a/src/qml/qml/qqmlxmlhttprequest.cpp
+++ b/src/qml/qml/qqmlxmlhttprequest.cpp
@@ -49,7 +49,10 @@
#include "qqmlengine_p.h"
#include "qqmlexpression_p.h"
#include "qqmlglobal_p.h"
-#include <private/qv8domerrors_p.h>
+#include <private/qv4domerrors_p.h>
+#include <private/qv4engine_p.h>
+#include <private/qv4functionobject_p.h>
+#include <private/qqmlcontextwrapper_p.h>
#include <QtCore/qobject.h>
#include <QtQml/qjsvalue.h>
@@ -60,15 +63,14 @@
#include <QtCore/qstack.h>
#include <QtCore/qdebug.h>
-#ifndef QT_NO_XMLSTREAMREADER
+#include <private/qv4objectproto_p.h>
-#define V8THROW_REFERENCE(string) { \
- v8::ThrowException(v8::Exception::ReferenceError(v8::String::New(string))); \
- return v8::Handle<v8::Value>(); \
-}
+using namespace QV4;
+
+#ifndef QT_NO_XMLSTREAMREADER
-#define D(arg) (arg)->release()
-#define A(arg) (arg)->addref()
+#define V4THROW_REFERENCE(string) \
+ ctx->throwError(Value::fromObject(ctx->engine->newReferenceErrorObject(QStringLiteral(string))))
QT_BEGIN_NAMESPACE
@@ -78,19 +80,15 @@ struct QQmlXMLHttpRequestData {
QQmlXMLHttpRequestData();
~QQmlXMLHttpRequestData();
- v8::Persistent<v8::Function> nodeFunction;
+ PersistentValue nodeFunction;
- v8::Persistent<v8::Object> namedNodeMapPrototype;
- v8::Persistent<v8::Object> nodeListPrototype;
- v8::Persistent<v8::Object> nodePrototype;
- v8::Persistent<v8::Object> elementPrototype;
- v8::Persistent<v8::Object> attrPrototype;
- v8::Persistent<v8::Object> characterDataPrototype;
- v8::Persistent<v8::Object> textPrototype;
- v8::Persistent<v8::Object> cdataPrototype;
- v8::Persistent<v8::Object> documentPrototype;
-
- v8::Local<v8::Object> newNode();
+ PersistentValue nodePrototype;
+ PersistentValue elementPrototype;
+ PersistentValue attrPrototype;
+ PersistentValue characterDataPrototype;
+ PersistentValue textPrototype;
+ PersistentValue cdataPrototype;
+ PersistentValue documentPrototype;
};
static inline QQmlXMLHttpRequestData *xhrdata(QV8Engine *engine)
@@ -98,12 +96,13 @@ static inline QQmlXMLHttpRequestData *xhrdata(QV8Engine *engine)
return (QQmlXMLHttpRequestData *)engine->xmlHttpRequestData();
}
-static v8::Local<v8::Object> constructMeObject(v8::Handle<v8::Object> thisObj, QV8Engine *e)
+static Value constructMeObject(const Value &thisObj, QV8Engine *e)
{
- v8::Local<v8::Object> meObj = v8::Object::New();
- meObj->Set(v8::String::New("ThisObject"), thisObj);
- meObj->Set(v8::String::New("ActivationObject"), e->qmlScope(e->callingContext(), 0));
- return meObj;
+ ExecutionEngine *v4 = QV8Engine::getV4(e);
+ Object *meObj = v4->newObject();
+ meObj->put(v4->newString(QStringLiteral("ThisObject")), thisObj);
+ meObj->put(v4->newString(QStringLiteral("ActivationObject")), QmlContextWrapper::qmlScope(e, e->callingContext(), 0));
+ return Value::fromObject(meObj);
}
QQmlXMLHttpRequestData::QQmlXMLHttpRequestData()
@@ -112,27 +111,6 @@ QQmlXMLHttpRequestData::QQmlXMLHttpRequestData()
QQmlXMLHttpRequestData::~QQmlXMLHttpRequestData()
{
- qPersistentDispose(nodeFunction);
- qPersistentDispose(namedNodeMapPrototype);
- qPersistentDispose(nodeListPrototype);
- qPersistentDispose(nodePrototype);
- qPersistentDispose(elementPrototype);
- qPersistentDispose(attrPrototype);
- qPersistentDispose(characterDataPrototype);
- qPersistentDispose(textPrototype);
- qPersistentDispose(cdataPrototype);
- qPersistentDispose(documentPrototype);
-}
-
-v8::Local<v8::Object> QQmlXMLHttpRequestData::newNode()
-{
- if (nodeFunction.IsEmpty()) {
- v8::Local<v8::FunctionTemplate> ft = v8::FunctionTemplate::New();
- ft->InstanceTemplate()->SetHasExternalResource(true);
- nodeFunction = qPersistentNew<v8::Function>(ft->GetFunction());
- }
-
- return nodeFunction->NewInstance();
}
namespace {
@@ -199,61 +177,150 @@ public:
void release() { QQmlRefCount::release(); }
};
-class NamedNodeMap
+class NamedNodeMap : public Object
{
+ Q_MANAGED
public:
- // JS API
- static v8::Handle<v8::Value> length(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> indexed(uint32_t index, const v8::AccessorInfo& info);
- static v8::Handle<v8::Value> named(v8::Local<v8::String> property, const v8::AccessorInfo& args);
+ NamedNodeMap(ExecutionEngine *engine, NodeImpl *data, const QList<NodeImpl *> &list)
+ : Object(engine)
+ , d(data)
+ , list(list)
+ {
+ vtbl = &static_vtbl;
+
+ if (d)
+ d->addref();
+ }
+ ~NamedNodeMap() {
+ if (d)
+ d->release();
+ }
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
- static v8::Handle<v8::Value> create(QV8Engine *, NodeImpl *, QList<NodeImpl *> *);
+ static Value create(QV8Engine *, NodeImpl *, const QList<NodeImpl *> &);
+
+ // JS API
+ static void destroy(Managed *that) {
+ that->as<NamedNodeMap>()->~NamedNodeMap();
+ }
+ static Value get(Managed *m, String *name, bool *hasProperty);
+ static Value getIndexed(Managed *m, uint index, bool *hasProperty);
+
+ QList<NodeImpl *> list; // Only used in NamedNodeMap
+ NodeImpl *d;
};
-class NodeList
+DEFINE_MANAGED_VTABLE(NamedNodeMap);
+
+class NodeList : public Object
{
+ Q_MANAGED
public:
+ NodeList(ExecutionEngine *engine, NodeImpl *data)
+ : Object(engine)
+ , d(data)
+ {
+ vtbl = &static_vtbl;
+
+ if (d)
+ d->addref();
+ }
+ ~NodeList() {
+ if (d)
+ d->release();
+ }
+
// JS API
- static v8::Handle<v8::Value> length(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> indexed(uint32_t index, const v8::AccessorInfo& info);
+ static void destroy(Managed *that) {
+ that->as<NodeList>()->~NodeList();
+ }
+ static Value get(Managed *m, String *name, bool *hasProperty);
+ static Value getIndexed(Managed *m, uint index, bool *hasProperty);
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
- static v8::Handle<v8::Value> create(QV8Engine *, NodeImpl *);
+ static Value create(QV8Engine *, NodeImpl *);
+
+ NodeImpl *d;
};
-class Node
+DEFINE_MANAGED_VTABLE(NodeList);
+
+class NodePrototype : public Object
{
+ Q_MANAGED
public:
+ NodePrototype(ExecutionEngine *engine)
+ : Object(engine)
+ {
+ vtbl = &static_vtbl;
+ defineAccessorProperty(engine, QStringLiteral("nodeName"), method_get_nodeName, 0);
+ defineAccessorProperty(engine, QStringLiteral("nodeValue"), method_get_nodeValue, 0);
+ defineAccessorProperty(engine, QStringLiteral("nodeType"), method_get_nodeType, 0);
+
+ defineAccessorProperty(engine, QStringLiteral("parentNode"), method_get_parentNode, 0);
+ defineAccessorProperty(engine, QStringLiteral("childNodes"), method_get_childNodes, 0);
+ defineAccessorProperty(engine, QStringLiteral("firstChild"), method_get_firstChild, 0);
+ defineAccessorProperty(engine, QStringLiteral("lastChild"), method_get_lastChild, 0);
+ defineAccessorProperty(engine, QStringLiteral("previousSibling"), method_get_previousSibling, 0);
+ defineAccessorProperty(engine, QStringLiteral("nextSibling"), method_get_nextSibling, 0);
+ defineAccessorProperty(engine, QStringLiteral("attributes"), method_get_attributes, 0);
+ }
+
+ static void initClass(ExecutionEngine *engine);
+
// JS API
- static v8::Handle<v8::Value> nodeName(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> nodeValue(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> nodeType(v8::Local<v8::String>, const v8::AccessorInfo& args);
-
- static v8::Handle<v8::Value> parentNode(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> childNodes(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> firstChild(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> lastChild(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> previousSibling(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> nextSibling(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> attributes(v8::Local<v8::String>, const v8::AccessorInfo& args);
-
- //static v8::Handle<v8::Value> ownerDocument(v8::Local<v8::String>, const v8::AccessorInfo& args);
- //static v8::Handle<v8::Value> namespaceURI(v8::Local<v8::String>, const v8::AccessorInfo& args);
- //static v8::Handle<v8::Value> prefix(v8::Local<v8::String>, const v8::AccessorInfo& args);
- //static v8::Handle<v8::Value> localName(v8::Local<v8::String>, const v8::AccessorInfo& args);
- //static v8::Handle<v8::Value> baseURI(v8::Local<v8::String>, const v8::AccessorInfo& args);
- //static v8::Handle<v8::Value> textContent(v8::Local<v8::String>, const v8::AccessorInfo& args);
+ static Value method_get_nodeName(SimpleCallContext *ctx);
+ static Value method_get_nodeValue(SimpleCallContext *ctx);
+ static Value method_get_nodeType(SimpleCallContext *ctx);
+
+ static Value method_get_parentNode(SimpleCallContext *ctx);
+ static Value method_get_childNodes(SimpleCallContext *ctx);
+ static Value method_get_firstChild(SimpleCallContext *ctx);
+ static Value method_get_lastChild(SimpleCallContext *ctx);
+ static Value method_get_previousSibling(SimpleCallContext *ctx);
+ static Value method_get_nextSibling(SimpleCallContext *ctx);
+ static Value method_get_attributes(SimpleCallContext *ctx);
+
+ //static Value ownerDocument(SimpleCallContext *ctx);
+ //static Value namespaceURI(SimpleCallContext *ctx);
+ //static Value prefix(SimpleCallContext *ctx);
+ //static Value localName(SimpleCallContext *ctx);
+ //static Value baseURI(SimpleCallContext *ctx);
+ //static Value textContent(SimpleCallContext *ctx);
+
+ static Value getProto(ExecutionEngine *v4);
+
+};
+
+DEFINE_MANAGED_VTABLE(NodePrototype);
+
+class Node : public Object
+{
+ Q_MANAGED
+
+ Node(ExecutionEngine *engine, NodeImpl *data)
+ : Object(engine)
+ , d(data)
+ {
+ vtbl = &static_vtbl;
+
+ if (d)
+ d->addref();
+ }
+ ~Node() {
+ if (d)
+ d->release();
+ }
+
+ // JS API
+ static void destroy(Managed *that) {
+ that->as<Node>()->~Node();
+ }
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
- static v8::Handle<v8::Value> create(QV8Engine *, NodeImpl *);
+ static Value create(QV8Engine *, NodeImpl *);
- Node();
Node(const Node &o);
- ~Node();
bool isNull() const;
NodeImpl *d;
@@ -262,127 +329,113 @@ private:
Node &operator=(const Node &);
};
+DEFINE_MANAGED_VTABLE(Node);
+
class Element : public Node
{
public:
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
+ static Value prototype(ExecutionEngine *);
};
class Attr : public Node
{
public:
// JS API
- static v8::Handle<v8::Value> name(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> specified(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> value(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> ownerElement(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> schemaTypeInfo(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> isId(v8::Local<v8::String>, const v8::AccessorInfo& args);
+ static Value name(SimpleCallContext *ctx);
+// static Value specified(SimpleCallContext *);
+ static Value value(SimpleCallContext *ctx);
+ static Value ownerElement(SimpleCallContext *ctx);
+// static Value schemaTypeInfo(SimpleCallContext *);
+// static Value isId(SimpleCallContext *c);
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
+ static Value prototype(ExecutionEngine *);
};
class CharacterData : public Node
{
public:
// JS API
- static v8::Handle<v8::Value> length(v8::Local<v8::String>, const v8::AccessorInfo& args);
+ static Value length(SimpleCallContext *ctx);
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
+ static Value prototype(ExecutionEngine *v4);
};
class Text : public CharacterData
{
public:
// JS API
- static v8::Handle<v8::Value> isElementContentWhitespace(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> wholeText(v8::Local<v8::String>, const v8::AccessorInfo& args);
+ static Value isElementContentWhitespace(SimpleCallContext *ctx);
+ static Value wholeText(SimpleCallContext *ctx);
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
+ static Value prototype(ExecutionEngine *);
};
class CDATA : public Text
{
public:
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
+ static Value prototype(ExecutionEngine *v4);
};
class Document : public Node
{
public:
// JS API
- static v8::Handle<v8::Value> xmlVersion(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> xmlEncoding(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> xmlStandalone(v8::Local<v8::String>, const v8::AccessorInfo& args);
- static v8::Handle<v8::Value> documentElement(v8::Local<v8::String>, const v8::AccessorInfo& args);
+ static Value xmlVersion(SimpleCallContext *ctx);
+ static Value xmlEncoding(SimpleCallContext *ctx);
+ static Value xmlStandalone(SimpleCallContext *ctx);
+ static Value documentElement(SimpleCallContext *ctx);
// C++ API
- static v8::Handle<v8::Object> prototype(QV8Engine *);
- static v8::Handle<v8::Value> load(QV8Engine *engine, const QByteArray &data);
-};
-
-}
-
-class QQmlDOMNodeResource : public QV8ObjectResource, public Node
-{
- V8_RESOURCE_TYPE(DOMNodeType)
-public:
- QQmlDOMNodeResource(QV8Engine *e);
-
- QList<NodeImpl *> *list; // Only used in NamedNodeMap
+ static Value prototype(ExecutionEngine *);
+ static Value load(QV8Engine *engine, const QByteArray &data);
};
-QQmlDOMNodeResource::QQmlDOMNodeResource(QV8Engine *e)
-: QV8ObjectResource(e), list(0)
-{
}
-QT_END_NAMESPACE
-
-Q_DECLARE_METATYPE(Node)
-Q_DECLARE_METATYPE(NodeList)
-Q_DECLARE_METATYPE(NamedNodeMap)
-
-QT_BEGIN_NAMESPACE
-
void NodeImpl::addref()
{
- A(document);
+ document->addref();
}
void NodeImpl::release()
{
- D(document);
+ document->release();
}
-v8::Handle<v8::Value> Node::nodeName(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_nodeName(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+ QString name;
switch (r->d->type) {
case NodeImpl::Document:
- return v8::String::New("#document");
+ name = QStringLiteral("#document");
+ break;
case NodeImpl::CDATA:
- return v8::String::New("#cdata-section");
+ name = QStringLiteral("#cdata-section");
+ break;
case NodeImpl::Text:
- return v8::String::New("#text");
+ name = QStringLiteral("#text");
+ break;
default:
- return engine->toString(r->d->name);
+ name = r->d->name;
+ break;
}
+ return Value::fromString(ctx->engine->newString(name));
}
-v8::Handle<v8::Value> Node::nodeValue(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_nodeValue(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
if (r->d->type == NodeImpl::Document ||
r->d->type == NodeImpl::DocumentFragment ||
@@ -391,143 +444,142 @@ v8::Handle<v8::Value> Node::nodeValue(v8::Local<v8::String>, const v8::AccessorI
r->d->type == NodeImpl::Entity ||
r->d->type == NodeImpl::EntityReference ||
r->d->type == NodeImpl::Notation)
- return v8::Null();
+ return Value::nullValue();
- return engine->toString(r->d->data);
+ return Value::fromString(ctx->engine->newString(r->d->data));
}
-v8::Handle<v8::Value> Node::nodeType(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_nodeType(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- return v8::Integer::New(r->d->type);
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ return Value::fromInt32(r->d->type);
}
-v8::Handle<v8::Value> Node::parentNode(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_parentNode(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
if (r->d->parent) return Node::create(engine, r->d->parent);
- else return v8::Null();
+ else return Value::nullValue();
}
-v8::Handle<v8::Value> Node::childNodes(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_childNodes(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
return NodeList::create(engine, r->d);
}
-v8::Handle<v8::Value> Node::firstChild(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_firstChild(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
- if (r->d->children.isEmpty()) return v8::Null();
+ if (r->d->children.isEmpty()) return Value::nullValue();
else return Node::create(engine, r->d->children.first());
}
-v8::Handle<v8::Value> Node::lastChild(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_lastChild(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
- if (r->d->children.isEmpty()) return v8::Null();
+ QV8Engine *engine = ctx->engine->v8Engine;
+
+ if (r->d->children.isEmpty()) return Value::nullValue();
else return Node::create(engine, r->d->children.last());
}
-v8::Handle<v8::Value> Node::previousSibling(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_previousSibling(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
- if (!r->d->parent) return v8::Null();
+ if (!r->d->parent) return Value::nullValue();
for (int ii = 0; ii < r->d->parent->children.count(); ++ii) {
if (r->d->parent->children.at(ii) == r->d) {
- if (ii == 0) return v8::Null();
+ if (ii == 0) return Value::nullValue();
else return Node::create(engine, r->d->parent->children.at(ii - 1));
}
}
- return v8::Null();
+ return Value::nullValue();
}
-v8::Handle<v8::Value> Node::nextSibling(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_nextSibling(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
- if (!r->d->parent) return v8::Null();
+ if (!r->d->parent) return Value::nullValue();
for (int ii = 0; ii < r->d->parent->children.count(); ++ii) {
if (r->d->parent->children.at(ii) == r->d) {
- if ((ii + 1) == r->d->parent->children.count()) return v8::Null();
+ if ((ii + 1) == r->d->parent->children.count()) return Value::nullValue();
else return Node::create(engine, r->d->parent->children.at(ii + 1));
}
}
- return v8::Null();
+ return Value::nullValue();
}
-v8::Handle<v8::Value> Node::attributes(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NodePrototype::method_get_attributes(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r)
+ ctx->throwTypeError();
+
+ QV8Engine *engine = ctx->engine->v8Engine;
if (r->d->type != NodeImpl::Element)
- return v8::Null();
+ return Value::nullValue();
else
- return NamedNodeMap::create(engine, r->d, &r->d->attributes);
+ return NamedNodeMap::create(engine, r->d, r->d->attributes);
}
-v8::Handle<v8::Object> Node::prototype(QV8Engine *engine)
+Value NodePrototype::getProto(ExecutionEngine *v4)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->nodePrototype.IsEmpty()) {
- d->nodePrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->nodePrototype->SetAccessor(v8::String::New("nodeName"), nodeName,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("nodeValue"), nodeValue,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("nodeType"), nodeType,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("parentNode"), parentNode,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("childNodes"), childNodes,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("firstChild"), firstChild,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("lastChild"), lastChild,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("previousSibling"), previousSibling,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("nextSibling"), nextSibling,
- 0, v8::External::New(engine));
- d->nodePrototype->SetAccessor(v8::String::New("attributes"), attributes,
- 0, v8::External::New(engine));
- engine->freezeObject(d->nodePrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(v4->v8Engine);
+ if (d->nodePrototype.isEmpty()) {
+ Object *p = new (v4->memoryManager) NodePrototype(v4);
+ d->nodePrototype = Value::fromObject(p);
+ v4->v8Engine->freezeObject(d->nodePrototype.value());
}
- return d->nodePrototype;
+ return d->nodePrototype.value();
}
-v8::Handle<v8::Value> Node::create(QV8Engine *engine, NodeImpl *data)
+Value Node::create(QV8Engine *engine, NodeImpl *data)
{
+ ExecutionEngine *v4 = QV8Engine::getV4(engine);
+
QQmlXMLHttpRequestData *d = xhrdata(engine);
- v8::Local<v8::Object> instance = d->newNode();
+ Node *instance = new (v4->memoryManager) Node(v4, data);
switch (data->type) {
case NodeImpl::Attr:
- instance->SetPrototype(Attr::prototype(engine));
+ instance->prototype = Attr::prototype(v4).asObject();
break;
case NodeImpl::Comment:
case NodeImpl::Document:
@@ -537,173 +589,163 @@ v8::Handle<v8::Value> Node::create(QV8Engine *engine, NodeImpl *data)
case NodeImpl::EntityReference:
case NodeImpl::Notation:
case NodeImpl::ProcessingInstruction:
- return v8::Undefined();
+ return Value::undefinedValue();
case NodeImpl::CDATA:
- instance->SetPrototype(CDATA::prototype(engine));
+ instance->prototype = CDATA::prototype(v4).asObject();
break;
case NodeImpl::Text:
- instance->SetPrototype(Text::prototype(engine));
+ instance->prototype = Text::prototype(v4).asObject();
break;
case NodeImpl::Element:
- instance->SetPrototype(Element::prototype(engine));
+ instance->prototype = Element::prototype(v4).asObject();
break;
}
- QQmlDOMNodeResource *r = new QQmlDOMNodeResource(engine);
- r->d = data;
- if (data) A(data);
- instance->SetExternalResource(r);
-
- return instance;
+ return Value::fromObject(instance);
}
-v8::Handle<v8::Object> Element::prototype(QV8Engine *engine)
+Value Element::prototype(ExecutionEngine *engine)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->elementPrototype.IsEmpty()) {
- d->elementPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->elementPrototype->SetPrototype(Node::prototype(engine));
- d->elementPrototype->SetAccessor(v8::String::New("tagName"), nodeName,
- 0, v8::External::New(engine));
- engine->freezeObject(d->elementPrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(engine->v8Engine);
+ if (d->elementPrototype.isEmpty()) {
+ Object *p = engine->newObject();
+ p->prototype = NodePrototype::getProto(engine).asObject();
+ p->defineAccessorProperty(engine, QStringLiteral("tagName"), NodePrototype::method_get_nodeName, 0);
+ d->elementPrototype = Value::fromObject(p);
+ engine->v8Engine->freezeObject(d->elementPrototype.value());
}
- return d->elementPrototype;
+ return d->elementPrototype.value();
}
-v8::Handle<v8::Object> Attr::prototype(QV8Engine *engine)
+Value Attr::prototype(ExecutionEngine *engine)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->attrPrototype.IsEmpty()) {
- d->attrPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->attrPrototype->SetPrototype(Node::prototype(engine));
- d->attrPrototype->SetAccessor(v8::String::New("name"), name,
- 0, v8::External::New(engine));
- d->attrPrototype->SetAccessor(v8::String::New("value"), value,
- 0, v8::External::New(engine));
- d->attrPrototype->SetAccessor(v8::String::New("ownerElement"), ownerElement,
- 0, v8::External::New(engine));
- engine->freezeObject(d->attrPrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(engine->v8Engine);
+ if (d->attrPrototype.isEmpty()) {
+ Object *p = engine->newObject();
+ p->prototype = NodePrototype::getProto(engine).asObject();
+ p->defineAccessorProperty(engine, QStringLiteral("name"), name, 0);
+ p->defineAccessorProperty(engine, QStringLiteral("value"), value, 0);
+ p->defineAccessorProperty(engine, QStringLiteral("ownerElement"), ownerElement, 0);
+ d->attrPrototype = Value::fromObject(p);
+ engine->v8Engine->freezeObject(d->attrPrototype.value());
}
- return d->attrPrototype;
+ return d->attrPrototype.value();
}
-v8::Handle<v8::Value> Attr::name(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value Attr::name(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return engine->toString(r->d->name);
}
-v8::Handle<v8::Value> Attr::value(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value Attr::value(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return engine->toString(r->d->data);
}
-v8::Handle<v8::Value> Attr::ownerElement(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value Attr::ownerElement(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return Node::create(engine, r->d->parent);
}
-v8::Handle<v8::Value> CharacterData::length(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value CharacterData::length(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
Q_UNUSED(engine)
- return v8::Integer::New(r->d->data.length());
+ return Value::fromInt32(r->d->data.length());
}
-v8::Handle<v8::Object> CharacterData::prototype(QV8Engine *engine)
+Value CharacterData::prototype(ExecutionEngine *v4)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->characterDataPrototype.IsEmpty()) {
- d->characterDataPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->characterDataPrototype->SetPrototype(Node::prototype(engine));
- d->characterDataPrototype->SetAccessor(v8::String::New("data"), nodeValue,
- 0, v8::External::New(engine));
- d->characterDataPrototype->SetAccessor(v8::String::New("length"), length,
- 0, v8::External::New(engine));
- engine->freezeObject(d->characterDataPrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(v4->v8Engine);
+ if (d->characterDataPrototype.isEmpty()) {
+ Object *p = v4->newObject();
+ p->prototype = NodePrototype::getProto(v4).asObject();
+ p->defineAccessorProperty(v4, QStringLiteral("data"), NodePrototype::method_get_nodeValue, 0);
+ p->defineAccessorProperty(v4, QStringLiteral("length"), length, 0);
+ d->characterDataPrototype = Value::fromObject(p);
+ v4->v8Engine->freezeObject(d->characterDataPrototype);
}
- return d->characterDataPrototype;
+ return d->characterDataPrototype.value();
}
-v8::Handle<v8::Value> Text::isElementContentWhitespace(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value Text::isElementContentWhitespace(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
- Q_UNUSED(engine)
- return v8::Boolean::New(r->d->data.trimmed().isEmpty());
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+
+ return Value::fromBoolean(r->d->data.trimmed().isEmpty());
}
-v8::Handle<v8::Value> Text::wholeText(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value Text::wholeText(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return engine->toString(r->d->data);
}
-v8::Handle<v8::Object> Text::prototype(QV8Engine *engine)
+Value Text::prototype(ExecutionEngine *v4)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->textPrototype.IsEmpty()) {
- d->textPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->textPrototype->SetPrototype(CharacterData::prototype(engine));
- d->textPrototype->SetAccessor(v8::String::New("isElementContentWhitespace"), isElementContentWhitespace,
- 0, v8::External::New(engine));
- d->textPrototype->SetAccessor(v8::String::New("wholeText"), wholeText,
- 0, v8::External::New(engine));
- engine->freezeObject(d->textPrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(v4->v8Engine);
+ if (d->textPrototype.isEmpty()) {
+ Object *p = v4->newObject();
+ p->prototype = CharacterData::prototype(v4).asObject();
+ p->defineAccessorProperty(v4, QStringLiteral("isElementContentWhitespace"), isElementContentWhitespace, 0);
+ p->defineAccessorProperty(v4, QStringLiteral("wholeText"), wholeText, 0);
+ d->textPrototype = Value::fromObject(p);
+ v4->v8Engine->freezeObject(d->textPrototype);
}
- return d->textPrototype;
+ return d->textPrototype.value();
}
-v8::Handle<v8::Object> CDATA::prototype(QV8Engine *engine)
+Value CDATA::prototype(ExecutionEngine *v4)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->cdataPrototype.IsEmpty()) {
- d->cdataPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->cdataPrototype->SetPrototype(Text::prototype(engine));
- engine->freezeObject(d->cdataPrototype);
+ // ### why not just use TextProto???
+ QQmlXMLHttpRequestData *d = xhrdata(v4->v8Engine);
+ if (d->cdataPrototype.isEmpty()) {
+ Object *p = v4->newObject();
+ p->prototype = Text::prototype(v4).asObject();
+ d->cdataPrototype = Value::fromObject(p);
+ v4->v8Engine->freezeObject(d->cdataPrototype);
}
- return d->cdataPrototype;
+ return d->cdataPrototype.value();
}
-v8::Handle<v8::Object> Document::prototype(QV8Engine *engine)
+Value Document::prototype(ExecutionEngine *v4)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->documentPrototype.IsEmpty()) {
- d->documentPrototype = qPersistentNew<v8::Object>(v8::Object::New());
- d->documentPrototype->SetPrototype(Node::prototype(engine));
- d->documentPrototype->SetAccessor(v8::String::New("xmlVersion"), xmlVersion,
- 0, v8::External::New(engine));
- d->documentPrototype->SetAccessor(v8::String::New("xmlEncoding"), xmlEncoding,
- 0, v8::External::New(engine));
- d->documentPrototype->SetAccessor(v8::String::New("xmlStandalone"), xmlStandalone,
- 0, v8::External::New(engine));
- d->documentPrototype->SetAccessor(v8::String::New("documentElement"), documentElement,
- 0, v8::External::New(engine));
- engine->freezeObject(d->documentPrototype);
+ QQmlXMLHttpRequestData *d = xhrdata(v4->v8Engine);
+ if (d->documentPrototype.isEmpty()) {
+ Object *p = v4->newObject();
+ p->prototype = NodePrototype::getProto(v4).asObject();
+ p->defineAccessorProperty(v4, QStringLiteral("xmlVersion"), xmlVersion, 0);
+ p->defineAccessorProperty(v4, QStringLiteral("xmlEncoding"), xmlEncoding, 0);
+ p->defineAccessorProperty(v4, QStringLiteral("xmlStandalone"), xmlStandalone, 0);
+ p->defineAccessorProperty(v4, QStringLiteral("documentElement"), documentElement, 0);
+ d->documentPrototype = Value::fromObject(p);
+ v4->v8Engine->freezeObject(d->documentPrototype);
}
- return d->documentPrototype;
+ return d->documentPrototype.value();
}
-v8::Handle<v8::Value> Document::load(QV8Engine *engine, const QByteArray &data)
+Value Document::load(QV8Engine *engine, const QByteArray &data)
{
Q_ASSERT(engine);
+ ExecutionEngine *v4 = QV8Engine::getV4(engine);
DocumentImpl *document = 0;
QStack<NodeImpl *> nodeStack;
@@ -778,32 +820,21 @@ v8::Handle<v8::Value> Document::load(QV8Engine *engine, const QByteArray &data)
}
if (!document || reader.hasError()) {
- if (document) D(document);
- return v8::Null();
+ if (document)
+ document->release();
+ return Value::nullValue();
}
- v8::Local<v8::Object> instance = xhrdata(engine)->newNode();
- QQmlDOMNodeResource *r = new QQmlDOMNodeResource(engine);
- r->d = document;
- instance->SetExternalResource(r);
- instance->SetPrototype(Document::prototype(engine));
- return instance;
-}
-
-Node::Node()
-: d(0)
-{
+ Object *instance = new (v4->memoryManager) Node(v4, document);
+ instance->prototype = Document::prototype(v4).asObject();
+ return Value::fromObject(instance);
}
Node::Node(const Node &o)
-: d(o.d)
+ : Object(o.engine()), d(o.d)
{
- if (d) A(d);
-}
-
-Node::~Node()
-{
- if (d) D(d);
+ if (d)
+ d->addref();
}
bool Node::isNull() const
@@ -811,158 +842,142 @@ bool Node::isNull() const
return d == 0;
}
-v8::Handle<v8::Value> NamedNodeMap::length(v8::Local<v8::String>, const v8::AccessorInfo &args)
+Value NamedNodeMap::getIndexed(Managed *m, uint index, bool *hasProperty)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
- Q_UNUSED(engine)
- return v8::Integer::New(r->list->count());
-}
+ QV4::ExecutionEngine *v4 = m->engine();
+ NamedNodeMap *r = m->as<NamedNodeMap>();
+ if (!r)
+ v4->current->throwTypeError();
-v8::Handle<v8::Value> NamedNodeMap::indexed(uint32_t index, const v8::AccessorInfo& args)
-{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || !r->list) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ QV8Engine *engine = v4->v8Engine;
- if ((int)index < r->list->count()) {
- return Node::create(engine, r->list->at(index));
- } else {
- return v8::Undefined();
+ if ((int)index < r->list.count()) {
+ if (hasProperty)
+ *hasProperty = true;
+ return Node::create(engine, r->list.at(index));
}
+ if (hasProperty)
+ *hasProperty = false;
+ return Value::undefinedValue();
}
-v8::Handle<v8::Value> NamedNodeMap::named(v8::Local<v8::String> property, const v8::AccessorInfo& args)
+Value NamedNodeMap::get(Managed *m, String *name, bool *hasProperty)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || !r->list) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ NamedNodeMap *r = m->as<NamedNodeMap>();
+ QV4::ExecutionEngine *v4 = m->engine();
+ if (!r)
+ v4->current->throwTypeError();
+
+ name->makeIdentifier();
+ if (name->isEqualTo(v4->id_length))
+ return Value::fromInt32(r->list.count());
- QString str = engine->toString(property);
- for (int ii = 0; ii < r->list->count(); ++ii) {
- if (r->list->at(ii)->name == str) {
- return Node::create(engine, r->list->at(ii));
+ QV8Engine *engine = v4->v8Engine;
+
+ QString str = name->toQString();
+ for (int ii = 0; ii < r->list.count(); ++ii) {
+ if (r->list.at(ii)->name == str) {
+ if (hasProperty)
+ *hasProperty = true;
+ return Node::create(engine, r->list.at(ii));
}
}
- return v8::Undefined();
+ if (hasProperty)
+ *hasProperty = false;
+ return Value::undefinedValue();
}
-v8::Handle<v8::Object> NamedNodeMap::prototype(QV8Engine *engine)
+Value NamedNodeMap::create(QV8Engine *engine, NodeImpl *data, const QList<NodeImpl *> &list)
{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->namedNodeMapPrototype.IsEmpty()) {
- v8::Local<v8::ObjectTemplate> ot = v8::ObjectTemplate::New();
- ot->SetAccessor(v8::String::New("length"), length, 0, v8::External::New(engine));
- ot->SetIndexedPropertyHandler(indexed, 0, 0, 0, 0, v8::External::New(engine));
- ot->SetFallbackPropertyHandler(named, 0, 0, 0, 0, v8::External::New(engine));
- d->namedNodeMapPrototype = qPersistentNew<v8::Object>(ot->NewInstance());
- engine->freezeObject(d->namedNodeMapPrototype);
- }
- return d->namedNodeMapPrototype;
-}
+ ExecutionEngine *v4 = QV8Engine::getV4(engine);
-v8::Handle<v8::Value> NamedNodeMap::create(QV8Engine *engine, NodeImpl *data, QList<NodeImpl *> *list)
-{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- v8::Local<v8::Object> instance = d->newNode();
- instance->SetPrototype(NamedNodeMap::prototype(engine));
- QQmlDOMNodeResource *r = new QQmlDOMNodeResource(engine);
- r->d = data;
- r->list = list;
- if (data) A(data);
- instance->SetExternalResource(r);
- return instance;
+ NamedNodeMap *instance = new (v4->memoryManager) NamedNodeMap(v4, data, list);
+ instance->prototype = v4->objectPrototype;
+ return Value::fromObject(instance);
}
-v8::Handle<v8::Value> NodeList::indexed(uint32_t index, const v8::AccessorInfo& args)
+Value NodeList::getIndexed(Managed *m, uint index, bool *hasProperty)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ QV4::ExecutionEngine *v4 = m->engine();
+ NodeList *r = m->as<NodeList>();
+ if (!r)
+ v4->current->throwTypeError();
+
+ QV8Engine *engine = v4->v8Engine;
if ((int)index < r->d->children.count()) {
+ if (hasProperty)
+ *hasProperty = true;
return Node::create(engine, r->d->children.at(index));
- } else {
- return v8::Undefined();
}
+ if (hasProperty)
+ *hasProperty = false;
+ return Value::undefinedValue();
}
-v8::Handle<v8::Value> NodeList::length(v8::Local<v8::String>, const v8::AccessorInfo& args)
+Value NodeList::get(Managed *m, String *name, bool *hasProperty)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
- Q_UNUSED(engine)
- return v8::Integer::New(r->d->children.count());
-}
+ QV4::ExecutionEngine *v4 = m->engine();
+ NodeList *r = m->as<NodeList>();
+ if (!r)
+ v4->current->throwTypeError();
-v8::Handle<v8::Object> NodeList::prototype(QV8Engine *engine)
-{
- QQmlXMLHttpRequestData *d = xhrdata(engine);
- if (d->nodeListPrototype.IsEmpty()) {
- v8::Local<v8::ObjectTemplate> ot = v8::ObjectTemplate::New();
- ot->SetAccessor(v8::String::New("length"), length, 0, v8::External::New(engine));
- ot->SetIndexedPropertyHandler(indexed, 0, 0, 0, 0, v8::External::New(engine));
- d->nodeListPrototype = qPersistentNew<v8::Object>(ot->NewInstance());
- engine->freezeObject(d->nodeListPrototype);
- }
- return d->nodeListPrototype;
+ name->makeIdentifier();
+
+ if (name->isEqualTo(v4->id_length))
+ return Value::fromInt32(r->d->children.count());
+ return Object::get(m, name, hasProperty);
}
-v8::Handle<v8::Value> NodeList::create(QV8Engine *engine, NodeImpl *data)
+Value NodeList::create(QV8Engine *engine, NodeImpl *data)
{
QQmlXMLHttpRequestData *d = xhrdata(engine);
- v8::Local<v8::Object> instance = d->newNode();
- instance->SetPrototype(NodeList::prototype(engine));
- QQmlDOMNodeResource *r = new QQmlDOMNodeResource(engine);
- r->d = data;
- if (data) A(data);
- instance->SetExternalResource(r);
- return instance;
+ ExecutionEngine *v4 = QV8Engine::getV4(engine);
+ NodeList *instance = new (v4->memoryManager) NodeList(v4, data);
+ instance->prototype = v4->objectPrototype;
+ return Value::fromObject(instance);
}
-v8::Handle<v8::Value> Document::documentElement(v8::Local<v8::String>, const v8::AccessorInfo& args)
+Value Document::documentElement(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || r->d->type != NodeImpl::Document) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r || r->d->type != NodeImpl::Document) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return Node::create(engine, static_cast<DocumentImpl *>(r->d)->root);
}
-v8::Handle<v8::Value> Document::xmlStandalone(v8::Local<v8::String>, const v8::AccessorInfo& args)
+Value Document::xmlStandalone(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || r->d->type != NodeImpl::Document) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r || r->d->type != NodeImpl::Document) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
Q_UNUSED(engine)
- return v8::Boolean::New(static_cast<DocumentImpl *>(r->d)->isStandalone);
+ return Value::fromBoolean(static_cast<DocumentImpl *>(r->d)->isStandalone);
}
-v8::Handle<v8::Value> Document::xmlVersion(v8::Local<v8::String>, const v8::AccessorInfo& args)
+Value Document::xmlVersion(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || r->d->type != NodeImpl::Document) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r || r->d->type != NodeImpl::Document) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return engine->toString(static_cast<DocumentImpl *>(r->d)->version);
}
-v8::Handle<v8::Value> Document::xmlEncoding(v8::Local<v8::String>, const v8::AccessorInfo& args)
+Value Document::xmlEncoding(SimpleCallContext *ctx)
{
- QQmlDOMNodeResource *r = v8_resource_cast<QQmlDOMNodeResource>(args.This());
- if (!r || r->d->type != NodeImpl::Document) return v8::Undefined();
- QV8Engine *engine = V8ENGINE();
+ Node *r = ctx->thisObject.as<Node>();
+ if (!r || r->d->type != NodeImpl::Document) return Value::undefinedValue();
+ QV8Engine *engine = ctx->engine->v8Engine;
return engine->toString(static_cast<DocumentImpl *>(r->d)->encoding);
}
-class QQmlXMLHttpRequest : public QObject, public QV8ObjectResource
+class QQmlXMLHttpRequest : public QObject
{
-Q_OBJECT
-V8_RESOURCE_TYPE(XMLHttpRequestType)
+ Q_OBJECT
public:
enum State { Unsent = 0,
Opened = 1, HeadersReceived = 2,
@@ -977,9 +992,9 @@ public:
int replyStatus() const;
QString replyStatusText() const;
- v8::Handle<v8::Value> open(v8::Handle<v8::Object> me, const QString &, const QUrl &);
- v8::Handle<v8::Value> send(v8::Handle<v8::Object> me, const QByteArray &);
- v8::Handle<v8::Value> abort(v8::Handle<v8::Object> me);
+ Value open(const Value &me, const QString &, const QUrl &);
+ Value send(const Value &me, const QByteArray &);
+ Value abort(const Value &me);
void addHeader(const QString &, const QString &);
QString header(const QString &name);
@@ -997,6 +1012,7 @@ private slots:
private:
void requestFromUrl(const QUrl &url);
+ ExecutionEngine *v4;
State m_state;
bool m_errorFlag;
bool m_sendFlag;
@@ -1020,12 +1036,12 @@ private:
#endif
void readEncoding();
- v8::Handle<v8::Object> getMe() const;
- void setMe(v8::Handle<v8::Object> me);
- v8::Persistent<v8::Object> m_me;
+ Value getMe() const;
+ void setMe(const Value &me);
+ PersistentValue m_me;
- void dispatchCallback(v8::Handle<v8::Object> me);
- void printError(v8::Handle<v8::Message>);
+ void dispatchCallback(const Value &me);
+ void printError(const Exception &e);
int m_status;
QString m_statusText;
@@ -1039,8 +1055,9 @@ private:
};
QQmlXMLHttpRequest::QQmlXMLHttpRequest(QV8Engine *engine, QNetworkAccessManager *manager)
-: QV8ObjectResource(engine), m_state(Unsent), m_errorFlag(false), m_sendFlag(false),
- m_redirectCount(0), m_gotXml(false), m_textCodec(0), m_network(0), m_nam(manager)
+ : v4(QV8Engine::getV4(engine))
+ , m_state(Unsent), m_errorFlag(false), m_sendFlag(false)
+ , m_redirectCount(0), m_gotXml(false), m_textCodec(0), m_network(0), m_nam(manager)
{
}
@@ -1074,7 +1091,7 @@ QString QQmlXMLHttpRequest::replyStatusText() const
return m_statusText;
}
-v8::Handle<v8::Value> QQmlXMLHttpRequest::open(v8::Handle<v8::Object> me, const QString &method,
+Value QQmlXMLHttpRequest::open(const Value &me, const QString &method,
const QUrl &url)
{
destroyNetwork();
@@ -1085,10 +1102,8 @@ v8::Handle<v8::Value> QQmlXMLHttpRequest::open(v8::Handle<v8::Object> me, const
m_url = url;
m_state = Opened;
m_addedHeaders.clear();
- v8::TryCatch tc;
dispatchCallback(me);
- if (tc.HasCaught()) printError(tc.Message());
- return v8::Undefined();
+ return Value::undefinedValue();
}
void QQmlXMLHttpRequest::addHeader(const QString &name, const QString &value)
@@ -1202,7 +1217,7 @@ void QQmlXMLHttpRequest::requestFromUrl(const QUrl &url)
this, SLOT(finished()));
}
-v8::Handle<v8::Value> QQmlXMLHttpRequest::send(v8::Handle<v8::Object> me, const QByteArray &data)
+Value QQmlXMLHttpRequest::send(const Value &me, const QByteArray &data)
{
m_errorFlag = false;
m_sendFlag = true;
@@ -1213,10 +1228,10 @@ v8::Handle<v8::Value> QQmlXMLHttpRequest::send(v8::Handle<v8::Object> me, const
requestFromUrl(m_url);
- return v8::Undefined();
+ return Value::undefinedValue();
}
-v8::Handle<v8::Value> QQmlXMLHttpRequest::abort(v8::Handle<v8::Object> me)
+Value QQmlXMLHttpRequest::abort(const Value &me)
{
destroyNetwork();
m_responseEntityBody = QByteArray();
@@ -1229,33 +1244,26 @@ v8::Handle<v8::Value> QQmlXMLHttpRequest::abort(v8::Handle<v8::Object> me)
m_state = Done;
m_sendFlag = false;
- v8::TryCatch tc;
dispatchCallback(me);
- if (tc.HasCaught()) printError(tc.Message());
}
m_state = Unsent;
- return v8::Undefined();
+ return Value::undefinedValue();
}
-v8::Handle<v8::Object> QQmlXMLHttpRequest::getMe() const
+Value QQmlXMLHttpRequest::getMe() const
{
- return m_me;
+ return m_me.value();
}
-void QQmlXMLHttpRequest::setMe(v8::Handle<v8::Object> me)
+void QQmlXMLHttpRequest::setMe(const Value &me)
{
- qPersistentDispose(m_me);
-
- if (!me.IsEmpty())
- m_me = qPersistentNew<v8::Object>(me);
+ m_me = me;
}
void QQmlXMLHttpRequest::readyRead()
{
- v8::HandleScope handle_scope;
-
m_status =
m_network->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
m_statusText =
@@ -1265,18 +1273,14 @@ void QQmlXMLHttpRequest::readyRead()
if (m_state < HeadersReceived) {
m_state = HeadersReceived;
fillHeadersList ();
- v8::TryCatch tc;
- dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
+ dispatchCallback(m_me.value());
}
bool wasEmpty = m_responseEntityBody.isEmpty();
m_responseEntityBody.append(m_network->readAll());
if (wasEmpty && !m_responseEntityBody.isEmpty())
m_state = Loading;
- v8::TryCatch tc;
- dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
+ dispatchCallback(m_me.value());
}
static const char *errorToString(QNetworkReply::NetworkError error)
@@ -1293,8 +1297,6 @@ static const char *errorToString(QNetworkReply::NetworkError error)
void QQmlXMLHttpRequest::error(QNetworkReply::NetworkError error)
{
- v8::HandleScope handle_scope;
-
m_status =
m_network->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
m_statusText =
@@ -1316,9 +1318,7 @@ void QQmlXMLHttpRequest::error(QNetworkReply::NetworkError error)
error == QNetworkReply::ContentReSendError ||
error == QNetworkReply::UnknownContentError) {
m_state = Loading;
- v8::TryCatch tc;
- dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
+ dispatchCallback(m_me.value());
} else {
m_errorFlag = true;
m_responseEntityBody = QByteArray();
@@ -1326,16 +1326,12 @@ void QQmlXMLHttpRequest::error(QNetworkReply::NetworkError error)
m_state = Done;
- v8::TryCatch tc;
- dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
+ dispatchCallback(m_me.value());
}
#define XMLHTTPREQUEST_MAXIMUM_REDIRECT_RECURSION 15
void QQmlXMLHttpRequest::finished()
{
- v8::HandleScope handle_scope;
-
m_redirectCount++;
if (m_redirectCount < XMLHTTPREQUEST_MAXIMUM_REDIRECT_RECURSION) {
QVariant redirect = m_network->attribute(QNetworkRequest::RedirectionTargetAttribute);
@@ -1357,9 +1353,7 @@ void QQmlXMLHttpRequest::finished()
if (m_state < HeadersReceived) {
m_state = HeadersReceived;
fillHeadersList ();
- v8::TryCatch tc;
dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
}
m_responseEntityBody.append(m_network->readAll());
readEncoding();
@@ -1376,17 +1370,13 @@ void QQmlXMLHttpRequest::finished()
destroyNetwork();
if (m_state < Loading) {
m_state = Loading;
- v8::TryCatch tc;
dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
}
m_state = Done;
- v8::TryCatch tc;
dispatchCallback(m_me);
- if (tc.HasCaught()) printError(tc.Message());
- setMe(v8::Handle<v8::Object>());
+ setMe(Value::emptyValue());
}
@@ -1464,55 +1454,48 @@ const QByteArray &QQmlXMLHttpRequest::rawResponseBody() const
return m_responseEntityBody;
}
-// Requires a TryCatch scope
-void QQmlXMLHttpRequest::dispatchCallback(v8::Handle<v8::Object> me)
+void QQmlXMLHttpRequest::dispatchCallback(const Value &me)
{
- v8::HandleScope hs;
- v8::Context::Scope scope(engine->context());
+ ExecutionContext *ctx = v4->current;
+ try {
+ Object *o = me.asObject();
+ if (!o)
+ ctx->throwError(QStringLiteral("QQmlXMLHttpRequest: internal error: empty ThisObject"));
- if (me.IsEmpty() || me->IsNull()) {
- v8::ThrowException(v8::Exception::Error(v8::String::New("Unable to dispatch QQmlXmlHttpRequest callback: invalid object")));
- return;
- }
+ Object *thisObj = o->get(v4->newString(QStringLiteral("ThisObject"))).asObject();
+ if (!thisObj)
+ ctx->throwError(QStringLiteral("QQmlXMLHttpRequest: internal error: empty ThisObject"));
- if (me->Get(v8::String::New("ThisObject")).IsEmpty()) {
- v8::ThrowException(v8::Exception::Error(v8::String::New("QQmlXMLHttpRequest: internal error: empty ThisObject")));
- return;
- }
-
- v8::Local<v8::Object> thisObj = me->Get(v8::String::New("ThisObject"))->ToObject();
- v8::Local<v8::Value> callback = thisObj->Get(v8::String::New("onreadystatechange"));
- if (!callback->IsFunction()) {
- // not an error, but no onreadystatechange function to call.
- return;
- }
-
- if (me->Get(v8::String::New("ActivationObject")).IsEmpty()) {
- v8::ThrowException(v8::Exception::Error(v8::String::New("QQmlXMLHttpRequest: internal error: empty ActivationObject")));
- return;
- }
+ FunctionObject *callback = thisObj->get(v4->newString(QStringLiteral("onreadystatechange"))).asFunctionObject();
+ if (!callback) {
+ // not an error, but no onreadystatechange function to call.
+ return;
+ }
- v8::Local<v8::Object> activationObject = me->Get(v8::String::New("ActivationObject"))->ToObject();
- QQmlContextData *callingContext = engine->contextWrapper()->context(activationObject);
- if (callingContext) {
- v8::Local<v8::Function> f = v8::Local<v8::Function>::Cast(callback);
- f->Call(activationObject, 0, 0); // valid activation object.
+ Value activationObject = o->get(v4->newString(QStringLiteral("ActivationObject")));
+ if (!activationObject.asObject())
+ v4->current->throwError(QStringLiteral("QQmlXMLHttpRequest: internal error: empty ActivationObject"));
+
+ QQmlContextData *callingContext = QmlContextWrapper::getContext(activationObject);
+ if (callingContext)
+ callback->call(activationObject, 0, 0);
+
+ // if the callingContext object is no longer valid, then it has been
+ // deleted explicitly (e.g., by a Loader deleting the itemContext when
+ // the source is changed). We do nothing in this case, as the evaluation
+ // cannot succeed.
+ } catch(Exception &e) {
+ e.accept(ctx);
+ printError(e);
}
-
- // if the callingContext object is no longer valid, then it has been
- // deleted explicitly (e.g., by a Loader deleting the itemContext when
- // the source is changed). We do nothing in this case, as the evaluation
- // cannot succeed.
}
// Must have a handle scope
-void QQmlXMLHttpRequest::printError(v8::Handle<v8::Message> message)
+void QQmlXMLHttpRequest::printError(const Exception &e)
{
- v8::Context::Scope scope(engine->context());
-
QQmlError error;
- QQmlExpressionPrivate::exceptionToError(message, error);
- QQmlEnginePrivate::warning(QQmlEnginePrivate::get(engine->engine()), error);
+ QQmlExpressionPrivate::exceptionToError(e, error);
+ QQmlEnginePrivate::warning(QQmlEnginePrivate::get(v4->v8Engine->engine()), error);
}
void QQmlXMLHttpRequest::destroyNetwork()
@@ -1524,43 +1507,161 @@ void QQmlXMLHttpRequest::destroyNetwork()
}
}
+
+struct QQmlXMLHttpRequestWrapper : public Object
+{
+ Q_MANAGED
+ QQmlXMLHttpRequestWrapper(ExecutionEngine *engine, QQmlXMLHttpRequest *request)
+ : Object(engine)
+ , request(request)
+ {
+ vtbl = &static_vtbl;
+ }
+ ~QQmlXMLHttpRequestWrapper() {
+ delete request;
+ }
+
+ static void destroy(Managed *that) {
+ that->as<QQmlXMLHttpRequestWrapper>()->~QQmlXMLHttpRequestWrapper();
+ }
+
+ QQmlXMLHttpRequest *request;
+};
+
+DEFINE_MANAGED_VTABLE(QQmlXMLHttpRequestWrapper);
+
+struct QQmlXMLHttpRequestCtor : public FunctionObject
+{
+ Q_MANAGED
+ QQmlXMLHttpRequestCtor(ExecutionEngine *engine)
+ : FunctionObject(engine->rootContext, engine->newString(QStringLiteral("XMLHttpRequest")))
+ {
+ vtbl = &static_vtbl;
+ defineReadonlyProperty(engine, QStringLiteral("UNSENT"), Value::fromInt32(0));
+ defineReadonlyProperty(engine, QStringLiteral("OPENED"), Value::fromInt32(1));
+ defineReadonlyProperty(engine, QStringLiteral("HEADERS_RECEIVED"), Value::fromInt32(2));
+ defineReadonlyProperty(engine, QStringLiteral("LOADING"), Value::fromInt32(3));
+ defineReadonlyProperty(engine, QStringLiteral("DONE"), Value::fromInt32(4));
+ if (!proto)
+ setupProto();
+ defineDefaultProperty(engine->id_prototype, Value::fromObject(proto));
+ }
+ ~QQmlXMLHttpRequestCtor()
+ {}
+
+ static void destroy(Managed *that) {
+ that->as<QQmlXMLHttpRequestCtor>()->~QQmlXMLHttpRequestCtor();
+ }
+ static void markObjects(Managed *that) {
+ QQmlXMLHttpRequestCtor *c = that->as<QQmlXMLHttpRequestCtor>();
+ if (c->proto)
+ c->proto->mark();
+ }
+ static Value construct(Managed *that, Value *, int)
+ {
+ QQmlXMLHttpRequestCtor *ctor = that->as<QQmlXMLHttpRequestCtor>();
+ if (!ctor)
+ that->engine()->current->throwTypeError();
+
+ QV8Engine *engine = that->engine()->v8Engine;
+ QQmlXMLHttpRequest *r = new QQmlXMLHttpRequest(engine, engine->networkAccessManager());
+ QQmlXMLHttpRequestWrapper *w = new (that->engine()->memoryManager) QQmlXMLHttpRequestWrapper(that->engine(), r);
+ w->prototype = ctor->proto;
+ return Value::fromObject(w);
+ }
+
+ static Value call(Managed *, const Value &, Value *, int) {
+ return Value::undefinedValue();
+ }
+
+ void setupProto();
+
+ static Value method_open(SimpleCallContext *ctx);
+ static Value method_setRequestHeader(SimpleCallContext *ctx);
+ static Value method_send(SimpleCallContext *ctx);
+ static Value method_abort(SimpleCallContext *ctx);
+ static Value method_getResponseHeader(SimpleCallContext *ctx);
+ static Value method_getAllResponseHeaders(SimpleCallContext *ctx);
+
+ static Value method_get_readyState(SimpleCallContext *ctx);
+ static Value method_get_status(SimpleCallContext *ctx);
+ static Value method_get_statusText(SimpleCallContext *ctx);
+ static Value method_get_responseText(SimpleCallContext *ctx);
+ static Value method_get_responseXML(SimpleCallContext *ctx);
+
+
+ Object *proto;
+};
+
+DEFINE_MANAGED_VTABLE(QQmlXMLHttpRequestCtor);
+
+void QQmlXMLHttpRequestCtor::setupProto()
+{
+ ExecutionEngine *v4 = engine();
+ proto = v4->newObject();
+
+ // Methods
+ proto->defineDefaultProperty(v4, QStringLiteral("open"), method_open);
+ proto->defineDefaultProperty(v4, QStringLiteral("setRequestHeader"), method_setRequestHeader);
+ proto->defineDefaultProperty(v4, QStringLiteral("send"), method_send);
+ proto->defineDefaultProperty(v4, QStringLiteral("abort"), method_abort);
+ proto->defineDefaultProperty(v4, QStringLiteral("getResponseHeader"), method_getResponseHeader);
+ proto->defineDefaultProperty(v4, QStringLiteral("getAllResponseHeaders"), method_getAllResponseHeaders);
+
+ // Read-only properties
+ proto->defineAccessorProperty(v4, QStringLiteral("readyState"), method_get_readyState, 0);
+ proto->defineAccessorProperty(v4, QStringLiteral("status"),method_get_status, 0);
+ proto->defineAccessorProperty(v4, QStringLiteral("statusText"),method_get_statusText, 0);
+ proto->defineAccessorProperty(v4, QStringLiteral("responseText"),method_get_responseText, 0);
+ proto->defineAccessorProperty(v4, QStringLiteral("responseXML"),method_get_responseXML, 0);
+
+ // State values
+ proto->defineReadonlyProperty(v4, QStringLiteral("UNSENT"), Value::fromInt32(0));
+ proto->defineReadonlyProperty(v4, QStringLiteral("OPENED"), Value::fromInt32(1));
+ proto->defineReadonlyProperty(v4, QStringLiteral("HEADERS_RECEIVED"), Value::fromInt32(2));
+ proto->defineReadonlyProperty(v4, QStringLiteral("LOADING"), Value::fromInt32(3));
+ proto->defineReadonlyProperty(v4, QStringLiteral("DONE"), Value::fromInt32(4));
+}
+
+
// XMLHttpRequest methods
-static v8::Handle<v8::Value> qmlxmlhttprequest_open(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_open(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- if (args.Length() < 2 || args.Length() > 5)
- V8THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
+ if (ctx->argumentCount < 2 || ctx->argumentCount > 5)
+ V4THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
// Argument 0 - Method
- QString method = engine->toString(args[0]).toUpper();
+ QString method = ctx->arguments[0].toQString().toUpper();
if (method != QLatin1String("GET") &&
method != QLatin1String("PUT") &&
method != QLatin1String("HEAD") &&
method != QLatin1String("POST") &&
method != QLatin1String("DELETE"))
- V8THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Unsupported HTTP method type");
+ V4THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Unsupported HTTP method type");
// Argument 1 - URL
- QUrl url = QUrl(engine->toString(args[1]));
+ QUrl url = QUrl(ctx->arguments[1].toQString());
if (url.isRelative())
url = engine->callingContext()->resolvedUrl(url);
// Argument 2 - async (optional)
- if (args.Length() > 2 && !args[2]->BooleanValue())
- V8THROW_DOM(DOMEXCEPTION_NOT_SUPPORTED_ERR, "Synchronous XMLHttpRequest calls are not supported");
+ if (ctx->argumentCount > 2 && !ctx->arguments[2].booleanValue())
+ V4THROW_DOM(DOMEXCEPTION_NOT_SUPPORTED_ERR, "Synchronous XMLHttpRequest calls are not supported");
// Argument 3/4 - user/pass (optional)
QString username, password;
- if (args.Length() > 3)
- username = engine->toString(args[3]);
- if (args.Length() > 4)
- password = engine->toString(args[4]);
+ if (ctx->argumentCount > 3)
+ username = ctx->arguments[3].toQString();
+ if (ctx->argumentCount > 4)
+ password = ctx->arguments[4].toQString();
// Clear the fragment (if any)
url.setFragment(QString());
@@ -1569,25 +1670,24 @@ static v8::Handle<v8::Value> qmlxmlhttprequest_open(const v8::Arguments &args)
if (!username.isNull()) url.setUserName(username);
if (!password.isNull()) url.setPassword(password);
- return r->open(constructMeObject(args.This(), engine), method, url);
+ return r->open(constructMeObject(ctx->thisObject, engine), method, url);
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_setRequestHeader(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_setRequestHeader(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- if (args.Length() != 2)
- V8THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
+ if (ctx->argumentCount != 2)
+ V4THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
if (r->readyState() != QQmlXMLHttpRequest::Opened || r->sendFlag())
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
- QV8Engine *engine = r->engine;
-
- QString name = engine->toString(args[0]);
- QString value = engine->toString(args[1]);
+ QString name = ctx->arguments[0].toQString();
+ QString value = ctx->arguments[1].toQString();
// ### Check that name and value are well formed
@@ -1612,119 +1712,123 @@ static v8::Handle<v8::Value> qmlxmlhttprequest_setRequestHeader(const v8::Argume
nameUpper == QLatin1String("VIA") ||
nameUpper.startsWith(QLatin1String("PROXY-")) ||
nameUpper.startsWith(QLatin1String("SEC-")))
- return v8::Undefined();
+ return Value::undefinedValue();
r->addHeader(name, value);
- return v8::Undefined();
+ return Value::undefinedValue();
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_send(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_send(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
if (r->readyState() != QQmlXMLHttpRequest::Opened ||
r->sendFlag())
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
QByteArray data;
- if (args.Length() > 0)
- data = engine->toString(args[0]).toUtf8();
+ if (ctx->argumentCount > 0)
+ data = ctx->arguments[0].toQString().toUtf8();
- return r->send(constructMeObject(args.This(), engine), data);
+ return r->send(constructMeObject(ctx->thisObject, engine), data);
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_abort(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_abort(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- return r->abort(constructMeObject(args.This(), r->engine));
+ return r->abort(constructMeObject(ctx->thisObject, ctx->engine->v8Engine));
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_getResponseHeader(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_getResponseHeader(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
- if (args.Length() != 1)
- V8THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
+ if (ctx->argumentCount != 1)
+ V4THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
if (r->readyState() != QQmlXMLHttpRequest::Loading &&
r->readyState() != QQmlXMLHttpRequest::Done &&
r->readyState() != QQmlXMLHttpRequest::HeadersReceived)
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
- return engine->toString(r->header(engine->toString(args[0])));
+ return engine->toString(r->header(ctx->arguments[0].toQString()));
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_getAllResponseHeaders(const v8::Arguments &args)
+Value QQmlXMLHttpRequestCtor::method_getAllResponseHeaders(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(args.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
- if (args.Length() != 0)
- V8THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
+ if (ctx->argumentCount != 0)
+ V4THROW_DOM(DOMEXCEPTION_SYNTAX_ERR, "Incorrect argument count");
if (r->readyState() != QQmlXMLHttpRequest::Loading &&
r->readyState() != QQmlXMLHttpRequest::Done &&
r->readyState() != QQmlXMLHttpRequest::HeadersReceived)
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
return engine->toString(r->headers());
}
// XMLHttpRequest properties
-static v8::Handle<v8::Value> qmlxmlhttprequest_readyState(v8::Local<v8::String> /* property */,
- const v8::AccessorInfo& info)
+Value QQmlXMLHttpRequestCtor::method_get_readyState(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(info.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- return v8::Integer::NewFromUnsigned(r->readyState());
+ return Value::fromUInt32(r->readyState());
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_status(v8::Local<v8::String> /* property */,
- const v8::AccessorInfo& info)
+Value QQmlXMLHttpRequestCtor::method_get_status(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(info.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
if (r->readyState() == QQmlXMLHttpRequest::Unsent ||
r->readyState() == QQmlXMLHttpRequest::Opened)
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
if (r->errorFlag())
- return v8::Integer::New(0);
+ return Value::fromInt32(0);
else
- return v8::Integer::New(r->replyStatus());
+ return Value::fromInt32(r->replyStatus());
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_statusText(v8::Local<v8::String> /* property */,
- const v8::AccessorInfo& info)
+Value QQmlXMLHttpRequestCtor::method_get_statusText(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(info.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
if (r->readyState() == QQmlXMLHttpRequest::Unsent ||
r->readyState() == QQmlXMLHttpRequest::Opened)
- V8THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
+ V4THROW_DOM(DOMEXCEPTION_INVALID_STATE_ERR, "Invalid state");
if (r->errorFlag())
return engine->toString(QString());
@@ -1732,14 +1836,14 @@ static v8::Handle<v8::Value> qmlxmlhttprequest_statusText(v8::Local<v8::String>
return engine->toString(r->replyStatusText());
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_responseText(v8::Local<v8::String> /* property */,
- const v8::AccessorInfo& info)
+Value QQmlXMLHttpRequestCtor::method_get_responseText(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(info.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
- QV8Engine *engine = r->engine;
+ QV8Engine *engine = ctx->engine->v8Engine;
if (r->readyState() != QQmlXMLHttpRequest::Loading &&
r->readyState() != QQmlXMLHttpRequest::Done)
@@ -1748,39 +1852,22 @@ static v8::Handle<v8::Value> qmlxmlhttprequest_responseText(v8::Local<v8::String
return engine->toString(r->responseBody());
}
-static v8::Handle<v8::Value> qmlxmlhttprequest_responseXML(v8::Local<v8::String> /* property */,
- const v8::AccessorInfo& info)
+Value QQmlXMLHttpRequestCtor::method_get_responseXML(SimpleCallContext *ctx)
{
- QQmlXMLHttpRequest *r = v8_resource_cast<QQmlXMLHttpRequest>(info.This());
- if (!r)
- V8THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequestWrapper *w = ctx->thisObject.as<QQmlXMLHttpRequestWrapper>();
+ if (!w)
+ V4THROW_REFERENCE("Not an XMLHttpRequest object");
+ QQmlXMLHttpRequest *r = w->request;
if (!r->receivedXml() ||
(r->readyState() != QQmlXMLHttpRequest::Loading &&
r->readyState() != QQmlXMLHttpRequest::Done)) {
- return v8::Null();
- } else {
- return Document::load(r->engine, r->rawResponseBody());
- }
-}
-
-static v8::Handle<v8::Value> qmlxmlhttprequest_new(const v8::Arguments &args)
-{
- if (args.IsConstructCall()) {
- QV8Engine *engine = V8ENGINE();
- QQmlEnginePrivate *ep = QQmlEnginePrivate::get(engine->engine());
- Q_UNUSED(ep)
- QQmlXMLHttpRequest *r = new QQmlXMLHttpRequest(engine, engine->networkAccessManager());
- args.This()->SetExternalResource(r);
-
- return args.This();
+ return Value::nullValue();
} else {
- return v8::Undefined();
+ return Document::load(ctx->engine->v8Engine, r->rawResponseBody());
}
}
-#define NEWFUNCTION(function) v8::FunctionTemplate::New(function)->GetFunction()
-
void qt_rem_qmlxmlhttprequest(QV8Engine * /* engine */, void *d)
{
QQmlXMLHttpRequestData *data = (QQmlXMLHttpRequestData *)d;
@@ -1789,42 +1876,10 @@ void qt_rem_qmlxmlhttprequest(QV8Engine * /* engine */, void *d)
void *qt_add_qmlxmlhttprequest(QV8Engine *engine)
{
- v8::PropertyAttribute attributes = (v8::PropertyAttribute)(v8::ReadOnly | v8::DontEnum | v8::DontDelete);
+ ExecutionEngine *v4 = QV8Engine::getV4(engine);
- // XMLHttpRequest
- v8::Local<v8::FunctionTemplate> xmlhttprequest = v8::FunctionTemplate::New(qmlxmlhttprequest_new,
- v8::External::New(engine));
- xmlhttprequest->InstanceTemplate()->SetHasExternalResource(true);
-
- // Methods
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("open"), NEWFUNCTION(qmlxmlhttprequest_open), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("setRequestHeader"), NEWFUNCTION(qmlxmlhttprequest_setRequestHeader), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("send"), NEWFUNCTION(qmlxmlhttprequest_send), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("abort"), NEWFUNCTION(qmlxmlhttprequest_abort), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("getResponseHeader"), NEWFUNCTION(qmlxmlhttprequest_getResponseHeader), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("getAllResponseHeaders"), NEWFUNCTION(qmlxmlhttprequest_getAllResponseHeaders), attributes);
-
- // Read-only properties
- xmlhttprequest->PrototypeTemplate()->SetAccessor(v8::String::New("readyState"), qmlxmlhttprequest_readyState, 0, v8::Handle<v8::Value>(), v8::DEFAULT, attributes);
- xmlhttprequest->PrototypeTemplate()->SetAccessor(v8::String::New("status"),qmlxmlhttprequest_status, 0, v8::Handle<v8::Value>(), v8::DEFAULT, attributes);
- xmlhttprequest->PrototypeTemplate()->SetAccessor(v8::String::New("statusText"),qmlxmlhttprequest_statusText, 0, v8::Handle<v8::Value>(), v8::DEFAULT, attributes);
- xmlhttprequest->PrototypeTemplate()->SetAccessor(v8::String::New("responseText"),qmlxmlhttprequest_responseText, 0, v8::Handle<v8::Value>(), v8::DEFAULT, attributes);
- xmlhttprequest->PrototypeTemplate()->SetAccessor(v8::String::New("responseXML"),qmlxmlhttprequest_responseXML, 0, v8::Handle<v8::Value>(), v8::DEFAULT, attributes);
-
- // State values
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("UNSENT"), v8::Integer::New(0), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("OPENED"), v8::Integer::New(1), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("HEADERS_RECEIVED"), v8::Integer::New(2), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("LOADING"), v8::Integer::New(3), attributes);
- xmlhttprequest->PrototypeTemplate()->Set(v8::String::New("DONE"), v8::Integer::New(4), attributes);
-
- // Constructor
- xmlhttprequest->Set(v8::String::New("UNSENT"), v8::Integer::New(0), attributes);
- xmlhttprequest->Set(v8::String::New("OPENED"), v8::Integer::New(1), attributes);
- xmlhttprequest->Set(v8::String::New("HEADERS_RECEIVED"), v8::Integer::New(2), attributes);
- xmlhttprequest->Set(v8::String::New("LOADING"), v8::Integer::New(3), attributes);
- xmlhttprequest->Set(v8::String::New("DONE"), v8::Integer::New(4), attributes);
- engine->global()->Set(v8::String::New("XMLHttpRequest"), xmlhttprequest->GetFunction());
+ QQmlXMLHttpRequestCtor *ctor = new (v4->memoryManager) QQmlXMLHttpRequestCtor(v4);
+ v4->globalObject->defineReadonlyProperty(v4->newString(QStringLiteral("XMLHttpRequest")), Value::fromObject(ctor));
QQmlXMLHttpRequestData *data = new QQmlXMLHttpRequestData;
return data;