blob: a032d40cd8c9f59c473f476b618f528a73a9b654 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
Dees Troy3be70a82013-10-22 14:25:12 +00002 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <linux/input.h>
20#include <pthread.h>
21#include <stdarg.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <fcntl.h>
26#include <sys/stat.h>
27#include <sys/time.h>
28#include <sys/mman.h>
29#include <sys/types.h>
30#include <sys/ioctl.h>
31#include <time.h>
32#include <unistd.h>
33#include <stdlib.h>
34
35#include <string>
36#include <utility>
37#include <map>
38#include <fstream>
39#include <sstream>
40
41#include "variables.h"
42#include "data.hpp"
43#include "partitions.hpp"
Dees_Troy01a9b7a2012-10-01 09:01:03 -040044#include "twrp-functions.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070045#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troy2f9117a2013-02-17 19:52:09 -060046#include "gui/blanktimer.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070047#endif
Ethan Yonker00028b42014-04-09 14:29:02 -050048#include "find_file.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060049#include "set_metadata.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040050
Xuefera163f152015-03-26 22:45:04 +080051#include "cutils/properties.h"
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070052
Ethan Yonkera18f1082014-07-07 15:07:58 -050053#ifndef TW_MAX_BRIGHTNESS
54#define TW_MAX_BRIGHTNESS 255
55#endif
56
Dees_Troy51a0e822012-09-05 15:24:24 -040057extern "C"
58{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020059 #include "twcommon.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040060 #include "gui/pages.h"
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +000061 #include "minuitwrp/minui.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040062 void gui_notifyVarChange(const char *name, const char* value);
Dees_Troy51a0e822012-09-05 15:24:24 -040063}
64
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020065#define FILE_VERSION 0x00010001
Dees_Troy51a0e822012-09-05 15:24:24 -040066
67using namespace std;
68
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070069map<string, DataManager::TStrIntPair> DataManager::mValues;
70map<string, string> DataManager::mConstValues;
71string DataManager::mBackingFile;
72int DataManager::mInitialized = 0;
Jenkins1710bf22014-10-02 20:22:21 -040073
Ethan Yonker6277c792014-09-15 14:54:30 -050074extern bool datamedia;
Dees_Troy51a0e822012-09-05 15:24:24 -040075
Vojtech Bocekfda239b2015-01-07 22:55:13 +010076pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
77
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040078// Device ID functions
79void DataManager::sanitize_device_id(char* device_id) {
80 const char* whitelist ="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-._";
81 char str[50];
82 char* c = str;
83
84 strcpy(str, device_id);
85 memset(device_id, 0, sizeof(device_id));
86 while (*c) {
87 if (strchr(whitelist, *c))
88 strncat(device_id, c, 1);
89 c++;
90 }
91 return;
92}
93
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020094#define CMDLINE_SERIALNO "androidboot.serialno="
95#define CMDLINE_SERIALNO_LEN (strlen(CMDLINE_SERIALNO))
96#define CPUINFO_SERIALNO "Serial"
97#define CPUINFO_SERIALNO_LEN (strlen(CPUINFO_SERIALNO))
98#define CPUINFO_HARDWARE "Hardware"
99#define CPUINFO_HARDWARE_LEN (strlen(CPUINFO_HARDWARE))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400100
101void DataManager::get_device_id(void) {
102 FILE *fp;
103 char line[2048];
104 char hardware_id[32], device_id[64];
105 char* token;
106
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200107 // Assign a blank device_id to start with
108 device_id[0] = 0;
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700109
110#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
111 // Now we'll use product_model_hardwareid as device id
112 char model_id[PROPERTY_VALUE_MAX];
113 property_get("ro.product.model", model_id, "error");
114 if (strcmp(model_id,"error") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000115 LOGINFO("=> product model: '%s'\n", model_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700116 // Replace spaces with underscores
117 for(int i = 0; i < strlen(model_id); i++) {
118 if(model_id[i] == ' ')
119 model_id[i] = '_';
120 }
121 strcpy(device_id, model_id);
122 if (hardware_id[0] != 0) {
123 strcat(device_id, "_");
124 strcat(device_id, hardware_id);
125 }
126 sanitize_device_id((char *)device_id);
127 mConstValues.insert(make_pair("device_id", device_id));
Dees_Troy2673cec2013-04-02 20:22:16 +0000128 LOGINFO("=> using device id: '%s'\n", device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700129 return;
130 }
131#endif
132
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400133#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200134 // First, try the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400135 fp = fopen("/proc/cmdline", "rt");
136 if (fp != NULL)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200137 {
138 // First step, read the line. For cmdline, it's one long line
139 fgets(line, sizeof(line), fp);
140 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400141
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200142 // Now, let's tokenize the string
143 token = strtok(line, " ");
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400144
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200145 // Let's walk through the line, looking for the CMDLINE_SERIALNO token
146 while (token)
147 {
148 // We don't need to verify the length of token, because if it's too short, it will mismatch CMDLINE_SERIALNO at the NULL
149 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0)
150 {
151 // We found the serial number!
152 strcpy(device_id, token + CMDLINE_SERIALNO_LEN);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400153 sanitize_device_id((char *)device_id);
154 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200155 return;
156 }
157 token = strtok(NULL, " ");
158 }
159 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400160#endif
161 // Now we'll try cpuinfo for a serial number
162 fp = fopen("/proc/cpuinfo", "rt");
163 if (fp != NULL)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200164 {
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400165 while (fgets(line, sizeof(line), fp) != NULL) { // First step, read the line.
166 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) // check the beginning of the line for "Serial"
167 {
168 // We found the serial number!
169 token = line + CPUINFO_SERIALNO_LEN; // skip past "Serial"
170 while ((*token > 0 && *token <= 32 ) || *token == ':') token++; // skip over all spaces and the colon
171 if (*token != 0) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200172 token[30] = 0;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400173 if (token[strlen(token)-1] == 10) { // checking for endline chars and dropping them from the end of the string if needed
174 memset(device_id, 0, sizeof(device_id));
175 strncpy(device_id, token, strlen(token) - 1);
176 } else {
177 strcpy(device_id, token);
178 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000179 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400180 fclose(fp);
181 sanitize_device_id((char *)device_id);
182 mConstValues.insert(make_pair("device_id", device_id));
183 return;
184 }
185 } else if (memcmp(line, CPUINFO_HARDWARE, CPUINFO_HARDWARE_LEN) == 0) {// We're also going to look for the hardware line in cpuinfo and save it for later in case we don't find the device ID
186 // We found the hardware ID
187 token = line + CPUINFO_HARDWARE_LEN; // skip past "Hardware"
188 while ((*token > 0 && *token <= 32 ) || *token == ':') token++; // skip over all spaces and the colon
189 if (*token != 0) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200190 token[30] = 0;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400191 if (token[strlen(token)-1] == 10) { // checking for endline chars and dropping them from the end of the string if needed
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200192 memset(hardware_id, 0, sizeof(hardware_id));
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400193 strncpy(hardware_id, token, strlen(token) - 1);
194 } else {
195 strcpy(hardware_id, token);
196 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000197 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400198 }
199 }
200 }
201 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200202 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400203
204 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000205 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400206 strcpy(device_id, hardware_id);
207 sanitize_device_id((char *)device_id);
208 mConstValues.insert(make_pair("device_id", device_id));
209 return;
210 }
211
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200212 strcpy(device_id, "serialno");
Dees_Troy2673cec2013-04-02 20:22:16 +0000213 LOGERR("=> device id not found, using '%s'.", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400214 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200215 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400216}
217
Dees_Troy51a0e822012-09-05 15:24:24 -0400218int DataManager::ResetDefaults()
219{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100220 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200221 mValues.clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100222 pthread_mutex_unlock(&m_valuesLock);
223
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200224 mConstValues.clear();
225 SetDefaultValues();
226 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400227}
228
229int DataManager::LoadValues(const string filename)
230{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200231 string str, dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400232
233 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200234 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400235
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200236 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400237 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200238 mBackingFile = filename;
Dees_Troy51a0e822012-09-05 15:24:24 -0400239
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200240 // Read in the file, if possible
241 FILE* in = fopen(filename.c_str(), "rb");
242 if (!in) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000243 LOGINFO("Settings file '%s' not found.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500244 return 0;
245 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000246 LOGINFO("Loading settings from '%s'.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500247 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400248
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200249 int file_version;
250 if (fread(&file_version, 1, sizeof(int), in) != sizeof(int)) goto error;
251 if (file_version != FILE_VERSION) goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400252
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200253 while (!feof(in))
254 {
255 string Name;
256 string Value;
257 unsigned short length;
258 char array[512];
Dees_Troy51a0e822012-09-05 15:24:24 -0400259
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200260 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
261 if (length >= 512) goto error;
262 if (fread(array, 1, length, in) != length) goto error;
263 Name = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400264
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200265 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
266 if (length >= 512) goto error;
267 if (fread(array, 1, length, in) != length) goto error;
268 Value = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400269
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200270 map<string, TStrIntPair>::iterator pos;
Dees_Troy51a0e822012-09-05 15:24:24 -0400271
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100272 pthread_mutex_lock(&m_valuesLock);
273
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200274 pos = mValues.find(Name);
275 if (pos != mValues.end())
276 {
277 pos->second.first = Value;
278 pos->second.second = 1;
279 }
280 else
281 mValues.insert(TNameValuePair(Name, TStrIntPair(Value, 1)));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100282
283 pthread_mutex_unlock(&m_valuesLock);
284
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700285#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troya13d74f2013-03-24 08:54:55 -0500286 if (Name == "tw_screen_timeout_secs")
287 blankTimer.setTime(atoi(Value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700288#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200289 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400290error:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200291 fclose(in);
Dees_Troya13d74f2013-03-24 08:54:55 -0500292 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500293 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200294 if(!Part)
295 Part = PartitionManager.Get_Default_Storage_Partition();
296 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500297 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
298 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500299 } else {
300 SetBackupFolder();
301 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200302 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400303}
304
305int DataManager::Flush()
306{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200307 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400308}
309
310int DataManager::SaveValues()
311{
Ethan Yonker83e82572014-04-04 10:59:28 -0500312#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200313 if (mBackingFile.empty())
314 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400315
316 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400317 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400318
319 FILE* out = fopen(mBackingFile.c_str(), "wb");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200320 if (!out)
321 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400322
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200323 int file_version = FILE_VERSION;
324 fwrite(&file_version, 1, sizeof(int), out);
Dees_Troy51a0e822012-09-05 15:24:24 -0400325
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100326 pthread_mutex_lock(&m_valuesLock);
327
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200328 map<string, TStrIntPair>::iterator iter;
329 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
330 {
331 // Save only the persisted data
332 if (iter->second.second != 0)
333 {
334 unsigned short length = (unsigned short) iter->first.length() + 1;
335 fwrite(&length, 1, sizeof(unsigned short), out);
336 fwrite(iter->first.c_str(), 1, length, out);
337 length = (unsigned short) iter->second.first.length() + 1;
338 fwrite(&length, 1, sizeof(unsigned short), out);
339 fwrite(iter->second.first.c_str(), 1, length, out);
340 }
341 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100342
343 pthread_mutex_unlock(&m_valuesLock);
344
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200345 fclose(out);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600346 tw_set_default_metadata(mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500347#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200348 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400349}
350
351int DataManager::GetValue(const string varName, string& value)
352{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200353 string localStr = varName;
Dees_Troy51a0e822012-09-05 15:24:24 -0400354
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200355 if (!mInitialized)
356 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400357
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200358 // Strip off leading and trailing '%' if provided
359 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
360 {
361 localStr.erase(0, 1);
362 localStr.erase(localStr.length() - 1, 1);
363 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400364
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200365 // Handle magic values
366 if (GetMagicValue(localStr, value) == 0)
367 return 0;
Xuefera163f152015-03-26 22:45:04 +0800368
369 // Handle property
370 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
371 char property_value[PROPERTY_VALUE_MAX];
372 property_get(localStr.substr(9).c_str(), property_value, "");
373 value = property_value;
374 return 0;
375 }
376
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200377 map<string, string>::iterator constPos;
378 constPos = mConstValues.find(localStr);
379 if (constPos != mConstValues.end())
380 {
381 value = constPos->second;
382 return 0;
383 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400384
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100385 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200386 map<string, TStrIntPair>::iterator pos;
387 pos = mValues.find(localStr);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100388 if (pos == mValues.end()){
389 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200390 return -1;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100391 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400392
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200393 value = pos->second.first;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100394 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200395 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400396}
397
398int DataManager::GetValue(const string varName, int& value)
399{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200400 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400401
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200402 if (GetValue(varName,data) != 0)
403 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400404
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200405 value = atoi(data.c_str());
406 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400407}
408
Dees_Troy2673cec2013-04-02 20:22:16 +0000409int DataManager::GetValue(const string varName, float& value)
410{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200411 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000412
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200413 if (GetValue(varName,data) != 0)
414 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000415
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200416 value = atof(data.c_str());
417 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000418}
419
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500420unsigned long long DataManager::GetValue(const string varName, unsigned long long& value)
421{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200422 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500423
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200424 if (GetValue(varName,data) != 0)
425 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500426
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200427 value = strtoull(data.c_str(), NULL, 10);
428 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500429}
430
Dees_Troy51a0e822012-09-05 15:24:24 -0400431// This function will return an empty string if the value doesn't exist
432string DataManager::GetStrValue(const string varName)
433{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200434 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400435
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200436 GetValue(varName, retVal);
437 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400438}
439
440// This function will return 0 if the value doesn't exist
441int DataManager::GetIntValue(const string varName)
442{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200443 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400444
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200445 GetValue(varName, retVal);
446 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400447}
448
449int DataManager::SetValue(const string varName, string value, int persist /* = 0 */)
450{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200451 if (!mInitialized)
452 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400453
Xuefera163f152015-03-26 22:45:04 +0800454 // Handle property
455 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
456 int ret = property_set(varName.substr(9).c_str(), value.c_str());
457 if (ret)
458 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
459 return ret;
460 }
461
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200462 // Don't allow empty values or numerical starting values
463 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
464 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400465
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200466 map<string, string>::iterator constChk;
467 constChk = mConstValues.find(varName);
468 if (constChk != mConstValues.end())
469 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400470
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100471 pthread_mutex_lock(&m_valuesLock);
472
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200473 map<string, TStrIntPair>::iterator pos;
474 pos = mValues.find(varName);
475 if (pos == mValues.end())
476 pos = (mValues.insert(TNameValuePair(varName, TStrIntPair(value, persist)))).first;
477 else
478 pos->second.first = value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400479
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200480 if (pos->second.second != 0)
481 SaveValues();
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700482
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100483 pthread_mutex_unlock(&m_valuesLock);
484
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700485#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500486 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600487 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700488 } else
489#endif
490 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500491 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500492 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500493 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200494 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400495}
496
497int DataManager::SetValue(const string varName, int value, int persist /* = 0 */)
498{
499 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200500 valStr << value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400501 if (varName == "tw_use_external_storage") {
502 string str;
503
504 if (GetIntValue(TW_HAS_DUAL_STORAGE) == 1) {
505 if (value == 0) {
506 str = GetStrValue(TW_INTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400507 } else {
508 str = GetStrValue(TW_EXTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400509 }
510 } else if (GetIntValue(TW_HAS_INTERNAL) == 1)
511 str = GetStrValue(TW_INTERNAL_PATH);
512 else
513 str = GetStrValue(TW_EXTERNAL_PATH);
514
Dees_Troya13d74f2013-03-24 08:54:55 -0500515 SetValue("tw_storage_path", str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400516 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200517 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400518}
519
520int DataManager::SetValue(const string varName, float value, int persist /* = 0 */)
521{
522 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200523 valStr << value;
524 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400525}
526
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500527int DataManager::SetValue(const string varName, unsigned long long value, int persist /* = 0 */)
528{
529 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200530 valStr << value;
531 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500532}
533
Dees_Troy2673cec2013-04-02 20:22:16 +0000534int DataManager::SetProgress(float Fraction) {
535 return SetValue("ui_progress", (float) (Fraction * 100.0));
536}
537
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200538int DataManager::ShowProgress(float Portion, float Seconds)
539{
Dees_Troy2673cec2013-04-02 20:22:16 +0000540 float Starting_Portion;
541 GetValue("ui_progress_portion", Starting_Portion);
542 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
543 return -1;
544 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
545 return -1;
546 return 0;
547}
548
Dees_Troy51a0e822012-09-05 15:24:24 -0400549void DataManager::DumpValues()
550{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200551 map<string, TStrIntPair>::iterator iter;
552 gui_print("Data Manager dump - Values with leading X are persisted.\n");
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100553 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200554 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
555 gui_print("%c %s=%s\n", iter->second.second ? 'X' : ' ', iter->first.c_str(), iter->second.first.c_str());
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100556 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400557}
558
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200559void DataManager::update_tz_environment_variables(void)
560{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100561 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200562 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400563}
564
Dees_Troy16b74352012-11-14 22:27:31 +0000565void DataManager::SetBackupFolder()
566{
567 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500568 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000569 str += "/TWRP/BACKUPS/";
570
571 string dev_id;
572 GetValue("device_id", dev_id);
573
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200574 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000575 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000576 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500577 if (partition != NULL) {
578 SetValue("tw_storage_display_name", partition->Storage_Name);
579 char free_space[255];
580 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
581 SetValue("tw_storage_free_size", free_space);
582 string zip_path, zip_root, storage_path;
583 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
584 if (partition->Has_Data_Media)
585 storage_path = partition->Symlink_Mount_Point;
586 else
587 storage_path = partition->Storage_Path;
588 if (zip_path.size() < storage_path.size()) {
589 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
590 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000591 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500592 if (zip_root != storage_path) {
593 LOGINFO("DataManager::SetBackupFolder zip path was %s changing to %s, %s\n", zip_path.c_str(), storage_path.c_str(), zip_root.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500594 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500595 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500596 }
597 } else {
598 if (PartitionManager.Fstab_Processed() != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000599 LOGERR("Storage partition '%s' not found\n", str.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500600 }
Dees_Troy16b74352012-11-14 22:27:31 +0000601}
602
Dees_Troy51a0e822012-09-05 15:24:24 -0400603void DataManager::SetDefaultValues()
604{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200605 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400606
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200607 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400608
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100609 pthread_mutex_lock(&m_valuesLock);
610
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200611 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400612
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200613 mConstValues.insert(make_pair("true", "1"));
614 mConstValues.insert(make_pair("false", "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400615
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200616 mConstValues.insert(make_pair(TW_VERSION_VAR, TW_VERSION_STR));
Ethan Yonker03db3262014-02-05 08:02:06 -0600617 mValues.insert(make_pair("tw_button_vibrate", make_pair("80", 1)));
618 mValues.insert(make_pair("tw_keyboard_vibrate", make_pair("40", 1)));
619 mValues.insert(make_pair("tw_action_vibrate", make_pair("160", 1)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400620
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200621 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
622 if(store)
623 mValues.insert(make_pair("tw_storage_path", make_pair(store->Storage_Path.c_str(), 1)));
624 else
625 mValues.insert(make_pair("tw_storage_path", make_pair("/", 1)));
626
Dees_Troyf4499812013-01-23 19:07:38 +0000627#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
628 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
629#endif
630
Dees_Troy51a0e822012-09-05 15:24:24 -0400631#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000632 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200633 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400634#else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200635 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400636#endif
637
638#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000639 printf("TW_INCLUDE_DUMLOCK := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400640 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "1"));
641#else
642 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "0"));
643#endif
644
Dees_Troy51a0e822012-09-05 15:24:24 -0400645 str = GetCurrentStoragePath();
Dees_Troy51a0e822012-09-05 15:24:24 -0400646 SetValue(TW_ZIP_LOCATION_VAR, str.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400647 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400648
649 string dev_id;
650 GetValue("device_id", dev_id);
651
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200652 str += dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400653 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
654
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200655 mConstValues.insert(make_pair(TW_REBOOT_SYSTEM, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400656#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100657 printf("TW_NO_REBOOT_RECOVERY := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400658 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "0"));
659#else
Dees_Troya58bead2012-09-27 09:49:29 -0400660 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400661#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200662 mConstValues.insert(make_pair(TW_REBOOT_POWEROFF, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400663#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100664 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400665 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "0"));
666#else
Dees_Troya58bead2012-09-27 09:49:29 -0400667 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400668#endif
669#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000670 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400671 mConstValues.insert(make_pair(TW_HAS_DATA_MEDIA, "1"));
Ethan Yonker6277c792014-09-15 14:54:30 -0500672 mConstValues.insert(make_pair("tw_has_internal", "1"));
673 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400674#else
Ethan Yonker6277c792014-09-15 14:54:30 -0500675 mValues.insert(make_pair(TW_HAS_DATA_MEDIA, make_pair("0", 0)));
676 mValues.insert(make_pair("tw_has_internal", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400677#endif
678#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000679 printf("TW_NO_BATT_PERCENT := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400680 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "1"));
681#else
682 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "0"));
683#endif
Jenkins1710bf22014-10-02 20:22:21 -0400684#ifdef TW_NO_CPU_TEMP
685 printf("TW_NO_CPU_TEMP := true\n");
686 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
687#else
688 string cpu_temp_file;
689#ifdef TW_CUSTOM_CPU_TEMP_PATH
690 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
691#else
692 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
693#endif
694 if (TWFunc::Path_Exists(cpu_temp_file)) {
695 mConstValues.insert(make_pair("tw_no_cpu_temp", "0"));
696 } else {
697 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
698 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
699 }
700#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400701#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000702 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400703 mConstValues.insert(make_pair(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON)));
704#else
705 mConstValues.insert(make_pair(TW_POWER_BUTTON, "0"));
706#endif
707#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000708 printf("TW_ALWAYS_RMRF := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400709 mConstValues.insert(make_pair(TW_RM_RF_VAR, "1"));
710#endif
711#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000712 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400713 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "1"));
714#else
715 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "0"));
716#endif
717#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000718 printf("TW_NO_USB_STORAGE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400719 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
720#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000721 char lun_file[255];
722 string Lun_File_str = CUSTOM_LUN_FILE;
723 size_t found = Lun_File_str.find("%");
724 if (found != string::npos) {
725 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
726 Lun_File_str = lun_file;
727 }
728 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000729 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000730 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
731 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000732 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000733 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "1"));
734 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400735#endif
736#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000737 printf("TW_INCLUDE_INJECTTWRP := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400738 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "1"));
739 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("1", 1)));
740#else
741 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "0"));
742 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("0", 1)));
743#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400744#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000745 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400746 mConstValues.insert(make_pair(TW_DOWNLOAD_MODE, "1"));
747#endif
748#ifdef TW_INCLUDE_CRYPTO
749 mConstValues.insert(make_pair(TW_HAS_CRYPTO, "1"));
Dees_Troyf4499812013-01-23 19:07:38 +0000750 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400751#endif
752#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000753 printf("TW_SDEXT_NO_EXT4 := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400754 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "1"));
755#else
756 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "0"));
757#endif
758
Dees_Troya13d74f2013-03-24 08:54:55 -0500759#ifdef TW_HAS_NO_BOOT_PARTITION
Dees_Troyf100c942013-06-21 08:15:31 -0500760 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500761#else
Dees_Troyf100c942013-06-21 08:15:31 -0500762 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;/boot;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500763#endif
764 mConstValues.insert(make_pair(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE));
Dees Troyb21cc642013-09-10 17:36:41 +0000765 mValues.insert(make_pair(TW_BACKUP_NAME, make_pair("(Auto Generate)", 0)));
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500766
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200767 mValues.insert(make_pair(TW_REBOOT_AFTER_FLASH_VAR, make_pair("0", 1)));
768 mValues.insert(make_pair(TW_SIGNED_ZIP_VERIFY_VAR, make_pair("0", 1)));
769 mValues.insert(make_pair(TW_FORCE_MD5_CHECK_VAR, make_pair("0", 1)));
770 mValues.insert(make_pair(TW_COLOR_THEME_VAR, make_pair("0", 1)));
771 mValues.insert(make_pair(TW_USE_COMPRESSION_VAR, make_pair("0", 1)));
772 mValues.insert(make_pair(TW_SHOW_SPAM_VAR, make_pair("0", 1)));
Matt Mowercf94db12015-04-08 13:09:13 -0500773 mValues.insert(make_pair(TW_TIME_ZONE_VAR, make_pair("CST6CDT,M3.2.0,M11.1.0", 1)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200774 mValues.insert(make_pair(TW_SORT_FILES_BY_DATE_VAR, make_pair("0", 1)));
775 mValues.insert(make_pair(TW_GUI_SORT_ORDER, make_pair("1", 1)));
776 mValues.insert(make_pair(TW_RM_RF_VAR, make_pair("0", 1)));
777 mValues.insert(make_pair(TW_SKIP_MD5_CHECK_VAR, make_pair("0", 1)));
778 mValues.insert(make_pair(TW_SKIP_MD5_GENERATE_VAR, make_pair("0", 1)));
779 mValues.insert(make_pair(TW_SDEXT_SIZE, make_pair("512", 1)));
780 mValues.insert(make_pair(TW_SWAP_SIZE, make_pair("32", 1)));
781 mValues.insert(make_pair(TW_SDPART_FILE_SYSTEM, make_pair("ext3", 1)));
Matt Mowercf94db12015-04-08 13:09:13 -0500782 mValues.insert(make_pair(TW_TIME_ZONE_GUISEL, make_pair("CST6;CDT,M3.2.0,M11.1.0", 1)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200783 mValues.insert(make_pair(TW_TIME_ZONE_GUIOFFSET, make_pair("0", 1)));
784 mValues.insert(make_pair(TW_TIME_ZONE_GUIDST, make_pair("1", 1)));
785 mValues.insert(make_pair(TW_ACTION_BUSY, make_pair("0", 0)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200786 mValues.insert(make_pair("tw_wipe_cache", make_pair("0", 0)));
787 mValues.insert(make_pair("tw_wipe_dalvik", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400788 if (GetIntValue(TW_HAS_INTERNAL) == 1 && GetIntValue(TW_HAS_DATA_MEDIA) == 1 && GetIntValue(TW_HAS_EXTERNAL) == 0)
789 SetValue(TW_HAS_USB_STORAGE, 0, 0);
790 else
791 SetValue(TW_HAS_USB_STORAGE, 1, 0);
792 mValues.insert(make_pair(TW_ZIP_INDEX, make_pair("0", 0)));
793 mValues.insert(make_pair(TW_ZIP_QUEUE_COUNT, make_pair("0", 0)));
794 mValues.insert(make_pair(TW_FILENAME, make_pair("/sdcard", 0)));
795 mValues.insert(make_pair(TW_SIMULATE_ACTIONS, make_pair("0", 1)));
796 mValues.insert(make_pair(TW_SIMULATE_FAIL, make_pair("0", 1)));
797 mValues.insert(make_pair(TW_IS_ENCRYPTED, make_pair("0", 0)));
798 mValues.insert(make_pair(TW_IS_DECRYPTED, make_pair("0", 0)));
799 mValues.insert(make_pair(TW_CRYPTO_PASSWORD, make_pair("0", 0)));
800 mValues.insert(make_pair(TW_DATA_BLK_DEVICE, make_pair("0", 0)));
801 mValues.insert(make_pair("tw_terminal_state", make_pair("0", 0)));
802 mValues.insert(make_pair("tw_background_thread_running", make_pair("0", 0)));
803 mValues.insert(make_pair(TW_RESTORE_FILE_DATE, make_pair("0", 0)));
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500804 mValues.insert(make_pair("tw_military_time", make_pair("0", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700805#ifdef TW_NO_SCREEN_TIMEOUT
806 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("0", 1)));
807 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("1", 1)));
808#else
Dees_Troy2f9117a2013-02-17 19:52:09 -0600809 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("60", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700810 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("0", 1)));
811#endif
Dees_Troy6ef66352013-02-21 08:26:57 -0600812 mValues.insert(make_pair("tw_gui_done", make_pair("0", 0)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000813 mValues.insert(make_pair("tw_encrypt_backup", make_pair("0", 0)));
Vojtech Bocek85932342013-04-01 22:11:33 +0200814#ifdef TW_BRIGHTNESS_PATH
Ethan Yonker00028b42014-04-09 14:29:02 -0500815 string findbright;
Dees_Troy2f9117a2013-02-17 19:52:09 -0600816 if (strcmp(EXPAND(TW_BRIGHTNESS_PATH), "/nobrightness") != 0) {
Ethan Yonker00028b42014-04-09 14:29:02 -0500817 findbright = EXPAND(TW_BRIGHTNESS_PATH);
818 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
819 if (!TWFunc::Path_Exists(findbright)) {
820 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
821 findbright = "";
822 }
823 }
824 if (findbright.empty()) {
825 // Attempt to locate the brightness file
826 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500827 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500828 }
829 if (findbright.empty()) {
830 LOGINFO("Unable to locate brightness file\n");
831 mConstValues.insert(make_pair("tw_has_brightnesss_file", "0"));
832 } else {
833 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Dees_Troy2f9117a2013-02-17 19:52:09 -0600834 mConstValues.insert(make_pair("tw_has_brightnesss_file", "1"));
Ethan Yonker00028b42014-04-09 14:29:02 -0500835 mConstValues.insert(make_pair("tw_brightness_file", findbright));
Vojtech Bocek85932342013-04-01 22:11:33 +0200836 ostringstream maxVal;
837 maxVal << TW_MAX_BRIGHTNESS;
838 mConstValues.insert(make_pair("tw_brightness_max", maxVal.str()));
839 mValues.insert(make_pair("tw_brightness", make_pair(maxVal.str(), 1)));
840 mValues.insert(make_pair("tw_brightness_pct", make_pair("100", 1)));
xNUTxe85f02d2014-07-18 01:30:58 +0200841#ifdef TW_SECONDARY_BRIGHTNESS_PATH
842 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
843 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
844 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
845 mConstValues.insert(make_pair("tw_secondary_brightness_file", secondfindbright));
846 } else {
847 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
848 }
849#endif
Ethan Yonkera18f1082014-07-07 15:07:58 -0500850 string max_bright = maxVal.str();
xNUTxe85f02d2014-07-18 01:30:58 +0200851 TWFunc::Set_Brightness(max_bright);
Dees_Troy2f9117a2013-02-17 19:52:09 -0600852 }
853#endif
Dees_Troya13d74f2013-03-24 08:54:55 -0500854 mValues.insert(make_pair(TW_MILITARY_TIME, make_pair("0", 1)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000855#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
856 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("1", 0)));
857#else
858 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
859 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("0", 0)));
860#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400861#ifdef TW_HAS_MTP
862 mConstValues.insert(make_pair("tw_has_mtp", "1"));
863 mValues.insert(make_pair("tw_mtp_enabled", make_pair("1", 1)));
Ethan Yonkerc8743cf2014-09-03 21:16:40 -0500864 mValues.insert(make_pair("tw_mtp_debug", make_pair("0", 1)));
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400865#else
866 LOGINFO("TW_EXCLUDE_MTP := true\n");
867 mConstValues.insert(make_pair("tw_has_mtp", "0"));
868 mConstValues.insert(make_pair("tw_mtp_enabled", "0"));
869#endif
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500870 mValues.insert(make_pair("tw_mount_system_ro", make_pair("1", 1)));
871 mValues.insert(make_pair("tw_never_show_system_ro_page", make_pair("0", 1)));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100872
873 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400874}
875
876// Magic Values
877int DataManager::GetMagicValue(const string varName, string& value)
878{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200879 // Handle special dynamic cases
880 if (varName == "tw_time")
881 {
882 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400883
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200884 struct tm *current;
885 time_t now;
886 int tw_military_time;
887 now = time(0);
888 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500889 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200890 if (current->tm_hour >= 12)
891 {
892 if (tw_military_time == 1)
893 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
894 else
895 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500896 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500897 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200898 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500899 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200900 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
901 else
902 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
903 }
904 value = tmp;
905 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500906 }
Jenkins1710bf22014-10-02 20:22:21 -0400907 else if (varName == "tw_cpu_temp")
908 {
Agontuka29361a2015-04-22 14:42:59 +0600909 int tw_no_cpu_temp;
910 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
911 if (tw_no_cpu_temp == 1) return -1;
912
Jenkins1710bf22014-10-02 20:22:21 -0400913 string cpu_temp_file;
914 static unsigned long convert_temp = 0;
915 static time_t cpuSecCheck = 0;
916 int divisor = 0;
917 struct timeval curTime;
918 string results;
919
920 gettimeofday(&curTime, NULL);
921 if (curTime.tv_sec > cpuSecCheck)
922 {
923#ifdef TW_CUSTOM_CPU_TEMP_PATH
924 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
925 if (TWFunc::read_file(cpu_temp_file, results) != 0)
926 return -1;
927#else
928 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
929 if (TWFunc::read_file(cpu_temp_file, results) != 0)
930 return -1;
931#endif
932 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
933 if (convert_temp <= 0)
934 convert_temp = strtoul(results.c_str(), NULL, 0);
HandyMennyb6033452014-10-15 21:39:12 +0200935 if (convert_temp >= 150)
936 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
937 cpuSecCheck = curTime.tv_sec + 5;
Jenkins1710bf22014-10-02 20:22:21 -0400938 }
939 value = TWFunc::to_string(convert_temp);
940 return 0;
941 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200942 else if (varName == "tw_battery")
943 {
944 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -0400945 static char charging = ' ';
946 static int lastVal = -1;
947 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400948 struct timeval curTime;
949 gettimeofday(&curTime, NULL);
950 if (curTime.tv_sec > nextSecCheck)
951 {
952 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +0000953#ifdef TW_CUSTOM_BATTERY_PATH
954 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
955 capacity_file += "/capacity";
956 FILE * cap = fopen(capacity_file.c_str(),"rt");
957#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400958 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000959#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400960 if (cap){
961 fgets(cap_s, 4, cap);
962 fclose(cap);
963 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200964 if (lastVal > 100) lastVal = 101;
965 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400966 }
Dees_Troyf33b4902013-03-01 00:51:39 +0000967#ifdef TW_CUSTOM_BATTERY_PATH
968 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
969 status_file += "/status";
970 cap = fopen(status_file.c_str(),"rt");
971#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400972 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000973#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400974 if (cap) {
975 fgets(cap_s, 2, cap);
976 fclose(cap);
977 if (cap_s[0] == 'C')
978 charging = '+';
979 else
980 charging = ' ';
981 }
982 nextSecCheck = curTime.tv_sec + 60;
983 }
984
985 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200986 value = tmp;
987 return 0;
988 }
989 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400990}
991
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200992void DataManager::Output_Version(void)
993{
Dees_Troy1c1ac442013-01-17 21:42:14 +0000994 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400995 char version[255];
996
Dees_Troy1c1ac442013-01-17 21:42:14 +0000997 if (!PartitionManager.Mount_By_Path("/cache", false)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000998 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400999 return;
1000 }
Dees_Troy1c1ac442013-01-17 21:42:14 +00001001 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001002 LOGINFO("Recreating /cache/recovery folder.\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +00001003 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001004 LOGERR("DataManager::Output_Version -- Unable to make /cache/recovery\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +00001005 return;
1006 }
1007 }
1008 Path = "/cache/recovery/.version";
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001009 if (TWFunc::Path_Exists(Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001010 unlink(Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001011 }
1012 FILE *fp = fopen(Path.c_str(), "w");
1013 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001014 LOGERR("Unable to open '%s'.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001015 return;
1016 }
1017 strcpy(version, TW_VERSION_STR);
1018 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
1019 fclose(fp);
Dees_Troyd93bda52013-07-03 19:55:19 +00001020 TWFunc::copy_file("/etc/recovery.fstab", "/cache/recovery/recovery.fstab", 0644);
1021 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001022 sync();
Dees_Troy2673cec2013-04-02 20:22:16 +00001023 LOGINFO("Version number saved to '%s'\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001024}
1025
Dees_Troy51a0e822012-09-05 15:24:24 -04001026void DataManager::ReadSettingsFile(void)
1027{
Ethan Yonker83e82572014-04-04 10:59:28 -05001028#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001029 // Load up the values for TWRP - Sleep to let the card be ready
1030 char mkdir_path[255], settings_file[255];
1031 int is_enc, has_dual, use_ext, has_data_media, has_ext;
1032
1033 GetValue(TW_IS_ENCRYPTED, is_enc);
1034 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
1035 if (is_enc == 1 && has_data_media == 1) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001036 LOGINFO("Cannot load settings -- encrypted.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001037 return;
1038 }
1039
1040 memset(mkdir_path, 0, sizeof(mkdir_path));
1041 memset(settings_file, 0, sizeof(settings_file));
Vojtech Bocekfda239b2015-01-07 22:55:13 +01001042 sprintf(mkdir_path, "%s/TWRP", GetSettingsStoragePath().c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001043 sprintf(settings_file, "%s/.twrps", mkdir_path);
1044
Dees_Troy5bf43922012-09-07 16:07:55 -04001045 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001046 {
1047 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001048 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy2673cec2013-04-02 20:22:16 +00001049 LOGERR("Unable to mount %s when trying to read settings file.\n", settings_file);
Dees_Troy51a0e822012-09-05 15:24:24 -04001050 }
1051
1052 mkdir(mkdir_path, 0777);
1053
Dees_Troy2673cec2013-04-02 20:22:16 +00001054 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001055 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001056 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001057#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001058 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001059 update_tz_environment_variables();
xNUTxe85f02d2014-07-18 01:30:58 +02001060#ifdef TW_MAX_BRIGHTNESS
1061 if (GetStrValue("tw_brightness_path") != "/nobrightness") {
1062 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy2f9117a2013-02-17 19:52:09 -06001063 }
xNUTxe85f02d2014-07-18 01:30:58 +02001064#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001065}
1066
1067string DataManager::GetCurrentStoragePath(void)
1068{
Dees_Troya13d74f2013-03-24 08:54:55 -05001069 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001070}
1071
Dees_Troy51a0e822012-09-05 15:24:24 -04001072string DataManager::GetSettingsStoragePath(void)
1073{
Dees_Troya13d74f2013-03-24 08:54:55 -05001074 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001075}
1076
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001077void DataManager::Vibrate(const string varName)
1078{
1079 int vib_value = 0;
1080 GetValue(varName, vib_value);
1081 if (vib_value) {
1082 vibrate(vib_value);
1083 }
1084}