blob: f08c8dbee46a80964d956ecb03d5d57babc90149 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
bigbiffab76bd72021-10-11 10:17:48 -04002 Copyright 2012 to 2021 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"
Mohd Farazaa182e92023-09-03 02:04:36 +053039#include "recovery_utils/battery_utils.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040040
Matt Mowere9260742015-02-22 20:20:18 -060041#define DEVID_MAX 64
42#define HWID_MAX 32
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070043
Dees_Troy51a0e822012-09-05 15:24:24 -040044extern "C"
45{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020046 #include "twcommon.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040047 #include "gui/pages.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040048 void gui_notifyVarChange(const char *name, const char* value);
Dees_Troy51a0e822012-09-05 15:24:24 -040049}
Ethan Yonkerfbb43532015-12-28 21:54:50 +010050#include "minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040051
Ethan Yonkerfe916112016-03-14 14:54:37 -050052#define FILE_VERSION 0x00010010 // Do not set to 0
Dees_Troy51a0e822012-09-05 15:24:24 -040053
54using namespace std;
55
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070056string DataManager::mBackingFile;
57int DataManager::mInitialized = 0;
Ethan Yonkerfe916112016-03-14 14:54:37 -050058InfoManager DataManager::mPersist; // Data that that is not constant and will be saved to the settings file
59InfoManager DataManager::mData; // Data that is not constant and will not be saved to settings file
60InfoManager DataManager::mConst; // Data that is constant and will not be saved to settings file
Jenkins1710bf22014-10-02 20:22:21 -040061
Ethan Yonker6277c792014-09-15 14:54:30 -050062extern bool datamedia;
Dees_Troy51a0e822012-09-05 15:24:24 -040063
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050064#ifndef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
Vojtech Bocekfda239b2015-01-07 22:55:13 +010065pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050066#else
67pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
68#endif
Vojtech Bocekfda239b2015-01-07 22:55:13 +010069
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040070// Device ID functions
71void DataManager::sanitize_device_id(char* device_id) {
Matt Mowere9260742015-02-22 20:20:18 -060072 const char* whitelist ="-._";
73 char str[DEVID_MAX];
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040074 char* c = str;
75
Matt Mowere9260742015-02-22 20:20:18 -060076 snprintf(str, DEVID_MAX, "%s", device_id);
77 memset(device_id, 0, strlen(device_id));
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040078 while (*c) {
Matt Mowere9260742015-02-22 20:20:18 -060079 if (isalnum(*c) || strchr(whitelist, *c))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040080 strncat(device_id, c, 1);
81 c++;
82 }
83 return;
84}
85
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020086#define CMDLINE_SERIALNO "androidboot.serialno="
87#define CMDLINE_SERIALNO_LEN (strlen(CMDLINE_SERIALNO))
88#define CPUINFO_SERIALNO "Serial"
89#define CPUINFO_SERIALNO_LEN (strlen(CPUINFO_SERIALNO))
90#define CPUINFO_HARDWARE "Hardware"
91#define CPUINFO_HARDWARE_LEN (strlen(CPUINFO_HARDWARE))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040092
93void DataManager::get_device_id(void) {
94 FILE *fp;
95 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 Mower23d8aae2017-01-06 14:30:33 -0600107 for (size_t i = 0; i < strlen(model_id); i++) {
Matt Mowere9260742015-02-22 20:20:18 -0600108 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
lambdadroidfc0b16d2017-08-04 17:16:53 +0200150#ifdef TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
151 // Check serial number system property
152 if (property_get("ro.serialno", line, "")) {
153 snprintf(device_id, DEVID_MAX, "%s", line);
154 sanitize_device_id(device_id);
155 mConst.SetValue("device_id", device_id);
156 return;
157 }
158#endif
159
Matt Mowere9260742015-02-22 20:20:18 -0600160 // Check the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400161 fp = fopen("/proc/cmdline", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600162 if (fp != NULL) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200163 fgets(line, sizeof(line), fp);
Matt Mowere9260742015-02-22 20:20:18 -0600164 fclose(fp); // cmdline is only one line long
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400165
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200166 token = strtok(line, " ");
Matt Mowere9260742015-02-22 20:20:18 -0600167 while (token) {
168 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0) {
169 token += CMDLINE_SERIALNO_LEN;
170 snprintf(device_id, DEVID_MAX, "%s", token);
171 sanitize_device_id(device_id); // also removes newlines
Ethan Yonkerfe916112016-03-14 14:54:37 -0500172 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200173 return;
174 }
175 token = strtok(NULL, " ");
176 }
177 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400178#endif
Matt Mowere9260742015-02-22 20:20:18 -0600179 // Check cpuinfo for serial number; if found, use as device_id
180 // If serial number is not found, fallback to hardware_id for the device_id
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400181 fp = fopen("/proc/cpuinfo", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600182 if (fp != NULL) {
183 while (fgets(line, sizeof(line), fp) != NULL) {
184 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) {
185 // skip past "Serial", spaces, and colon
186 token = line + CPUINFO_SERIALNO_LEN;
187 while (*token && (!isgraph(*token) || *token == ':'))
188 token++;
189
190 if (*token && *token != '\n') {
191 snprintf(device_id, DEVID_MAX, "%s", token);
192 sanitize_device_id(device_id); // also removes newlines
Dees_Troy2673cec2013-04-02 20:22:16 +0000193 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500194 mConst.SetValue("device_id", device_id);
Matt Mowere9260742015-02-22 20:20:18 -0600195 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400196 return;
197 }
Matt Mowere9260742015-02-22 20:20:18 -0600198 } else if (memcmp(line, CPUINFO_HARDWARE,
199 CPUINFO_HARDWARE_LEN) == 0) {
200 // skip past "Hardware", spaces, and colon
201 token = line + CPUINFO_HARDWARE_LEN;
202 while (*token && (!isgraph(*token) || *token == ':'))
203 token++;
204
205 if (*token && *token != '\n') {
206 snprintf(hardware_id, HWID_MAX, "%s", token);
207 if (hardware_id[strlen(hardware_id)-1] == '\n')
208 hardware_id[strlen(hardware_id)-1] = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000209 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400210 }
211 }
212 }
213 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200214 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400215
216 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000217 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Matt Mowere9260742015-02-22 20:20:18 -0600218 snprintf(device_id, DEVID_MAX, "%s", hardware_id);
219 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500220 mConst.SetValue("device_id", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400221 return;
222 }
223
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200224 strcpy(device_id, "serialno");
Ethan Yonker74db1572015-10-28 12:44:49 -0500225 LOGINFO("=> device id not found, using '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500226 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200227 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400228}
229
Dees_Troy51a0e822012-09-05 15:24:24 -0400230int DataManager::ResetDefaults()
231{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100232 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500233 mPersist.Clear();
234 mData.Clear();
235 mConst.Clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100236 pthread_mutex_unlock(&m_valuesLock);
237
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200238 SetDefaultValues();
239 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400240}
241
Ethan Yonkerfe916112016-03-14 14:54:37 -0500242int DataManager::LoadValues(const string& filename)
Dees_Troy51a0e822012-09-05 15:24:24 -0400243{
nkk7198fc3992017-12-16 16:26:42 +0200244 string dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400245
246 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200247 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400248
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200249 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400250 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200251 mBackingFile = filename;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500252 mPersist.SetFile(filename);
253 mPersist.SetFileVersion(FILE_VERSION);
Dees_Troy51a0e822012-09-05 15:24:24 -0400254
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200255 // Read in the file, if possible
Ethan Yonkerfe916112016-03-14 14:54:37 -0500256 pthread_mutex_lock(&m_valuesLock);
257 mPersist.LoadValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100258
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700259#ifndef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500260 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700261#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500262
263 pthread_mutex_unlock(&m_valuesLock);
Dees_Troya13d74f2013-03-24 08:54:55 -0500264 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500265 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Matt Mowera8a89d12016-12-30 18:10:37 -0600266 if (!Part)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200267 Part = PartitionManager.Get_Default_Storage_Partition();
268 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500269 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
270 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500271 } else {
272 SetBackupFolder();
273 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200274 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400275}
276
277int DataManager::Flush()
278{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200279 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400280}
281
282int DataManager::SaveValues()
283{
Ethan Yonker83e82572014-04-04 10:59:28 -0500284#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200285 if (mBackingFile.empty())
286 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400287
288 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400289 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400290
Ethan Yonkerfe916112016-03-14 14:54:37 -0500291 mPersist.SetFile(mBackingFile);
292 mPersist.SetFileVersion(FILE_VERSION);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100293 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500294 mPersist.SaveValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100295 pthread_mutex_unlock(&m_valuesLock);
296
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600297 tw_set_default_metadata(mBackingFile.c_str());
nkk7198fc3992017-12-16 16:26:42 +0200298 LOGINFO("Saved settings file values to '%s'\n", mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500299#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200300 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400301}
302
Ethan Yonkerfe916112016-03-14 14:54:37 -0500303int DataManager::GetValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400304{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200305 string localStr = varName;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500306 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400307
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200308 if (!mInitialized)
309 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400310
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200311 // Strip off leading and trailing '%' if provided
312 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
313 {
314 localStr.erase(0, 1);
315 localStr.erase(localStr.length() - 1, 1);
316 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400317
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200318 // Handle magic values
319 if (GetMagicValue(localStr, value) == 0)
320 return 0;
Xuefera163f152015-03-26 22:45:04 +0800321
322 // Handle property
323 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
324 char property_value[PROPERTY_VALUE_MAX];
325 property_get(localStr.substr(9).c_str(), property_value, "");
326 value = property_value;
327 return 0;
328 }
329
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100330 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500331 ret = mConst.GetValue(localStr, value);
332 if (ret == 0)
333 goto exit;
Dees_Troy51a0e822012-09-05 15:24:24 -0400334
Ethan Yonkerfe916112016-03-14 14:54:37 -0500335 ret = mPersist.GetValue(localStr, value);
336 if (ret == 0)
337 goto exit;
338
339 ret = mData.GetValue(localStr, value);
340exit:
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100341 pthread_mutex_unlock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500342 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400343}
344
Ethan Yonkerfe916112016-03-14 14:54:37 -0500345int DataManager::GetValue(const string& varName, int& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400346{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200347 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400348
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200349 if (GetValue(varName,data) != 0)
350 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400351
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200352 value = atoi(data.c_str());
353 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400354}
355
Ethan Yonkerfe916112016-03-14 14:54:37 -0500356int DataManager::GetValue(const string& varName, float& value)
Dees_Troy2673cec2013-04-02 20:22:16 +0000357{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200358 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000359
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200360 if (GetValue(varName,data) != 0)
361 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000362
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200363 value = atof(data.c_str());
364 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000365}
366
nkk7198fc3992017-12-16 16:26:42 +0200367int DataManager::GetValue(const string& varName, unsigned long long& value)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500368{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200369 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500370
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200371 if (GetValue(varName,data) != 0)
372 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500373
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200374 value = strtoull(data.c_str(), NULL, 10);
375 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500376}
377
Dees_Troy51a0e822012-09-05 15:24:24 -0400378// This function will return an empty string if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500379string DataManager::GetStrValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400380{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200381 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400382
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200383 GetValue(varName, retVal);
384 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400385}
386
387// This function will return 0 if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500388int DataManager::GetIntValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400389{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200390 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400391
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200392 GetValue(varName, retVal);
393 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400394}
395
Ethan Yonkerfe916112016-03-14 14:54:37 -0500396int DataManager::SetValue(const string& varName, const string& value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400397{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200398 if (!mInitialized)
399 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400400
Xuefera163f152015-03-26 22:45:04 +0800401 // Handle property
402 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
403 int ret = property_set(varName.substr(9).c_str(), value.c_str());
404 if (ret)
405 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
406 return ret;
407 }
408
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200409 // Don't allow empty values or numerical starting values
410 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
411 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400412
Ethan Yonkerfe916112016-03-14 14:54:37 -0500413 string test;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100414 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500415 int constChk = mConst.GetValue(varName, test);
416 if (constChk == 0) {
417 pthread_mutex_unlock(&m_valuesLock);
418 return -1;
419 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100420
Ethan Yonkerfe916112016-03-14 14:54:37 -0500421 if (persist) {
422 mPersist.SetValue(varName, value);
423 } else {
424 int persistChk = mPersist.GetValue(varName, test);
425 if (persistChk == 0) {
426 mPersist.SetValue(varName, value);
427 } else {
428 mData.SetValue(varName, value);
429 }
430 }
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700431
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100432 pthread_mutex_unlock(&m_valuesLock);
433
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700434#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500435 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600436 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700437 } else
438#endif
439 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500440 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500441 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500442 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200443 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400444}
445
Ethan Yonkerfe916112016-03-14 14:54:37 -0500446int DataManager::SetValue(const string& varName, const int value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400447{
448 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200449 valStr << value;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200450 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400451}
452
Ethan Yonkerfe916112016-03-14 14:54:37 -0500453int DataManager::SetValue(const string& varName, const float value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400454{
455 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200456 valStr << value;
457 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400458}
459
Ethan Yonkerfe916112016-03-14 14:54:37 -0500460int DataManager::SetValue(const string& varName, const unsigned long long& value, const int persist /* = 0 */)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500461{
462 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200463 valStr << value;
464 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500465}
466
Chaosmasterd5364a02020-02-03 15:38:02 +0100467// For legacy code that doesn't set a scope
Ethan Yonkerfe916112016-03-14 14:54:37 -0500468int DataManager::SetProgress(const float Fraction) {
Chaosmasterd5364a02020-02-03 15:38:02 +0100469 if (SetValue("ui_portion_size", 0) != 0)
470 return -1;
471 if (SetValue("ui_portion_start", 0) != 0)
472 return -1;
473 ShowProgress(1, 0);
474 int res = _SetProgress(Fraction);
475 if (SetValue("ui_portion_size", 0) != 0)
476 return -1;
477 if (SetValue("ui_portion_start", 0) != 0)
478 return -1;
479 return res;
Dees_Troy2673cec2013-04-02 20:22:16 +0000480}
481
Chaosmasterd5364a02020-02-03 15:38:02 +0100482int DataManager::_SetProgress(float Fraction) {
483 float Portion_Start, Portion_Size;
484 GetValue("ui_portion_size", Portion_Size);
485 GetValue("ui_portion_start", Portion_Start);
486 //LOGINFO("SetProgress(%.2lf): Portion_Size: %.2lf Portion_Start: %.2lf\n", Fraction, Portion_Size, Portion_Start);
487 if (Fraction < 0.0)
488 Fraction = 0;
489 if (Fraction > 1.0)
490 Fraction = 1;
491 if (SetValue("ui_progress", (float) ((Portion_Start + (Portion_Size * Fraction)) * 100.0)) != 0)
492 return -1;
493 return (SetValue("ui_progress_portion", 0) != 0);
494}
495
496int DataManager::ShowProgress(float Portion, const float Seconds)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200497{
Chaosmasterd5364a02020-02-03 15:38:02 +0100498 float Portion_Start, Portion_Size;
499 GetValue("ui_portion_size", Portion_Size);
500 GetValue("ui_portion_start", Portion_Start);
501 Portion_Start += Portion_Size;
502 if(Portion + Portion_Start > 1.0)
503 Portion = 1.0 - Portion_Start;
504 //LOGINFO("ShowProgress(%.2lf, %.2lf): Portion_Start: %.2lf\n", Portion, Seconds, Portion_Start);
505 if (SetValue("ui_portion_start", Portion_Start) != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000506 return -1;
Chaosmasterd5364a02020-02-03 15:38:02 +0100507 if (SetValue("ui_portion_size", Portion) != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000508 return -1;
Chaosmasterd5364a02020-02-03 15:38:02 +0100509 if (SetValue("ui_progress", (float)(Portion_Start * 100.0)) != 0)
510 return -1;
511 if(Seconds) {
512 if (SetValue("ui_progress_portion", (float)((Portion * 100.0) + Portion_Start)) != 0)
513 return -1;
514 if (SetValue("ui_progress_frames", Seconds * 48) != 0)
515 return -1;
516 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000517 return 0;
518}
519
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200520void DataManager::update_tz_environment_variables(void)
521{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100522 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200523 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400524}
525
Dees_Troy16b74352012-11-14 22:27:31 +0000526void DataManager::SetBackupFolder()
527{
528 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500529 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
epicXa721f952021-01-04 13:01:31 +0530530 str += TWFunc::Check_For_TwrpFolder() + "/BACKUPS/";
Dees_Troy16b74352012-11-14 22:27:31 +0000531
532 string dev_id;
533 GetValue("device_id", dev_id);
534
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200535 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000536 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000537 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500538 if (partition != NULL) {
539 SetValue("tw_storage_display_name", partition->Storage_Name);
540 char free_space[255];
541 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
542 SetValue("tw_storage_free_size", free_space);
543 string zip_path, zip_root, storage_path;
544 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
Ethan Yonkereadfd2e2016-02-18 22:04:18 -0600545 if (partition->Has_Data_Media && !partition->Symlink_Mount_Point.empty())
Dees_Troya13d74f2013-03-24 08:54:55 -0500546 storage_path = partition->Symlink_Mount_Point;
547 else
548 storage_path = partition->Storage_Path;
549 if (zip_path.size() < storage_path.size()) {
550 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
551 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000552 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500553 if (zip_root != storage_path) {
554 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 -0500555 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500556 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500557 }
558 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500559 if (PartitionManager.Fstab_Processed() != 0) {
560 LOGINFO("Storage partition '%s' not found\n", str.c_str());
561 gui_err("unable_locate_storage=Unable to locate storage device.");
562 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500563 }
Dees_Troy16b74352012-11-14 22:27:31 +0000564}
565
Dees_Troy51a0e822012-09-05 15:24:24 -0400566void DataManager::SetDefaultValues()
567{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200568 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400569
Ethan Yonkerfe916112016-03-14 14:54:37 -0500570 mConst.SetConst();
571
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200572 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400573
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100574 pthread_mutex_lock(&m_valuesLock);
575
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200576 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400577
Ethan Yonkerfe916112016-03-14 14:54:37 -0500578 mConst.SetValue("true", "1");
579 mConst.SetValue("false", "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400580
Ethan Yonkerfe916112016-03-14 14:54:37 -0500581 mConst.SetValue(TW_VERSION_VAR, TW_VERSION_STR);
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400582
583#ifndef TW_NO_HAPTICS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500584 mPersist.SetValue("tw_button_vibrate", "80");
585 mPersist.SetValue("tw_keyboard_vibrate", "40");
586 mPersist.SetValue("tw_action_vibrate", "160");
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400587 mConst.SetValue("tw_disable_haptics", "0");
588#else
589 LOGINFO("TW_NO_HAPTICS := true\n");
590 mConst.SetValue("tw_disable_haptics", "1");
591#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400592
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200593 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
Matt Mowera8a89d12016-12-30 18:10:37 -0600594 if (store)
Ethan Yonkerfe916112016-03-14 14:54:37 -0500595 mPersist.SetValue("tw_storage_path", store->Storage_Path);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200596 else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500597 mPersist.SetValue("tw_storage_path", "/");
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200598
Dees_Troyf4499812013-01-23 19:07:38 +0000599#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
600 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
601#endif
602
Dees_Troy51a0e822012-09-05 15:24:24 -0400603#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000604 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500605 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400606#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500607 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400608#endif
609
epicXa721f952021-01-04 13:01:31 +0530610 mData.SetValue(TW_RECOVERY_FOLDER_VAR, TW_DEFAULT_RECOVERY_FOLDER);
611
Dees_Troy51a0e822012-09-05 15:24:24 -0400612 str = GetCurrentStoragePath();
Ethan Yonkerfe916112016-03-14 14:54:37 -0500613 mPersist.SetValue(TW_ZIP_LOCATION_VAR, str);
epicXa721f952021-01-04 13:01:31 +0530614 str += DataManager::GetStrValue(TW_RECOVERY_FOLDER_VAR) + "/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400615
616 string dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500617 mConst.GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400618
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200619 str += dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500620 mData.SetValue(TW_BACKUPS_FOLDER_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400621
Ethan Yonkerfe916112016-03-14 14:54:37 -0500622 mConst.SetValue(TW_REBOOT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400623#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100624 printf("TW_NO_REBOOT_RECOVERY := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500625 mConst.SetValue(TW_REBOOT_RECOVERY, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400626#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500627 mConst.SetValue(TW_REBOOT_RECOVERY, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400628#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500629 mConst.SetValue(TW_REBOOT_POWEROFF, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400630#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100631 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500632 mConst.SetValue(TW_REBOOT_BOOTLOADER, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400633#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500634 mConst.SetValue(TW_REBOOT_BOOTLOADER, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400635#endif
636#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000637 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500638 mConst.SetValue(TW_HAS_DATA_MEDIA, "1");
Ethan Yonker6277c792014-09-15 14:54:30 -0500639 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400640#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500641 mData.SetValue(TW_HAS_DATA_MEDIA, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400642#endif
643#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000644 printf("TW_NO_BATT_PERCENT := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500645 mConst.SetValue(TW_NO_BATTERY_PERCENT, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400646#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500647 mConst.SetValue(TW_NO_BATTERY_PERCENT, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400648#endif
Jenkins1710bf22014-10-02 20:22:21 -0400649#ifdef TW_NO_CPU_TEMP
650 printf("TW_NO_CPU_TEMP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500651 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400652#else
653 string cpu_temp_file;
654#ifdef TW_CUSTOM_CPU_TEMP_PATH
655 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
656#else
657 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
658#endif
659 if (TWFunc::Path_Exists(cpu_temp_file)) {
Ethan Yonkerfe916112016-03-14 14:54:37 -0500660 mConst.SetValue("tw_no_cpu_temp", "0");
Jenkins1710bf22014-10-02 20:22:21 -0400661 } else {
662 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500663 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400664 }
665#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400666#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000667 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Ethan Yonkerfe916112016-03-14 14:54:37 -0500668 mConst.SetValue(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400669#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500670 mConst.SetValue(TW_POWER_BUTTON, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400671#endif
672#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000673 printf("TW_ALWAYS_RMRF := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500674 mConst.SetValue(TW_RM_RF_VAR, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400675#endif
676#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000677 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500678 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400679#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500680 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400681#endif
682#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000683 printf("TW_NO_USB_STORAGE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500684 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400685#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000686 char lun_file[255];
687 string Lun_File_str = CUSTOM_LUN_FILE;
688 size_t found = Lun_File_str.find("%");
689 if (found != string::npos) {
690 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
691 Lun_File_str = lun_file;
692 }
693 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000694 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500695 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy6a042c82013-01-23 18:50:52 +0000696 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000697 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500698 mData.SetValue(TW_HAS_USB_STORAGE, "1");
Dees_Troy6a042c82013-01-23 18:50:52 +0000699 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400700#endif
701#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000702 printf("TW_INCLUDE_INJECTTWRP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500703 mConst.SetValue(TW_HAS_INJECTTWRP, "1");
704 mPersist(TW_INJECT_AFTER_ZIP, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400705#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500706 mConst.SetValue(TW_HAS_INJECTTWRP, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400707#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400708#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000709 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500710 mConst.SetValue(TW_DOWNLOAD_MODE, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400711#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200712#ifdef TW_HAS_EDL_MODE
713 printf("TW_HAS_EDL_MODE := true\n");
714 mConst.SetValue(TW_EDL_MODE, "1");
715#endif
me-cafebabe97be4322022-08-14 05:57:16 +0800716#ifdef TW_INCLUDE_FASTBOOTD
717 printf("TW_INCLUDE_FASTBOOTD := true\n");
718 mConst.SetValue(TW_FASTBOOT_MODE, "1");
719#endif
bigbiffdf8436b2020-08-30 16:22:34 -0400720#ifdef PRODUCT_USE_DYNAMIC_PARTITIONS
721 printf("PRODUCT_USE_DYNAMIC_PARTITIONS := true\n");
722 mConst.SetValue(TW_FASTBOOT_MODE, "1");
bigbiffb640d972021-10-12 19:08:10 -0400723 mConst.SetValue(TW_IS_SUPER, "1");
724#else
725 mConst.SetValue(TW_IS_SUPER, "0");
bigbiffdf8436b2020-08-30 16:22:34 -0400726#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400727#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerfe916112016-03-14 14:54:37 -0500728 mConst.SetValue(TW_HAS_CRYPTO, "1");
Dees_Troyf4499812013-01-23 19:07:38 +0000729 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400730#endif
731#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000732 printf("TW_SDEXT_NO_EXT4 := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500733 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400734#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500735 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400736#endif
737
Dees_Troya13d74f2013-03-24 08:54:55 -0500738#ifdef TW_HAS_NO_BOOT_PARTITION
Ethan Yonkerfe916112016-03-14 14:54:37 -0500739 mPersist.SetValue("tw_backup_list", "/system;/data;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500740#else
bigbiffee7b7ff2020-03-23 15:08:27 -0400741#ifdef PRODUCT_USE_DYNAMIC_PARTITIONS
742 mPersist.SetValue("tw_backup_list", "/data;");
743#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500744 mPersist.SetValue("tw_backup_list", "/system;/data;/boot;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500745#endif
bigbiffee7b7ff2020-03-23 15:08:27 -0400746#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500747 mConst.SetValue(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE);
748 mData.SetValue(TW_BACKUP_NAME, "(Auto Generate)");
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500749
Matt Mower8dc25b72016-04-25 23:06:53 -0500750 mPersist.SetValue(TW_INSTALL_REBOOT_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500751 mPersist.SetValue(TW_SIGNED_ZIP_VERIFY_VAR, "0");
Matt Mowerbfccfb82016-04-25 23:22:31 -0500752 mPersist.SetValue(TW_DISABLE_FREE_SPACE_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400753 mPersist.SetValue(TW_FORCE_DIGEST_CHECK_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500754 mPersist.SetValue(TW_USE_COMPRESSION_VAR, "0");
755 mPersist.SetValue(TW_TIME_ZONE_VAR, "CST6CDT,M3.2.0,M11.1.0");
756 mPersist.SetValue(TW_GUI_SORT_ORDER, "1");
757 mPersist.SetValue(TW_RM_RF_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400758 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_VAR, "0");
epicX9597b842021-03-20 21:58:17 +0530759 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_ZIP_VAR, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400760 mPersist.SetValue(TW_SKIP_DIGEST_GENERATE_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500761 mPersist.SetValue(TW_SDEXT_SIZE, "0");
762 mPersist.SetValue(TW_SWAP_SIZE, "0");
763 mPersist.SetValue(TW_SDPART_FILE_SYSTEM, "ext3");
764 mPersist.SetValue(TW_TIME_ZONE_GUISEL, "CST6;CDT,M3.2.0,M11.1.0");
765 mPersist.SetValue(TW_TIME_ZONE_GUIOFFSET, "0");
766 mPersist.SetValue(TW_TIME_ZONE_GUIDST, "1");
bigbiffab76bd72021-10-11 10:17:48 -0400767 mPersist.SetValue(TW_AUTO_REFLASHTWRP_VAR, "0");
Captain Throwback02647a92023-01-11 13:46:30 -0500768#ifdef TW_NO_FLASH_CURRENT_TWRP
769 mConst.SetValue("tw_no_flash_current_twrp", "1");
770#else
771 mConst.SetValue("tw_no_flash_current_twrp", "0");
772#endif
nebrassyac29e692021-05-20 13:03:30 +0200773
Ethan Yonkerfe916112016-03-14 14:54:37 -0500774 mData.SetValue(TW_ACTION_BUSY, "0");
775 mData.SetValue("tw_wipe_cache", "0");
776 mData.SetValue("tw_wipe_dalvik", "0");
777 mData.SetValue(TW_ZIP_INDEX, "0");
778 mData.SetValue(TW_ZIP_QUEUE_COUNT, "0");
779 mData.SetValue(TW_FILENAME, "/sdcard");
780 mData.SetValue(TW_SIMULATE_ACTIONS, "0");
781 mData.SetValue(TW_SIMULATE_FAIL, "0");
782 mData.SetValue(TW_IS_ENCRYPTED, "0");
783 mData.SetValue(TW_IS_DECRYPTED, "0");
784 mData.SetValue(TW_CRYPTO_PASSWORD, "0");
Captain Throwbackccc18d42022-01-10 13:15:53 -0500785 mData.SetValue(TW_CRYPTO_PWTYPE, "0"); // Set initial value so that recovery will not be confused when using unencrypted data or failed to decrypt data
Ethan Yonkerfe916112016-03-14 14:54:37 -0500786 mData.SetValue("tw_terminal_state", "0");
787 mData.SetValue("tw_background_thread_running", "0");
788 mData.SetValue(TW_RESTORE_FILE_DATE, "0");
789 mPersist.SetValue("tw_military_time", "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400790
791#ifdef TW_INCLUDE_CRYPTO
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400792 mPersist.SetValue(TW_USE_SHA2, "1");
793 mPersist.SetValue(TW_NO_SHA2, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400794#else
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400795 mPersist.SetValue(TW_NO_SHA2, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400796#endif
bigbiffcfa875c2021-06-20 16:20:27 -0400797#ifdef AB_OTA_UPDATER
798 mPersist.SetValue(TW_UNMOUNT_SYSTEM, "0");
799#else
Chaosmasterff4f9582020-01-26 15:38:11 +0100800 mPersist.SetValue(TW_UNMOUNT_SYSTEM, "1");
bigbiffcfa875c2021-06-20 16:20:27 -0400801#endif
Captain Throwbackbc2cfa32021-09-16 10:04:26 -0400802#if defined BOARD_USES_RECOVERY_AS_BOOT && defined BOARD_BUILD_SYSTEM_ROOT_IMAGE
803 mConst.SetValue("tw_uses_initramfs", "1");
804#else
805 mConst.SetValue("tw_uses_initramfs", "0");
806#endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700807#ifdef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500808 mConst.SetValue("tw_screen_timeout_secs", "0");
809 mConst.SetValue("tw_no_screen_timeout", "1");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700810#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500811 mPersist.SetValue("tw_screen_timeout_secs", "60");
812 mPersist.SetValue("tw_no_screen_timeout", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700813#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500814 mData.SetValue("tw_gui_done", "0");
815 mData.SetValue("tw_encrypt_backup", "0");
Matt Mower9a2a2052016-05-31 21:31:22 -0500816 mData.SetValue("tw_sleep_total", "5");
817 mData.SetValue("tw_sleep", "5");
bigbiffdf8436b2020-08-30 16:22:34 -0400818 mData.SetValue("tw_enable_fastboot", "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500819
bigbiffab76bd72021-10-11 10:17:48 -0400820
821 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false))
822 mConst.SetValue("tw_virtual_ab.enabled", "1");
823 else
824 mConst.SetValue("tw_virtual_ab.enabled", "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500825 // Brightness handling
Ethan Yonker00028b42014-04-09 14:29:02 -0500826 string findbright;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900827#ifdef TW_BRIGHTNESS_PATH
828 findbright = EXPAND(TW_BRIGHTNESS_PATH);
829 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
830 if (!TWFunc::Path_Exists(findbright)) {
831 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
832 findbright = "";
Ethan Yonker00028b42014-04-09 14:29:02 -0500833 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900834#endif
Ethan Yonker00028b42014-04-09 14:29:02 -0500835 if (findbright.empty()) {
836 // Attempt to locate the brightness file
837 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500838 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500839 }
840 if (findbright.empty()) {
841 LOGINFO("Unable to locate brightness file\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500842 mConst.SetValue("tw_has_brightnesss_file", "0");
Ethan Yonker00028b42014-04-09 14:29:02 -0500843 } else {
844 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500845 mConst.SetValue("tw_has_brightnesss_file", "1");
846 mConst.SetValue("tw_brightness_file", findbright);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900847 string maxBrightness;
848#ifdef TW_MAX_BRIGHTNESS
Vojtech Bocek85932342013-04-01 22:11:33 +0200849 ostringstream maxVal;
850 maxVal << TW_MAX_BRIGHTNESS;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900851 maxBrightness = maxVal.str();
852#else
853 // Attempt to locate the max_brightness file
854 string maxbrightpath = findbright.insert(findbright.rfind('/') + 1, "max_");
855 if (TWFunc::Path_Exists(maxbrightpath)) {
Ethan Yonker72a85202016-01-22 11:45:06 -0600856 ifstream maxVal(maxbrightpath.c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -0600857 if (maxVal >> maxBrightness) {
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900858 LOGINFO("Got max brightness %s from '%s'\n", maxBrightness.c_str(), maxbrightpath.c_str());
859 } else {
860 // Something went wrong, set that to indicate error
861 maxBrightness = "-1";
862 }
863 }
Ethan Yonker72a85202016-01-22 11:45:06 -0600864 if (atoi(maxBrightness.c_str()) <= 0)
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900865 {
866 // Fallback into default
867 ostringstream maxVal;
868 maxVal << 255;
869 maxBrightness = maxVal.str();
870 }
871#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500872 mConst.SetValue("tw_brightness_max", maxBrightness);
873 mPersist.SetValue("tw_brightness", maxBrightness);
874 mPersist.SetValue("tw_brightness_pct", "100");
xNUTxe85f02d2014-07-18 01:30:58 +0200875#ifdef TW_SECONDARY_BRIGHTNESS_PATH
876 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
877 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
878 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500879 mConst.SetValue("tw_secondary_brightness_file", secondfindbright);
xNUTxe85f02d2014-07-18 01:30:58 +0200880 } else {
881 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
882 }
883#endif
Greg Wallace36ade452015-11-08 13:54:25 -0500884#ifdef TW_DEFAULT_BRIGHTNESS
885 int defValInt = TW_DEFAULT_BRIGHTNESS;
Ethan Yonker72a85202016-01-22 11:45:06 -0600886 int maxValInt = atoi(maxBrightness.c_str());
Greg Wallace36ade452015-11-08 13:54:25 -0500887 // Deliberately int so the % is always a whole number
888 int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
889 ostringstream defPct;
890 defPct << defPctInt;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500891 mPersist.SetValue("tw_brightness_pct", defPct.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500892
893 ostringstream defVal;
894 defVal << TW_DEFAULT_BRIGHTNESS;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500895 mPersist.SetValue("tw_brightness", defVal.str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900896 TWFunc::Set_Brightness(defVal.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500897#else
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900898 TWFunc::Set_Brightness(maxBrightness);
Greg Wallace36ade452015-11-08 13:54:25 -0500899#endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600900 }
Ethan Yonkerfe916112016-03-14 14:54:37 -0500901
Dees_Troy83bd4832013-05-04 12:39:56 +0000902#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500903 mConst.SetValue("tw_include_encrypted_backup", "1");
Dees_Troy83bd4832013-05-04 12:39:56 +0000904#else
905 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500906 mConst.SetValue("tw_include_encrypted_backup", "0");
Dees_Troy83bd4832013-05-04 12:39:56 +0000907#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400908#ifdef TW_HAS_MTP
Ethan Yonkerfe916112016-03-14 14:54:37 -0500909 mConst.SetValue("tw_has_mtp", "1");
910 mPersist.SetValue("tw_mtp_enabled", "1");
911 mPersist.SetValue("tw_mtp_debug", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400912#else
913 LOGINFO("TW_EXCLUDE_MTP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500914 mConst.SetValue("tw_has_mtp", "0");
915 mConst.SetValue("tw_mtp_enabled", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400916#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500917 mPersist.SetValue("tw_mount_system_ro", "2");
918 mPersist.SetValue("tw_never_show_system_ro_page", "0");
919 mPersist.SetValue("tw_language", EXPAND(TW_DEFAULT_LANGUAGE));
Ethan Yonker74db1572015-10-28 12:44:49 -0500920 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100921
Ethan Yonkerfe916112016-03-14 14:54:37 -0500922 mData.SetValue("tw_has_adopted_storage", "0");
Ethan Yonker66a19492015-12-10 10:19:45 -0600923
Ethan Yonker1b190162016-12-05 15:25:19 -0600924#ifdef AB_OTA_UPDATER
925 LOGINFO("AB_OTA_UPDATER := true\n");
926 mConst.SetValue("tw_has_boot_slots", "1");
927#else
928 mConst.SetValue("tw_has_boot_slots", "0");
929#endif
nkk71b4c35912017-10-11 23:39:10 +0300930
Ethan Yonker75aa6152017-09-08 12:17:03 -0500931#ifdef TW_NO_LEGACY_PROPS
932 LOGINFO("TW_NO_LEGACY_PROPS := true\n");
Ethan Yonker75aa6152017-09-08 12:17:03 -0500933#endif
nkk71b4c35912017-10-11 23:39:10 +0300934
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600935#ifdef TW_OEM_BUILD
936 LOGINFO("TW_OEM_BUILD := true\n");
937 mConst.SetValue("tw_oem_build", "1");
Ethan Yonker76bbd3a2019-05-10 10:50:04 -0500938 mConst.SetValue("tw_app_installed_in_system", "0");
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600939#else
940 mConst.SetValue("tw_oem_build", "0");
941 mPersist.SetValue("tw_app_prompt", "1");
942 mPersist.SetValue("tw_app_install_system", "1");
943 mData.SetValue("tw_app_install_status", "0"); // 0 = no status, 1 = not installed, 2 = already installed
Ethan Yonker76bbd3a2019-05-10 10:50:04 -0500944 mData.SetValue("tw_app_installed_in_system", "0");
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600945#endif
Captain Throwback16dd81b2021-02-12 19:32:36 -0500946#ifndef TW_EXCLUDE_NANO
947 mConst.SetValue("tw_include_nano", "1");
948#else
949 LOGINFO("TW_EXCLUDE_NANO := true\n");
950 mConst.SetValue("tw_include_nano", "0");
951#endif
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600952
epicX8f52c0a2021-02-24 23:12:08 +0530953 mData.SetValue("tw_flash_both_slots", "0");
954 mData.SetValue("tw_is_slot_part", "0");
955
Ethan Yonker53796e72019-01-11 22:49:52 -0600956 mData.SetValue("tw_enable_adb_backup", "0");
957
Captain Throwback52978932021-09-05 15:11:07 -0400958 if (TWFunc::Path_Exists("/system/bin/logcat"))
959 mConst.SetValue("tw_logcat_exists", "1");
960 else
961 mConst.SetValue("tw_logcat_exists", "0");
962
bigbiffad58e1b2020-07-06 20:24:34 -0400963 if (TWFunc::Path_Exists("/system/bin/magiskboot"))
Ethan Yonker53796e72019-01-11 22:49:52 -0600964 mConst.SetValue("tw_has_repack_tools", "1");
965 else
966 mConst.SetValue("tw_has_repack_tools", "0");
jason972000adae3362017-12-08 09:08:45 -0600967
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100968 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400969}
970
971// Magic Values
Ethan Yonkerfe916112016-03-14 14:54:37 -0500972int DataManager::GetMagicValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400973{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200974 // Handle special dynamic cases
975 if (varName == "tw_time")
976 {
977 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400978
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200979 struct tm *current;
980 time_t now;
981 int tw_military_time;
982 now = time(0);
983 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500984 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200985 if (current->tm_hour >= 12)
986 {
987 if (tw_military_time == 1)
988 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
989 else
990 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500991 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500992 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200993 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500994 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200995 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
996 else
997 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
998 }
999 value = tmp;
1000 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -05001001 }
Jenkins1710bf22014-10-02 20:22:21 -04001002 else if (varName == "tw_cpu_temp")
1003 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001004 int tw_no_cpu_temp;
1005 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
1006 if (tw_no_cpu_temp == 1) return -1;
Agontuka29361a2015-04-22 14:42:59 +06001007
Matt Mowera8a89d12016-12-30 18:10:37 -06001008 string cpu_temp_file;
1009 static unsigned long convert_temp = 0;
1010 static time_t cpuSecCheck = 0;
Matt Mowera8a89d12016-12-30 18:10:37 -06001011 struct timeval curTime;
1012 string results;
Jenkins1710bf22014-10-02 20:22:21 -04001013
Matt Mowera8a89d12016-12-30 18:10:37 -06001014 gettimeofday(&curTime, NULL);
1015 if (curTime.tv_sec > cpuSecCheck)
1016 {
Jenkins1710bf22014-10-02 20:22:21 -04001017#ifdef TW_CUSTOM_CPU_TEMP_PATH
Matt Mowera8a89d12016-12-30 18:10:37 -06001018 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
1019 if (TWFunc::read_file(cpu_temp_file, results) != 0)
1020 return -1;
Jenkins1710bf22014-10-02 20:22:21 -04001021#else
Matt Mowera8a89d12016-12-30 18:10:37 -06001022 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
1023 if (TWFunc::read_file(cpu_temp_file, results) != 0)
1024 return -1;
Jenkins1710bf22014-10-02 20:22:21 -04001025#endif
Matt Mowera8a89d12016-12-30 18:10:37 -06001026 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
1027 if (convert_temp <= 0)
1028 convert_temp = strtoul(results.c_str(), NULL, 0);
1029 if (convert_temp >= 150)
1030 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
1031 cpuSecCheck = curTime.tv_sec + 5;
1032 }
1033 value = TWFunc::to_string(convert_temp);
1034 return 0;
Jenkins1710bf22014-10-02 20:22:21 -04001035 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001036 else if (varName == "tw_battery")
1037 {
1038 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -04001039 static char charging = ' ';
1040 static int lastVal = -1;
1041 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001042 struct timeval curTime;
1043 gettimeofday(&curTime, NULL);
1044 if (curTime.tv_sec > nextSecCheck)
1045 {
Mohd Farazaa182e92023-09-03 02:04:36 +05301046 auto battery_info = GetBatteryInfo();
1047 if (battery_info.charging) {
1048 charging = '+';
1049 } else {
1050 charging = ' ';
Dees_Troy38bd7602012-09-14 13:33:53 -04001051 }
Mohd Farazaa182e92023-09-03 02:04:36 +05301052 lastVal = battery_info.capacity;
1053 nextSecCheck = curTime.tv_sec + 1;
Dees_Troy38bd7602012-09-14 13:33:53 -04001054 }
1055
1056 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001057 value = tmp;
1058 return 0;
1059 }
1060 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -04001061}
1062
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001063void DataManager::Output_Version(void)
1064{
Ethan Yonker89583ef2015-08-26 09:01:59 -05001065#ifndef TW_OEM_BUILD
Dees_Troy1c1ac442013-01-17 21:42:14 +00001066 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001067 char version[255];
1068
bigbiff25d25b92020-06-19 16:07:38 -04001069 std::string logDir = TWFunc::get_log_dir();
1070 if (logDir.empty()) {
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001071 LOGINFO("Unable to find cache directory\n");
1072 return;
1073 }
1074
bigbiff25d25b92020-06-19 16:07:38 -04001075 std::string recoveryLogDir = logDir + "recovery/";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001076
bigbiff25d25b92020-06-19 16:07:38 -04001077 if (logDir == CACHE_LOGS_DIR) {
1078 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001079 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy1c1ac442013-01-17 21:42:14 +00001080 return;
1081 }
Mohd Farazf9ded062020-06-06 20:50:57 +05301082
bigbiff25d25b92020-06-19 16:07:38 -04001083 if (!TWFunc::Path_Exists(recoveryLogDir)) {
1084 LOGINFO("Recreating %s folder.\n", recoveryLogDir.c_str());
1085 if (!TWFunc::Create_Dir_Recursive(recoveryLogDir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
1086 LOGERR("DataManager::Output_Version -- Unable to make %s: %s\n", recoveryLogDir.c_str(), strerror(errno));
Mohd Farazf9ded062020-06-06 20:50:57 +05301087 return;
1088 }
1089 }
Dees_Troy1c1ac442013-01-17 21:42:14 +00001090 }
bigbiff7ba75002020-04-11 20:47:09 -04001091
bigbiff25d25b92020-06-19 16:07:38 -04001092 std::string verPath = recoveryLogDir + ".version";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001093 if (TWFunc::Path_Exists(verPath)) {
1094 unlink(verPath.c_str());
1095 }
1096 FILE *fp = fopen(verPath.c_str(), "w");
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001097 if (fp == NULL) {
bigbiff13017c62021-09-29 19:04:31 -04001098 LOGINFO("Unable to open: %s. Data may be unmounted. Error: %s\n", verPath.c_str(), strerror(errno));
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001099 return;
1100 }
1101 strcpy(version, TW_VERSION_STR);
1102 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
1103 fclose(fp);
bigbiff25d25b92020-06-19 16:07:38 -04001104 TWFunc::copy_file("/etc/recovery.fstab", recoveryLogDir + "recovery.fstab", 0644);
Dees_Troyd93bda52013-07-03 19:55:19 +00001105 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001106 sync();
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001107 LOGINFO("Version number saved to '%s'\n", verPath.c_str());
Ethan Yonker89583ef2015-08-26 09:01:59 -05001108#endif
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001109}
1110
Dees_Troy51a0e822012-09-05 15:24:24 -04001111void DataManager::ReadSettingsFile(void)
1112{
Ethan Yonker83e82572014-04-04 10:59:28 -05001113#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001114 // Load up the values for TWRP - Sleep to let the card be ready
1115 char mkdir_path[255], settings_file[255];
Matt Mower23d8aae2017-01-06 14:30:33 -06001116 int is_enc, has_data_media;
Dees_Troy51a0e822012-09-05 15:24:24 -04001117
1118 GetValue(TW_IS_ENCRYPTED, is_enc);
1119 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
Dees_Troy51a0e822012-09-05 15:24:24 -04001120
1121 memset(mkdir_path, 0, sizeof(mkdir_path));
1122 memset(settings_file, 0, sizeof(settings_file));
Mohd Faraz36072652022-06-18 22:51:55 +02001123 sprintf(mkdir_path, "%s%s", GetSettingsStoragePath().c_str(), GetStrValue(TW_RECOVERY_NAME).c_str());
Captain Throwback7c568a12023-09-13 16:04:42 -04001124 sprintf(settings_file, "%s%s", mkdir_path, TW_SETTINGS_FILE);
Dees_Troy51a0e822012-09-05 15:24:24 -04001125
Dees_Troy5bf43922012-09-07 16:07:55 -04001126 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001127 {
1128 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001129 if (!PartitionManager.Mount_Settings_Storage(false))
Ethan Yonker74db1572015-10-28 12:44:49 -05001130 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(settings_file));
Dees_Troy51a0e822012-09-05 15:24:24 -04001131 }
1132
1133 mkdir(mkdir_path, 0777);
1134
Dees_Troy2673cec2013-04-02 20:22:16 +00001135 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001136 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001137 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001138#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001139 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001140 update_tz_environment_variables();
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001141 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy51a0e822012-09-05 15:24:24 -04001142}
1143
1144string DataManager::GetCurrentStoragePath(void)
1145{
Dees_Troya13d74f2013-03-24 08:54:55 -05001146 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001147}
1148
Dees_Troy51a0e822012-09-05 15:24:24 -04001149string DataManager::GetSettingsStoragePath(void)
1150{
Dees_Troya13d74f2013-03-24 08:54:55 -05001151 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001152}
1153
Ethan Yonkerfe916112016-03-14 14:54:37 -05001154void DataManager::Vibrate(const string& varName)
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001155{
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001156#ifndef TW_NO_HAPTICS
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001157 int vib_value = 0;
1158 GetValue(varName, vib_value);
1159 if (vib_value) {
1160 vibrate(vib_value);
1161 }
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001162#endif
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001163}
epicXa721f952021-01-04 13:01:31 +05301164
1165
1166void DataManager::LoadTWRPFolderInfo(void)
1167{
epicXa721f952021-01-04 13:01:31 +05301168 SetValue(TW_RECOVERY_FOLDER_VAR, TWFunc::Check_For_TwrpFolder());
Mohd Faraz36072652022-06-18 22:51:55 +02001169 mBackingFile = GetSettingsStoragePath() + GetStrValue(TW_RECOVERY_NAME) + '/' + TW_SETTINGS_FILE;
nebrassyac29e692021-05-20 13:03:30 +02001170}