aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Andreyev <aa13q@ya.ru>2019-01-30 19:30:07 +0300
committerAlexey Andreyev <aa13q@ya.ru>2019-01-30 19:32:26 +0300
commitcc7d034fa67196ad4950d3785aff64e4c5765855 (patch)
tree4398e7b9ee861f7d5d7d92ea314a4e21631f4c61
parentf438d37b169965ee0a9937b5178560a653f1197b (diff)
downloadlibquotient-cc7d034fa67196ad4950d3785aff64e4c5765855.tar.gz
libquotient-cc7d034fa67196ad4950d3785aff64e4c5765855.zip
Connection: infinite sync loop logic by default
-rw-r--r--lib/connection.cpp13
-rw-r--r--lib/connection.h3
2 files changed, 15 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index c582cf94..982145f7 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -133,6 +133,8 @@ Connection::Connection(const QUrl& server, QObject* parent)
, d(std::make_unique<Private>(std::make_unique<ConnectionData>(server)))
{
d->q = this; // All d initialization should occur before this line
+ // sync loop:
+ connect(this, &Connection::syncDone, this, &Connection::getNewEvents);
}
Connection::Connection(QObject* parent)
@@ -250,7 +252,7 @@ void Connection::Private::connectWithToken(const QString& user,
<< "by user" << userId << "from device" << deviceId;
emit q->stateChanged();
emit q->connected();
-
+ q->sync(); // initial sync after connection
}
void Connection::checkAndConnect(const QString& userId,
@@ -406,6 +408,15 @@ void Connection::onSyncSuccess(SyncData &&data, bool fromCache) {
}
}
+void Connection::getNewEvents()
+{
+ // Borrowed the logic from Quiark's code in Tensor
+ // to cache not too aggressively and not on the first sync.
+ if (++_saveStateCounter % 17 == 2)
+ saveState();
+ sync(30*1000);
+}
+
void Connection::stopSync()
{
if (d->syncJob)
diff --git a/lib/connection.h b/lib/connection.h
index 9e4121f4..dcc77824 100644
--- a/lib/connection.h
+++ b/lib/connection.h
@@ -678,6 +678,7 @@ namespace QMatrixClient
* Completes loading sync data.
*/
void onSyncSuccess(SyncData &&data, bool fromCache = false);
+ void getNewEvents();
private:
class Private;
@@ -702,6 +703,8 @@ namespace QMatrixClient
static room_factory_t _roomFactory;
static user_factory_t _userFactory;
+
+ int _saveStateCounter = 0;
};
} // namespace QMatrixClient
Q_DECLARE_METATYPE(QMatrixClient::Connection*)