blob: 4dfbde2d0cd9006caa042ba34862e41a61964061 [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
Matt Mowere9260742015-02-22 20:20:18 -0600149 // Check the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400150 fp = fopen("/proc/cmdline", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600151 if (fp != NULL) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200152 fgets(line, sizeof(line), fp);
Matt Mowere9260742015-02-22 20:20:18 -0600153 fclose(fp); // cmdline is only one line long
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400154
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200155 token = strtok(line, " ");
Matt Mowere9260742015-02-22 20:20:18 -0600156 while (token) {
157 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0) {
158 token += CMDLINE_SERIALNO_LEN;
159 snprintf(device_id, DEVID_MAX, "%s", token);
160 sanitize_device_id(device_id); // also removes newlines
Ethan Yonkerfe916112016-03-14 14:54:37 -0500161 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200162 return;
163 }
164 token = strtok(NULL, " ");
165 }
166 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400167#endif
Matt Mowere9260742015-02-22 20:20:18 -0600168 // Check cpuinfo for serial number; if found, use as device_id
169 // If serial number is not found, fallback to hardware_id for the device_id
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400170 fp = fopen("/proc/cpuinfo", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600171 if (fp != NULL) {
172 while (fgets(line, sizeof(line), fp) != NULL) {
173 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) {
174 // skip past "Serial", spaces, and colon
175 token = line + CPUINFO_SERIALNO_LEN;
176 while (*token && (!isgraph(*token) || *token == ':'))
177 token++;
178
179 if (*token && *token != '\n') {
180 snprintf(device_id, DEVID_MAX, "%s", token);
181 sanitize_device_id(device_id); // also removes newlines
Dees_Troy2673cec2013-04-02 20:22:16 +0000182 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500183 mConst.SetValue("device_id", device_id);
Matt Mowere9260742015-02-22 20:20:18 -0600184 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400185 return;
186 }
Matt Mowere9260742015-02-22 20:20:18 -0600187 } else if (memcmp(line, CPUINFO_HARDWARE,
188 CPUINFO_HARDWARE_LEN) == 0) {
189 // skip past "Hardware", spaces, and colon
190 token = line + CPUINFO_HARDWARE_LEN;
191 while (*token && (!isgraph(*token) || *token == ':'))
192 token++;
193
194 if (*token && *token != '\n') {
195 snprintf(hardware_id, HWID_MAX, "%s", token);
196 if (hardware_id[strlen(hardware_id)-1] == '\n')
197 hardware_id[strlen(hardware_id)-1] = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000198 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400199 }
200 }
201 }
202 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200203 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400204
205 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000206 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Matt Mowere9260742015-02-22 20:20:18 -0600207 snprintf(device_id, DEVID_MAX, "%s", hardware_id);
208 sanitize_device_id(device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500209 mConst.SetValue("device_id", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400210 return;
211 }
212
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200213 strcpy(device_id, "serialno");
Ethan Yonker74db1572015-10-28 12:44:49 -0500214 LOGINFO("=> device id not found, using '%s'\n", device_id);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500215 mConst.SetValue("device_id", device_id);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200216 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400217}
218
Dees_Troy51a0e822012-09-05 15:24:24 -0400219int DataManager::ResetDefaults()
220{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100221 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500222 mPersist.Clear();
223 mData.Clear();
224 mConst.Clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100225 pthread_mutex_unlock(&m_valuesLock);
226
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200227 SetDefaultValues();
228 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400229}
230
Ethan Yonkerfe916112016-03-14 14:54:37 -0500231int DataManager::LoadValues(const string& filename)
Dees_Troy51a0e822012-09-05 15:24:24 -0400232{
nkk7198fc3992017-12-16 16:26:42 +0200233 string dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400234
235 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200236 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400237
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200238 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400239 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200240 mBackingFile = filename;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500241 mPersist.SetFile(filename);
242 mPersist.SetFileVersion(FILE_VERSION);
Dees_Troy51a0e822012-09-05 15:24:24 -0400243
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200244 // Read in the file, if possible
Ethan Yonkerfe916112016-03-14 14:54:37 -0500245 pthread_mutex_lock(&m_valuesLock);
246 mPersist.LoadValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100247
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700248#ifndef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500249 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700250#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500251
252 pthread_mutex_unlock(&m_valuesLock);
Dees_Troya13d74f2013-03-24 08:54:55 -0500253 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500254 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Matt Mowera8a89d12016-12-30 18:10:37 -0600255 if (!Part)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200256 Part = PartitionManager.Get_Default_Storage_Partition();
257 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500258 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
259 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500260 } else {
261 SetBackupFolder();
262 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200263 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400264}
265
nkk7198fc3992017-12-16 16:26:42 +0200266int DataManager::LoadPersistValues(void)
267{
268 static bool loaded = false;
269 string dev_id;
270
271 // Only run this function once, and make sure normal settings file has not yet been read
272 if (loaded || !mBackingFile.empty() || !TWFunc::Path_Exists(PERSIST_SETTINGS_FILE))
273 return -1;
274
275 LOGINFO("Attempt to load settings from /persist settings file...\n");
276
277 if (!mInitialized)
278 SetDefaultValues();
279
280 GetValue("device_id", dev_id);
281 mPersist.SetFile(PERSIST_SETTINGS_FILE);
282 mPersist.SetFileVersion(FILE_VERSION);
283
284 // Read in the file, if possible
285 pthread_mutex_lock(&m_valuesLock);
286 mPersist.LoadValues();
287
288#ifndef TW_NO_SCREEN_TIMEOUT
289 blankTimer.setTime(mPersist.GetIntValue("tw_screen_timeout_secs"));
290#endif
291
292 update_tz_environment_variables();
293 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
294
295 pthread_mutex_unlock(&m_valuesLock);
296
297 /* Don't set storage nor backup paths this early */
298
299 loaded = true;
300
301 return 0;
302}
303
Dees_Troy51a0e822012-09-05 15:24:24 -0400304int DataManager::Flush()
305{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200306 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400307}
308
309int DataManager::SaveValues()
310{
Ethan Yonker83e82572014-04-04 10:59:28 -0500311#ifndef TW_OEM_BUILD
nkk7198fc3992017-12-16 16:26:42 +0200312 if (PartitionManager.Mount_By_Path("/persist", false)) {
313 mPersist.SetFile(PERSIST_SETTINGS_FILE);
314 mPersist.SetFileVersion(FILE_VERSION);
315 pthread_mutex_lock(&m_valuesLock);
316 mPersist.SaveValues();
317 pthread_mutex_unlock(&m_valuesLock);
318 LOGINFO("Saved settings file values to %s\n", PERSIST_SETTINGS_FILE);
319 }
320
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200321 if (mBackingFile.empty())
322 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400323
324 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400325 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400326
Ethan Yonkerfe916112016-03-14 14:54:37 -0500327 mPersist.SetFile(mBackingFile);
328 mPersist.SetFileVersion(FILE_VERSION);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100329 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500330 mPersist.SaveValues();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100331 pthread_mutex_unlock(&m_valuesLock);
332
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600333 tw_set_default_metadata(mBackingFile.c_str());
nkk7198fc3992017-12-16 16:26:42 +0200334 LOGINFO("Saved settings file values to '%s'\n", mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500335#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200336 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400337}
338
Ethan Yonkerfe916112016-03-14 14:54:37 -0500339int DataManager::GetValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400340{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200341 string localStr = varName;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500342 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400343
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200344 if (!mInitialized)
345 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400346
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200347 // Strip off leading and trailing '%' if provided
348 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
349 {
350 localStr.erase(0, 1);
351 localStr.erase(localStr.length() - 1, 1);
352 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400353
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200354 // Handle magic values
355 if (GetMagicValue(localStr, value) == 0)
356 return 0;
Xuefera163f152015-03-26 22:45:04 +0800357
358 // Handle property
359 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
360 char property_value[PROPERTY_VALUE_MAX];
361 property_get(localStr.substr(9).c_str(), property_value, "");
362 value = property_value;
363 return 0;
364 }
365
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100366 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500367 ret = mConst.GetValue(localStr, value);
368 if (ret == 0)
369 goto exit;
Dees_Troy51a0e822012-09-05 15:24:24 -0400370
Ethan Yonkerfe916112016-03-14 14:54:37 -0500371 ret = mPersist.GetValue(localStr, value);
372 if (ret == 0)
373 goto exit;
374
375 ret = mData.GetValue(localStr, value);
376exit:
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100377 pthread_mutex_unlock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500378 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400379}
380
Ethan Yonkerfe916112016-03-14 14:54:37 -0500381int DataManager::GetValue(const string& varName, int& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400382{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200383 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400384
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200385 if (GetValue(varName,data) != 0)
386 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400387
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200388 value = atoi(data.c_str());
389 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400390}
391
Ethan Yonkerfe916112016-03-14 14:54:37 -0500392int DataManager::GetValue(const string& varName, float& value)
Dees_Troy2673cec2013-04-02 20:22:16 +0000393{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200394 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000395
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200396 if (GetValue(varName,data) != 0)
397 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000398
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200399 value = atof(data.c_str());
400 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000401}
402
nkk7198fc3992017-12-16 16:26:42 +0200403int DataManager::GetValue(const string& varName, unsigned long long& value)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500404{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200405 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500406
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200407 if (GetValue(varName,data) != 0)
408 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500409
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200410 value = strtoull(data.c_str(), NULL, 10);
411 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500412}
413
Dees_Troy51a0e822012-09-05 15:24:24 -0400414// This function will return an empty string if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500415string DataManager::GetStrValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400416{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200417 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400418
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200419 GetValue(varName, retVal);
420 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400421}
422
423// This function will return 0 if the value doesn't exist
Ethan Yonkerfe916112016-03-14 14:54:37 -0500424int DataManager::GetIntValue(const string& varName)
Dees_Troy51a0e822012-09-05 15:24:24 -0400425{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200426 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400427
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200428 GetValue(varName, retVal);
429 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400430}
431
Ethan Yonkerfe916112016-03-14 14:54:37 -0500432int DataManager::SetValue(const string& varName, const string& value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400433{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200434 if (!mInitialized)
435 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400436
Xuefera163f152015-03-26 22:45:04 +0800437 // Handle property
438 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
439 int ret = property_set(varName.substr(9).c_str(), value.c_str());
440 if (ret)
441 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
442 return ret;
443 }
444
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200445 // Don't allow empty values or numerical starting values
446 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
447 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400448
Ethan Yonkerfe916112016-03-14 14:54:37 -0500449 string test;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100450 pthread_mutex_lock(&m_valuesLock);
Ethan Yonkerfe916112016-03-14 14:54:37 -0500451 int constChk = mConst.GetValue(varName, test);
452 if (constChk == 0) {
453 pthread_mutex_unlock(&m_valuesLock);
454 return -1;
455 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100456
Ethan Yonkerfe916112016-03-14 14:54:37 -0500457 if (persist) {
458 mPersist.SetValue(varName, value);
459 } else {
460 int persistChk = mPersist.GetValue(varName, test);
461 if (persistChk == 0) {
462 mPersist.SetValue(varName, value);
463 } else {
464 mData.SetValue(varName, value);
465 }
466 }
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700467
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100468 pthread_mutex_unlock(&m_valuesLock);
469
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700470#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500471 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600472 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700473 } else
474#endif
475 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500476 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500477 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500478 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200479 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400480}
481
Ethan Yonkerfe916112016-03-14 14:54:37 -0500482int DataManager::SetValue(const string& varName, const int value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400483{
484 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200485 valStr << value;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200486 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400487}
488
Ethan Yonkerfe916112016-03-14 14:54:37 -0500489int DataManager::SetValue(const string& varName, const float value, const int persist /* = 0 */)
Dees_Troy51a0e822012-09-05 15:24:24 -0400490{
491 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200492 valStr << value;
493 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400494}
495
Ethan Yonkerfe916112016-03-14 14:54:37 -0500496int DataManager::SetValue(const string& varName, const unsigned long long& value, const int persist /* = 0 */)
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500497{
498 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200499 valStr << value;
500 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500501}
502
Ethan Yonkerfe916112016-03-14 14:54:37 -0500503int DataManager::SetProgress(const float Fraction) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000504 return SetValue("ui_progress", (float) (Fraction * 100.0));
505}
506
Ethan Yonkerfe916112016-03-14 14:54:37 -0500507int DataManager::ShowProgress(const float Portion, const float Seconds)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200508{
Dees_Troy2673cec2013-04-02 20:22:16 +0000509 float Starting_Portion;
510 GetValue("ui_progress_portion", Starting_Portion);
511 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
512 return -1;
513 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
514 return -1;
515 return 0;
516}
517
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200518void DataManager::update_tz_environment_variables(void)
519{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100520 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200521 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400522}
523
Dees_Troy16b74352012-11-14 22:27:31 +0000524void DataManager::SetBackupFolder()
525{
526 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500527 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000528 str += "/TWRP/BACKUPS/";
529
530 string dev_id;
531 GetValue("device_id", dev_id);
532
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200533 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000534 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000535 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500536 if (partition != NULL) {
537 SetValue("tw_storage_display_name", partition->Storage_Name);
538 char free_space[255];
539 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
540 SetValue("tw_storage_free_size", free_space);
541 string zip_path, zip_root, storage_path;
542 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
Ethan Yonkereadfd2e2016-02-18 22:04:18 -0600543 if (partition->Has_Data_Media && !partition->Symlink_Mount_Point.empty())
Dees_Troya13d74f2013-03-24 08:54:55 -0500544 storage_path = partition->Symlink_Mount_Point;
545 else
546 storage_path = partition->Storage_Path;
547 if (zip_path.size() < storage_path.size()) {
548 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
549 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000550 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500551 if (zip_root != storage_path) {
552 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 -0500553 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500554 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500555 }
556 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500557 if (PartitionManager.Fstab_Processed() != 0) {
558 LOGINFO("Storage partition '%s' not found\n", str.c_str());
559 gui_err("unable_locate_storage=Unable to locate storage device.");
560 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500561 }
Dees_Troy16b74352012-11-14 22:27:31 +0000562}
563
Dees_Troy51a0e822012-09-05 15:24:24 -0400564void DataManager::SetDefaultValues()
565{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200566 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400567
Ethan Yonkerfe916112016-03-14 14:54:37 -0500568 mConst.SetConst();
569
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200570 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400571
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100572 pthread_mutex_lock(&m_valuesLock);
573
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200574 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400575
Ethan Yonkerfe916112016-03-14 14:54:37 -0500576 mConst.SetValue("true", "1");
577 mConst.SetValue("false", "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400578
Ethan Yonkerfe916112016-03-14 14:54:37 -0500579 mConst.SetValue(TW_VERSION_VAR, TW_VERSION_STR);
580 mPersist.SetValue("tw_button_vibrate", "80");
581 mPersist.SetValue("tw_keyboard_vibrate", "40");
582 mPersist.SetValue("tw_action_vibrate", "160");
Dees_Troy51a0e822012-09-05 15:24:24 -0400583
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200584 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
Matt Mowera8a89d12016-12-30 18:10:37 -0600585 if (store)
Ethan Yonkerfe916112016-03-14 14:54:37 -0500586 mPersist.SetValue("tw_storage_path", store->Storage_Path);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200587 else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500588 mPersist.SetValue("tw_storage_path", "/");
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200589
Dees_Troyf4499812013-01-23 19:07:38 +0000590#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
591 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
592#endif
593
Dees_Troy51a0e822012-09-05 15:24:24 -0400594#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000595 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500596 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400597#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500598 mConst.SetValue(TW_ALLOW_PARTITION_SDCARD, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400599#endif
600
601#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000602 printf("TW_INCLUDE_DUMLOCK := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500603 mConst.SetValue(TW_SHOW_DUMLOCK, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400604#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500605 mConst.SetValue(TW_SHOW_DUMLOCK, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400606#endif
607
Dees_Troy51a0e822012-09-05 15:24:24 -0400608 str = GetCurrentStoragePath();
Ethan Yonkerfe916112016-03-14 14:54:37 -0500609 mPersist.SetValue(TW_ZIP_LOCATION_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400610 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400611
612 string dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500613 mConst.GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400614
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200615 str += dev_id;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500616 mData.SetValue(TW_BACKUPS_FOLDER_VAR, str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400617
Ethan Yonkerfe916112016-03-14 14:54:37 -0500618 mConst.SetValue(TW_REBOOT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400619#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100620 printf("TW_NO_REBOOT_RECOVERY := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500621 mConst.SetValue(TW_REBOOT_RECOVERY, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400622#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500623 mConst.SetValue(TW_REBOOT_RECOVERY, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400624#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500625 mConst.SetValue(TW_REBOOT_POWEROFF, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400626#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100627 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500628 mConst.SetValue(TW_REBOOT_BOOTLOADER, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400629#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500630 mConst.SetValue(TW_REBOOT_BOOTLOADER, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400631#endif
632#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000633 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500634 mConst.SetValue(TW_HAS_DATA_MEDIA, "1");
Ethan Yonker6277c792014-09-15 14:54:30 -0500635 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400636#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500637 mData.SetValue(TW_HAS_DATA_MEDIA, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400638#endif
639#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000640 printf("TW_NO_BATT_PERCENT := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500641 mConst.SetValue(TW_NO_BATTERY_PERCENT, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400642#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500643 mConst.SetValue(TW_NO_BATTERY_PERCENT, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400644#endif
Jenkins1710bf22014-10-02 20:22:21 -0400645#ifdef TW_NO_CPU_TEMP
646 printf("TW_NO_CPU_TEMP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500647 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400648#else
649 string cpu_temp_file;
650#ifdef TW_CUSTOM_CPU_TEMP_PATH
651 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
652#else
653 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
654#endif
655 if (TWFunc::Path_Exists(cpu_temp_file)) {
Ethan Yonkerfe916112016-03-14 14:54:37 -0500656 mConst.SetValue("tw_no_cpu_temp", "0");
Jenkins1710bf22014-10-02 20:22:21 -0400657 } else {
658 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500659 mConst.SetValue("tw_no_cpu_temp", "1");
Jenkins1710bf22014-10-02 20:22:21 -0400660 }
661#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400662#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000663 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Ethan Yonkerfe916112016-03-14 14:54:37 -0500664 mConst.SetValue(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400665#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500666 mConst.SetValue(TW_POWER_BUTTON, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400667#endif
668#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000669 printf("TW_ALWAYS_RMRF := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500670 mConst.SetValue(TW_RM_RF_VAR, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400671#endif
672#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000673 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500674 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400675#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500676 mConst.SetValue(TW_DONT_UNMOUNT_SYSTEM, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400677#endif
678#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000679 printf("TW_NO_USB_STORAGE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500680 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400681#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000682 char lun_file[255];
683 string Lun_File_str = CUSTOM_LUN_FILE;
684 size_t found = Lun_File_str.find("%");
685 if (found != string::npos) {
686 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
687 Lun_File_str = lun_file;
688 }
689 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000690 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500691 mConst.SetValue(TW_HAS_USB_STORAGE, "0");
Dees_Troy6a042c82013-01-23 18:50:52 +0000692 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000693 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500694 mData.SetValue(TW_HAS_USB_STORAGE, "1");
Dees_Troy6a042c82013-01-23 18:50:52 +0000695 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400696#endif
697#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000698 printf("TW_INCLUDE_INJECTTWRP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500699 mConst.SetValue(TW_HAS_INJECTTWRP, "1");
700 mPersist(TW_INJECT_AFTER_ZIP, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400701#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500702 mConst.SetValue(TW_HAS_INJECTTWRP, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400703#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400704#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000705 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500706 mConst.SetValue(TW_DOWNLOAD_MODE, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400707#endif
708#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerfe916112016-03-14 14:54:37 -0500709 mConst.SetValue(TW_HAS_CRYPTO, "1");
Dees_Troyf4499812013-01-23 19:07:38 +0000710 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400711#endif
712#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000713 printf("TW_SDEXT_NO_EXT4 := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500714 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "1");
Dees_Troy51a0e822012-09-05 15:24:24 -0400715#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500716 mConst.SetValue(TW_SDEXT_DISABLE_EXT4, "0");
Dees_Troy51a0e822012-09-05 15:24:24 -0400717#endif
718
Dees_Troya13d74f2013-03-24 08:54:55 -0500719#ifdef TW_HAS_NO_BOOT_PARTITION
Ethan Yonkerfe916112016-03-14 14:54:37 -0500720 mPersist.SetValue("tw_backup_list", "/system;/data;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500721#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500722 mPersist.SetValue("tw_backup_list", "/system;/data;/boot;");
Dees_Troya13d74f2013-03-24 08:54:55 -0500723#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500724 mConst.SetValue(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE);
725 mData.SetValue(TW_BACKUP_NAME, "(Auto Generate)");
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500726
Matt Mower8dc25b72016-04-25 23:06:53 -0500727 mPersist.SetValue(TW_INSTALL_REBOOT_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500728 mPersist.SetValue(TW_SIGNED_ZIP_VERIFY_VAR, "0");
Matt Mowerbfccfb82016-04-25 23:22:31 -0500729 mPersist.SetValue(TW_DISABLE_FREE_SPACE_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400730 mPersist.SetValue(TW_FORCE_DIGEST_CHECK_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500731 mPersist.SetValue(TW_USE_COMPRESSION_VAR, "0");
732 mPersist.SetValue(TW_TIME_ZONE_VAR, "CST6CDT,M3.2.0,M11.1.0");
733 mPersist.SetValue(TW_GUI_SORT_ORDER, "1");
734 mPersist.SetValue(TW_RM_RF_VAR, "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400735 mPersist.SetValue(TW_SKIP_DIGEST_CHECK_VAR, "0");
736 mPersist.SetValue(TW_SKIP_DIGEST_GENERATE_VAR, "0");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500737 mPersist.SetValue(TW_SDEXT_SIZE, "0");
738 mPersist.SetValue(TW_SWAP_SIZE, "0");
739 mPersist.SetValue(TW_SDPART_FILE_SYSTEM, "ext3");
740 mPersist.SetValue(TW_TIME_ZONE_GUISEL, "CST6;CDT,M3.2.0,M11.1.0");
741 mPersist.SetValue(TW_TIME_ZONE_GUIOFFSET, "0");
742 mPersist.SetValue(TW_TIME_ZONE_GUIDST, "1");
743 mData.SetValue(TW_ACTION_BUSY, "0");
744 mData.SetValue("tw_wipe_cache", "0");
745 mData.SetValue("tw_wipe_dalvik", "0");
746 mData.SetValue(TW_ZIP_INDEX, "0");
747 mData.SetValue(TW_ZIP_QUEUE_COUNT, "0");
748 mData.SetValue(TW_FILENAME, "/sdcard");
749 mData.SetValue(TW_SIMULATE_ACTIONS, "0");
750 mData.SetValue(TW_SIMULATE_FAIL, "0");
751 mData.SetValue(TW_IS_ENCRYPTED, "0");
752 mData.SetValue(TW_IS_DECRYPTED, "0");
753 mData.SetValue(TW_CRYPTO_PASSWORD, "0");
754 mData.SetValue("tw_terminal_state", "0");
755 mData.SetValue("tw_background_thread_running", "0");
756 mData.SetValue(TW_RESTORE_FILE_DATE, "0");
757 mPersist.SetValue("tw_military_time", "0");
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400758
759#ifdef TW_INCLUDE_CRYPTO
760 mConst.SetValue(TW_USE_SHA2, "1");
761 mConst.SetValue(TW_NO_SHA2, "0");
762#else
763 mConst.SetValue(TW_NO_SHA2, "1");
764#endif
765
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700766#ifdef TW_NO_SCREEN_TIMEOUT
Ethan Yonkerfe916112016-03-14 14:54:37 -0500767 mConst.SetValue("tw_screen_timeout_secs", "0");
768 mConst.SetValue("tw_no_screen_timeout", "1");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700769#else
Ethan Yonkerfe916112016-03-14 14:54:37 -0500770 mPersist.SetValue("tw_screen_timeout_secs", "60");
771 mPersist.SetValue("tw_no_screen_timeout", "0");
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700772#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500773 mData.SetValue("tw_gui_done", "0");
774 mData.SetValue("tw_encrypt_backup", "0");
Matt Mower9a2a2052016-05-31 21:31:22 -0500775 mData.SetValue("tw_sleep_total", "5");
776 mData.SetValue("tw_sleep", "5");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500777
778 // Brightness handling
Ethan Yonker00028b42014-04-09 14:29:02 -0500779 string findbright;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900780#ifdef TW_BRIGHTNESS_PATH
781 findbright = EXPAND(TW_BRIGHTNESS_PATH);
782 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
783 if (!TWFunc::Path_Exists(findbright)) {
784 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
785 findbright = "";
Ethan Yonker00028b42014-04-09 14:29:02 -0500786 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900787#endif
Ethan Yonker00028b42014-04-09 14:29:02 -0500788 if (findbright.empty()) {
789 // Attempt to locate the brightness file
790 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500791 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500792 }
793 if (findbright.empty()) {
794 LOGINFO("Unable to locate brightness file\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500795 mConst.SetValue("tw_has_brightnesss_file", "0");
Ethan Yonker00028b42014-04-09 14:29:02 -0500796 } else {
797 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500798 mConst.SetValue("tw_has_brightnesss_file", "1");
799 mConst.SetValue("tw_brightness_file", findbright);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900800 string maxBrightness;
801#ifdef TW_MAX_BRIGHTNESS
Vojtech Bocek85932342013-04-01 22:11:33 +0200802 ostringstream maxVal;
803 maxVal << TW_MAX_BRIGHTNESS;
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900804 maxBrightness = maxVal.str();
805#else
806 // Attempt to locate the max_brightness file
807 string maxbrightpath = findbright.insert(findbright.rfind('/') + 1, "max_");
808 if (TWFunc::Path_Exists(maxbrightpath)) {
Ethan Yonker72a85202016-01-22 11:45:06 -0600809 ifstream maxVal(maxbrightpath.c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -0600810 if (maxVal >> maxBrightness) {
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900811 LOGINFO("Got max brightness %s from '%s'\n", maxBrightness.c_str(), maxbrightpath.c_str());
812 } else {
813 // Something went wrong, set that to indicate error
814 maxBrightness = "-1";
815 }
816 }
Ethan Yonker72a85202016-01-22 11:45:06 -0600817 if (atoi(maxBrightness.c_str()) <= 0)
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900818 {
819 // Fallback into default
820 ostringstream maxVal;
821 maxVal << 255;
822 maxBrightness = maxVal.str();
823 }
824#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500825 mConst.SetValue("tw_brightness_max", maxBrightness);
826 mPersist.SetValue("tw_brightness", maxBrightness);
827 mPersist.SetValue("tw_brightness_pct", "100");
xNUTxe85f02d2014-07-18 01:30:58 +0200828#ifdef TW_SECONDARY_BRIGHTNESS_PATH
829 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
830 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
831 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
Ethan Yonkerfe916112016-03-14 14:54:37 -0500832 mConst.SetValue("tw_secondary_brightness_file", secondfindbright);
xNUTxe85f02d2014-07-18 01:30:58 +0200833 } else {
834 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
835 }
836#endif
Greg Wallace36ade452015-11-08 13:54:25 -0500837#ifdef TW_DEFAULT_BRIGHTNESS
838 int defValInt = TW_DEFAULT_BRIGHTNESS;
Ethan Yonker72a85202016-01-22 11:45:06 -0600839 int maxValInt = atoi(maxBrightness.c_str());
Greg Wallace36ade452015-11-08 13:54:25 -0500840 // Deliberately int so the % is always a whole number
841 int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
842 ostringstream defPct;
843 defPct << defPctInt;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500844 mPersist.SetValue("tw_brightness_pct", defPct.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500845
846 ostringstream defVal;
847 defVal << TW_DEFAULT_BRIGHTNESS;
Ethan Yonkerfe916112016-03-14 14:54:37 -0500848 mPersist.SetValue("tw_brightness", defVal.str());
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900849 TWFunc::Set_Brightness(defVal.str());
Greg Wallace36ade452015-11-08 13:54:25 -0500850#else
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +0900851 TWFunc::Set_Brightness(maxBrightness);
Greg Wallace36ade452015-11-08 13:54:25 -0500852#endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600853 }
Ethan Yonkerfe916112016-03-14 14:54:37 -0500854
Dees_Troy83bd4832013-05-04 12:39:56 +0000855#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonkerfe916112016-03-14 14:54:37 -0500856 mConst.SetValue("tw_include_encrypted_backup", "1");
Dees_Troy83bd4832013-05-04 12:39:56 +0000857#else
858 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500859 mConst.SetValue("tw_include_encrypted_backup", "0");
Dees_Troy83bd4832013-05-04 12:39:56 +0000860#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400861#ifdef TW_HAS_MTP
Ethan Yonkerfe916112016-03-14 14:54:37 -0500862 mConst.SetValue("tw_has_mtp", "1");
863 mPersist.SetValue("tw_mtp_enabled", "1");
864 mPersist.SetValue("tw_mtp_debug", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400865#else
866 LOGINFO("TW_EXCLUDE_MTP := true\n");
Ethan Yonkerfe916112016-03-14 14:54:37 -0500867 mConst.SetValue("tw_has_mtp", "0");
868 mConst.SetValue("tw_mtp_enabled", "0");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400869#endif
Ethan Yonkerfe916112016-03-14 14:54:37 -0500870 mPersist.SetValue("tw_mount_system_ro", "2");
871 mPersist.SetValue("tw_never_show_system_ro_page", "0");
872 mPersist.SetValue("tw_language", EXPAND(TW_DEFAULT_LANGUAGE));
Ethan Yonker74db1572015-10-28 12:44:49 -0500873 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100874
Ethan Yonkerfe916112016-03-14 14:54:37 -0500875 mData.SetValue("tw_has_adopted_storage", "0");
Ethan Yonker66a19492015-12-10 10:19:45 -0600876
Ethan Yonker1b190162016-12-05 15:25:19 -0600877#ifdef AB_OTA_UPDATER
878 LOGINFO("AB_OTA_UPDATER := true\n");
879 mConst.SetValue("tw_has_boot_slots", "1");
880#else
881 mConst.SetValue("tw_has_boot_slots", "0");
882#endif
nkk71b4c35912017-10-11 23:39:10 +0300883
Ethan Yonker75aa6152017-09-08 12:17:03 -0500884#ifdef TW_NO_LEGACY_PROPS
885 LOGINFO("TW_NO_LEGACY_PROPS := true\n");
Ethan Yonker75aa6152017-09-08 12:17:03 -0500886#endif
nkk71b4c35912017-10-11 23:39:10 +0300887
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600888#ifdef TW_OEM_BUILD
889 LOGINFO("TW_OEM_BUILD := true\n");
890 mConst.SetValue("tw_oem_build", "1");
891#else
892 mConst.SetValue("tw_oem_build", "0");
893 mPersist.SetValue("tw_app_prompt", "1");
894 mPersist.SetValue("tw_app_install_system", "1");
895 mData.SetValue("tw_app_install_status", "0"); // 0 = no status, 1 = not installed, 2 = already installed
896#endif
897
jason972000adae3362017-12-08 09:08:45 -0600898 mData.SetValue("tw_enable_adb_backup", "0");
899
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100900 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400901}
902
903// Magic Values
Ethan Yonkerfe916112016-03-14 14:54:37 -0500904int DataManager::GetMagicValue(const string& varName, string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400905{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200906 // Handle special dynamic cases
907 if (varName == "tw_time")
908 {
909 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400910
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200911 struct tm *current;
912 time_t now;
913 int tw_military_time;
914 now = time(0);
915 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500916 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200917 if (current->tm_hour >= 12)
918 {
919 if (tw_military_time == 1)
920 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
921 else
922 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500923 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500924 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200925 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500926 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200927 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
928 else
929 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
930 }
931 value = tmp;
932 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500933 }
Jenkins1710bf22014-10-02 20:22:21 -0400934 else if (varName == "tw_cpu_temp")
935 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600936 int tw_no_cpu_temp;
937 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
938 if (tw_no_cpu_temp == 1) return -1;
Agontuka29361a2015-04-22 14:42:59 +0600939
Matt Mowera8a89d12016-12-30 18:10:37 -0600940 string cpu_temp_file;
941 static unsigned long convert_temp = 0;
942 static time_t cpuSecCheck = 0;
Matt Mowera8a89d12016-12-30 18:10:37 -0600943 struct timeval curTime;
944 string results;
Jenkins1710bf22014-10-02 20:22:21 -0400945
Matt Mowera8a89d12016-12-30 18:10:37 -0600946 gettimeofday(&curTime, NULL);
947 if (curTime.tv_sec > cpuSecCheck)
948 {
Jenkins1710bf22014-10-02 20:22:21 -0400949#ifdef TW_CUSTOM_CPU_TEMP_PATH
Matt Mowera8a89d12016-12-30 18:10:37 -0600950 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
951 if (TWFunc::read_file(cpu_temp_file, results) != 0)
952 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400953#else
Matt Mowera8a89d12016-12-30 18:10:37 -0600954 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
955 if (TWFunc::read_file(cpu_temp_file, results) != 0)
956 return -1;
Jenkins1710bf22014-10-02 20:22:21 -0400957#endif
Matt Mowera8a89d12016-12-30 18:10:37 -0600958 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
959 if (convert_temp <= 0)
960 convert_temp = strtoul(results.c_str(), NULL, 0);
961 if (convert_temp >= 150)
962 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
963 cpuSecCheck = curTime.tv_sec + 5;
964 }
965 value = TWFunc::to_string(convert_temp);
966 return 0;
Jenkins1710bf22014-10-02 20:22:21 -0400967 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200968 else if (varName == "tw_battery")
969 {
970 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -0400971 static char charging = ' ';
972 static int lastVal = -1;
973 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400974 struct timeval curTime;
975 gettimeofday(&curTime, NULL);
976 if (curTime.tv_sec > nextSecCheck)
977 {
978 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +0000979#ifdef TW_CUSTOM_BATTERY_PATH
980 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
981 capacity_file += "/capacity";
982 FILE * cap = fopen(capacity_file.c_str(),"rt");
983#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400984 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000985#endif
Matt Mowera8a89d12016-12-30 18:10:37 -0600986 if (cap) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400987 fgets(cap_s, 4, cap);
988 fclose(cap);
989 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200990 if (lastVal > 100) lastVal = 101;
991 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400992 }
Dees_Troyf33b4902013-03-01 00:51:39 +0000993#ifdef TW_CUSTOM_BATTERY_PATH
994 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
995 status_file += "/status";
996 cap = fopen(status_file.c_str(),"rt");
997#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400998 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000999#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04001000 if (cap) {
1001 fgets(cap_s, 2, cap);
1002 fclose(cap);
1003 if (cap_s[0] == 'C')
1004 charging = '+';
1005 else
1006 charging = ' ';
1007 }
1008 nextSecCheck = curTime.tv_sec + 60;
1009 }
1010
1011 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001012 value = tmp;
1013 return 0;
1014 }
1015 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -04001016}
1017
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001018void DataManager::Output_Version(void)
1019{
Ethan Yonker89583ef2015-08-26 09:01:59 -05001020#ifndef TW_OEM_BUILD
Dees_Troy1c1ac442013-01-17 21:42:14 +00001021 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001022 char version[255];
1023
Dees_Troy1c1ac442013-01-17 21:42:14 +00001024 if (!PartitionManager.Mount_By_Path("/cache", false)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001025 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001026 return;
1027 }
Dees_Troy1c1ac442013-01-17 21:42:14 +00001028 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001029 LOGINFO("Recreating /cache/recovery folder.\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +00001030 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001031 LOGERR("DataManager::Output_Version -- Unable to make /cache/recovery\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +00001032 return;
1033 }
1034 }
1035 Path = "/cache/recovery/.version";
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001036 if (TWFunc::Path_Exists(Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001037 unlink(Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001038 }
1039 FILE *fp = fopen(Path.c_str(), "w");
1040 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001041 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Path)(strerror(errno)));
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001042 return;
1043 }
1044 strcpy(version, TW_VERSION_STR);
1045 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
1046 fclose(fp);
Dees_Troyd93bda52013-07-03 19:55:19 +00001047 TWFunc::copy_file("/etc/recovery.fstab", "/cache/recovery/recovery.fstab", 0644);
1048 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001049 sync();
Dees_Troy2673cec2013-04-02 20:22:16 +00001050 LOGINFO("Version number saved to '%s'\n", Path.c_str());
Ethan Yonker89583ef2015-08-26 09:01:59 -05001051#endif
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001052}
1053
Dees_Troy51a0e822012-09-05 15:24:24 -04001054void DataManager::ReadSettingsFile(void)
1055{
Ethan Yonker83e82572014-04-04 10:59:28 -05001056#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001057 // Load up the values for TWRP - Sleep to let the card be ready
1058 char mkdir_path[255], settings_file[255];
Matt Mower23d8aae2017-01-06 14:30:33 -06001059 int is_enc, has_data_media;
Dees_Troy51a0e822012-09-05 15:24:24 -04001060
1061 GetValue(TW_IS_ENCRYPTED, is_enc);
1062 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
1063 if (is_enc == 1 && has_data_media == 1) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001064 LOGINFO("Cannot load settings -- encrypted.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001065 return;
1066 }
1067
1068 memset(mkdir_path, 0, sizeof(mkdir_path));
1069 memset(settings_file, 0, sizeof(settings_file));
Vojtech Bocekfda239b2015-01-07 22:55:13 +01001070 sprintf(mkdir_path, "%s/TWRP", GetSettingsStoragePath().c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001071 sprintf(settings_file, "%s/.twrps", mkdir_path);
1072
Dees_Troy5bf43922012-09-07 16:07:55 -04001073 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001074 {
1075 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001076 if (!PartitionManager.Mount_Settings_Storage(false))
Ethan Yonker74db1572015-10-28 12:44:49 -05001077 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(settings_file));
Dees_Troy51a0e822012-09-05 15:24:24 -04001078 }
1079
1080 mkdir(mkdir_path, 0777);
1081
Dees_Troy2673cec2013-04-02 20:22:16 +00001082 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001083 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001084 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001085#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001086 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001087 update_tz_environment_variables();
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001088 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy51a0e822012-09-05 15:24:24 -04001089}
1090
1091string DataManager::GetCurrentStoragePath(void)
1092{
Dees_Troya13d74f2013-03-24 08:54:55 -05001093 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001094}
1095
Dees_Troy51a0e822012-09-05 15:24:24 -04001096string DataManager::GetSettingsStoragePath(void)
1097{
Dees_Troya13d74f2013-03-24 08:54:55 -05001098 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001099}
1100
Ethan Yonkerfe916112016-03-14 14:54:37 -05001101void DataManager::Vibrate(const string& varName)
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001102{
1103 int vib_value = 0;
1104 GetValue(varName, vib_value);
1105 if (vib_value) {
1106 vibrate(vib_value);
1107 }
1108}