Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativetypenamescriptclass.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/qdeclarativetypenamescriptclass_p.h"
43
44 #include "private/qdeclarativeengine_p.h"
45 #include "private/qdeclarativetypenamecache_p.h"
46
47 QT_BEGIN_NAMESPACE
48
49 struct TypeNameData : public QScriptDeclarativeClass::Object {
50     TypeNameData(QObject *o, QDeclarativeType *t, QDeclarativeTypeNameScriptClass::TypeNameMode m) : object(o), type(t), typeNamespace(0), mode(m) {}
51     TypeNameData(QObject *o, QDeclarativeTypeNameCache *n, QDeclarativeTypeNameScriptClass::TypeNameMode m) : object(o), type(0), typeNamespace(n), mode(m) {
52         if (typeNamespace) typeNamespace->addref();
53     }
54     ~TypeNameData() {
55         if (typeNamespace) typeNamespace->release();
56     }
57
58     QObject *object;
59     QDeclarativeType *type;
60     QDeclarativeTypeNameCache *typeNamespace;
61     QDeclarativeTypeNameScriptClass::TypeNameMode mode;
62 };
63
64 QDeclarativeTypeNameScriptClass::QDeclarativeTypeNameScriptClass(QDeclarativeEngine *bindEngine)
65 : QScriptDeclarativeClass(QDeclarativeEnginePrivate::getScriptEngine(bindEngine)), 
66   engine(bindEngine), object(0), type(0)
67 {
68 }
69
70 QDeclarativeTypeNameScriptClass::~QDeclarativeTypeNameScriptClass()
71 {
72 }
73
74 QScriptValue QDeclarativeTypeNameScriptClass::newObject(QObject *object, QDeclarativeType *type, TypeNameMode mode)
75 {
76     QScriptEngine *scriptEngine = QDeclarativeEnginePrivate::getScriptEngine(engine);
77
78     return QScriptDeclarativeClass::newObject(scriptEngine, this, new TypeNameData(object, type, mode));
79 }
80
81 QScriptValue QDeclarativeTypeNameScriptClass::newObject(QObject *object, QDeclarativeTypeNameCache *ns, TypeNameMode mode)
82 {
83     QScriptEngine *scriptEngine = QDeclarativeEnginePrivate::getScriptEngine(engine);
84
85     return QScriptDeclarativeClass::newObject(scriptEngine, this, new TypeNameData(object, ns, mode));
86 }
87
88 QScriptClass::QueryFlags 
89 QDeclarativeTypeNameScriptClass::queryProperty(Object *obj, const Identifier &name, 
90                                       QScriptClass::QueryFlags flags)
91 {
92     Q_UNUSED(flags);
93
94     TypeNameData *data = (TypeNameData *)obj;
95
96     object = 0;
97     type = 0;
98     QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine);
99
100     if (data->typeNamespace) {
101
102         QDeclarativeTypeNameCache::Data *d = data->typeNamespace->data(name);
103         if (d && d->type) {
104             type = d->type;
105             return QScriptClass::HandlesReadAccess;
106         } else {
107             return 0;
108         }
109
110     } else if (data->type) {
111
112         if (startsWithUpper(name)) {
113             QString strName = toString(name);
114             // Must be an enum
115             if (data->mode == IncludeEnums) {
116                 // ### Optimize
117                 QByteArray enumName = strName.toUtf8();
118                 const QMetaObject *metaObject = data->type->baseMetaObject();
119                 for (int ii = metaObject->enumeratorCount() - 1; ii >= 0; --ii) {
120                     QMetaEnum e = metaObject->enumerator(ii);
121                     int value = e.keyToValue(enumName.constData());
122                     if (value != -1) {
123                         enumValue = value;
124                         return QScriptClass::HandlesReadAccess;
125                     }
126                 }
127             }
128             return 0;
129         } else if (data->object) {
130             // Must be an attached property
131             object = qmlAttachedPropertiesObjectById(data->type->attachedPropertiesId(), data->object);
132             if (!object) return 0;
133             return ep->objectClass->queryProperty(object, name, flags, 0);
134         }
135
136     }
137
138     return 0;
139 }
140
141 QDeclarativeTypeNameScriptClass::Value 
142 QDeclarativeTypeNameScriptClass::property(Object *obj, const Identifier &name)
143 {
144     QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine);
145     QScriptEngine *scriptEngine = QDeclarativeEnginePrivate::getScriptEngine(engine);
146     if (type) {
147         return Value(scriptEngine, newObject(((TypeNameData *)obj)->object, type, ((TypeNameData *)obj)->mode));
148     } else if (object) {
149         return ep->objectClass->property(object, name);
150     } else {
151         return Value(scriptEngine, enumValue);
152     }
153 }
154
155 void QDeclarativeTypeNameScriptClass::setProperty(Object *, const Identifier &n, const QScriptValue &v)
156 {
157     Q_ASSERT(object);
158     Q_ASSERT(!type);
159
160     QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(engine);
161     ep->objectClass->setProperty(object, n, v, context());
162 }
163
164 QT_END_NAMESPACE
165