diff options
Diffstat (limited to '')
-rw-r--r-- | qmlplugin/stepsDataLoader.cpp | 12 | ||||
-rw-r--r-- | qmlplugin/stepsDataLoader.h | 4 |
2 files changed, 16 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"); diff --git a/qmlplugin/stepsDataLoader.h b/qmlplugin/stepsDataLoader.h index 4937ee9..869b434 100644 --- a/qmlplugin/stepsDataLoader.h +++ b/qmlplugin/stepsDataLoader.h @@ -12,6 +12,7 @@ #define STEPSDATALOADER_H #include <QObject> +#include <QDBusInterface> class StepsDataLoader : public QObject { @@ -21,6 +22,9 @@ public: explicit StepsDataLoader(); Q_INVOKABLE int getDataForDate(QDate date); Q_INVOKABLE int getTodayData(); + Q_INVOKABLE void triggerDaemonRecording(); +private: + QDBusInterface *m_iface; }; QString fileNameForDate(QDate date, QString prefix); |