Fix memory leaks with QV8Engine's ExtensionData
[profile/ivi/qtdeclarative.git] / src / declarative / qml / v8 / qv8engine_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QDECLARATIVEV8ENGINE_P_H
43 #define QDECLARATIVEV8ENGINE_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists purely as an
50 // implementation detail.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include <QtCore/qglobal.h>
57 #include <QtCore/qvariant.h>
58 #include <QtCore/qset.h>
59 #include <QtCore/qmutex.h>
60 #include <private/qv8_p.h>
61
62 #include <private/qdeclarativepropertycache_p.h>
63
64 #include "qv8contextwrapper_p.h"
65 #include "qv8qobjectwrapper_p.h"
66 #include "qv8stringwrapper_p.h"
67 #include "qv8typewrapper_p.h"
68 #include "qv8listwrapper_p.h"
69 #include "qv8variantwrapper_p.h"
70 #include "qv8valuetypewrapper_p.h"
71
72 QT_BEGIN_NAMESPACE
73
74
75 // Uncomment the following line to enable global handle debugging.  When enabled, all the persistent
76 // handles allocated using qPersistentNew() (or registered with qPersistentRegsiter()) and disposed
77 // with qPersistentDispose() are tracked.  If you try and do something illegal, like double disposing
78 // a handle, qFatal() is called.
79 // #define QML_GLOBAL_HANDLE_DEBUGGING
80
81 #define V8_RESOURCE_TYPE(resourcetype) \
82 public: \
83     enum { V8ResourceType = QV8ObjectResource:: resourcetype }; \
84     virtual QV8ObjectResource::ResourceType resourceType() const { return QV8ObjectResource:: resourcetype; } \
85 private: 
86
87 #define V8ENGINE() ((QV8Engine *)v8::External::Unwrap(args.Data()))
88 #define V8FUNCTION(function, engine) v8::FunctionTemplate::New(function, v8::External::Wrap((QV8Engine*)engine))->GetFunction()
89 #define V8THROW_ERROR(string) { \
90     v8::ThrowException(v8::Exception::Error(v8::String::New(string))); \
91     return v8::Handle<v8::Value>(); \
92 }
93 #define V8THROW_TYPE(string) { \
94     v8::ThrowException(v8::Exception::TypeError(v8::String::New(string))); \
95     return v8::Handle<v8::Value>(); \
96 }
97 #define V8ENGINE_ACCESSOR() ((QV8Engine *)v8::External::Unwrap(info.Data()));
98 #define V8THROW_ERROR_SETTER(string) { \
99     v8::ThrowException(v8::Exception::Error(v8::String::New(string))); \
100     return; \
101 }
102
103 #define V8_DEFINE_EXTENSION(dataclass, datafunction) \
104     inline dataclass *datafunction(QV8Engine *engine) \
105     { \
106         static int extensionId = -1; \
107         if (extensionId == -1) { \
108             QV8Engine::registrationMutex()->lock(); \
109             if (extensionId == -1) \
110                 extensionId = QV8Engine::registerExtension(); \
111             QV8Engine::registrationMutex()->unlock(); \
112         } \
113         dataclass *rv = (dataclass *)engine->extensionData(extensionId); \
114         if (!rv) { \
115             rv = new dataclass(engine); \
116             engine->setExtensionData(extensionId, rv); \
117         } \
118         return rv; \
119     } \
120
121 class QV8Engine;
122 class QV8ObjectResource : public v8::Object::ExternalResource
123 {
124 public:
125     QV8ObjectResource(QV8Engine *engine) : engine(engine) { Q_ASSERT(engine); }
126     enum ResourceType { ContextType, QObjectType, TypeType, ListType, VariantType, 
127                         ValueTypeType, XMLHttpRequestType, DOMNodeType, SQLDatabaseType,
128                         ListModelType, Context2DType };
129     virtual ResourceType resourceType() const = 0;
130
131     QV8Engine *engine;
132 };
133
134 template<class T>
135 inline T *v8_resource_cast(v8::Handle<v8::Object> object) {
136     QV8ObjectResource *resource = static_cast<QV8ObjectResource *>(object->GetExternalResource());
137     return (resource && (quint32)resource->resourceType() == (quint32)T::V8ResourceType)?static_cast<T *>(resource):0;
138 }
139
140 template<class T>
141 inline T *v8_resource_check(v8::Handle<v8::Object> object) {
142     T *resource = static_cast<T *>(object->GetExternalResource());
143     Q_ASSERT(resource && resource->resourceType() == (quint32)T::V8ResourceType);
144     return resource;
145 }
146
147 // Used to allow a QObject method take and return raw V8 handles without having to expose
148 // v8 in the public API.
149 // Use like this:
150 //     class MyClass : public QObject {
151 //         Q_OBJECT
152 //         ...
153 //         Q_INVOKABLE void myMethod(QDeclarativeV8Function*);
154 //     };
155 // The QDeclarativeV8Function - and consequently the arguments and return value - only remains 
156 // valid during the call.  If the return value isn't set within myMethod(), the will return
157 // undefined.
158 class QV8Engine;
159 class QDeclarativeV8Function
160 {
161 public:
162     int Length() const { return _ac; }
163     v8::Local<v8::Value> operator[](int idx) { return (*_a)->Get(idx); }
164     QDeclarativeContextData *context() { return _c; }
165     v8::Handle<v8::Object> qmlGlobal() { return *_g; }
166     void returnValue(v8::Handle<v8::Value> rv) { *_r = rv; }
167     QV8Engine *engine() const { return _e; }
168 private:
169     friend class QV8QObjectWrapper;
170     QDeclarativeV8Function();
171     QDeclarativeV8Function(const QDeclarativeV8Function &);
172     QDeclarativeV8Function &operator=(const QDeclarativeV8Function &);
173
174     QDeclarativeV8Function(int length, v8::Handle<v8::Object> &args, 
175                            v8::Handle<v8::Value> &rv, v8::Handle<v8::Object> &global,
176                            QDeclarativeContextData *c, QV8Engine *e)
177     : _ac(length), _a(&args), _r(&rv), _g(&global), _c(c), _e(e) {}
178
179     int _ac;
180     v8::Handle<v8::Object> *_a;
181     v8::Handle<v8::Value> *_r;
182     v8::Handle<v8::Object> *_g;
183     QDeclarativeContextData *_c;
184     QV8Engine *_e;
185 };
186
187 class QDeclarativeV8Handle
188 {
189 public:
190     QDeclarativeV8Handle() : d(0) {}
191     QDeclarativeV8Handle(const QDeclarativeV8Handle &other) : d(other.d) {}
192     QDeclarativeV8Handle &operator=(const QDeclarativeV8Handle &other) { d = other.d; return *this; }
193
194     static QDeclarativeV8Handle fromHandle(v8::Handle<v8::Value> h) {
195         return reinterpret_cast<QDeclarativeV8Handle &>(h);
196     }
197     v8::Handle<v8::Value> toHandle() const {
198         return reinterpret_cast<const v8::Handle<v8::Value> &>(*this);
199     }
200 private:
201     void *d;
202 };
203
204 class QObject;
205 class QDeclarativeEngine;
206 class QDeclarativeValueType;
207 class QNetworkAccessManager;
208 class QDeclarativeContextData;
209 class Q_DECLARATIVE_EXPORT QV8Engine
210 {
211 public:
212     QV8Engine();
213     ~QV8Engine();
214
215     struct Deletable {
216         virtual ~Deletable() {}
217     };
218
219     void init(QDeclarativeEngine *);
220
221     QDeclarativeEngine *engine() { return m_engine; }
222     v8::Local<v8::Object> global() { return m_context->Global(); }
223     v8::Handle<v8::Context> context() { return m_context; }
224     QV8ContextWrapper *contextWrapper() { return &m_contextWrapper; }
225     QV8QObjectWrapper *qobjectWrapper() { return &m_qobjectWrapper; }
226     QV8TypeWrapper *typeWrapper() { return &m_typeWrapper; }
227     QV8ListWrapper *listWrapper() { return &m_listWrapper; }
228     QV8VariantWrapper *variantWrapper() { return &m_variantWrapper; }
229
230     void *xmlHttpRequestData() { return m_xmlHttpRequestData; }
231     void *sqlDatabaseData() { return m_sqlDatabaseData; }
232
233     Deletable *listModelData() { return m_listModelData; }
234     void setListModelData(Deletable *d) { if (m_listModelData) delete m_listModelData; m_listModelData = d; }
235
236     QDeclarativeContextData *callingContext();
237
238     v8::Local<v8::Array> getOwnPropertyNames(v8::Handle<v8::Object>);
239     void freezeObject(v8::Handle<v8::Value>);
240
241     inline QString toString(v8::Handle<v8::Value> string);
242     inline QString toString(v8::Handle<v8::String> string);
243     static QString toStringStatic(v8::Handle<v8::Value>);
244     static QString toStringStatic(v8::Handle<v8::String>);
245     static inline bool startsWithUpper(v8::Handle<v8::String>);
246
247     QVariant toVariant(v8::Handle<v8::Value>, int typeHint);
248     v8::Handle<v8::Value> fromVariant(const QVariant &);
249     inline bool isVariant(v8::Handle<v8::Value>);
250
251     // Compile \a source (from \a fileName at \a lineNumber) in QML mode
252     v8::Local<v8::Script> qmlModeCompile(const QString &source, 
253                                          const QString &fileName = QString(), 
254                                          int lineNumber = 1);
255
256     // Return the QML global "scope" object for the \a ctxt context and \a scope object.
257     inline v8::Local<v8::Object> qmlScope(QDeclarativeContextData *ctxt, QObject *scope);
258
259     // Return a JS wrapper for the given QObject \a object
260     inline v8::Handle<v8::Value> newQObject(QObject *object);
261     inline bool isQObject(v8::Handle<v8::Value>);
262     inline QObject *toQObject(v8::Handle<v8::Value>);
263
264     // Return a JS string for the given QString \a string
265     inline v8::Local<v8::String> toString(const QString &string);
266
267     // Create a new value type object
268     inline v8::Handle<v8::Value> newValueType(QObject *, int coreIndex, QDeclarativeValueType *);
269     inline v8::Handle<v8::Value> newValueType(const QVariant &, QDeclarativeValueType *);
270
271     // Create a new QVariant object.  This doesn't examine the type of the variant, but always returns
272     // a QVariant wrapper
273     inline v8::Handle<v8::Value> newQVariant(const QVariant &);
274
275     // Return the network access manager for this engine.  By default this returns the network
276     // access manager of the QDeclarativeEngine.  It is overridden in the case of a threaded v8
277     // instance (like in WorkerScript).
278     virtual QNetworkAccessManager *networkAccessManager();
279
280     // Return the list of illegal id names (the names of the properties on the global object)
281     const QSet<QString> &illegalNames() const;
282
283     static void gc();
284
285 #ifdef QML_GLOBAL_HANDLE_DEBUGGING
286     // Used for handle debugging
287     static void registerHandle(void *);
288     static void releaseHandle(void *);
289 #endif
290
291     static QMutex *registrationMutex();
292     static int registerExtension();
293
294     inline Deletable *extensionData(int) const;
295     void setExtensionData(int, Deletable *);
296
297 private:
298     QDeclarativeEngine *m_engine;
299     v8::Persistent<v8::Context> m_context;
300
301     QV8StringWrapper m_stringWrapper;
302     QV8ContextWrapper m_contextWrapper;
303     QV8QObjectWrapper m_qobjectWrapper;
304     QV8TypeWrapper m_typeWrapper;
305     QV8ListWrapper m_listWrapper;
306     QV8VariantWrapper m_variantWrapper;
307     QV8ValueTypeWrapper m_valueTypeWrapper;
308
309     v8::Persistent<v8::Function> m_getOwnPropertyNames;
310     v8::Persistent<v8::Function> m_freezeObject;
311
312     void *m_xmlHttpRequestData;
313     void *m_sqlDatabaseData;
314
315     QVector<Deletable *> m_extensionData;
316     Deletable *m_listModelData;
317
318     QSet<QString> m_illegalNames;
319
320     QVariant toBasicVariant(v8::Handle<v8::Value>);
321
322     void initializeGlobal(v8::Handle<v8::Object>);
323
324     static v8::Handle<v8::Value> gc(const v8::Arguments &args);
325     static v8::Handle<v8::Value> print(const v8::Arguments &args);
326     static v8::Handle<v8::Value> isQtObject(const v8::Arguments &args);
327     static v8::Handle<v8::Value> rgba(const v8::Arguments &args);
328     static v8::Handle<v8::Value> hsla(const v8::Arguments &args);
329     static v8::Handle<v8::Value> rect(const v8::Arguments &args);
330     static v8::Handle<v8::Value> point(const v8::Arguments &args);
331     static v8::Handle<v8::Value> size(const v8::Arguments &args);
332     static v8::Handle<v8::Value> vector3d(const v8::Arguments &args);
333     static v8::Handle<v8::Value> lighter(const v8::Arguments &args);
334     static v8::Handle<v8::Value> darker(const v8::Arguments &args);
335     static v8::Handle<v8::Value> tint(const v8::Arguments &args);
336     static v8::Handle<v8::Value> formatDate(const v8::Arguments &args);
337     static v8::Handle<v8::Value> formatTime(const v8::Arguments &args);
338     static v8::Handle<v8::Value> formatDateTime(const v8::Arguments &args);
339     static v8::Handle<v8::Value> openUrlExternally(const v8::Arguments &args);
340     static v8::Handle<v8::Value> fontFamilies(const v8::Arguments &args);
341     static v8::Handle<v8::Value> md5(const v8::Arguments &args);
342     static v8::Handle<v8::Value> btoa(const v8::Arguments &args);
343     static v8::Handle<v8::Value> atob(const v8::Arguments &args);
344     static v8::Handle<v8::Value> quit(const v8::Arguments &args);
345     static v8::Handle<v8::Value> resolvedUrl(const v8::Arguments &args);
346     static v8::Handle<v8::Value> createQmlObject(const v8::Arguments &args);
347     static v8::Handle<v8::Value> createComponent(const v8::Arguments &args);
348     static v8::Handle<v8::Value> qsTranslate(const v8::Arguments &args);
349     static v8::Handle<v8::Value> qsTranslateNoOp(const v8::Arguments &args);
350     static v8::Handle<v8::Value> qsTr(const v8::Arguments &args);
351     static v8::Handle<v8::Value> qsTrNoOp(const v8::Arguments &args);
352     static v8::Handle<v8::Value> qsTrId(const v8::Arguments &args);
353     static v8::Handle<v8::Value> qsTrIdNoOp(const v8::Arguments &args);
354
355     double qtDateTimeToJsDate(const QDateTime &dt);
356     QDateTime qtDateTimeFromJsDate(double jsDate);
357 };
358
359 // Allocate a new Persistent handle.  *ALL* persistent handles in QML must be allocated
360 // using this method.
361 template<class T>
362 v8::Persistent<T> qPersistentNew(v8::Handle<T> that)
363 {
364     v8::Persistent<T> rv = v8::Persistent<T>::New(that);
365 #ifdef QML_GLOBAL_HANDLE_DEBUGGING
366     QV8Engine::registerHandle(*rv);
367 #endif
368     return rv;
369 }
370
371 // Register a Persistent handle that was returned to you by V8 (such as by
372 // v8::Context::New). This allows us to do handle tracking on these handles too.
373 template<class T>
374 void qPersistentRegister(v8::Persistent<T> handle)
375 {
376 #ifdef QML_GLOBAL_HANDLE_DEBUGGING
377     QV8Engine::registerHandle(*handle);
378 #else
379     Q_UNUSED(handle);
380 #endif
381 }
382
383 // Dispose and clear a persistent handle.  *ALL* persistent handles in QML must be
384 // disposed using this method.
385 template<class T>
386 void qPersistentDispose(v8::Persistent<T> &that)
387 {
388 #ifdef QML_GLOBAL_HANDLE_DEBUGGING
389     QV8Engine::releaseHandle(*that);
390 #endif
391     that.Dispose();
392     that.Clear();
393 }
394
395 QString QV8Engine::toString(v8::Handle<v8::Value> string)
396 {
397     return m_stringWrapper.toString(string->ToString());
398 }
399
400 QString QV8Engine::toString(v8::Handle<v8::String> string)
401 {
402     return m_stringWrapper.toString(string);
403 }
404
405 bool QV8Engine::isVariant(v8::Handle<v8::Value> value)
406 {
407     return m_variantWrapper.isVariant(value);
408 }
409
410 v8::Local<v8::Object> QV8Engine::qmlScope(QDeclarativeContextData *ctxt, QObject *scope)
411 {
412     return m_contextWrapper.qmlScope(ctxt, scope);
413 }
414
415 bool QV8Engine::isQObject(v8::Handle<v8::Value> obj)
416 {
417     return obj->IsObject()?m_qobjectWrapper.isQObject(v8::Handle<v8::Object>::Cast(obj)):false;
418 }
419
420 QObject *QV8Engine::toQObject(v8::Handle<v8::Value> obj)
421 {
422     return obj->IsObject()?m_qobjectWrapper.toQObject(v8::Handle<v8::Object>::Cast(obj)):0;
423 }
424
425 v8::Handle<v8::Value> QV8Engine::newQObject(QObject *object)
426 {
427     return m_qobjectWrapper.newQObject(object);
428 }
429
430 v8::Local<v8::String> QV8Engine::toString(const QString &string)
431 {
432     return m_stringWrapper.toString(string);
433 }
434
435 v8::Handle<v8::Value> QV8Engine::newValueType(QObject *object, int property, QDeclarativeValueType *type)
436 {
437     return m_valueTypeWrapper.newValueType(object, property, type);
438 }
439
440 v8::Handle<v8::Value> QV8Engine::newValueType(const QVariant &value, QDeclarativeValueType *type)
441 {
442     return m_valueTypeWrapper.newValueType(value, type);
443 }
444
445 // XXX Can this be made more optimal?  It is called prior to resolving each and every 
446 // unqualified name in QV8ContextWrapper.
447 bool QV8Engine::startsWithUpper(v8::Handle<v8::String> string)
448 {
449     uint16_t c = string->GetCharacter(0);
450     return (c >= 'A' && c <= 'Z') || 
451            (c > 127 && QChar::category(c) == QChar::Letter_Uppercase);
452 }
453
454 QV8Engine::Deletable *QV8Engine::extensionData(int index) const
455 {
456     if (index < m_extensionData.count())
457         return m_extensionData[index];
458     else
459         return 0;
460 }
461
462 QT_END_NAMESPACE
463
464 #endif // QDECLARATIVEV8ENGINE_P_H