1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#include <QStandardPaths>
#include <QDesktopServices>
#include <QUrl>
#include <QDir>
#include "jskitobjects.h"
JSKitPebble::JSKitPebble(JSKitManager *mgr)
: QObject(mgr), _mgr(mgr)
{
}
void JSKitPebble::addEventListener(const QString &type, QJSValue function)
{
_callbacks[type].append(function);
}
void JSKitPebble::removeEventListener(const QString &type, QJSValue function)
{
if (!_callbacks.contains(type)) return;
QList<QJSValue> &callbacks = _callbacks[type];
for (QList<QJSValue>::iterator it = callbacks.begin(); it != callbacks.end(); ) {
if (it->strictlyEquals(function)) {
it = callbacks.erase(it);
} else {
++it;
}
}
if (callbacks.empty()) {
_callbacks.remove(type);
}
}
void JSKitPebble::sendAppMessage(QJSValue message, QJSValue callbackForAck, QJSValue callbackForNack)
{
// TODO contact _mgr->appmsg->...
logger()->debug() << "sendAppMessage" << message.toString();
}
void JSKitPebble::showSimpleNotificationOnPebble(const QString &title, const QString &body)
{
logger()->debug() << "showSimpleNotificationOnPebble" << title << body;
}
void JSKitPebble::openUrl(const QUrl &url)
{
if (!QDesktopServices::openUrl(url)) {
logger()->warn() << "Failed to open URL:" << url;
}
}
void JSKitPebble::invokeCallbacks(const QString &type, const QJSValueList &args)
{
if (!_callbacks.contains(type)) return;
QList<QJSValue> &callbacks = _callbacks[type];
for (QList<QJSValue>::iterator it = callbacks.begin(); it != callbacks.end(); ++it) {
QJSValue result = it->call(args);
if (result.isError()) {
logger()->warn() << "error while invoking callback" << type << it->toString() << ":"
<< result.toString();
}
}
}
JSKitLocalStorage::JSKitLocalStorage(const QUuid &uuid, JSKitManager *mgr)
: QObject(mgr), _storage(new QSettings(getStorageFileFor(uuid), QSettings::IniFormat, this))
{
_len = _storage->allKeys().size();
}
int JSKitLocalStorage::length() const
{
return _len;
}
QJSValue JSKitLocalStorage::getItem(const QString &key) const
{
QVariant value = _storage->value(key);
if (value.isValid()) {
return QJSValue(value.toString());
} else {
return QJSValue(QJSValue::NullValue);
}
}
void JSKitLocalStorage::setItem(const QString &key, const QString &value)
{
_storage->setValue(key, QVariant::fromValue(value));
checkLengthChanged();
}
void JSKitLocalStorage::removeItem(const QString &key)
{
_storage->remove(key);
checkLengthChanged();
}
void JSKitLocalStorage::clear()
{
_storage->clear();
_len = 0;
emit lengthChanged();
}
void JSKitLocalStorage::checkLengthChanged()
{
int curLen = _storage->allKeys().size();
if (_len != curLen) {
_len = curLen;
emit lengthChanged();
}
}
QString JSKitLocalStorage::getStorageFileFor(const QUuid &uuid)
{
QDir dataDir(QStandardPaths::writableLocation(QStandardPaths::DataLocation));
dataDir.mkdir("js-storage");
return dataDir.absoluteFilePath("js-storage/" + uuid.toString() + ".ini");
}
|