2011-11-01 19:18:41 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2007 Richard J. Moore <rich@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DATAENGINEBIND_H
|
|
|
|
#define DATAENGINEBIND_H
|
|
|
|
|
|
|
|
#include <QScriptEngine>
|
|
|
|
#include <QScriptValue>
|
|
|
|
#include <QScriptValueIterator>
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
#include <plasma/dataengine.h>
|
|
|
|
#include <plasma/service.h>
|
|
|
|
#include <plasma/servicejob.h>
|
|
|
|
|
2012-12-19 14:57:28 +01:00
|
|
|
Q_DECLARE_METATYPE(Plasma::DataEngine::Dict)
|
|
|
|
Q_DECLARE_METATYPE(Plasma::DataEngine::Data)
|
2011-11-01 19:18:41 +01:00
|
|
|
|
|
|
|
template <class M>
|
|
|
|
QScriptValue qScriptValueFromMap(QScriptEngine *eng, const M &map)
|
|
|
|
{
|
|
|
|
//kDebug() << "qScriptValueFromMap called";
|
|
|
|
QScriptValue obj = eng->newObject();
|
|
|
|
typename M::const_iterator begin = map.constBegin();
|
|
|
|
typename M::const_iterator end = map.constEnd();
|
|
|
|
typename M::const_iterator it;
|
|
|
|
for (it = begin; it != end; ++it) {
|
|
|
|
if (it.value().type() == QVariant::Hash) {
|
|
|
|
obj.setProperty(it.key(), qScriptValueFromMap(eng, it.value().toHash()));
|
|
|
|
} else if (it.value().type() == QVariant::Map) {
|
|
|
|
obj.setProperty(it.key(), qScriptValueFromMap(eng, it.value().toMap()));
|
|
|
|
} else {
|
|
|
|
obj.setProperty(it.key(), qScriptValueFromValue(eng, it.value()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class M>
|
|
|
|
void qScriptValueToMap(const QScriptValue &value, M &map)
|
|
|
|
{
|
|
|
|
//kDebug() << "qScriptValueToMap called";
|
|
|
|
QScriptValueIterator it(value);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
it.next();
|
|
|
|
map[it.name()] = qscriptvalue_cast<typename M::mapped_type>(it.value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
int qScriptRegisterMapMetaType(
|
|
|
|
QScriptEngine *engine,
|
|
|
|
const QScriptValue &prototype = QScriptValue()
|
|
|
|
#ifndef qdoc
|
|
|
|
, T * /* dummy */ = 0
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return qScriptRegisterMetaType<T>(engine, qScriptValueFromMap, qScriptValueToMap, prototype);
|
|
|
|
}
|
|
|
|
|
|
|
|
void registerDataEngineMetaTypes(QScriptEngine *engine);
|
|
|
|
|
|
|
|
#endif // DATAENGINE_H
|
|
|
|
|