summaryrefslogtreecommitdiff
path: root/qmlplugin/stepsDataLoader.cpp
diff options
context:
space:
mode:
authorArseniy-Movshev <dodoradio@outlook.com>2023-05-29 16:30:31 +0100
committerArseniy-Movshev <dodoradio@outlook.com>2023-05-29 18:06:51 +0100
commitfd718937e22c22e716a951e2bb58ac1bc624f70e (patch)
tree88b7ebd962c1224dbfb4daacf578084a79fd17cc /qmlplugin/stepsDataLoader.cpp
parent66e8fe3ba76cf72a71a8fece1532fb9597813e0a (diff)
Add a method for daemon recordings to be triggered from qml
This allows the app to always show an up-to-date value
Diffstat (limited to 'qmlplugin/stepsDataLoader.cpp')
-rw-r--r--qmlplugin/stepsDataLoader.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/qmlplugin/stepsDataLoader.cpp b/qmlplugin/stepsDataLoader.cpp
index 0c084ea..199b324 100644
--- a/qmlplugin/stepsDataLoader.cpp
+++ b/qmlplugin/stepsDataLoader.cpp
@@ -14,11 +14,18 @@
#include <QDate>
#include <QSettings>
#include <QStandardPaths>
+#include <QDBusInterface>
#include "stepsDataLoader.h"
StepsDataLoader::StepsDataLoader() : QObject()
{
+ m_iface = new QDBusInterface("org.asteroid.sensorlogd.logger","/org/asteroid/sensorlogd/logger","", QDBusConnection::sessionBus(), this);
+ if (!m_iface->isValid()) {
+ qDebug()<<"interface is not valid";
+ } else {
+ qDebug()<<"interface is valid";
+ }
}
int StepsDataLoader::getTodayData() {
@@ -45,6 +52,11 @@ int StepsDataLoader::getDataForDate(QDate date) { // This is obvious garbage. Th
return line.split(":")[1].toInt();
}
+void StepsDataLoader::triggerDaemonRecording() {
+ m_iface->call("triggerRecording");
+}
+
+
QString fileNameForDate(QDate date, QString prefix) {
QSettings settings("asteroid","sensorlogd"); //this should be moved out of here at some point TODO
return settings.value("loggerRootPath",QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.asteroid-sensorlogd/").toString() + prefix + "/" + date.toString("yyyy-MM-dd.log");