blob: 92255357ca3d3611a9208f638fef802a76595fc8 [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
nkk7198fc3992017-12-16 16:26:42 +0200276int DataManager::LoadPersistValues(void)
277{
278 static bool loaded = false;
279 string dev_id;
280
281 // Only run this function once, and make sure normal settings file has not yet been read
282 if (loaded || !mBackingFile.empty() || !TWFunc::Path_Exists(PERSIST_SETTINGS_FILE))
283 return -1;
284
285 LOGINFO("Attempt to load settings from /persist settings file...\n");
286
287 if (!mInitialized)
288 SetDefaultValues();
289
290 GetValue("device_id", dev_id);
291 mPersist.SetFile(PERSIST_SETTINGS_FILE);
292 mPersist.SetFileVersion(FILE_VERSION);
293
294 // Read in the file, if possible
295 pthread_mutex_lock(&m_valuesLock);
296 mPersist.LoadValues();
297
298#ifndef TW_NO_SCREEN_TIMEOUT
299 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
300#endif
301
302 update_tz_environment_variables();
303 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
304
305 pthread_mutex_unlock(&m_valuesLock);
306
307 /* Don't set storage nor backup paths this early */
308
309 loaded = true;
310
311 return 0;
312}
313
Dees_Troy51a0e822012-09-05 15:24:24 -0400314int DataManager::Flush()
315{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200316 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400317}
318
319int DataManager::SaveValues()
320{
Ethan Yonker83e82572014-04-04 10:59:28 -0500321#ifndef TW_OEM_BUILD
nkk7198fc3992017-12-16 16:26:42 +0200322 if (PartitionManager.Mount_By_Path("/persist", false)) {
323 mPersist.SetFile(PERSIST_SETTINGS_FILE);
324 mPersist.SetFileVersion(FILE_VERSION);
325 pthread_mutex_lock(&m_valuesLock);
326 mPersist.SaveValues();
327 pthread_mutex_unlock(&m_valuesLock);
328 LOGINFO("Saved settings file values to %s\n", PERSIST_SETTINGS_FILE);
329 }
330
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200331 if (mBackingFile.empty())
332 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400333
334 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400335 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400336
Ethan Yonkerfe916112016-03-14 14:54:37 -0500337 mPersist.SetFile(mBackingFile);
338 mPersist.SetFileVersion(FILE_VERSION);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100339 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500340 mPersist.SaveValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100341 pthread_mutex_unlock(&m_valuesLock);
342
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600343 tw_set_default_metadata(mBackingFile.c_str());
nkk7198fc3992017-12-16 16:26:42 +0200344 LOGINFO("Saved settings file values to '%s'\n", mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500345#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200346 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400347}
348
Ethan Yonkerfe916112016-03-14 14:54:37 -0500349int DataManager::GetValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400350{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200351 string localStr = varName;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500352 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400353
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200354 if (!mInitialized)
355 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400356
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200357 // Strip off leading and trailing '%' if provided
358 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
359 {
360 localStr.erase(0, 1);
361 localStr.erase(localStr.length() - 1, 1);
362 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400363
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200364 // Handle magic values
365 if (GetMagicValue(localStr, value) == 0)
366 return 0;
Xuefera163f152015-03-26 22:45:04 +0800367
368 // Handle property
369 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
370 char property_value[PROPERTY_VALUE_MAX];
371 property_get(localStr.substr(9).c_str(), property_value, "");
372 value = property_value;
373 return 0;
374 }
375
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100376 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500377 ret = mConst.GetValue(localStr, value);
378 if (ret == 0)
379 goto exit;
Dees_Troy51a0e822012-09-05 15:24:24 -0400380
Ethan Yonkerfe916112016-03-14 14:54:37 -0500381 ret = mPersist.GetValue(localStr, value);
382 if (ret == 0)
383 goto exit;
384
385 ret = mData.GetValue(localStr, value);
386exit:
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100387 pthread_mutex_unlock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500388 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400389}
390
Ethan Yonkerfe916112016-03-14 14:54:37 -0500391int DataManager::GetValue(const string& varName, int& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400392{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200393 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400394
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200395 if (GetValue(varName,data) != 0)
396 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400397
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200398 value = atoi(data.c_str());
399 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400400}
401
Ethan Yonkerfe916112016-03-14 14:54:37 -0500402int DataManager::GetValue(const string& varName, float& value)
Dees_Troy2673cec2013-04-02 20:22:16 +0000403{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200404 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000405
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200406 if (GetValue(varName,data) != 0)
407 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000408
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200409 value = atof(data.c_str());
410 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000411}
412
nkk7198fc3992017-12-16 16:26:42 +0200413int DataManager::GetValue(const string& varName, unsigned long long& value)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500414{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200415 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500416
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200417 if (GetValue(varName,data) != 0)
418 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500419
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200420 value = strtoull(data.c_str(), NULL, 10);
421 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500422}
423
Dees_Troy51a0e822012-09-05 15:24:24 -0400424// This function will return an empty string if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500425string DataManager::GetStrValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400426{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200427 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400428
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200429 GetValue(varName, retVal);
430 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400431}
432
433// This function will return 0 if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500434int DataManager::GetIntValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400435{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200436 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400437
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200438 GetValue(varName, retVal);
439 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400440}
441
Ethan Yonkerfe916112016-03-14 14:54:37 -0500442int DataManager::SetValue(const string& varName, const string& value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400443{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200444 if (!mInitialized)
445 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400446
Xuefera163f152015-03-26 22:45:04 +0800447 // Handle property
448 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
449 int ret = property_set(varName.substr(9).c_str(), value.c_str());
450 if (ret)
451 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
452 return ret;
453 }
454
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200455 // Don't allow empty values or numerical starting values
456 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
457 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400458
Ethan Yonkerfe916112016-03-14 14:54:37 -0500459 string test;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100460 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500461 int constChk = mConst.GetValue(varName, test);
462 if (constChk == 0) {
463 pthread_mutex_unlock(&m_valuesLock);
464 return -1;
465 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100466
Ethan Yonkerfe916112016-03-14 14:54:37 -0500467 if (persist) {
468 mPersist.SetValue(varName, value);
469 } else {
470 int persistChk = mPersist.GetValue(varName, test);
471 if (persistChk == 0) {
472 mPersist.SetValue(varName, value);
473 } else {
474 mData.SetValue(varName, value);
475 }
476 }
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700477
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100478 pthread_mutex_unlock(&m_valuesLock);
479
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700480#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500481 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600482 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700483 } else
484#endif
485 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500486 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500487 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500488 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200489 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400490}
491
Ethan Yonkerfe916112016-03-14 14:54:37 -0500492int DataManager::SetValue(const string& varName, const int value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400493{
494 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200495 valStr << value;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200496 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400497}
498
Ethan Yonkerfe916112016-03-14 14:54:37 -0500499int DataManager::SetValue(const string& varName, const float value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400500{
501 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200502 valStr << value;
503 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400504}
505
Ethan Yonkerfe916112016-03-14 14:54:37 -0500506int DataManager::SetValue(const string& varName, const unsigned long long& value, const int persist /* = 0 */)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500507{
508 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200509 valStr << value;
510 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500511}
512
Ethan Yonkerfe916112016-03-14 14:54:37 -0500513int DataManager::SetProgress(const float Fraction) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000514 return SetValue("ui_progress", (float) (Fraction * 100.0));
515}
516
Ethan Yonkerfe916112016-03-14 14:54:37 -0500517int DataManager::ShowProgress(const float Portion, const float Seconds)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200518{
Dees_Troy2673cec2013-04-02 20:22:16 +0000519 float Starting_Portion;
520 GetValue("ui_progress_portion", Starting_Portion);
521 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
522 return -1;
523 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
524 return -1;
525 return 0;
526}
527
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200528void DataManager::update_tz_environment_variables(void)
529{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100530 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200531 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400532}
533
Dees_Troy16b74352012-11-14 22:27:31 +0000534void DataManager::SetBackupFolder()
535{
536 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500537 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000538 str += "/TWRP/BACKUPS/";
539
540 string dev_id;
541 GetValue("device_id", dev_id);
542
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200543 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000544 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000545 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500546 if (partition != NULL) {
547 SetValue("tw_storage_display_name", partition->Storage_Name);
548 char free_space[255];
549 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
550 SetValue("tw_storage_free_size", free_space);
551 string zip_path, zip_root, storage_path;
552 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
Ethan Yonkereadfd2e2016-02-18 22:04:18 -0600553 if (partition->Has_Data_Media && !partition->Symlink_Mount_Point.empty())
Dees_Troya13d74f2013-03-24 08:54:55 -0500554 storage_path = partition->Symlink_Mount_Point;
555 else
556 storage_path = partition->Storage_Path;
557 if (zip_path.size() < storage_path.size()) {
558 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
559 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000560 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500561 if (zip_root != storage_path) {
562 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 -0500563 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500564 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500565 }
566 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500567 if (PartitionManager.Fstab_Processed() != 0) {
568 LOGINFO("Storage partition '%s' not found\n", str.c_str());
569 gui_err("unable_locate_storage=Unable to locate storage device.");
570 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500571 }
Dees_Troy16b74352012-11-14 22:27:31 +0000572}
573
Dees_Troy51a0e822012-09-05 15:24:24 -0400574void DataManager::SetDefaultValues()
575{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200576 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400577
Ethan Yonkerfe916112016-03-14 14:54:37 -0500578 mConst.SetConst();
579
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200580 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400581
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100582 pthread_mutex_lock(&m_valuesLock);
583
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200584 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400585
Ethan Yonkerfe916112016-03-14 14:54:37 -0500586 mConst.SetValue("true", "1");
587 mConst.SetValue("false", "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400588
Ethan Yonkerfe916112016-03-14 14:54:37 -0500589 mConst.SetValue(TW_VERSION_VAR, TW_VERSION_STR);
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400590
591#ifndef TW_NO_HAPTICS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500592 mPersist.SetValue("tw_button_vibrate", "80");
593 mPersist.SetValue("tw_keyboard_vibrate", "40");
594 mPersist.SetValue("tw_action_vibrate", "160");
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400595 mConst.SetValue("tw_disable_haptics", "0");
596#else
597 LOGINFO("TW_NO_HAPTICS := true\n");
598 mConst.SetValue("tw_disable_haptics", "1");
599#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400600
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200601 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
Matt Mowera8a89d12016-12-30 18:10:37 -0600602 if (store)
Ethan Yonkerfe916112016-03-14 14:54:37 -0500603 mPersist.SetValue("tw_storage_path", store->Storage_Path);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200604 else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500605 mPersist.SetValue("tw_storage_path", "/");
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200606
Dees_Troyf4499812013-01-23 19:07:38 +0000607#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
608 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
609#endif
610
Dees_Troy51a0e822012-09-05 15:24:24 -0400611#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000612 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500613 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400614#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500615 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400616#endif
617
618#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000619 printf("TW_INCLUDE_DUMLOCK := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500620 mConst.SetValue(TW_SHOW_DUMLOCK, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400621#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500622 mConst.SetValue(TW_SHOW_DUMLOCK, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400623#endif
624
Dees_Troy51a0e822012-09-05 15:24:24 -0400625 str = GetCurrentStoragePath();
Ethan Yonkerfe916112016-03-14 14:54:37 -0500626 mPersist.SetValue(TW_ZIP_LOCATION_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400627 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400628
629 string dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500630 mConst.GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400631
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200632 str += dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500633 mData.SetValue(TW_BACKUPS_FOLDER_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400634
Ethan Yonkerfe916112016-03-14 14:54:37 -0500635 mConst.SetValue(TW_REBOOT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400636#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100637 printf("TW_NO_REBOOT_RECOVERY := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500638 mConst.SetValue(TW_REBOOT_RECOVERY, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400639#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500640 mConst.SetValue(TW_REBOOT_RECOVERY, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400641#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500642 mConst.SetValue(TW_REBOOT_POWEROFF, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400643#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100644 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500645 mConst.SetValue(TW_REBOOT_BOOTLOADER, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400646#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500647 mConst.SetValue(TW_REBOOT_BOOTLOADER, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400648#endif
649#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000650 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500651 mConst.SetValue(TW_HAS_DATA_MEDIA, "1");
Ethan Yonker6277c792014-09-15 14:54:30 -0500652 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400653#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500654 mData.SetValue(TW_HAS_DATA_MEDIA, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400655#endif
656#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000657 printf("TW_NO_BATT_PERCENT := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500658 mConst.SetValue(TW_NO_BATTERY_PERCENT, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400659#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500660 mConst.SetValue(TW_NO_BATTERY_PERCENT, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400661#endif
Jenkins1710bf22014-10-02 20:22:21 -0400662#ifdef TW_NO_CPU_TEMP
663 printf("TW_NO_CPU_TEMP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500664 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400665#else
666 string cpu_temp_file;
667#ifdef TW_CUSTOM_CPU_TEMP_PATH
668 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
669#else
670 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
671#endif
672 if (TWFunc::Path_Exists(cpu_temp_file)) {
Ethan Yonkerfe916112016-03-14 14:54:37 -0500673 mConst.SetValue("tw_no_cpu_temp", "0");
Jenkins1710bf22014-10-02 20:22:21 -0400674 } else {
675 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500676 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400677 }
678#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400679#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000680 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Ethan Yonkerfe916112016-03-14 14:54:37 -0500681 mConst.SetValue(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400682#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500683 mConst.SetValue(TW_POWER_BUTTON, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400684#endif
685#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000686 printf("TW_ALWAYS_RMRF := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500687 mConst.SetValue(TW_RM_RF_VAR, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400688#endif
689#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000690 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500691 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400692#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500693 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400694#endif
695#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000696 printf("TW_NO_USB_STORAGE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500697 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400698#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000699 char lun_file[255];
700 string Lun_File_str = CUSTOM_LUN_FILE;
701 size_t found = Lun_File_str.find("%");
702 if (found != string::npos) {
703 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
704 Lun_File_str = lun_file;
705 }
706 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000707 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500708 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy6a042c82013-01-23 18:50:52 +0000709 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000710 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500711 mData.SetValue(TW_HAS_USB_STORAGE, "1");
Dees_Troy6a042c82013-01-23 18:50:52 +0000712 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400713#endif
714#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000715 printf("TW_INCLUDE_INJECTTWRP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500716 mConst.SetValue(TW_HAS_INJECTTWRP, "1");
717 mPersist(TW_INJECT_AFTER_ZIP, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400718#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500719 mConst.SetValue(TW_HAS_INJECTTWRP, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400720#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400721#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000722 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500723 mConst.SetValue(TW_DOWNLOAD_MODE, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400724#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200725#ifdef TW_HAS_EDL_MODE
726 printf("TW_HAS_EDL_MODE := true\n");
727 mConst.SetValue(TW_EDL_MODE, "1");
728#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400729#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerfe916112016-03-14 14:54:37 -0500730 mConst.SetValue(TW_HAS_CRYPTO, "1");
Dees_Troyf4499812013-01-23 19:07:38 +0000731 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400732#endif
733#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000734 printf("TW_SDEXT_NO_EXT4 := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500735 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400736#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500737 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400738#endif
739
Dees_Troya13d74f2013-03-24 08:54:55 -0500740#ifdef TW_HAS_NO_BOOT_PARTITION
Ethan Yonkerfe916112016-03-14 14:54:37 -0500741 mPersist.SetValue("tw_backup_list", "/system;/data;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500742#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
Ethan Yonkerfe916112016-03-14 14:54:37 -0500745 mConst.SetValue(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE);
746 mData.SetValue(TW_BACKUP_NAME, "(Auto Generate)");
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500747
Matt Mower8dc25b72016-04-25 23:06:53 -0500748 mPersist.SetValue(TW_INSTALL_REBOOT_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500749 mPersist.SetValue(TW_SIGNED_ZIP_VERIFY_VAR, "0");
Matt Mowerbfccfb82016-04-25 23:22:31 -0500750 mPersist.SetValue(TW_DISABLE_FREE_SPACE_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400751 mPersist.SetValue(TW_FORCE_DIGEST_CHECK_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500752 mPersist.SetValue(TW_USE_COMPRESSION_VAR, "0");
753 mPersist.SetValue(TW_TIME_ZONE_VAR, "CST6CDT,M3.2.0,M11.1.0");
754 mPersist.SetValue(TW_GUI_SORT_ORDER, "1");
755 mPersist.SetValue(TW_RM_RF_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400756 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_VAR, "0");
757 mPersist.SetValue(TW_SKIP_DIGEST_GENERATE_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500758 mPersist.SetValue(TW_SDEXT_SIZE, "0");
759 mPersist.SetValue(TW_SWAP_SIZE, "0");
760 mPersist.SetValue(TW_SDPART_FILE_SYSTEM, "ext3");
761 mPersist.SetValue(TW_TIME_ZONE_GUISEL, "CST6;CDT,M3.2.0,M11.1.0");
762 mPersist.SetValue(TW_TIME_ZONE_GUIOFFSET, "0");
763 mPersist.SetValue(TW_TIME_ZONE_GUIDST, "1");
764 mData.SetValue(TW_ACTION_BUSY, "0");
765 mData.SetValue("tw_wipe_cache", "0");
766 mData.SetValue("tw_wipe_dalvik", "0");
767 mData.SetValue(TW_ZIP_INDEX, "0");
768 mData.SetValue(TW_ZIP_QUEUE_COUNT, "0");
769 mData.SetValue(TW_FILENAME, "/sdcard");
770 mData.SetValue(TW_SIMULATE_ACTIONS, "0");
771 mData.SetValue(TW_SIMULATE_FAIL, "0");
772 mData.SetValue(TW_IS_ENCRYPTED, "0");
773 mData.SetValue(TW_IS_DECRYPTED, "0");
774 mData.SetValue(TW_CRYPTO_PASSWORD, "0");
775 mData.SetValue("tw_terminal_state", "0");
776 mData.SetValue("tw_background_thread_running", "0");
777 mData.SetValue(TW_RESTORE_FILE_DATE, "0");
778 mPersist.SetValue("tw_military_time", "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400779
780#ifdef TW_INCLUDE_CRYPTO
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400781 mPersist.SetValue(TW_USE_SHA2, "1");
782 mPersist.SetValue(TW_NO_SHA2, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400783#else
bigbiff bigbiff9ee4a852018-09-19 19:13:19 -0400784 mPersist.SetValue(TW_NO_SHA2, "1");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400785#endif
786
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700787#ifdef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500788 mConst.SetValue("tw_screen_timeout_secs", "0");
789 mConst.SetValue("tw_no_screen_timeout", "1");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700790#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500791 mPersist.SetValue("tw_screen_timeout_secs", "60");
792 mPersist.SetValue("tw_no_screen_timeout", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700793#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500794 mData.SetValue("tw_gui_done", "0");
795 mData.SetValue("tw_encrypt_backup", "0");
Matt Mower9a2a2052016-05-31 21:31:22 -0500796 mData.SetValue("tw_sleep_total", "5");
797 mData.SetValue("tw_sleep", "5");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500798
799 // Brightness handling
Ethan Yonker00028b42014-04-09 14:29:02 -0500800 string findbright;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900801#ifdef TW_BRIGHTNESS_PATH
802 findbright = EXPAND(TW_BRIGHTNESS_PATH);
803 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
804 if (!TWFunc::Path_Exists(findbright)) {
805 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
806 findbright = "";
Ethan Yonker00028b42014-04-09 14:29:02 -0500807 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900808#endif
Ethan Yonker00028b42014-04-09 14:29:02 -0500809 if (findbright.empty()) {
810 // Attempt to locate the brightness file
811 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500812 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500813 }
814 if (findbright.empty()) {
815 LOGINFO("Unable to locate brightness file\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500816 mConst.SetValue("tw_has_brightnesss_file", "0");
Ethan Yonker00028b42014-04-09 14:29:02 -0500817 } else {
818 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500819 mConst.SetValue("tw_has_brightnesss_file", "1");
820 mConst.SetValue("tw_brightness_file", findbright);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900821 string maxBrightness;
822#ifdef TW_MAX_BRIGHTNESS
Vojtech Bocek85932342013-04-01 22:11:33 +0200823 ostringstream maxVal;
824 maxVal << TW_MAX_BRIGHTNESS;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900825 maxBrightness = maxVal.str();
826#else
827 // Attempt to locate the max_brightness file
828 string maxbrightpath = findbright.insert(findbright.rfind('/') + 1, "max_");
829 if (TWFunc::Path_Exists(maxbrightpath)) {
Ethan Yonker72a85202016-01-22 11:45:06 -0600830 ifstream maxVal(maxbrightpath.c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -0600831 if (maxVal >> maxBrightness) {
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900832 LOGINFO("Got max brightness %s from '%s'\n", maxBrightness.c_str(), maxbrightpath.c_str());
833 } else {
834 // Something went wrong, set that to indicate error
835 maxBrightness = "-1";
836 }
837 }
Ethan Yonker72a85202016-01-22 11:45:06 -0600838 if (atoi(maxBrightness.c_str()) <= 0)
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900839 {
840 // Fallback into default
841 ostringstream maxVal;
842 maxVal << 255;
843 maxBrightness = maxVal.str();
844 }
845#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500846 mConst.SetValue("tw_brightness_max", maxBrightness);
847 mPersist.SetValue("tw_brightness", maxBrightness);
848 mPersist.SetValue("tw_brightness_pct", "100");
xNUTxe85f02d2014-07-18 01:30:58 +0200849#ifdef TW_SECONDARY_BRIGHTNESS_PATH
850 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
851 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
852 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500853 mConst.SetValue("tw_secondary_brightness_file", secondfindbright);
xNUTxe85f02d2014-07-18 01:30:58 +0200854 } else {
855 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
856 }
857#endif
Greg Wallace36ade452015-11-08 13:54:25 -0500858#ifdef TW_DEFAULT_BRIGHTNESS
859 int defValInt = TW_DEFAULT_BRIGHTNESS;
Ethan Yonker72a85202016-01-22 11:45:06 -0600860 int maxValInt = atoi(maxBrightness.c_str());
Greg Wallace36ade452015-11-08 13:54:25 -0500861 // Deliberately int so the % is always a whole number
862 int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
863 ostringstream defPct;
864 defPct << defPctInt;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500865 mPersist.SetValue("tw_brightness_pct", defPct.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500866
867 ostringstream defVal;
868 defVal << TW_DEFAULT_BRIGHTNESS;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500869 mPersist.SetValue("tw_brightness", defVal.str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900870 TWFunc::Set_Brightness(defVal.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500871#else
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900872 TWFunc::Set_Brightness(maxBrightness);
Greg Wallace36ade452015-11-08 13:54:25 -0500873#endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600874 }
Ethan Yonkerfe916112016-03-14 14:54:37 -0500875
Dees_Troy83bd4832013-05-04 12:39:56 +0000876#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500877 mConst.SetValue("tw_include_encrypted_backup", "1");
Dees_Troy83bd4832013-05-04 12:39:56 +0000878#else
879 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500880 mConst.SetValue("tw_include_encrypted_backup", "0");
Dees_Troy83bd4832013-05-04 12:39:56 +0000881#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400882#ifdef TW_HAS_MTP
Ethan Yonkerfe916112016-03-14 14:54:37 -0500883 mConst.SetValue("tw_has_mtp", "1");
884 mPersist.SetValue("tw_mtp_enabled", "1");
885 mPersist.SetValue("tw_mtp_debug", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400886#else
887 LOGINFO("TW_EXCLUDE_MTP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500888 mConst.SetValue("tw_has_mtp", "0");
889 mConst.SetValue("tw_mtp_enabled", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400890#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500891 mPersist.SetValue("tw_mount_system_ro", "2");
892 mPersist.SetValue("tw_never_show_system_ro_page", "0");
893 mPersist.SetValue("tw_language", EXPAND(TW_DEFAULT_LANGUAGE));
Ethan Yonker74db1572015-10-28 12:44:49 -0500894 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100895
Ethan Yonkerfe916112016-03-14 14:54:37 -0500896 mData.SetValue("tw_has_adopted_storage", "0");
Ethan Yonker66a19492015-12-10 10:19:45 -0600897
Ethan Yonker1b190162016-12-05 15:25:19 -0600898#ifdef AB_OTA_UPDATER
899 LOGINFO("AB_OTA_UPDATER := true\n");
900 mConst.SetValue("tw_has_boot_slots", "1");
901#else
902 mConst.SetValue("tw_has_boot_slots", "0");
903#endif
nkk71b4c35912017-10-11 23:39:10 +0300904
Ethan Yonker75aa6152017-09-08 12:17:03 -0500905#ifdef TW_NO_LEGACY_PROPS
906 LOGINFO("TW_NO_LEGACY_PROPS := true\n");
Ethan Yonker75aa6152017-09-08 12:17:03 -0500907#endif
nkk71b4c35912017-10-11 23:39:10 +0300908
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600909#ifdef TW_OEM_BUILD
910 LOGINFO("TW_OEM_BUILD := true\n");
911 mConst.SetValue("tw_oem_build", "1");
912#else
913 mConst.SetValue("tw_oem_build", "0");
914 mPersist.SetValue("tw_app_prompt", "1");
915 mPersist.SetValue("tw_app_install_system", "1");
916 mData.SetValue("tw_app_install_status", "0"); // 0 = no status, 1 = not installed, 2 = already installed
917#endif
918
jason972000adae3362017-12-08 09:08:45 -0600919 mData.SetValue("tw_enable_adb_backup", "0");
920
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100921 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400922}
923
924// Magic Values
Ethan Yonkerfe916112016-03-14 14:54:37 -0500925int DataManager::GetMagicValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400926{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200927 // Handle special dynamic cases
928 if (varName == "tw_time")
929 {
930 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400931
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200932 struct tm *current;
933 time_t now;
934 int tw_military_time;
935 now = time(0);
936 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500937 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200938 if (current->tm_hour >= 12)
939 {
940 if (tw_military_time == 1)
941 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
942 else
943 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500944 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500945 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200946 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500947 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200948 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
949 else
950 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
951 }
952 value = tmp;
953 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500954 }
Jenkins1710bf22014-10-02 20:22:21 -0400955 else if (varName == "tw_cpu_temp")
956 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600957 int tw_no_cpu_temp;
958 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
959 if (tw_no_cpu_temp == 1) return -1;
Agontuka29361a2015-04-22 14:42:59 +0600960
Matt Mowera8a89d12016-12-30 18:10:37 -0600961 string cpu_temp_file;
962 static unsigned long convert_temp = 0;
963 static time_t cpuSecCheck = 0;
Matt Mowera8a89d12016-12-30 18:10:37 -0600964 struct timeval curTime;
965 string results;
Jenkins1710bf22014-10-02 20:22:21 -0400966
Matt Mowera8a89d12016-12-30 18:10:37 -0600967 gettimeofday(&curTime, NULL);
968 if (curTime.tv_sec > cpuSecCheck)
969 {
Jenkins1710bf22014-10-02 20:22:21 -0400970#ifdef TW_CUSTOM_CPU_TEMP_PATH
Matt Mowera8a89d12016-12-30 18:10:37 -0600971 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
972 if (TWFunc::read_file(cpu_temp_file, results) != 0)
973 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400974#else
Matt Mowera8a89d12016-12-30 18:10:37 -0600975 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
976 if (TWFunc::read_file(cpu_temp_file, results) != 0)
977 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400978#endif
Matt Mowera8a89d12016-12-30 18:10:37 -0600979 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
980 if (convert_temp <= 0)
981 convert_temp = strtoul(results.c_str(), NULL, 0);
982 if (convert_temp >= 150)
983 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
984 cpuSecCheck = curTime.tv_sec + 5;
985 }
986 value = TWFunc::to_string(convert_temp);
987 return 0;
Jenkins1710bf22014-10-02 20:22:21 -0400988 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200989 else if (varName == "tw_battery")
990 {
991 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -0400992 static char charging = ' ';
993 static int lastVal = -1;
994 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400995 struct timeval curTime;
996 gettimeofday(&curTime, NULL);
997 if (curTime.tv_sec > nextSecCheck)
998 {
999 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +00001000#ifdef TW_CUSTOM_BATTERY_PATH
1001 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
1002 capacity_file += "/capacity";
1003 FILE * cap = fopen(capacity_file.c_str(),"rt");
1004#else
Dees_Troy38bd7602012-09-14 13:33:53 -04001005 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +00001006#endif
Matt Mowera8a89d12016-12-30 18:10:37 -06001007 if (cap) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001008 fgets(cap_s, 4, cap);
1009 fclose(cap);
1010 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001011 if (lastVal > 100) lastVal = 101;
1012 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001013 }
Dees_Troyf33b4902013-03-01 00:51:39 +00001014#ifdef TW_CUSTOM_BATTERY_PATH
1015 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
1016 status_file += "/status";
1017 cap = fopen(status_file.c_str(),"rt");
1018#else
Dees_Troy38bd7602012-09-14 13:33:53 -04001019 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +00001020#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04001021 if (cap) {
1022 fgets(cap_s, 2, cap);
1023 fclose(cap);
1024 if (cap_s[0] == 'C')
1025 charging = '+';
1026 else
1027 charging = ' ';
1028 }
1029 nextSecCheck = curTime.tv_sec + 60;
1030 }
1031
1032 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001033 value = tmp;
1034 return 0;
1035 }
1036 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -04001037}
1038
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001039void DataManager::Output_Version(void)
1040{
Ethan Yonker89583ef2015-08-26 09:01:59 -05001041#ifndef TW_OEM_BUILD
Dees_Troy1c1ac442013-01-17 21:42:14 +00001042 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001043 char version[255];
1044
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001045 std::string cacheDir = TWFunc::get_cache_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001046 if (cacheDir.empty()) {
1047 LOGINFO("Unable to find cache directory\n");
1048 return;
1049 }
1050
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001051 std::string recoveryCacheDir = cacheDir + "recovery/";
1052
1053 if (cacheDir == NON_AB_CACHE_DIR) {
1054 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1055 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy1c1ac442013-01-17 21:42:14 +00001056 return;
1057 }
1058 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001059 if (!TWFunc::Path_Exists(recoveryCacheDir)) {
1060 LOGINFO("Recreating %s folder.\n", recoveryCacheDir.c_str());
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001061 if (!TWFunc::Create_Dir_Recursive(recoveryCacheDir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001062 LOGERR("DataManager::Output_Version -- Unable to make %s: %s\n", recoveryCacheDir.c_str(), strerror(errno));
1063 return;
1064 }
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001065 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001066 std::string verPath = recoveryCacheDir + ".version";
1067 if (TWFunc::Path_Exists(verPath)) {
1068 unlink(verPath.c_str());
1069 }
1070 FILE *fp = fopen(verPath.c_str(), "w");
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001071 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001072 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(verPath)(strerror(errno)));
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001073 return;
1074 }
1075 strcpy(version, TW_VERSION_STR);
1076 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
1077 fclose(fp);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001078 TWFunc::copy_file("/etc/recovery.fstab", recoveryCacheDir + "recovery.fstab", 0644);
Dees_Troyd93bda52013-07-03 19:55:19 +00001079 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001080 sync();
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001081 LOGINFO("Version number saved to '%s'\n", verPath.c_str());
Ethan Yonker89583ef2015-08-26 09:01:59 -05001082#endif
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001083}
1084
Dees_Troy51a0e822012-09-05 15:24:24 -04001085void DataManager::ReadSettingsFile(void)
1086{
Ethan Yonker83e82572014-04-04 10:59:28 -05001087#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001088 // Load up the values for TWRP - Sleep to let the card be ready
1089 char mkdir_path[255], settings_file[255];
Matt Mower23d8aae2017-01-06 14:30:33 -06001090 int is_enc, has_data_media;
Dees_Troy51a0e822012-09-05 15:24:24 -04001091
1092 GetValue(TW_IS_ENCRYPTED, is_enc);
1093 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
Dees_Troy51a0e822012-09-05 15:24:24 -04001094
1095 memset(mkdir_path, 0, sizeof(mkdir_path));
1096 memset(settings_file, 0, sizeof(settings_file));
Vojtech Bocekfda239b2015-01-07 22:55:13 +01001097 sprintf(mkdir_path, "%s/TWRP", GetSettingsStoragePath().c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001098 sprintf(settings_file, "%s/.twrps", mkdir_path);
1099
Dees_Troy5bf43922012-09-07 16:07:55 -04001100 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001101 {
1102 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001103 if (!PartitionManager.Mount_Settings_Storage(false))
Ethan Yonker74db1572015-10-28 12:44:49 -05001104 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(settings_file));
Dees_Troy51a0e822012-09-05 15:24:24 -04001105 }
1106
1107 mkdir(mkdir_path, 0777);
1108
Dees_Troy2673cec2013-04-02 20:22:16 +00001109 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001110 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001111 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001112#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001113 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001114 update_tz_environment_variables();
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001115 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy51a0e822012-09-05 15:24:24 -04001116}
1117
1118string DataManager::GetCurrentStoragePath(void)
1119{
Dees_Troya13d74f2013-03-24 08:54:55 -05001120 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001121}
1122
Dees_Troy51a0e822012-09-05 15:24:24 -04001123string DataManager::GetSettingsStoragePath(void)
1124{
Dees_Troya13d74f2013-03-24 08:54:55 -05001125 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001126}
1127
Ethan Yonkerfe916112016-03-14 14:54:37 -05001128void DataManager::Vibrate(const string& varName)
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001129{
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001130#ifndef TW_NO_HAPTICS
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001131 int vib_value = 0;
1132 GetValue(varName, vib_value);
1133 if (vib_value) {
1134 vibrate(vib_value);
1135 }
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -04001136#endif
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001137}