aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-11-26 10:23:05 -0800
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-11-27 13:34:04 +0000
commitb150f38c872a29093b808a4d10b91ec7fea0a278 (patch)
treec453c57a08f62c48819c4a6ed340afc8f04aa9eb
parentcc914d7c017706b946857ca100d11718b511b479 (diff)
ondemandnavi: add qml invokable function for cache location
Bug-AGL: SPEC-2985 Change-Id: I5b412e968cac0d1034be35822de3bff70bb073c1 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
-rw-r--r--app/file_operation.cpp12
-rw-r--r--app/file_operation.h1
2 files changed, 13 insertions, 0 deletions
diff --git a/app/file_operation.cpp b/app/file_operation.cpp
index 8da7227..ff51b19 100644
--- a/app/file_operation.cpp
+++ b/app/file_operation.cpp
@@ -1,3 +1,4 @@
+#include <unistd.h>
#include "file_operation.h"
File_Operation::File_Operation(){
@@ -101,3 +102,14 @@ double File_Operation::getStartLongitude(){
QString File_Operation::getMapStyleUrls() {
return m_mapStyleUrls;
}
+
+QString File_Operation::getCachePath(QString name)
+{
+ QString path("/var/run/user/");
+
+ path.append(QString::number(getuid()));
+ path.append("/usrshr/cache/");
+ path.append(name);
+
+ return path;
+}
diff --git a/app/file_operation.h b/app/file_operation.h
index 8d28bfb..da753a8 100644
--- a/app/file_operation.h
+++ b/app/file_operation.h
@@ -36,6 +36,7 @@ public:
Q_INVOKABLE double getStartLongitude();
Q_INVOKABLE QString getMapStyleUrls();
Q_INVOKABLE bool isOSMEnabled() { return m_enable_osm; };
+ Q_INVOKABLE QString getCachePath(QString name);
private:
void initFileOperation();