blob: ffb9b420d2bbfde5f2dff97e50e87f4f7beada1d [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;
94 char line[2048];
Matt Mowere9260742015-02-22 20:20:18 -060095 char hardware_id[HWID_MAX] = { 0 };
96 char device_id[DEVID_MAX] = { 0 };
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040097 char* token;
98
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070099#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
Matt Mowere9260742015-02-22 20:20:18 -0600100 // Use (product_model)_(hardware_id) as device id
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700101 char model_id[PROPERTY_VALUE_MAX];
102 property_get("ro.product.model", model_id, "error");
Matt Mowere9260742015-02-22 20:20:18 -0600103 if (strcmp(model_id, "error") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000104 LOGINFO("=> product model: '%s'\n", model_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700105 // Replace spaces with underscores
Matt Mower23d8aae2017-01-06 14:30:33 -0600106 for (size_t i = 0; i < strlen(model_id); i++) {
Matt Mowere9260742015-02-22 20:20:18 -0600107 if (model_id[i] == ' ')
108 model_id[i] = '_';
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700109 }
Matt Mowere9260742015-02-22 20:20:18 -0600110 snprintf(device_id, DEVID_MAX, "%s", model_id);
111
112 if (strlen(device_id) < DEVID_MAX) {
113 fp = fopen("proc_cpuinfo.txt", "rt");
114 if (fp != NULL) {
115 while (fgets(line, sizeof(line), fp) != NULL) {
116 if (memcmp(line, CPUINFO_HARDWARE,
117 CPUINFO_HARDWARE_LEN) == 0) {
118 // skip past "Hardware", spaces, and colon
119 token = line + CPUINFO_HARDWARE_LEN;
120 while (*token && (!isgraph(*token) || *token == ':'))
121 token++;
122
123 if (*token && *token != '\n'
124 && strcmp("UNKNOWN\n", token)) {
125 snprintf(hardware_id, HWID_MAX, "%s", token);
126 if (hardware_id[strlen(hardware_id)-1] == '\n')
127 hardware_id[strlen(hardware_id)-1] = 0;
128 LOGINFO("=> hardware id from cpuinfo: '%s'\n",
129 hardware_id);
130 }
131 break;
132 }
133 }
134 fclose(fp);
135 }
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700136 }
Matt Mowere9260742015-02-22 20:20:18 -0600137
138 if (hardware_id[0] != 0)
139 snprintf(device_id, DEVID_MAX, "%s_%s", model_id, hardware_id);
140
141 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500142 mConst.SetValue("device_id", device_id);
Dees_Troy2673cec2013-04-02 20:22:16 +0000143 LOGINFO("=> using device id: '%s'\n", device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700144 return;
145 }
146#endif
147
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400148#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
lambdadroidfc0b16d2017-08-04 17:16:53 +0200149#ifdef TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
150 // Check serial number system property
151 if (property_get("ro.serialno", line, "")) {
152 snprintf(device_id, DEVID_MAX, "%s", line);
153 sanitize_device_id(device_id);
154 mConst.SetValue("device_id", device_id);
155 return;
156 }
157#endif
158
Matt Mowere9260742015-02-22 20:20:18 -0600159 // Check the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400160 fp = fopen("/proc/cmdline", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600161 if (fp != NULL) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200162 fgets(line, sizeof(line), fp);
Matt Mowere9260742015-02-22 20:20:18 -0600163 fclose(fp); // cmdline is only one line long
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400164
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200165 token = strtok(line, " ");
Matt Mowere9260742015-02-22 20:20:18 -0600166 while (token) {
167 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0) {
168 token += CMDLINE_SERIALNO_LEN;
169 snprintf(device_id, DEVID_MAX, "%s", token);
170 sanitize_device_id(device_id); // also removes newlines
Ethan Yonkerfe916112016-03-14 14:54:37 -0500171 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200172 return;
173 }
174 token = strtok(NULL, " ");
175 }
176 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400177#endif
Matt Mowere9260742015-02-22 20:20:18 -0600178 // Check cpuinfo for serial number; if found, use as device_id
179 // If serial number is not found, fallback to hardware_id for the device_id
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400180 fp = fopen("/proc/cpuinfo", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600181 if (fp != NULL) {
182 while (fgets(line, sizeof(line), fp) != NULL) {
183 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) {
184 // skip past "Serial", spaces, and colon
185 token = line + CPUINFO_SERIALNO_LEN;
186 while (*token && (!isgraph(*token) || *token == ':'))
187 token++;
188
189 if (*token && *token != '\n') {
190 snprintf(device_id, DEVID_MAX, "%s", token);
191 sanitize_device_id(device_id); // also removes newlines
Dees_Troy2673cec2013-04-02 20:22:16 +0000192 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500193 mConst.SetValue("device_id", device_id);
Matt Mowere9260742015-02-22 20:20:18 -0600194 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400195 return;
196 }
Matt Mowere9260742015-02-22 20:20:18 -0600197 } else if (memcmp(line, CPUINFO_HARDWARE,
198 CPUINFO_HARDWARE_LEN) == 0) {
199 // skip past "Hardware", spaces, and colon
200 token = line + CPUINFO_HARDWARE_LEN;
201 while (*token && (!isgraph(*token) || *token == ':'))
202 token++;
203
204 if (*token && *token != '\n') {
205 snprintf(hardware_id, HWID_MAX, "%s", token);
206 if (hardware_id[strlen(hardware_id)-1] == '\n')
207 hardware_id[strlen(hardware_id)-1] = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000208 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400209 }
210 }
211 }
212 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200213 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400214
215 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000216 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Matt Mowere9260742015-02-22 20:20:18 -0600217 snprintf(device_id, DEVID_MAX, "%s", hardware_id);
218 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500219 mConst.SetValue("device_id", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400220 return;
221 }
222
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200223 strcpy(device_id, "serialno");
Ethan Yonker74db1572015-10-28 12:44:49 -0500224 LOGINFO("=> device id not found, using '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500225 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200226 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400227}
228
Dees_Troy51a0e822012-09-05 15:24:24 -0400229int DataManager::ResetDefaults()
230{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100231 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500232 mPersist.Clear();
233 mData.Clear();
234 mConst.Clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100235 pthread_mutex_unlock(&m_valuesLock);
236
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200237 SetDefaultValues();
238 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400239}
240
Ethan Yonkerfe916112016-03-14 14:54:37 -0500241int DataManager::LoadValues(const string& filename)
Dees_Troy51a0e822012-09-05 15:24:24 -0400242{
nkk7198fc3992017-12-16 16:26:42 +0200243 string dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400244
245 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200246 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400247
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200248 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400249 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200250 mBackingFile = filename;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500251 mPersist.SetFile(filename);
252 mPersist.SetFileVersion(FILE_VERSION);
Dees_Troy51a0e822012-09-05 15:24:24 -0400253
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200254 // Read in the file, if possible
Ethan Yonkerfe916112016-03-14 14:54:37 -0500255 pthread_mutex_lock(&m_valuesLock);
256 mPersist.LoadValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100257
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700258#ifndef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500259 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700260#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500261
262 pthread_mutex_unlock(&m_valuesLock);
Dees_Troya13d74f2013-03-24 08:54:55 -0500263 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500264 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Matt Mowera8a89d12016-12-30 18:10:37 -0600265 if (!Part)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200266 Part = PartitionManager.Get_Default_Storage_Partition();
267 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500268 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
269 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500270 } else {
271 SetBackupFolder();
272 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200273 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400274}
275
276int DataManager::Flush()
277{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200278 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400279}
280
281int DataManager::SaveValues()
282{
Ethan Yonker83e82572014-04-04 10:59:28 -0500283#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200284 if (mBackingFile.empty())
285 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400286
287 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400288 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400289
Ethan Yonkerfe916112016-03-14 14:54:37 -0500290 mPersist.SetFile(mBackingFile);
291 mPersist.SetFileVersion(FILE_VERSION);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100292 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500293 mPersist.SaveValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100294 pthread_mutex_unlock(&m_valuesLock);
295
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600296 tw_set_default_metadata(mBackingFile.c_str());
nkk7198fc3992017-12-16 16:26:42 +0200297 LOGINFO("Saved settings file values to '%s'\n", mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500298#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200299 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400300}
301
Ethan Yonkerfe916112016-03-14 14:54:37 -0500302int DataManager::GetValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400303{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200304 string localStr = varName;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500305 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400306
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200307 if (!mInitialized)
308 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400309
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200310 // Strip off leading and trailing '%' if provided
311 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
312 {
313 localStr.erase(0, 1);
314 localStr.erase(localStr.length() - 1, 1);
315 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400316
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200317 // Handle magic values
318 if (GetMagicValue(localStr, value) == 0)
319 return 0;
Xuefera163f152015-03-26 22:45:04 +0800320
321 // Handle property
322 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
323 char property_value[PROPERTY_VALUE_MAX];
324 property_get(localStr.substr(9).c_str(), property_value, "");
325 value = property_value;
326 return 0;
327 }
328
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100329 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500330 ret = mConst.GetValue(localStr, value);
331 if (ret == 0)
332 goto exit;
Dees_Troy51a0e822012-09-05 15:24:24 -0400333
Ethan Yonkerfe916112016-03-14 14:54:37 -0500334 ret = mPersist.GetValue(localStr, value);
335 if (ret == 0)
336 goto exit;
337
338 ret = mData.GetValue(localStr, value);
339exit:
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100340 pthread_mutex_unlock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500341 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400342}
343
Ethan Yonkerfe916112016-03-14 14:54:37 -0500344int DataManager::GetValue(const string& varName, int& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400345{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200346 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400347
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200348 if (GetValue(varName,data) != 0)
349 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400350
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200351 value = atoi(data.c_str());
352 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400353}
354
Ethan Yonkerfe916112016-03-14 14:54:37 -0500355int DataManager::GetValue(const string& varName, float& value)
Dees_Troy2673cec2013-04-02 20:22:16 +0000356{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200357 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000358
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200359 if (GetValue(varName,data) != 0)
360 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000361
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200362 value = atof(data.c_str());
363 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000364}
365
nkk7198fc3992017-12-16 16:26:42 +0200366int DataManager::GetValue(const string& varName, unsigned long long& value)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500367{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200368 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500369
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200370 if (GetValue(varName,data) != 0)
371 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500372
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200373 value = strtoull(data.c_str(), NULL, 10);
374 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500375}
376
Dees_Troy51a0e822012-09-05 15:24:24 -0400377// This function will return an empty string if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500378string DataManager::GetStrValue(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 retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400384}
385
386// This function will return 0 if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500387int DataManager::GetIntValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400388{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200389 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400390
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200391 GetValue(varName, retVal);
392 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400393}
394
Ethan Yonkerfe916112016-03-14 14:54:37 -0500395int DataManager::SetValue(const string& varName, const string& value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400396{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200397 if (!mInitialized)
398 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400399
Xuefera163f152015-03-26 22:45:04 +0800400 // Handle property
401 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
402 int ret = property_set(varName.substr(9).c_str(), value.c_str());
403 if (ret)
404 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
405 return ret;
406 }
407
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200408 // Don't allow empty values or numerical starting values
409 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
410 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400411
Ethan Yonkerfe916112016-03-14 14:54:37 -0500412 string test;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100413 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500414 int constChk = mConst.GetValue(varName, test);
415 if (constChk == 0) {
416 pthread_mutex_unlock(&m_valuesLock);
417 return -1;
418 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100419
Ethan Yonkerfe916112016-03-14 14:54:37 -0500420 if (persist) {
421 mPersist.SetValue(varName, value);
422 } else {
423 int persistChk = mPersist.GetValue(varName, test);
424 if (persistChk == 0) {
425 mPersist.SetValue(varName, value);
426 } else {
427 mData.SetValue(varName, value);
428 }
429 }
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700430
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100431 pthread_mutex_unlock(&m_valuesLock);
432
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700433#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500434 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600435 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700436 } else
437#endif
438 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500439 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500440 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500441 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200442 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400443}
444
Ethan Yonkerfe916112016-03-14 14:54:37 -0500445int DataManager::SetValue(const string& varName, const int value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400446{
447 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200448 valStr << value;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200449 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400450}
451
Ethan Yonkerfe916112016-03-14 14:54:37 -0500452int DataManager::SetValue(const string& varName, const float value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400453{
454 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200455 valStr << value;
456 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400457}
458
Ethan Yonkerfe916112016-03-14 14:54:37 -0500459int DataManager::SetValue(const string& varName, const unsigned long long& value, const int persist /* = 0 */)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500460{
461 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200462 valStr << value;
463 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500464}
465
Chaosmasterd5364a02020-02-03 15:38:02 +0100466// For legacy code that doesn't set a scope
Ethan Yonkerfe916112016-03-14 14:54:37 -0500467int DataManager::SetProgress(const float Fraction) {
Chaosmasterd5364a02020-02-03 15:38:02 +0100468 if (SetValue("ui_portion_size", 0) != 0)
469 return -1;
470 if (SetValue("ui_portion_start", 0) != 0)
471 return -1;
472 ShowProgress(1, 0);
473 int res = _SetProgress(Fraction);
474 if (SetValue("ui_portion_size", 0) != 0)
475 return -1;
476 if (SetValue("ui_portion_start", 0) != 0)
477 return -1;
478 return res;
Dees_Troy2673cec2013-04-02 20:22:16 +0000479}
480
Chaosmasterd5364a02020-02-03 15:38:02 +0100481int DataManager::_SetProgress(float Fraction) {
482 float Portion_Start, Portion_Size;
483 GetValue("ui_portion_size", Portion_Size);
484 GetValue("ui_portion_start", Portion_Start);
485 //LOGINFO("SetProgress(%.2lf): Portion_Size: %.2lf Portion_Start: %.2lf\n", Fraction, Portion_Size, Portion_Start);
486 if (Fraction < 0.0)
487 Fraction = 0;
488 if (Fraction > 1.0)
489 Fraction = 1;
490 if (SetValue("ui_progress", (float) ((Portion_Start + (Portion_Size * Fraction)) * 100.0)) != 0)
491 return -1;
492 return (SetValue("ui_progress_portion", 0) != 0);
493}
494
495int DataManager::ShowProgress(float Portion, const float Seconds)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200496{
Chaosmasterd5364a02020-02-03 15:38:02 +0100497 float Portion_Start, Portion_Size;
498 GetValue("ui_portion_size", Portion_Size);
499 GetValue("ui_portion_start", Portion_Start);
500 Portion_Start += Portion_Size;
501 if(Portion + Portion_Start > 1.0)
502 Portion = 1.0 - Portion_Start;
503 //LOGINFO("ShowProgress(%.2lf, %.2lf): Portion_Start: %.2lf\n", Portion, Seconds, Portion_Start);
504 if (SetValue("ui_portion_start", Portion_Start) != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000505 return -1;
Chaosmasterd5364a02020-02-03 15:38:02 +0100506 if (SetValue("ui_portion_size", Portion) != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000507 return -1;
Chaosmasterd5364a02020-02-03 15:38:02 +0100508 if (SetValue("ui_progress", (float)(Portion_Start * 100.0)) != 0)
509 return -1;
510 if(Seconds) {
511 if (SetValue("ui_progress_portion", (float)((Portion * 100.0) + Portion_Start)) != 0)
512 return -1;
513 if (SetValue("ui_progress_frames", Seconds * 48) != 0)
514 return -1;
515 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000516 return 0;
517}
518
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200519void DataManager::update_tz_environment_variables(void)
520{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100521 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200522 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400523}
524
Dees_Troy16b74352012-11-14 22:27:31 +0000525void DataManager::SetBackupFolder()
526{
527 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500528 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
epicXaaddbe02021-01-04 13:01:31 +0530529 str += TWFunc::Check_For_TwrpFolder() + "/BACKUPS/";
Dees_Troy16b74352012-11-14 22:27:31 +0000530
531 string dev_id;
532 GetValue("device_id", dev_id);
533
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200534 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000535 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000536 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500537 if (partition != NULL) {
538 SetValue("tw_storage_display_name", partition->Storage_Name);
539 char free_space[255];
540 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
541 SetValue("tw_storage_free_size", free_space);
542 string zip_path, zip_root, storage_path;
543 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
Ethan Yonkereadfd2e2016-02-18 22:04:18 -0600544 if (partition->Has_Data_Media && !partition->Symlink_Mount_Point.empty())
Dees_Troya13d74f2013-03-24 08:54:55 -0500545 storage_path = partition->Symlink_Mount_Point;
546 else
547 storage_path = partition->Storage_Path;
548 if (zip_path.size() < storage_path.size()) {
549 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
550 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000551 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500552 if (zip_root != storage_path) {
553 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 -0500554 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500555 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500556 }
557 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500558 if (PartitionManager.Fstab_Processed() != 0) {
559 LOGINFO("Storage partition '%s' not found\n", str.c_str());
560 gui_err("unable_locate_storage=Unable to locate storage device.");
561 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500562 }
Dees_Troy16b74352012-11-14 22:27:31 +0000563}
564
Dees_Troy51a0e822012-09-05 15:24:24 -0400565void DataManager::SetDefaultValues()
566{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200567 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400568
Ethan Yonkerfe916112016-03-14 14:54:37 -0500569 mConst.SetConst();
570
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200571 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400572
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100573 pthread_mutex_lock(&m_valuesLock);
574
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200575 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400576
Ethan Yonkerfe916112016-03-14 14:54:37 -0500577 mConst.SetValue("true", "1");
578 mConst.SetValue("false", "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400579
Ethan Yonkerfe916112016-03-14 14:54:37 -0500580 mConst.SetValue(TW_VERSION_VAR, TW_VERSION_STR);
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400581
582#ifndef TW_NO_HAPTICS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500583 mPersist.SetValue("tw_button_vibrate", "80");
584 mPersist.SetValue("tw_keyboard_vibrate", "40");
585 mPersist.SetValue("tw_action_vibrate", "160");
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400586 mConst.SetValue("tw_disable_haptics", "0");
587#else
588 LOGINFO("TW_NO_HAPTICS := true\n");
589 mConst.SetValue("tw_disable_haptics", "1");
590#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400591
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200592 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
Matt Mowera8a89d12016-12-30 18:10:37 -0600593 if (store)
Ethan Yonkerfe916112016-03-14 14:54:37 -0500594 mPersist.SetValue("tw_storage_path", store->Storage_Path);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200595 else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500596 mPersist.SetValue("tw_storage_path", "/");
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200597
Dees_Troyf4499812013-01-23 19:07:38 +0000598#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
599 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
600#endif
601
Dees_Troy51a0e822012-09-05 15:24:24 -0400602#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000603 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500604 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400605#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500606 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400607#endif
608
609#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000610 printf("TW_INCLUDE_DUMLOCK := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500611 mConst.SetValue(TW_SHOW_DUMLOCK, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400612#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500613 mConst.SetValue(TW_SHOW_DUMLOCK, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400614#endif
615
epicXaaddbe02021-01-04 13:01:31 +0530616 mData.SetValue(TW_RECOVERY_FOLDER_VAR, TW_DEFAULT_RECOVERY_FOLDER);
617
Dees_Troy51a0e822012-09-05 15:24:24 -0400618 str = GetCurrentStoragePath();
Ethan Yonkerfe916112016-03-14 14:54:37 -0500619 mPersist.SetValue(TW_ZIP_LOCATION_VAR, str);
epicXaaddbe02021-01-04 13:01:31 +0530620 str += DataManager::GetStrValue(TW_RECOVERY_FOLDER_VAR) + "/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400621
622 string dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500623 mConst.GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400624
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200625 str += dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500626 mData.SetValue(TW_BACKUPS_FOLDER_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400627
Ethan Yonkerfe916112016-03-14 14:54:37 -0500628 mConst.SetValue(TW_REBOOT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400629#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100630 printf("TW_NO_REBOOT_RECOVERY := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500631 mConst.SetValue(TW_REBOOT_RECOVERY, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400632#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500633 mConst.SetValue(TW_REBOOT_RECOVERY, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400634#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500635 mConst.SetValue(TW_REBOOT_POWEROFF, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400636#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100637 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500638 mConst.SetValue(TW_REBOOT_BOOTLOADER, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400639#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500640 mConst.SetValue(TW_REBOOT_BOOTLOADER, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400641#endif
642#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000643 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500644 mConst.SetValue(TW_HAS_DATA_MEDIA, "1");
Ethan Yonker6277c792014-09-15 14:54:30 -0500645 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400646#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500647 mData.SetValue(TW_HAS_DATA_MEDIA, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400648#endif
649#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000650 printf("TW_NO_BATT_PERCENT := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500651 mConst.SetValue(TW_NO_BATTERY_PERCENT, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400652#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500653 mConst.SetValue(TW_NO_BATTERY_PERCENT, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400654#endif
Jenkins1710bf22014-10-02 20:22:21 -0400655#ifdef TW_NO_CPU_TEMP
656 printf("TW_NO_CPU_TEMP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500657 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400658#else
659 string cpu_temp_file;
660#ifdef TW_CUSTOM_CPU_TEMP_PATH
661 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
662#else
663 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
664#endif
665 if (TWFunc::Path_Exists(cpu_temp_file)) {
Ethan Yonkerfe916112016-03-14 14:54:37 -0500666 mConst.SetValue("tw_no_cpu_temp", "0");
Jenkins1710bf22014-10-02 20:22:21 -0400667 } else {
668 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500669 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400670 }
671#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400672#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000673 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Ethan Yonkerfe916112016-03-14 14:54:37 -0500674 mConst.SetValue(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400675#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500676 mConst.SetValue(TW_POWER_BUTTON, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400677#endif
678#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000679 printf("TW_ALWAYS_RMRF := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500680 mConst.SetValue(TW_RM_RF_VAR, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400681#endif
682#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000683 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500684 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400685#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500686 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400687#endif
688#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000689 printf("TW_NO_USB_STORAGE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500690 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400691#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000692 char lun_file[255];
693 string Lun_File_str = CUSTOM_LUN_FILE;
694 size_t found = Lun_File_str.find("%");
695 if (found != string::npos) {
696 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
697 Lun_File_str = lun_file;
698 }
699 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000700 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500701 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy6a042c82013-01-23 18:50:52 +0000702 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000703 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500704 mData.SetValue(TW_HAS_USB_STORAGE, "1");
Dees_Troy6a042c82013-01-23 18:50:52 +0000705 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400706#endif
707#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000708 printf("TW_INCLUDE_INJECTTWRP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500709 mConst.SetValue(TW_HAS_INJECTTWRP, "1");
710 mPersist(TW_INJECT_AFTER_ZIP, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400711#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500712 mConst.SetValue(TW_HAS_INJECTTWRP, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400713#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400714#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000715 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500716 mConst.SetValue(TW_DOWNLOAD_MODE, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400717#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200718#ifdef TW_HAS_EDL_MODE
719 printf("TW_HAS_EDL_MODE := true\n");
720 mConst.SetValue(TW_EDL_MODE, "1");
721#endif
bigbiffdf8436b2020-08-30 16:22:34 -0400722#ifdef PRODUCT_USE_DYNAMIC_PARTITIONS
723 printf("PRODUCT_USE_DYNAMIC_PARTITIONS := true\n");
724 mConst.SetValue(TW_FASTBOOT_MODE, "1");
725#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400726#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerfe916112016-03-14 14:54:37 -0500727 mConst.SetValue(TW_HAS_CRYPTO, "1");
Dees_Troyf4499812013-01-23 19:07:38 +0000728 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400729#endif
730#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000731 printf("TW_SDEXT_NO_EXT4 := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500732 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400733#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500734 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400735#endif
736
Dees_Troya13d74f2013-03-24 08:54:55 -0500737#ifdef TW_HAS_NO_BOOT_PARTITION
Ethan Yonkerfe916112016-03-14 14:54:37 -0500738 mPersist.SetValue("tw_backup_list", "/system;/data;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500739#else
bigbiffee7b7ff2020-03-23 15:08:27 -0400740#ifdef PRODUCT_USE_DYNAMIC_PARTITIONS
741 mPersist.SetValue("tw_backup_list", "/data;");
742#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500743 mPersist.SetValue("tw_backup_list", "/system;/data;/boot;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500744#endif
bigbiffee7b7ff2020-03-23 15:08:27 -0400745#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500746 mConst.SetValue(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE);
747 mData.SetValue(TW_BACKUP_NAME, "(Auto Generate)");
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500748
Matt Mower8dc25b72016-04-25 23:06:53 -0500749 mPersist.SetValue(TW_INSTALL_REBOOT_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500750 mPersist.SetValue(TW_SIGNED_ZIP_VERIFY_VAR, "0");
Matt Mowerbfccfb82016-04-25 23:22:31 -0500751 mPersist.SetValue(TW_DISABLE_FREE_SPACE_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400752 mPersist.SetValue(TW_FORCE_DIGEST_CHECK_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500753 mPersist.SetValue(TW_USE_COMPRESSION_VAR, "0");
754 mPersist.SetValue(TW_TIME_ZONE_VAR, "CST6CDT,M3.2.0,M11.1.0");
755 mPersist.SetValue(TW_GUI_SORT_ORDER, "1");
756 mPersist.SetValue(TW_RM_RF_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400757 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_VAR, "0");
epicX646f4f02021-03-20 21:58:17 +0530758 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_ZIP_VAR, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400759 mPersist.SetValue(TW_SKIP_DIGEST_GENERATE_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500760 mPersist.SetValue(TW_SDEXT_SIZE, "0");
761 mPersist.SetValue(TW_SWAP_SIZE, "0");
762 mPersist.SetValue(TW_SDPART_FILE_SYSTEM, "ext3");
763 mPersist.SetValue(TW_TIME_ZONE_GUISEL, "CST6;CDT,M3.2.0,M11.1.0");
764 mPersist.SetValue(TW_TIME_ZONE_GUIOFFSET, "0");
765 mPersist.SetValue(TW_TIME_ZONE_GUIDST, "1");
766 mData.SetValue(TW_ACTION_BUSY, "0");
767 mData.SetValue("tw_wipe_cache", "0");
768 mData.SetValue("tw_wipe_dalvik", "0");
769 mData.SetValue(TW_ZIP_INDEX, "0");
770 mData.SetValue(TW_ZIP_QUEUE_COUNT, "0");
771 mData.SetValue(TW_FILENAME, "/sdcard");
772 mData.SetValue(TW_SIMULATE_ACTIONS, "0");
773 mData.SetValue(TW_SIMULATE_FAIL, "0");
774 mData.SetValue(TW_IS_ENCRYPTED, "0");
775 mData.SetValue(TW_IS_DECRYPTED, "0");
776 mData.SetValue(TW_CRYPTO_PASSWORD, "0");
777 mData.SetValue("tw_terminal_state", "0");
778 mData.SetValue("tw_background_thread_running", "0");
779 mData.SetValue(TW_RESTORE_FILE_DATE, "0");
780 mPersist.SetValue("tw_military_time", "0");
bigbiffee7b7ff2020-03-23 15:08:27 -0400781 mData.SetValue(TW_IS_SUPER, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400782
783#ifdef TW_INCLUDE_CRYPTO
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400784 mPersist.SetValue(TW_USE_SHA2, "1");
785 mPersist.SetValue(TW_NO_SHA2, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400786#else
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400787 mPersist.SetValue(TW_NO_SHA2, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400788#endif
Chaosmasterff4f9582020-01-26 15:38:11 +0100789 mPersist.SetValue(TW_UNMOUNT_SYSTEM, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400790
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700791#ifdef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500792 mConst.SetValue("tw_screen_timeout_secs", "0");
793 mConst.SetValue("tw_no_screen_timeout", "1");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700794#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500795 mPersist.SetValue("tw_screen_timeout_secs", "60");
796 mPersist.SetValue("tw_no_screen_timeout", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700797#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500798 mData.SetValue("tw_gui_done", "0");
799 mData.SetValue("tw_encrypt_backup", "0");
Matt Mower9a2a2052016-05-31 21:31:22 -0500800 mData.SetValue("tw_sleep_total", "5");
801 mData.SetValue("tw_sleep", "5");
bigbiffdf8436b2020-08-30 16:22:34 -0400802 mData.SetValue("tw_enable_fastboot", "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500803
804 // Brightness handling
Ethan Yonker00028b42014-04-09 14:29:02 -0500805 string findbright;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900806#ifdef TW_BRIGHTNESS_PATH
807 findbright = EXPAND(TW_BRIGHTNESS_PATH);
808 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
809 if (!TWFunc::Path_Exists(findbright)) {
810 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
811 findbright = "";
Ethan Yonker00028b42014-04-09 14:29:02 -0500812 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900813#endif
Ethan Yonker00028b42014-04-09 14:29:02 -0500814 if (findbright.empty()) {
815 // Attempt to locate the brightness file
816 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500817 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500818 }
819 if (findbright.empty()) {
820 LOGINFO("Unable to locate brightness file\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500821 mConst.SetValue("tw_has_brightnesss_file", "0");
Ethan Yonker00028b42014-04-09 14:29:02 -0500822 } else {
823 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500824 mConst.SetValue("tw_has_brightnesss_file", "1");
825 mConst.SetValue("tw_brightness_file", findbright);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900826 string maxBrightness;
827#ifdef TW_MAX_BRIGHTNESS
Vojtech Bocek85932342013-04-01 22:11:33 +0200828 ostringstream maxVal;
829 maxVal << TW_MAX_BRIGHTNESS;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900830 maxBrightness = maxVal.str();
831#else
832 // Attempt to locate the max_brightness file
833 string maxbrightpath = findbright.insert(findbright.rfind('/') + 1, "max_");
834 if (TWFunc::Path_Exists(maxbrightpath)) {
Ethan Yonker72a85202016-01-22 11:45:06 -0600835 ifstream maxVal(maxbrightpath.c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -0600836 if (maxVal >> maxBrightness) {
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900837 LOGINFO("Got max brightness %s from '%s'\n", maxBrightness.c_str(), maxbrightpath.c_str());
838 } else {
839 // Something went wrong, set that to indicate error
840 maxBrightness = "-1";
841 }
842 }
Ethan Yonker72a85202016-01-22 11:45:06 -0600843 if (atoi(maxBrightness.c_str()) <= 0)
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900844 {
845 // Fallback into default
846 ostringstream maxVal;
847 maxVal << 255;
848 maxBrightness = maxVal.str();
849 }
850#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500851 mConst.SetValue("tw_brightness_max", maxBrightness);
852 mPersist.SetValue("tw_brightness", maxBrightness);
853 mPersist.SetValue("tw_brightness_pct", "100");
xNUTxe85f02d2014-07-18 01:30:58 +0200854#ifdef TW_SECONDARY_BRIGHTNESS_PATH
855 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
856 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
857 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500858 mConst.SetValue("tw_secondary_brightness_file", secondfindbright);
xNUTxe85f02d2014-07-18 01:30:58 +0200859 } else {
860 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
861 }
862#endif
Greg Wallace36ade452015-11-08 13:54:25 -0500863#ifdef TW_DEFAULT_BRIGHTNESS
864 int defValInt = TW_DEFAULT_BRIGHTNESS;
Ethan Yonker72a85202016-01-22 11:45:06 -0600865 int maxValInt = atoi(maxBrightness.c_str());
Greg Wallace36ade452015-11-08 13:54:25 -0500866 // Deliberately int so the % is always a whole number
867 int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
868 ostringstream defPct;
869 defPct << defPctInt;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500870 mPersist.SetValue("tw_brightness_pct", defPct.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500871
872 ostringstream defVal;
873 defVal << TW_DEFAULT_BRIGHTNESS;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500874 mPersist.SetValue("tw_brightness", defVal.str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900875 TWFunc::Set_Brightness(defVal.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500876#else
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900877 TWFunc::Set_Brightness(maxBrightness);
Greg Wallace36ade452015-11-08 13:54:25 -0500878#endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600879 }
Ethan Yonkerfe916112016-03-14 14:54:37 -0500880
Dees_Troy83bd4832013-05-04 12:39:56 +0000881#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500882 mConst.SetValue("tw_include_encrypted_backup", "1");
Dees_Troy83bd4832013-05-04 12:39:56 +0000883#else
884 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500885 mConst.SetValue("tw_include_encrypted_backup", "0");
Dees_Troy83bd4832013-05-04 12:39:56 +0000886#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400887#ifdef TW_HAS_MTP
Ethan Yonkerfe916112016-03-14 14:54:37 -0500888 mConst.SetValue("tw_has_mtp", "1");
889 mPersist.SetValue("tw_mtp_enabled", "1");
890 mPersist.SetValue("tw_mtp_debug", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400891#else
892 LOGINFO("TW_EXCLUDE_MTP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500893 mConst.SetValue("tw_has_mtp", "0");
894 mConst.SetValue("tw_mtp_enabled", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400895#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500896 mPersist.SetValue("tw_mount_system_ro", "2");
897 mPersist.SetValue("tw_never_show_system_ro_page", "0");
898 mPersist.SetValue("tw_language", EXPAND(TW_DEFAULT_LANGUAGE));
Ethan Yonker74db1572015-10-28 12:44:49 -0500899 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100900
Ethan Yonkerfe916112016-03-14 14:54:37 -0500901 mData.SetValue("tw_has_adopted_storage", "0");
Ethan Yonker66a19492015-12-10 10:19:45 -0600902
Ethan Yonker1b190162016-12-05 15:25:19 -0600903#ifdef AB_OTA_UPDATER
904 LOGINFO("AB_OTA_UPDATER := true\n");
905 mConst.SetValue("tw_has_boot_slots", "1");
906#else
907 mConst.SetValue("tw_has_boot_slots", "0");
908#endif
nkk71b4c35912017-10-11 23:39:10 +0300909
Ethan Yonker75aa6152017-09-08 12:17:03 -0500910#ifdef TW_NO_LEGACY_PROPS
911 LOGINFO("TW_NO_LEGACY_PROPS := true\n");
Ethan Yonker75aa6152017-09-08 12:17:03 -0500912#endif
nkk71b4c35912017-10-11 23:39:10 +0300913
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600914#ifdef TW_OEM_BUILD
915 LOGINFO("TW_OEM_BUILD := true\n");
916 mConst.SetValue("tw_oem_build", "1");
Ethan Yonker76bbd3a2019-05-10 10:50:04 -0500917 mConst.SetValue("tw_app_installed_in_system", "0");
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600918#else
919 mConst.SetValue("tw_oem_build", "0");
920 mPersist.SetValue("tw_app_prompt", "1");
921 mPersist.SetValue("tw_app_install_system", "1");
922 mData.SetValue("tw_app_install_status", "0"); // 0 = no status, 1 = not installed, 2 = already installed
Ethan Yonker76bbd3a2019-05-10 10:50:04 -0500923 mData.SetValue("tw_app_installed_in_system", "0");
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600924#endif
Captain Throwback51de3b62021-02-12 19:32:36 -0500925#ifndef TW_EXCLUDE_NANO
926 mConst.SetValue("tw_include_nano", "1");
927#else
928 LOGINFO("TW_EXCLUDE_NANO := true\n");
929 mConst.SetValue("tw_include_nano", "0");
930#endif
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600931
epicX374c82f2021-02-24 23:12:08 +0530932 mData.SetValue("tw_flash_both_slots", "0");
933 mData.SetValue("tw_is_slot_part", "0");
934
Ethan Yonker53796e72019-01-11 22:49:52 -0600935 mData.SetValue("tw_enable_adb_backup", "0");
936
bigbiffad58e1b2020-07-06 20:24:34 -0400937 if (TWFunc::Path_Exists("/system/bin/magiskboot"))
Ethan Yonker53796e72019-01-11 22:49:52 -0600938 mConst.SetValue("tw_has_repack_tools", "1");
939 else
940 mConst.SetValue("tw_has_repack_tools", "0");
jason972000adae3362017-12-08 09:08:45 -0600941
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100942 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400943}
944
945// Magic Values
Ethan Yonkerfe916112016-03-14 14:54:37 -0500946int DataManager::GetMagicValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400947{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200948 // Handle special dynamic cases
949 if (varName == "tw_time")
950 {
951 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400952
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200953 struct tm *current;
954 time_t now;
955 int tw_military_time;
956 now = time(0);
957 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500958 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200959 if (current->tm_hour >= 12)
960 {
961 if (tw_military_time == 1)
962 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
963 else
964 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500965 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500966 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200967 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500968 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200969 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
970 else
971 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
972 }
973 value = tmp;
974 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500975 }
Jenkins1710bf22014-10-02 20:22:21 -0400976 else if (varName == "tw_cpu_temp")
977 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600978 int tw_no_cpu_temp;
979 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
980 if (tw_no_cpu_temp == 1) return -1;
Agontuka29361a2015-04-22 14:42:59 +0600981
Matt Mowera8a89d12016-12-30 18:10:37 -0600982 string cpu_temp_file;
983 static unsigned long convert_temp = 0;
984 static time_t cpuSecCheck = 0;
Matt Mowera8a89d12016-12-30 18:10:37 -0600985 struct timeval curTime;
986 string results;
Jenkins1710bf22014-10-02 20:22:21 -0400987
Matt Mowera8a89d12016-12-30 18:10:37 -0600988 gettimeofday(&curTime, NULL);
989 if (curTime.tv_sec > cpuSecCheck)
990 {
Jenkins1710bf22014-10-02 20:22:21 -0400991#ifdef TW_CUSTOM_CPU_TEMP_PATH
Matt Mowera8a89d12016-12-30 18:10:37 -0600992 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
993 if (TWFunc::read_file(cpu_temp_file, results) != 0)
994 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400995#else
Matt Mowera8a89d12016-12-30 18:10:37 -0600996 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
997 if (TWFunc::read_file(cpu_temp_file, results) != 0)
998 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400999#endif
Matt Mowera8a89d12016-12-30 18:10:37 -06001000 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
1001 if (convert_temp <= 0)
1002 convert_temp = strtoul(results.c_str(), NULL, 0);
1003 if (convert_temp >= 150)
1004 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
1005 cpuSecCheck = curTime.tv_sec + 5;
1006 }
1007 value = TWFunc::to_string(convert_temp);
1008 return 0;
Jenkins1710bf22014-10-02 20:22:21 -04001009 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001010 else if (varName == "tw_battery")
1011 {
1012 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -04001013 static char charging = ' ';
1014 static int lastVal = -1;
1015 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001016 struct timeval curTime;
1017 gettimeofday(&curTime, NULL);
1018 if (curTime.tv_sec > nextSecCheck)
1019 {
1020 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +00001021#ifdef TW_CUSTOM_BATTERY_PATH
1022 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
1023 capacity_file += "/capacity";
1024 FILE * cap = fopen(capacity_file.c_str(),"rt");
1025#else
Dees_Troy38bd7602012-09-14 13:33:53 -04001026 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +00001027#endif
Matt Mowera8a89d12016-12-30 18:10:37 -06001028 if (cap) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001029 fgets(cap_s, 4, cap);
1030 fclose(cap);
1031 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001032 if (lastVal > 100) lastVal = 101;
1033 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001034 }
Dees_Troyf33b4902013-03-01 00:51:39 +00001035#ifdef TW_CUSTOM_BATTERY_PATH
1036 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
1037 status_file += "/status";
1038 cap = fopen(status_file.c_str(),"rt");
1039#else
Dees_Troy38bd7602012-09-14 13:33:53 -04001040 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +00001041#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04001042 if (cap) {
1043 fgets(cap_s, 2, cap);
1044 fclose(cap);
1045 if (cap_s[0] == 'C')
1046 charging = '+';
1047 else
1048 charging = ' ';
1049 }
1050 nextSecCheck = curTime.tv_sec + 60;
1051 }
1052
1053 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001054 value = tmp;
1055 return 0;
1056 }
1057 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -04001058}
1059
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001060void DataManager::Output_Version(void)
1061{
Ethan Yonker89583ef2015-08-26 09:01:59 -05001062#ifndef TW_OEM_BUILD
Dees_Troy1c1ac442013-01-17 21:42:14 +00001063 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001064 char version[255];
1065
bigbiff25d25b92020-06-19 16:07:38 -04001066 std::string logDir = TWFunc::get_log_dir();
1067 if (logDir.empty()) {
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001068 LOGINFO("Unable to find cache directory\n");
1069 return;
1070 }
1071
bigbiff25d25b92020-06-19 16:07:38 -04001072 std::string recoveryLogDir = logDir + "recovery/";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001073
bigbiff25d25b92020-06-19 16:07:38 -04001074 if (logDir == CACHE_LOGS_DIR) {
1075 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001076 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy1c1ac442013-01-17 21:42:14 +00001077 return;
1078 }
Mohd Farazf9ded062020-06-06 20:50:57 +05301079
bigbiff25d25b92020-06-19 16:07:38 -04001080 if (!TWFunc::Path_Exists(recoveryLogDir)) {
1081 LOGINFO("Recreating %s folder.\n", recoveryLogDir.c_str());
1082 if (!TWFunc::Create_Dir_Recursive(recoveryLogDir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
1083 LOGERR("DataManager::Output_Version -- Unable to make %s: %s\n", recoveryLogDir.c_str(), strerror(errno));
Mohd Farazf9ded062020-06-06 20:50:57 +05301084 return;
1085 }
1086 }
Dees_Troy1c1ac442013-01-17 21:42:14 +00001087 }
bigbiff7ba75002020-04-11 20:47:09 -04001088
bigbiff25d25b92020-06-19 16:07:38 -04001089 std::string verPath = recoveryLogDir + ".version";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001090 if (TWFunc::Path_Exists(verPath)) {
1091 unlink(verPath.c_str());
1092 }
1093 FILE *fp = fopen(verPath.c_str(), "w");
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001094 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001095 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(verPath)(strerror(errno)));
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001096 return;
1097 }
1098 strcpy(version, TW_VERSION_STR);
1099 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
1100 fclose(fp);
bigbiff25d25b92020-06-19 16:07:38 -04001101 TWFunc::copy_file("/etc/recovery.fstab", recoveryLogDir + "recovery.fstab", 0644);
Dees_Troyd93bda52013-07-03 19:55:19 +00001102 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001103 sync();
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001104 LOGINFO("Version number saved to '%s'\n", verPath.c_str());
Ethan Yonker89583ef2015-08-26 09:01:59 -05001105#endif
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001106}
1107
Dees_Troy51a0e822012-09-05 15:24:24 -04001108void DataManager::ReadSettingsFile(void)
1109{
Ethan Yonker83e82572014-04-04 10:59:28 -05001110#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001111 // Load up the values for TWRP - Sleep to let the card be ready
1112 char mkdir_path[255], settings_file[255];
Matt Mower23d8aae2017-01-06 14:30:33 -06001113 int is_enc, has_data_media;
Dees_Troy51a0e822012-09-05 15:24:24 -04001114
1115 GetValue(TW_IS_ENCRYPTED, is_enc);
1116 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
Dees_Troy51a0e822012-09-05 15:24:24 -04001117
1118 memset(mkdir_path, 0, sizeof(mkdir_path));
1119 memset(settings_file, 0, sizeof(settings_file));
epicXaaddbe02021-01-04 13:01:31 +05301120 sprintf(mkdir_path, "%s%s", GetSettingsStoragePath().c_str(), GetStrValue(TW_RECOVERY_FOLDER_VAR).c_str());
1121 sprintf(settings_file, "%s/%s", mkdir_path, TW_SETTINGS_FILE);
Dees_Troy51a0e822012-09-05 15:24:24 -04001122
Dees_Troy5bf43922012-09-07 16:07:55 -04001123 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001124 {
1125 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001126 if (!PartitionManager.Mount_Settings_Storage(false))
Ethan Yonker74db1572015-10-28 12:44:49 -05001127 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(settings_file));
Dees_Troy51a0e822012-09-05 15:24:24 -04001128 }
1129
1130 mkdir(mkdir_path, 0777);
1131
Dees_Troy2673cec2013-04-02 20:22:16 +00001132 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001133 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001134 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001135#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001136 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001137 update_tz_environment_variables();
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001138 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy51a0e822012-09-05 15:24:24 -04001139}
1140
1141string DataManager::GetCurrentStoragePath(void)
1142{
Dees_Troya13d74f2013-03-24 08:54:55 -05001143 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001144}
1145
Dees_Troy51a0e822012-09-05 15:24:24 -04001146string DataManager::GetSettingsStoragePath(void)
1147{
Dees_Troya13d74f2013-03-24 08:54:55 -05001148 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001149}
1150
Ethan Yonkerfe916112016-03-14 14:54:37 -05001151void DataManager::Vibrate(const string& varName)
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001152{
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001153#ifndef TW_NO_HAPTICS
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001154 int vib_value = 0;
1155 GetValue(varName, vib_value);
1156 if (vib_value) {
1157 vibrate(vib_value);
1158 }
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001159#endif
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001160}
epicXaaddbe02021-01-04 13:01:31 +05301161
1162
1163void DataManager::LoadTWRPFolderInfo(void)
1164{
1165 string mainPath = GetCurrentStoragePath();
1166 SetValue(TW_RECOVERY_FOLDER_VAR, TWFunc::Check_For_TwrpFolder());
1167 mBackingFile = mainPath + GetStrValue(TW_RECOVERY_FOLDER_VAR) + '/' + TW_SETTINGS_FILE;
1168}