blob: b034bf802455aaa2515dc81b599e05bf259a7345 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
Ethan Yonkerfe916112016-03-14 14:54:37 -05002 Copyright 2012 to 2016 bigbiff/Dees_Troy TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 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
Dees_Troy51a0e822012-09-05 15:24:24 -040019#include <pthread.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040020#include <time.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040021#include <string>
Dees_Troy51a0e822012-09-05 15:24:24 -040022#include <sstream>
Ethan Yonker3fdcda42016-11-30 12:29:37 -060023#include <fstream>
Ethan Yonkerfe916112016-03-14 14:54:37 -050024#include <cctype>
25#include <cutils/properties.h>
Ethan Yonker34ae4832016-08-24 15:32:18 -050026#include <unistd.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040027
28#include "variables.h"
29#include "data.hpp"
30#include "partitions.hpp"
Dees_Troy01a9b7a2012-10-01 09:01:03 -040031#include "twrp-functions.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070032#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troy2f9117a2013-02-17 19:52:09 -060033#include "gui/blanktimer.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070034#endif
Ethan Yonker00028b42014-04-09 14:29:02 -050035#include "find_file.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060036#include "set_metadata.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050037#include "gui/gui.hpp"
Ethan Yonkerfe916112016-03-14 14:54:37 -050038#include "infomanager.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040039
Matt Mowere9260742015-02-22 20:20:18 -060040#define DEVID_MAX 64
41#define HWID_MAX 32
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070042
Dees_Troy51a0e822012-09-05 15:24:24 -040043extern "C"
44{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020045 #include "twcommon.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040046 #include "gui/pages.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040047 void gui_notifyVarChange(const char *name, const char* value);
Dees_Troy51a0e822012-09-05 15:24:24 -040048}
Ethan Yonkerfbb43532015-12-28 21:54:50 +010049#include "minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040050
Ethan Yonkerfe916112016-03-14 14:54:37 -050051#define FILE_VERSION 0x00010010 // Do not set to 0
Dees_Troy51a0e822012-09-05 15:24:24 -040052
53using namespace std;
54
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070055string DataManager::mBackingFile;
56int DataManager::mInitialized = 0;
Ethan Yonkerfe916112016-03-14 14:54:37 -050057InfoManager DataManager::mPersist; // Data that that is not constant and will be saved to the settings file
58InfoManager DataManager::mData; // Data that is not constant and will not be saved to settings file
59InfoManager DataManager::mConst; // Data that is constant and will not be saved to settings file
Jenkins1710bf22014-10-02 20:22:21 -040060
Ethan Yonker6277c792014-09-15 14:54:30 -050061extern bool datamedia;
Dees_Troy51a0e822012-09-05 15:24:24 -040062
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050063#ifndef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
Vojtech Bocekfda239b2015-01-07 22:55:13 +010064pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050065#else
66pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
67#endif
Vojtech Bocekfda239b2015-01-07 22:55:13 +010068
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040069// Device ID functions
70void DataManager::sanitize_device_id(char* device_id) {
Matt Mowere9260742015-02-22 20:20:18 -060071 const char* whitelist ="-._";
72 char str[DEVID_MAX];
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040073 char* c = str;
74
Matt Mowere9260742015-02-22 20:20:18 -060075 snprintf(str, DEVID_MAX, "%s", device_id);
76 memset(device_id, 0, strlen(device_id));
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040077 while (*c) {
Matt Mowere9260742015-02-22 20:20:18 -060078 if (isalnum(*c) || strchr(whitelist, *c))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040079 strncat(device_id, c, 1);
80 c++;
81 }
82 return;
83}
84
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020085#define CMDLINE_SERIALNO "androidboot.serialno="
86#define CMDLINE_SERIALNO_LEN (strlen(CMDLINE_SERIALNO))
87#define CPUINFO_SERIALNO "Serial"
88#define CPUINFO_SERIALNO_LEN (strlen(CPUINFO_SERIALNO))
89#define CPUINFO_HARDWARE "Hardware"
90#define CPUINFO_HARDWARE_LEN (strlen(CPUINFO_HARDWARE))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040091
92void DataManager::get_device_id(void) {
93 FILE *fp;
Matt Mowere9260742015-02-22 20:20:18 -060094 size_t i;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040095 char line[2048];
Matt Mowere9260742015-02-22 20:20:18 -060096 char hardware_id[HWID_MAX] = { 0 };
97 char device_id[DEVID_MAX] = { 0 };
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040098 char* token;
99
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700100#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
Matt Mowere9260742015-02-22 20:20:18 -0600101 // Use (product_model)_(hardware_id) as device id
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700102 char model_id[PROPERTY_VALUE_MAX];
103 property_get("ro.product.model", model_id, "error");
Matt Mowere9260742015-02-22 20:20:18 -0600104 if (strcmp(model_id, "error") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000105 LOGINFO("=> product model: '%s'\n", model_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700106 // Replace spaces with underscores
Matt Mowere9260742015-02-22 20:20:18 -0600107 for (i = 0; i < strlen(model_id); i++) {
108 if (model_id[i] == ' ')
109 model_id[i] = '_';
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700110 }
Matt Mowere9260742015-02-22 20:20:18 -0600111 snprintf(device_id, DEVID_MAX, "%s", model_id);
112
113 if (strlen(device_id) < DEVID_MAX) {
114 fp = fopen("proc_cpuinfo.txt", "rt");
115 if (fp != NULL) {
116 while (fgets(line, sizeof(line), fp) != NULL) {
117 if (memcmp(line, CPUINFO_HARDWARE,
118 CPUINFO_HARDWARE_LEN) == 0) {
119 // skip past "Hardware", spaces, and colon
120 token = line + CPUINFO_HARDWARE_LEN;
121 while (*token && (!isgraph(*token) || *token == ':'))
122 token++;
123
124 if (*token && *token != '\n'
125 && strcmp("UNKNOWN\n", token)) {
126 snprintf(hardware_id, HWID_MAX, "%s", token);
127 if (hardware_id[strlen(hardware_id)-1] == '\n')
128 hardware_id[strlen(hardware_id)-1] = 0;
129 LOGINFO("=> hardware id from cpuinfo: '%s'\n",
130 hardware_id);
131 }
132 break;
133 }
134 }
135 fclose(fp);
136 }
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700137 }
Matt Mowere9260742015-02-22 20:20:18 -0600138
139 if (hardware_id[0] != 0)
140 snprintf(device_id, DEVID_MAX, "%s_%s", model_id, hardware_id);
141
142 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500143 mConst.SetValue("device_id", device_id);
Dees_Troy2673cec2013-04-02 20:22:16 +0000144 LOGINFO("=> using device id: '%s'\n", device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700145 return;
146 }
147#endif
148
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400149#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
Matt Mowere9260742015-02-22 20:20:18 -0600150 // Check the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400151 fp = fopen("/proc/cmdline", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600152 if (fp != NULL) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200153 fgets(line, sizeof(line), fp);
Matt Mowere9260742015-02-22 20:20:18 -0600154 fclose(fp); // cmdline is only one line long
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400155
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200156 token = strtok(line, " ");
Matt Mowere9260742015-02-22 20:20:18 -0600157 while (token) {
158 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0) {
159 token += CMDLINE_SERIALNO_LEN;
160 snprintf(device_id, DEVID_MAX, "%s", token);
161 sanitize_device_id(device_id); // also removes newlines
Ethan Yonkerfe916112016-03-14 14:54:37 -0500162 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200163 return;
164 }
165 token = strtok(NULL, " ");
166 }
167 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400168#endif
Matt Mowere9260742015-02-22 20:20:18 -0600169 // Check cpuinfo for serial number; if found, use as device_id
170 // If serial number is not found, fallback to hardware_id for the device_id
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400171 fp = fopen("/proc/cpuinfo", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600172 if (fp != NULL) {
173 while (fgets(line, sizeof(line), fp) != NULL) {
174 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) {
175 // skip past "Serial", spaces, and colon
176 token = line + CPUINFO_SERIALNO_LEN;
177 while (*token && (!isgraph(*token) || *token == ':'))
178 token++;
179
180 if (*token && *token != '\n') {
181 snprintf(device_id, DEVID_MAX, "%s", token);
182 sanitize_device_id(device_id); // also removes newlines
Dees_Troy2673cec2013-04-02 20:22:16 +0000183 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500184 mConst.SetValue("device_id", device_id);
Matt Mowere9260742015-02-22 20:20:18 -0600185 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400186 return;
187 }
Matt Mowere9260742015-02-22 20:20:18 -0600188 } else if (memcmp(line, CPUINFO_HARDWARE,
189 CPUINFO_HARDWARE_LEN) == 0) {
190 // skip past "Hardware", spaces, and colon
191 token = line + CPUINFO_HARDWARE_LEN;
192 while (*token && (!isgraph(*token) || *token == ':'))
193 token++;
194
195 if (*token && *token != '\n') {
196 snprintf(hardware_id, HWID_MAX, "%s", token);
197 if (hardware_id[strlen(hardware_id)-1] == '\n')
198 hardware_id[strlen(hardware_id)-1] = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000199 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400200 }
201 }
202 }
203 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200204 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400205
206 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000207 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Matt Mowere9260742015-02-22 20:20:18 -0600208 snprintf(device_id, DEVID_MAX, "%s", hardware_id);
209 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500210 mConst.SetValue("device_id", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400211 return;
212 }
213
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200214 strcpy(device_id, "serialno");
Ethan Yonker74db1572015-10-28 12:44:49 -0500215 LOGINFO("=> device id not found, using '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500216 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200217 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400218}
219
Dees_Troy51a0e822012-09-05 15:24:24 -0400220int DataManager::ResetDefaults()
221{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100222 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500223 mPersist.Clear();
224 mData.Clear();
225 mConst.Clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100226 pthread_mutex_unlock(&m_valuesLock);
227
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200228 SetDefaultValues();
229 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400230}
231
Ethan Yonkerfe916112016-03-14 14:54:37 -0500232int DataManager::LoadValues(const string& filename)
Dees_Troy51a0e822012-09-05 15:24:24 -0400233{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200234 string str, dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400235
236 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200237 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400238
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200239 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400240 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200241 mBackingFile = filename;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500242 mPersist.SetFile(filename);
243 mPersist.SetFileVersion(FILE_VERSION);
Dees_Troy51a0e822012-09-05 15:24:24 -0400244
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200245 // Read in the file, if possible
Ethan Yonkerfe916112016-03-14 14:54:37 -0500246 pthread_mutex_lock(&m_valuesLock);
247 mPersist.LoadValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100248
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700249#ifndef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500250 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700251#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500252
253 pthread_mutex_unlock(&m_valuesLock);
Dees_Troya13d74f2013-03-24 08:54:55 -0500254 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500255 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200256 if(!Part)
257 Part = PartitionManager.Get_Default_Storage_Partition();
258 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500259 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
260 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500261 } else {
262 SetBackupFolder();
263 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200264 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400265}
266
267int DataManager::Flush()
268{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200269 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400270}
271
272int DataManager::SaveValues()
273{
Ethan Yonker83e82572014-04-04 10:59:28 -0500274#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200275 if (mBackingFile.empty())
276 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400277
278 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400279 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400280
Ethan Yonkerfe916112016-03-14 14:54:37 -0500281 mPersist.SetFile(mBackingFile);
282 mPersist.SetFileVersion(FILE_VERSION);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100283 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500284 mPersist.SaveValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100285 pthread_mutex_unlock(&m_valuesLock);
286
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600287 tw_set_default_metadata(mBackingFile.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500288 LOGINFO("Saved settings file values\n");
Ethan Yonker83e82572014-04-04 10:59:28 -0500289#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200290 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400291}
292
Ethan Yonkerfe916112016-03-14 14:54:37 -0500293int DataManager::GetValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400294{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200295 string localStr = varName;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500296 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400297
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200298 if (!mInitialized)
299 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400300
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200301 // Strip off leading and trailing '%' if provided
302 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
303 {
304 localStr.erase(0, 1);
305 localStr.erase(localStr.length() - 1, 1);
306 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400307
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200308 // Handle magic values
309 if (GetMagicValue(localStr, value) == 0)
310 return 0;
Xuefera163f152015-03-26 22:45:04 +0800311
312 // Handle property
313 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
314 char property_value[PROPERTY_VALUE_MAX];
315 property_get(localStr.substr(9).c_str(), property_value, "");
316 value = property_value;
317 return 0;
318 }
319
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100320 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500321 ret = mConst.GetValue(localStr, value);
322 if (ret == 0)
323 goto exit;
Dees_Troy51a0e822012-09-05 15:24:24 -0400324
Ethan Yonkerfe916112016-03-14 14:54:37 -0500325 ret = mPersist.GetValue(localStr, value);
326 if (ret == 0)
327 goto exit;
328
329 ret = mData.GetValue(localStr, value);
330exit:
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100331 pthread_mutex_unlock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500332 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400333}
334
Ethan Yonkerfe916112016-03-14 14:54:37 -0500335int DataManager::GetValue(const string& varName, int& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400336{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200337 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400338
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200339 if (GetValue(varName,data) != 0)
340 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400341
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200342 value = atoi(data.c_str());
343 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400344}
345
Ethan Yonkerfe916112016-03-14 14:54:37 -0500346int DataManager::GetValue(const string& varName, float& value)
Dees_Troy2673cec2013-04-02 20:22:16 +0000347{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200348 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000349
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200350 if (GetValue(varName,data) != 0)
351 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000352
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200353 value = atof(data.c_str());
354 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000355}
356
Ethan Yonkerfe916112016-03-14 14:54:37 -0500357unsigned long long DataManager::GetValue(const string& varName, unsigned long long& value)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500358{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200359 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500360
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200361 if (GetValue(varName,data) != 0)
362 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500363
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200364 value = strtoull(data.c_str(), NULL, 10);
365 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500366}
367
Dees_Troy51a0e822012-09-05 15:24:24 -0400368// This function will return an empty string if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500369string DataManager::GetStrValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400370{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200371 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400372
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200373 GetValue(varName, retVal);
374 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400375}
376
377// This function will return 0 if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500378int DataManager::GetIntValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400379{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200380 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400381
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200382 GetValue(varName, retVal);
383 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400384}
385
Ethan Yonkerfe916112016-03-14 14:54:37 -0500386int DataManager::SetValue(const string& varName, const string& value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400387{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200388 if (!mInitialized)
389 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400390
Xuefera163f152015-03-26 22:45:04 +0800391 // Handle property
392 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
393 int ret = property_set(varName.substr(9).c_str(), value.c_str());
394 if (ret)
395 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
396 return ret;
397 }
398
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200399 // Don't allow empty values or numerical starting values
400 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
401 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400402
Ethan Yonkerfe916112016-03-14 14:54:37 -0500403 string test;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100404 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500405 int constChk = mConst.GetValue(varName, test);
406 if (constChk == 0) {
407 pthread_mutex_unlock(&m_valuesLock);
408 return -1;
409 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100410
Ethan Yonkerfe916112016-03-14 14:54:37 -0500411 if (persist) {
412 mPersist.SetValue(varName, value);
413 } else {
414 int persistChk = mPersist.GetValue(varName, test);
415 if (persistChk == 0) {
416 mPersist.SetValue(varName, value);
417 } else {
418 mData.SetValue(varName, value);
419 }
420 }
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700421
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100422 pthread_mutex_unlock(&m_valuesLock);
423
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700424#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500425 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600426 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700427 } else
428#endif
429 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500430 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500431 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500432 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200433 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400434}
435
Ethan Yonkerfe916112016-03-14 14:54:37 -0500436int DataManager::SetValue(const string& varName, const int value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400437{
438 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200439 valStr << value;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200440 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400441}
442
Ethan Yonkerfe916112016-03-14 14:54:37 -0500443int DataManager::SetValue(const string& varName, const float value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400444{
445 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200446 valStr << value;
447 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400448}
449
Ethan Yonkerfe916112016-03-14 14:54:37 -0500450int DataManager::SetValue(const string& varName, const unsigned long long& value, const int persist /* = 0 */)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500451{
452 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200453 valStr << value;
454 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500455}
456
Ethan Yonkerfe916112016-03-14 14:54:37 -0500457int DataManager::SetProgress(const float Fraction) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000458 return SetValue("ui_progress", (float) (Fraction * 100.0));
459}
460
Ethan Yonkerfe916112016-03-14 14:54:37 -0500461int DataManager::ShowProgress(const float Portion, const float Seconds)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200462{
Dees_Troy2673cec2013-04-02 20:22:16 +0000463 float Starting_Portion;
464 GetValue("ui_progress_portion", Starting_Portion);
465 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
466 return -1;
467 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
468 return -1;
469 return 0;
470}
471
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200472void DataManager::update_tz_environment_variables(void)
473{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100474 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200475 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400476}
477
Dees_Troy16b74352012-11-14 22:27:31 +0000478void DataManager::SetBackupFolder()
479{
480 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500481 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000482 str += "/TWRP/BACKUPS/";
483
484 string dev_id;
485 GetValue("device_id", dev_id);
486
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200487 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000488 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000489 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500490 if (partition != NULL) {
491 SetValue("tw_storage_display_name", partition->Storage_Name);
492 char free_space[255];
493 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
494 SetValue("tw_storage_free_size", free_space);
495 string zip_path, zip_root, storage_path;
496 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
Ethan Yonkereadfd2e2016-02-18 22:04:18 -0600497 if (partition->Has_Data_Media && !partition->Symlink_Mount_Point.empty())
Dees_Troya13d74f2013-03-24 08:54:55 -0500498 storage_path = partition->Symlink_Mount_Point;
499 else
500 storage_path = partition->Storage_Path;
501 if (zip_path.size() < storage_path.size()) {
502 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
503 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000504 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500505 if (zip_root != storage_path) {
506 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 -0500507 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500508 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500509 }
510 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500511 if (PartitionManager.Fstab_Processed() != 0) {
512 LOGINFO("Storage partition '%s' not found\n", str.c_str());
513 gui_err("unable_locate_storage=Unable to locate storage device.");
514 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500515 }
Dees_Troy16b74352012-11-14 22:27:31 +0000516}
517
Dees_Troy51a0e822012-09-05 15:24:24 -0400518void DataManager::SetDefaultValues()
519{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200520 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400521
Ethan Yonkerfe916112016-03-14 14:54:37 -0500522 mConst.SetConst();
523
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200524 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400525
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100526 pthread_mutex_lock(&m_valuesLock);
527
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200528 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400529
Ethan Yonkerfe916112016-03-14 14:54:37 -0500530 mConst.SetValue("true", "1");
531 mConst.SetValue("false", "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400532
Ethan Yonkerfe916112016-03-14 14:54:37 -0500533 mConst.SetValue(TW_VERSION_VAR, TW_VERSION_STR);
534 mPersist.SetValue("tw_button_vibrate", "80");
535 mPersist.SetValue("tw_keyboard_vibrate", "40");
536 mPersist.SetValue("tw_action_vibrate", "160");
Dees_Troy51a0e822012-09-05 15:24:24 -0400537
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200538 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
539 if(store)
Ethan Yonkerfe916112016-03-14 14:54:37 -0500540 mPersist.SetValue("tw_storage_path", store->Storage_Path);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200541 else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500542 mPersist.SetValue("tw_storage_path", "/");
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200543
Dees_Troyf4499812013-01-23 19:07:38 +0000544#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
545 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
546#endif
547
Dees_Troy51a0e822012-09-05 15:24:24 -0400548#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000549 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500550 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400551#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500552 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400553#endif
554
555#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000556 printf("TW_INCLUDE_DUMLOCK := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500557 mConst.SetValue(TW_SHOW_DUMLOCK, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400558#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500559 mConst.SetValue(TW_SHOW_DUMLOCK, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400560#endif
561
Dees_Troy51a0e822012-09-05 15:24:24 -0400562 str = GetCurrentStoragePath();
Ethan Yonkerfe916112016-03-14 14:54:37 -0500563 mPersist.SetValue(TW_ZIP_LOCATION_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400564 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400565
566 string dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500567 mConst.GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400568
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200569 str += dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500570 mData.SetValue(TW_BACKUPS_FOLDER_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400571
Ethan Yonkerfe916112016-03-14 14:54:37 -0500572 mConst.SetValue(TW_REBOOT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400573#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100574 printf("TW_NO_REBOOT_RECOVERY := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500575 mConst.SetValue(TW_REBOOT_RECOVERY, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400576#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500577 mConst.SetValue(TW_REBOOT_RECOVERY, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400578#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500579 mConst.SetValue(TW_REBOOT_POWEROFF, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400580#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100581 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500582 mConst.SetValue(TW_REBOOT_BOOTLOADER, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400583#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500584 mConst.SetValue(TW_REBOOT_BOOTLOADER, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400585#endif
586#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000587 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500588 mConst.SetValue(TW_HAS_DATA_MEDIA, "1");
Ethan Yonker6277c792014-09-15 14:54:30 -0500589 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400590#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500591 mData.SetValue(TW_HAS_DATA_MEDIA, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400592#endif
593#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000594 printf("TW_NO_BATT_PERCENT := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500595 mConst.SetValue(TW_NO_BATTERY_PERCENT, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400596#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500597 mConst.SetValue(TW_NO_BATTERY_PERCENT, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400598#endif
Jenkins1710bf22014-10-02 20:22:21 -0400599#ifdef TW_NO_CPU_TEMP
600 printf("TW_NO_CPU_TEMP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500601 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400602#else
603 string cpu_temp_file;
604#ifdef TW_CUSTOM_CPU_TEMP_PATH
605 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
606#else
607 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
608#endif
609 if (TWFunc::Path_Exists(cpu_temp_file)) {
Ethan Yonkerfe916112016-03-14 14:54:37 -0500610 mConst.SetValue("tw_no_cpu_temp", "0");
Jenkins1710bf22014-10-02 20:22:21 -0400611 } else {
612 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500613 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400614 }
615#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400616#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000617 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Ethan Yonkerfe916112016-03-14 14:54:37 -0500618 mConst.SetValue(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400619#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500620 mConst.SetValue(TW_POWER_BUTTON, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400621#endif
622#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000623 printf("TW_ALWAYS_RMRF := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500624 mConst.SetValue(TW_RM_RF_VAR, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400625#endif
626#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000627 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500628 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400629#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500630 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400631#endif
632#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000633 printf("TW_NO_USB_STORAGE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500634 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400635#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000636 char lun_file[255];
637 string Lun_File_str = CUSTOM_LUN_FILE;
638 size_t found = Lun_File_str.find("%");
639 if (found != string::npos) {
640 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
641 Lun_File_str = lun_file;
642 }
643 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000644 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500645 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy6a042c82013-01-23 18:50:52 +0000646 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000647 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500648 mData.SetValue(TW_HAS_USB_STORAGE, "1");
Dees_Troy6a042c82013-01-23 18:50:52 +0000649 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400650#endif
651#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000652 printf("TW_INCLUDE_INJECTTWRP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500653 mConst.SetValue(TW_HAS_INJECTTWRP, "1");
654 mPersist(TW_INJECT_AFTER_ZIP, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400655#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500656 mConst.SetValue(TW_HAS_INJECTTWRP, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400657#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400658#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000659 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500660 mConst.SetValue(TW_DOWNLOAD_MODE, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400661#endif
662#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerfe916112016-03-14 14:54:37 -0500663 mConst.SetValue(TW_HAS_CRYPTO, "1");
Dees_Troyf4499812013-01-23 19:07:38 +0000664 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400665#endif
666#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000667 printf("TW_SDEXT_NO_EXT4 := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500668 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400669#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500670 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400671#endif
672
Dees_Troya13d74f2013-03-24 08:54:55 -0500673#ifdef TW_HAS_NO_BOOT_PARTITION
Ethan Yonkerfe916112016-03-14 14:54:37 -0500674 mPersist.SetValue("tw_backup_list", "/system;/data;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500675#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500676 mPersist.SetValue("tw_backup_list", "/system;/data;/boot;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500677#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500678 mConst.SetValue(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE);
679 mData.SetValue(TW_BACKUP_NAME, "(Auto Generate)");
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500680
Matt Mower8dc25b72016-04-25 23:06:53 -0500681 mPersist.SetValue(TW_INSTALL_REBOOT_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500682 mPersist.SetValue(TW_SIGNED_ZIP_VERIFY_VAR, "0");
683 mPersist.SetValue(TW_FORCE_MD5_CHECK_VAR, "0");
Matt Mowerbfccfb82016-04-25 23:22:31 -0500684 mPersist.SetValue(TW_DISABLE_FREE_SPACE_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500685 mPersist.SetValue(TW_USE_COMPRESSION_VAR, "0");
686 mPersist.SetValue(TW_TIME_ZONE_VAR, "CST6CDT,M3.2.0,M11.1.0");
687 mPersist.SetValue(TW_GUI_SORT_ORDER, "1");
688 mPersist.SetValue(TW_RM_RF_VAR, "0");
689 mPersist.SetValue(TW_SKIP_MD5_CHECK_VAR, "0");
690 mPersist.SetValue(TW_SKIP_MD5_GENERATE_VAR, "0");
691 mPersist.SetValue(TW_SDEXT_SIZE, "0");
692 mPersist.SetValue(TW_SWAP_SIZE, "0");
693 mPersist.SetValue(TW_SDPART_FILE_SYSTEM, "ext3");
694 mPersist.SetValue(TW_TIME_ZONE_GUISEL, "CST6;CDT,M3.2.0,M11.1.0");
695 mPersist.SetValue(TW_TIME_ZONE_GUIOFFSET, "0");
696 mPersist.SetValue(TW_TIME_ZONE_GUIDST, "1");
697 mData.SetValue(TW_ACTION_BUSY, "0");
698 mData.SetValue("tw_wipe_cache", "0");
699 mData.SetValue("tw_wipe_dalvik", "0");
700 mData.SetValue(TW_ZIP_INDEX, "0");
701 mData.SetValue(TW_ZIP_QUEUE_COUNT, "0");
702 mData.SetValue(TW_FILENAME, "/sdcard");
703 mData.SetValue(TW_SIMULATE_ACTIONS, "0");
704 mData.SetValue(TW_SIMULATE_FAIL, "0");
705 mData.SetValue(TW_IS_ENCRYPTED, "0");
706 mData.SetValue(TW_IS_DECRYPTED, "0");
707 mData.SetValue(TW_CRYPTO_PASSWORD, "0");
708 mData.SetValue("tw_terminal_state", "0");
709 mData.SetValue("tw_background_thread_running", "0");
710 mData.SetValue(TW_RESTORE_FILE_DATE, "0");
711 mPersist.SetValue("tw_military_time", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700712#ifdef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500713 mConst.SetValue("tw_screen_timeout_secs", "0");
714 mConst.SetValue("tw_no_screen_timeout", "1");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700715#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500716 mPersist.SetValue("tw_screen_timeout_secs", "60");
717 mPersist.SetValue("tw_no_screen_timeout", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700718#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500719 mData.SetValue("tw_gui_done", "0");
720 mData.SetValue("tw_encrypt_backup", "0");
Matt Mower9a2a2052016-05-31 21:31:22 -0500721 mData.SetValue("tw_sleep_total", "5");
722 mData.SetValue("tw_sleep", "5");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500723
724 // Brightness handling
Ethan Yonker00028b42014-04-09 14:29:02 -0500725 string findbright;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900726#ifdef TW_BRIGHTNESS_PATH
727 findbright = EXPAND(TW_BRIGHTNESS_PATH);
728 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
729 if (!TWFunc::Path_Exists(findbright)) {
730 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
731 findbright = "";
Ethan Yonker00028b42014-04-09 14:29:02 -0500732 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900733#endif
Ethan Yonker00028b42014-04-09 14:29:02 -0500734 if (findbright.empty()) {
735 // Attempt to locate the brightness file
736 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500737 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500738 }
739 if (findbright.empty()) {
740 LOGINFO("Unable to locate brightness file\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500741 mConst.SetValue("tw_has_brightnesss_file", "0");
Ethan Yonker00028b42014-04-09 14:29:02 -0500742 } else {
743 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500744 mConst.SetValue("tw_has_brightnesss_file", "1");
745 mConst.SetValue("tw_brightness_file", findbright);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900746 string maxBrightness;
747#ifdef TW_MAX_BRIGHTNESS
Vojtech Bocek85932342013-04-01 22:11:33 +0200748 ostringstream maxVal;
749 maxVal << TW_MAX_BRIGHTNESS;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900750 maxBrightness = maxVal.str();
751#else
752 // Attempt to locate the max_brightness file
753 string maxbrightpath = findbright.insert(findbright.rfind('/') + 1, "max_");
754 if (TWFunc::Path_Exists(maxbrightpath)) {
Ethan Yonker72a85202016-01-22 11:45:06 -0600755 ifstream maxVal(maxbrightpath.c_str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900756 if(maxVal >> maxBrightness) {
757 LOGINFO("Got max brightness %s from '%s'\n", maxBrightness.c_str(), maxbrightpath.c_str());
758 } else {
759 // Something went wrong, set that to indicate error
760 maxBrightness = "-1";
761 }
762 }
Ethan Yonker72a85202016-01-22 11:45:06 -0600763 if (atoi(maxBrightness.c_str()) <= 0)
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900764 {
765 // Fallback into default
766 ostringstream maxVal;
767 maxVal << 255;
768 maxBrightness = maxVal.str();
769 }
770#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500771 mConst.SetValue("tw_brightness_max", maxBrightness);
772 mPersist.SetValue("tw_brightness", maxBrightness);
773 mPersist.SetValue("tw_brightness_pct", "100");
xNUTxe85f02d2014-07-18 01:30:58 +0200774#ifdef TW_SECONDARY_BRIGHTNESS_PATH
775 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
776 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
777 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500778 mConst.SetValue("tw_secondary_brightness_file", secondfindbright);
xNUTxe85f02d2014-07-18 01:30:58 +0200779 } else {
780 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
781 }
782#endif
Greg Wallace36ade452015-11-08 13:54:25 -0500783#ifdef TW_DEFAULT_BRIGHTNESS
784 int defValInt = TW_DEFAULT_BRIGHTNESS;
Ethan Yonker72a85202016-01-22 11:45:06 -0600785 int maxValInt = atoi(maxBrightness.c_str());
Greg Wallace36ade452015-11-08 13:54:25 -0500786 // Deliberately int so the % is always a whole number
787 int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
788 ostringstream defPct;
789 defPct << defPctInt;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500790 mPersist.SetValue("tw_brightness_pct", defPct.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500791
792 ostringstream defVal;
793 defVal << TW_DEFAULT_BRIGHTNESS;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500794 mPersist.SetValue("tw_brightness", defVal.str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900795 TWFunc::Set_Brightness(defVal.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500796#else
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900797 TWFunc::Set_Brightness(maxBrightness);
Greg Wallace36ade452015-11-08 13:54:25 -0500798#endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600799 }
Ethan Yonkerfe916112016-03-14 14:54:37 -0500800
Dees_Troy83bd4832013-05-04 12:39:56 +0000801#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500802 mConst.SetValue("tw_include_encrypted_backup", "1");
Dees_Troy83bd4832013-05-04 12:39:56 +0000803#else
804 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500805 mConst.SetValue("tw_include_encrypted_backup", "0");
Dees_Troy83bd4832013-05-04 12:39:56 +0000806#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400807#ifdef TW_HAS_MTP
Ethan Yonkerfe916112016-03-14 14:54:37 -0500808 mConst.SetValue("tw_has_mtp", "1");
809 mPersist.SetValue("tw_mtp_enabled", "1");
810 mPersist.SetValue("tw_mtp_debug", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400811#else
812 LOGINFO("TW_EXCLUDE_MTP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500813 mConst.SetValue("tw_has_mtp", "0");
814 mConst.SetValue("tw_mtp_enabled", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400815#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500816 mPersist.SetValue("tw_mount_system_ro", "2");
817 mPersist.SetValue("tw_never_show_system_ro_page", "0");
818 mPersist.SetValue("tw_language", EXPAND(TW_DEFAULT_LANGUAGE));
Ethan Yonker74db1572015-10-28 12:44:49 -0500819 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100820
Ethan Yonkerfe916112016-03-14 14:54:37 -0500821 mData.SetValue("tw_has_adopted_storage", "0");
Ethan Yonker66a19492015-12-10 10:19:45 -0600822
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100823 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400824}
825
826// Magic Values
Ethan Yonkerfe916112016-03-14 14:54:37 -0500827int DataManager::GetMagicValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400828{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200829 // Handle special dynamic cases
830 if (varName == "tw_time")
831 {
832 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400833
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200834 struct tm *current;
835 time_t now;
836 int tw_military_time;
837 now = time(0);
838 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500839 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200840 if (current->tm_hour >= 12)
841 {
842 if (tw_military_time == 1)
843 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
844 else
845 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500846 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500847 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200848 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500849 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200850 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
851 else
852 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
853 }
854 value = tmp;
855 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500856 }
Jenkins1710bf22014-10-02 20:22:21 -0400857 else if (varName == "tw_cpu_temp")
858 {
Agontuka29361a2015-04-22 14:42:59 +0600859 int tw_no_cpu_temp;
860 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
861 if (tw_no_cpu_temp == 1) return -1;
862
Jenkins1710bf22014-10-02 20:22:21 -0400863 string cpu_temp_file;
864 static unsigned long convert_temp = 0;
865 static time_t cpuSecCheck = 0;
866 int divisor = 0;
867 struct timeval curTime;
868 string results;
869
870 gettimeofday(&curTime, NULL);
871 if (curTime.tv_sec > cpuSecCheck)
872 {
873#ifdef TW_CUSTOM_CPU_TEMP_PATH
874 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
875 if (TWFunc::read_file(cpu_temp_file, results) != 0)
876 return -1;
877#else
878 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
879 if (TWFunc::read_file(cpu_temp_file, results) != 0)
880 return -1;
881#endif
882 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
883 if (convert_temp <= 0)
884 convert_temp = strtoul(results.c_str(), NULL, 0);
HandyMennyb6033452014-10-15 21:39:12 +0200885 if (convert_temp >= 150)
886 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
887 cpuSecCheck = curTime.tv_sec + 5;
Jenkins1710bf22014-10-02 20:22:21 -0400888 }
889 value = TWFunc::to_string(convert_temp);
890 return 0;
891 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200892 else if (varName == "tw_battery")
893 {
894 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -0400895 static char charging = ' ';
896 static int lastVal = -1;
897 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400898 struct timeval curTime;
899 gettimeofday(&curTime, NULL);
900 if (curTime.tv_sec > nextSecCheck)
901 {
902 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +0000903#ifdef TW_CUSTOM_BATTERY_PATH
904 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
905 capacity_file += "/capacity";
906 FILE * cap = fopen(capacity_file.c_str(),"rt");
907#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400908 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000909#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400910 if (cap){
911 fgets(cap_s, 4, cap);
912 fclose(cap);
913 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200914 if (lastVal > 100) lastVal = 101;
915 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400916 }
Dees_Troyf33b4902013-03-01 00:51:39 +0000917#ifdef TW_CUSTOM_BATTERY_PATH
918 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
919 status_file += "/status";
920 cap = fopen(status_file.c_str(),"rt");
921#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400922 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000923#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400924 if (cap) {
925 fgets(cap_s, 2, cap);
926 fclose(cap);
927 if (cap_s[0] == 'C')
928 charging = '+';
929 else
930 charging = ' ';
931 }
932 nextSecCheck = curTime.tv_sec + 60;
933 }
934
935 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200936 value = tmp;
937 return 0;
938 }
939 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400940}
941
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200942void DataManager::Output_Version(void)
943{
Ethan Yonker89583ef2015-08-26 09:01:59 -0500944#ifndef TW_OEM_BUILD
Dees_Troy1c1ac442013-01-17 21:42:14 +0000945 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400946 char version[255];
947
Dees_Troy1c1ac442013-01-17 21:42:14 +0000948 if (!PartitionManager.Mount_By_Path("/cache", false)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000949 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400950 return;
951 }
Dees_Troy1c1ac442013-01-17 21:42:14 +0000952 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000953 LOGINFO("Recreating /cache/recovery folder.\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +0000954 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000955 LOGERR("DataManager::Output_Version -- Unable to make /cache/recovery\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +0000956 return;
957 }
958 }
959 Path = "/cache/recovery/.version";
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400960 if (TWFunc::Path_Exists(Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500961 unlink(Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400962 }
963 FILE *fp = fopen(Path.c_str(), "w");
964 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500965 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Path)(strerror(errno)));
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400966 return;
967 }
968 strcpy(version, TW_VERSION_STR);
969 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
970 fclose(fp);
Dees_Troyd93bda52013-07-03 19:55:19 +0000971 TWFunc::copy_file("/etc/recovery.fstab", "/cache/recovery/recovery.fstab", 0644);
972 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400973 sync();
Dees_Troy2673cec2013-04-02 20:22:16 +0000974 LOGINFO("Version number saved to '%s'\n", Path.c_str());
Ethan Yonker89583ef2015-08-26 09:01:59 -0500975#endif
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400976}
977
Dees_Troy51a0e822012-09-05 15:24:24 -0400978void DataManager::ReadSettingsFile(void)
979{
Ethan Yonker83e82572014-04-04 10:59:28 -0500980#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -0400981 // Load up the values for TWRP - Sleep to let the card be ready
982 char mkdir_path[255], settings_file[255];
983 int is_enc, has_dual, use_ext, has_data_media, has_ext;
984
985 GetValue(TW_IS_ENCRYPTED, is_enc);
986 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
987 if (is_enc == 1 && has_data_media == 1) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000988 LOGINFO("Cannot load settings -- encrypted.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400989 return;
990 }
991
992 memset(mkdir_path, 0, sizeof(mkdir_path));
993 memset(settings_file, 0, sizeof(settings_file));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100994 sprintf(mkdir_path, "%s/TWRP", GetSettingsStoragePath().c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400995 sprintf(settings_file, "%s/.twrps", mkdir_path);
996
Dees_Troy5bf43922012-09-07 16:07:55 -0400997 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400998 {
999 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001000 if (!PartitionManager.Mount_Settings_Storage(false))
Ethan Yonker74db1572015-10-28 12:44:49 -05001001 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(settings_file));
Dees_Troy51a0e822012-09-05 15:24:24 -04001002 }
1003
1004 mkdir(mkdir_path, 0777);
1005
Dees_Troy2673cec2013-04-02 20:22:16 +00001006 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001007 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001008 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001009#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001010 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001011 update_tz_environment_variables();
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001012 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy51a0e822012-09-05 15:24:24 -04001013}
1014
1015string DataManager::GetCurrentStoragePath(void)
1016{
Dees_Troya13d74f2013-03-24 08:54:55 -05001017 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001018}
1019
Dees_Troy51a0e822012-09-05 15:24:24 -04001020string DataManager::GetSettingsStoragePath(void)
1021{
Dees_Troya13d74f2013-03-24 08:54:55 -05001022 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001023}
1024
Ethan Yonkerfe916112016-03-14 14:54:37 -05001025void DataManager::Vibrate(const string& varName)
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001026{
1027 int vib_value = 0;
1028 GetValue(varName, vib_value);
1029 if (vib_value) {
1030 vibrate(vib_value);
1031 }
1032}