Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativeproxymetaobject.cpp
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 #include "private/qdeclarativeproxymetaobject_p.h"
43 #include "private/qdeclarativeproperty_p.h"
44
45 QT_BEGIN_NAMESPACE
46
47 QDeclarativeProxyMetaObject::QDeclarativeProxyMetaObject(QObject *obj, QList<ProxyData> *mList)
48 : metaObjects(mList), proxies(0), parent(0), object(obj)
49 {
50     *static_cast<QMetaObject *>(this) = *metaObjects->first().metaObject;
51
52     QObjectPrivate *op = QObjectPrivate::get(obj);
53     if (op->metaObject)
54         parent = static_cast<QAbstractDynamicMetaObject*>(op->metaObject);
55
56     op->metaObject = this;
57 }
58
59 QDeclarativeProxyMetaObject::~QDeclarativeProxyMetaObject()
60 {
61     if (parent)
62         delete parent;
63     parent = 0;
64
65     if (proxies)
66         delete [] proxies;
67     proxies = 0;
68 }
69
70 int QDeclarativeProxyMetaObject::metaCall(QMetaObject::Call c, int id, void **a)
71 {
72     if ((c == QMetaObject::ReadProperty ||
73         c == QMetaObject::WriteProperty) &&
74             id >= metaObjects->last().propertyOffset) {
75
76         for (int ii = 0; ii < metaObjects->count(); ++ii) {
77             const ProxyData &data = metaObjects->at(ii);
78             if (id >= data.propertyOffset) {
79                 if (!proxies) {
80                     proxies = new QObject*[metaObjects->count()];
81                     ::memset(proxies, 0, 
82                              sizeof(QObject *) * metaObjects->count());
83                 }
84
85                 if (!proxies[ii]) {
86                     QObject *proxy = data.createFunc(object);
87                     const QMetaObject *metaObject = proxy->metaObject();
88                     proxies[ii] = proxy;
89
90                     int localOffset = data.metaObject->methodOffset();
91                     int methodOffset = metaObject->methodOffset();
92                     int methods = metaObject->methodCount() - methodOffset;
93
94                     // ### - Can this be done more optimally?
95                     for (int jj = 0; jj < methods; ++jj) {
96                         QMetaMethod method = 
97                             metaObject->method(jj + methodOffset);
98                         if (method.methodType() == QMetaMethod::Signal)
99                             QDeclarativePropertyPrivate::connect(proxy, methodOffset + jj, object, localOffset + jj);
100                     }
101                 }
102
103                 int proxyOffset = proxies[ii]->metaObject()->propertyOffset();
104                 int proxyId = id - data.propertyOffset + proxyOffset;
105
106                 return proxies[ii]->qt_metacall(c, proxyId, a);
107             }
108         }
109     } else if (c == QMetaObject::InvokeMetaMethod &&
110                id >= metaObjects->last().methodOffset) {
111         QMetaMethod m = object->metaObject()->method(id);
112         if (m.methodType() == QMetaMethod::Signal) {
113             QMetaObject::activate(object, id, a);
114             return -1;
115         }
116     }
117
118     if (parent)
119         return parent->metaCall(c, id, a);
120     else
121         return object->qt_metacall(c, id, a);
122 }
123
124 QT_END_NAMESPACE