Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativeproxymetaobject.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtDeclarative module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qdeclarativeproxymetaobject_p.h"
43 #include "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