blob: d82d285fefe1ee788fdcc16f4d560a074780ba60 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
Dees Troy3be70a82013-10-22 14:25:12 +00002 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 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
19#include <linux/input.h>
20#include <pthread.h>
21#include <stdarg.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <fcntl.h>
26#include <sys/stat.h>
27#include <sys/time.h>
28#include <sys/mman.h>
29#include <sys/types.h>
30#include <sys/ioctl.h>
31#include <time.h>
32#include <unistd.h>
33#include <stdlib.h>
34
35#include <string>
36#include <utility>
37#include <map>
38#include <fstream>
39#include <sstream>
40
41#include "variables.h"
42#include "data.hpp"
43#include "partitions.hpp"
Dees_Troy01a9b7a2012-10-01 09:01:03 -040044#include "twrp-functions.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070045#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troy2f9117a2013-02-17 19:52:09 -060046#include "gui/blanktimer.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070047#endif
Ethan Yonker00028b42014-04-09 14:29:02 -050048#include "find_file.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060049#include "set_metadata.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040050
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070051#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020052 #include "cutils/properties.h"
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070053#endif
54
Ethan Yonkera18f1082014-07-07 15:07:58 -050055#ifndef TW_MAX_BRIGHTNESS
56#define TW_MAX_BRIGHTNESS 255
57#endif
58
Dees_Troy51a0e822012-09-05 15:24:24 -040059extern "C"
60{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020061 #include "twcommon.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040062 #include "gui/pages.h"
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +000063 #include "minuitwrp/minui.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040064 void gui_notifyVarChange(const char *name, const char* value);
Dees_Troy51a0e822012-09-05 15:24:24 -040065}
66
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020067#define FILE_VERSION 0x00010001
Dees_Troy51a0e822012-09-05 15:24:24 -040068
69using namespace std;
70
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070071map<string, DataManager::TStrIntPair> DataManager::mValues;
72map<string, string> DataManager::mConstValues;
73string DataManager::mBackingFile;
74int DataManager::mInitialized = 0;
Jenkins1710bf22014-10-02 20:22:21 -040075
Ethan Yonker6277c792014-09-15 14:54:30 -050076extern bool datamedia;
Dees_Troy51a0e822012-09-05 15:24:24 -040077
Vojtech Bocekfda239b2015-01-07 22:55:13 +010078pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
79
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040080// Device ID functions
81void DataManager::sanitize_device_id(char* device_id) {
82 const char* whitelist ="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-._";
83 char str[50];
84 char* c = str;
85
86 strcpy(str, device_id);
87 memset(device_id, 0, sizeof(device_id));
88 while (*c) {
89 if (strchr(whitelist, *c))
90 strncat(device_id, c, 1);
91 c++;
92 }
93 return;
94}
95
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020096#define CMDLINE_SERIALNO "androidboot.serialno="
97#define CMDLINE_SERIALNO_LEN (strlen(CMDLINE_SERIALNO))
98#define CPUINFO_SERIALNO "Serial"
99#define CPUINFO_SERIALNO_LEN (strlen(CPUINFO_SERIALNO))
100#define CPUINFO_HARDWARE "Hardware"
101#define CPUINFO_HARDWARE_LEN (strlen(CPUINFO_HARDWARE))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400102
103void DataManager::get_device_id(void) {
104 FILE *fp;
105 char line[2048];
106 char hardware_id[32], device_id[64];
107 char* token;
108
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200109 // Assign a blank device_id to start with
110 device_id[0] = 0;
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700111
112#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
113 // Now we'll use product_model_hardwareid as device id
114 char model_id[PROPERTY_VALUE_MAX];
115 property_get("ro.product.model", model_id, "error");
116 if (strcmp(model_id,"error") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000117 LOGINFO("=> product model: '%s'\n", model_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700118 // Replace spaces with underscores
119 for(int i = 0; i < strlen(model_id); i++) {
120 if(model_id[i] == ' ')
121 model_id[i] = '_';
122 }
123 strcpy(device_id, model_id);
124 if (hardware_id[0] != 0) {
125 strcat(device_id, "_");
126 strcat(device_id, hardware_id);
127 }
128 sanitize_device_id((char *)device_id);
129 mConstValues.insert(make_pair("device_id", device_id));
Dees_Troy2673cec2013-04-02 20:22:16 +0000130 LOGINFO("=> using device id: '%s'\n", device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700131 return;
132 }
133#endif
134
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400135#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200136 // First, try the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400137 fp = fopen("/proc/cmdline", "rt");
138 if (fp != NULL)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200139 {
140 // First step, read the line. For cmdline, it's one long line
141 fgets(line, sizeof(line), fp);
142 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400143
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200144 // Now, let's tokenize the string
145 token = strtok(line, " ");
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400146
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200147 // Let's walk through the line, looking for the CMDLINE_SERIALNO token
148 while (token)
149 {
150 // We don't need to verify the length of token, because if it's too short, it will mismatch CMDLINE_SERIALNO at the NULL
151 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0)
152 {
153 // We found the serial number!
154 strcpy(device_id, token + CMDLINE_SERIALNO_LEN);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400155 sanitize_device_id((char *)device_id);
156 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200157 return;
158 }
159 token = strtok(NULL, " ");
160 }
161 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400162#endif
163 // Now we'll try cpuinfo for a serial number
164 fp = fopen("/proc/cpuinfo", "rt");
165 if (fp != NULL)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200166 {
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400167 while (fgets(line, sizeof(line), fp) != NULL) { // First step, read the line.
168 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) // check the beginning of the line for "Serial"
169 {
170 // We found the serial number!
171 token = line + CPUINFO_SERIALNO_LEN; // skip past "Serial"
172 while ((*token > 0 && *token <= 32 ) || *token == ':') token++; // skip over all spaces and the colon
173 if (*token != 0) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200174 token[30] = 0;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400175 if (token[strlen(token)-1] == 10) { // checking for endline chars and dropping them from the end of the string if needed
176 memset(device_id, 0, sizeof(device_id));
177 strncpy(device_id, token, strlen(token) - 1);
178 } else {
179 strcpy(device_id, token);
180 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000181 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400182 fclose(fp);
183 sanitize_device_id((char *)device_id);
184 mConstValues.insert(make_pair("device_id", device_id));
185 return;
186 }
187 } else if (memcmp(line, CPUINFO_HARDWARE, CPUINFO_HARDWARE_LEN) == 0) {// We're also going to look for the hardware line in cpuinfo and save it for later in case we don't find the device ID
188 // We found the hardware ID
189 token = line + CPUINFO_HARDWARE_LEN; // skip past "Hardware"
190 while ((*token > 0 && *token <= 32 ) || *token == ':') token++; // skip over all spaces and the colon
191 if (*token != 0) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200192 token[30] = 0;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400193 if (token[strlen(token)-1] == 10) { // checking for endline chars and dropping them from the end of the string if needed
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200194 memset(hardware_id, 0, sizeof(hardware_id));
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400195 strncpy(hardware_id, token, strlen(token) - 1);
196 } else {
197 strcpy(hardware_id, token);
198 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000199 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400200 }
201 }
202 }
203 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200204 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400205
206 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000207 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400208 strcpy(device_id, hardware_id);
209 sanitize_device_id((char *)device_id);
210 mConstValues.insert(make_pair("device_id", device_id));
211 return;
212 }
213
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200214 strcpy(device_id, "serialno");
Dees_Troy2673cec2013-04-02 20:22:16 +0000215 LOGERR("=> device id not found, using '%s'.", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400216 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200217 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400218}
219
Dees_Troy51a0e822012-09-05 15:24:24 -0400220int DataManager::ResetDefaults()
221{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100222 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200223 mValues.clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100224 pthread_mutex_unlock(&m_valuesLock);
225
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200226 mConstValues.clear();
227 SetDefaultValues();
228 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400229}
230
231int DataManager::LoadValues(const string filename)
232{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200233 string str, 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;
Dees_Troy51a0e822012-09-05 15:24:24 -0400241
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200242 // Read in the file, if possible
243 FILE* in = fopen(filename.c_str(), "rb");
244 if (!in) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000245 LOGINFO("Settings file '%s' not found.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500246 return 0;
247 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000248 LOGINFO("Loading settings from '%s'.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500249 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400250
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200251 int file_version;
252 if (fread(&file_version, 1, sizeof(int), in) != sizeof(int)) goto error;
253 if (file_version != FILE_VERSION) goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400254
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200255 while (!feof(in))
256 {
257 string Name;
258 string Value;
259 unsigned short length;
260 char array[512];
Dees_Troy51a0e822012-09-05 15:24:24 -0400261
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200262 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
263 if (length >= 512) goto error;
264 if (fread(array, 1, length, in) != length) goto error;
265 Name = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400266
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200267 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
268 if (length >= 512) goto error;
269 if (fread(array, 1, length, in) != length) goto error;
270 Value = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400271
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200272 map<string, TStrIntPair>::iterator pos;
Dees_Troy51a0e822012-09-05 15:24:24 -0400273
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100274 pthread_mutex_lock(&m_valuesLock);
275
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200276 pos = mValues.find(Name);
277 if (pos != mValues.end())
278 {
279 pos->second.first = Value;
280 pos->second.second = 1;
281 }
282 else
283 mValues.insert(TNameValuePair(Name, TStrIntPair(Value, 1)));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100284
285 pthread_mutex_unlock(&m_valuesLock);
286
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700287#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troya13d74f2013-03-24 08:54:55 -0500288 if (Name == "tw_screen_timeout_secs")
289 blankTimer.setTime(atoi(Value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700290#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200291 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400292error:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200293 fclose(in);
Dees_Troya13d74f2013-03-24 08:54:55 -0500294 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500295 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200296 if(!Part)
297 Part = PartitionManager.Get_Default_Storage_Partition();
298 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500299 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
300 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500301 } else {
302 SetBackupFolder();
303 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200304 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400305}
306
307int DataManager::Flush()
308{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200309 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400310}
311
312int DataManager::SaveValues()
313{
Ethan Yonker83e82572014-04-04 10:59:28 -0500314#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200315 if (mBackingFile.empty())
316 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400317
318 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400319 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400320
321 FILE* out = fopen(mBackingFile.c_str(), "wb");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200322 if (!out)
323 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400324
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200325 int file_version = FILE_VERSION;
326 fwrite(&file_version, 1, sizeof(int), out);
Dees_Troy51a0e822012-09-05 15:24:24 -0400327
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100328 pthread_mutex_lock(&m_valuesLock);
329
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200330 map<string, TStrIntPair>::iterator iter;
331 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
332 {
333 // Save only the persisted data
334 if (iter->second.second != 0)
335 {
336 unsigned short length = (unsigned short) iter->first.length() + 1;
337 fwrite(&length, 1, sizeof(unsigned short), out);
338 fwrite(iter->first.c_str(), 1, length, out);
339 length = (unsigned short) iter->second.first.length() + 1;
340 fwrite(&length, 1, sizeof(unsigned short), out);
341 fwrite(iter->second.first.c_str(), 1, length, out);
342 }
343 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100344
345 pthread_mutex_unlock(&m_valuesLock);
346
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200347 fclose(out);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600348 tw_set_default_metadata(mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500349#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200350 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400351}
352
353int DataManager::GetValue(const string varName, string& value)
354{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200355 string localStr = varName;
Dees_Troy51a0e822012-09-05 15:24:24 -0400356
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200357 if (!mInitialized)
358 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400359
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200360 // Strip off leading and trailing '%' if provided
361 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
362 {
363 localStr.erase(0, 1);
364 localStr.erase(localStr.length() - 1, 1);
365 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400366
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200367 // Handle magic values
368 if (GetMagicValue(localStr, value) == 0)
369 return 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200370 map<string, string>::iterator constPos;
371 constPos = mConstValues.find(localStr);
372 if (constPos != mConstValues.end())
373 {
374 value = constPos->second;
375 return 0;
376 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400377
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100378 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200379 map<string, TStrIntPair>::iterator pos;
380 pos = mValues.find(localStr);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100381 if (pos == mValues.end()){
382 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200383 return -1;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100384 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400385
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200386 value = pos->second.first;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100387 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200388 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400389}
390
391int DataManager::GetValue(const string varName, int& value)
392{
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
Dees_Troy2673cec2013-04-02 20:22:16 +0000402int DataManager::GetValue(const string varName, float& value)
403{
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
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500413unsigned long long DataManager::GetValue(const string varName, unsigned long long& value)
414{
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
425string DataManager::GetStrValue(const string varName)
426{
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
434int DataManager::GetIntValue(const string varName)
435{
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
442int DataManager::SetValue(const string varName, string value, int persist /* = 0 */)
443{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200444 if (!mInitialized)
445 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400446
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200447 // Don't allow empty values or numerical starting values
448 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
449 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400450
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200451 map<string, string>::iterator constChk;
452 constChk = mConstValues.find(varName);
453 if (constChk != mConstValues.end())
454 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400455
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100456 pthread_mutex_lock(&m_valuesLock);
457
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200458 map<string, TStrIntPair>::iterator pos;
459 pos = mValues.find(varName);
460 if (pos == mValues.end())
461 pos = (mValues.insert(TNameValuePair(varName, TStrIntPair(value, persist)))).first;
462 else
463 pos->second.first = value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400464
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200465 if (pos->second.second != 0)
466 SaveValues();
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
482int DataManager::SetValue(const string varName, int value, int persist /* = 0 */)
483{
484 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200485 valStr << value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400486 if (varName == "tw_use_external_storage") {
487 string str;
488
489 if (GetIntValue(TW_HAS_DUAL_STORAGE) == 1) {
490 if (value == 0) {
491 str = GetStrValue(TW_INTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400492 } else {
493 str = GetStrValue(TW_EXTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400494 }
495 } else if (GetIntValue(TW_HAS_INTERNAL) == 1)
496 str = GetStrValue(TW_INTERNAL_PATH);
497 else
498 str = GetStrValue(TW_EXTERNAL_PATH);
499
Dees_Troya13d74f2013-03-24 08:54:55 -0500500 SetValue("tw_storage_path", str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400501 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200502 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400503}
504
505int DataManager::SetValue(const string varName, float value, int persist /* = 0 */)
506{
507 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200508 valStr << value;
509 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400510}
511
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500512int DataManager::SetValue(const string varName, unsigned long long value, int persist /* = 0 */)
513{
514 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200515 valStr << value;
516 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500517}
518
Dees_Troy2673cec2013-04-02 20:22:16 +0000519int DataManager::SetProgress(float Fraction) {
520 return SetValue("ui_progress", (float) (Fraction * 100.0));
521}
522
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200523int DataManager::ShowProgress(float Portion, float Seconds)
524{
Dees_Troy2673cec2013-04-02 20:22:16 +0000525 float Starting_Portion;
526 GetValue("ui_progress_portion", Starting_Portion);
527 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
528 return -1;
529 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
530 return -1;
531 return 0;
532}
533
Dees_Troy51a0e822012-09-05 15:24:24 -0400534void DataManager::DumpValues()
535{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200536 map<string, TStrIntPair>::iterator iter;
537 gui_print("Data Manager dump - Values with leading X are persisted.\n");
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100538 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200539 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
540 gui_print("%c %s=%s\n", iter->second.second ? 'X' : ' ', iter->first.c_str(), iter->second.first.c_str());
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100541 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400542}
543
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200544void DataManager::update_tz_environment_variables(void)
545{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100546 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200547 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400548}
549
Dees_Troy16b74352012-11-14 22:27:31 +0000550void DataManager::SetBackupFolder()
551{
552 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500553 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000554 str += "/TWRP/BACKUPS/";
555
556 string dev_id;
557 GetValue("device_id", dev_id);
558
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200559 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000560 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000561 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500562 if (partition != NULL) {
563 SetValue("tw_storage_display_name", partition->Storage_Name);
564 char free_space[255];
565 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
566 SetValue("tw_storage_free_size", free_space);
567 string zip_path, zip_root, storage_path;
568 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
569 if (partition->Has_Data_Media)
570 storage_path = partition->Symlink_Mount_Point;
571 else
572 storage_path = partition->Storage_Path;
573 if (zip_path.size() < storage_path.size()) {
574 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
575 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000576 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500577 if (zip_root != storage_path) {
578 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 -0500579 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500580 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500581 }
582 } else {
583 if (PartitionManager.Fstab_Processed() != 0)
Dees_Troy2673cec2013-04-02 20:22:16 +0000584 LOGERR("Storage partition '%s' not found\n", str.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500585 }
Dees_Troy16b74352012-11-14 22:27:31 +0000586}
587
Dees_Troy51a0e822012-09-05 15:24:24 -0400588void DataManager::SetDefaultValues()
589{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200590 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400591
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200592 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400593
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100594 pthread_mutex_lock(&m_valuesLock);
595
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200596 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400597
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200598 mConstValues.insert(make_pair("true", "1"));
599 mConstValues.insert(make_pair("false", "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400600
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200601 mConstValues.insert(make_pair(TW_VERSION_VAR, TW_VERSION_STR));
Ethan Yonker03db3262014-02-05 08:02:06 -0600602 mValues.insert(make_pair("tw_button_vibrate", make_pair("80", 1)));
603 mValues.insert(make_pair("tw_keyboard_vibrate", make_pair("40", 1)));
604 mValues.insert(make_pair("tw_action_vibrate", make_pair("160", 1)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400605
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200606 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
607 if(store)
608 mValues.insert(make_pair("tw_storage_path", make_pair(store->Storage_Path.c_str(), 1)));
609 else
610 mValues.insert(make_pair("tw_storage_path", make_pair("/", 1)));
611
Dees_Troyf4499812013-01-23 19:07:38 +0000612#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
613 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
614#endif
615
Dees_Troy51a0e822012-09-05 15:24:24 -0400616#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000617 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200618 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400619#else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200620 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400621#endif
622
623#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000624 printf("TW_INCLUDE_DUMLOCK := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400625 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "1"));
626#else
627 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "0"));
628#endif
629
Dees_Troy51a0e822012-09-05 15:24:24 -0400630 str = GetCurrentStoragePath();
Dees_Troy51a0e822012-09-05 15:24:24 -0400631 SetValue(TW_ZIP_LOCATION_VAR, str.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400632 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400633
634 string dev_id;
635 GetValue("device_id", dev_id);
636
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200637 str += dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400638 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
639
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200640 mConstValues.insert(make_pair(TW_REBOOT_SYSTEM, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400641#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100642 printf("TW_NO_REBOOT_RECOVERY := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400643 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "0"));
644#else
Dees_Troya58bead2012-09-27 09:49:29 -0400645 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400646#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200647 mConstValues.insert(make_pair(TW_REBOOT_POWEROFF, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400648#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100649 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400650 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "0"));
651#else
Dees_Troya58bead2012-09-27 09:49:29 -0400652 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400653#endif
654#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000655 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400656 mConstValues.insert(make_pair(TW_HAS_DATA_MEDIA, "1"));
Ethan Yonker6277c792014-09-15 14:54:30 -0500657 mConstValues.insert(make_pair("tw_has_internal", "1"));
658 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400659#else
Ethan Yonker6277c792014-09-15 14:54:30 -0500660 mValues.insert(make_pair(TW_HAS_DATA_MEDIA, make_pair("0", 0)));
661 mValues.insert(make_pair("tw_has_internal", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400662#endif
663#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000664 printf("TW_NO_BATT_PERCENT := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400665 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "1"));
666#else
667 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "0"));
668#endif
Jenkins1710bf22014-10-02 20:22:21 -0400669#ifdef TW_NO_CPU_TEMP
670 printf("TW_NO_CPU_TEMP := true\n");
671 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
672#else
673 string cpu_temp_file;
674#ifdef TW_CUSTOM_CPU_TEMP_PATH
675 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
676#else
677 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
678#endif
679 if (TWFunc::Path_Exists(cpu_temp_file)) {
680 mConstValues.insert(make_pair("tw_no_cpu_temp", "0"));
681 } else {
682 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
683 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
684 }
685#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400686#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000687 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400688 mConstValues.insert(make_pair(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON)));
689#else
690 mConstValues.insert(make_pair(TW_POWER_BUTTON, "0"));
691#endif
692#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000693 printf("TW_ALWAYS_RMRF := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400694 mConstValues.insert(make_pair(TW_RM_RF_VAR, "1"));
695#endif
696#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000697 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400698 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "1"));
699#else
700 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "0"));
701#endif
702#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000703 printf("TW_NO_USB_STORAGE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400704 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
705#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000706 char lun_file[255];
707 string Lun_File_str = CUSTOM_LUN_FILE;
708 size_t found = Lun_File_str.find("%");
709 if (found != string::npos) {
710 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
711 Lun_File_str = lun_file;
712 }
713 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000714 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000715 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
716 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000717 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000718 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "1"));
719 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400720#endif
721#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000722 printf("TW_INCLUDE_INJECTTWRP := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400723 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "1"));
724 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("1", 1)));
725#else
726 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "0"));
727 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("0", 1)));
728#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400729#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000730 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400731 mConstValues.insert(make_pair(TW_DOWNLOAD_MODE, "1"));
732#endif
733#ifdef TW_INCLUDE_CRYPTO
734 mConstValues.insert(make_pair(TW_HAS_CRYPTO, "1"));
Dees_Troyf4499812013-01-23 19:07:38 +0000735 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400736#endif
737#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000738 printf("TW_SDEXT_NO_EXT4 := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400739 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "1"));
740#else
741 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "0"));
742#endif
743
Dees_Troya13d74f2013-03-24 08:54:55 -0500744#ifdef TW_HAS_NO_BOOT_PARTITION
Dees_Troyf100c942013-06-21 08:15:31 -0500745 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500746#else
Dees_Troyf100c942013-06-21 08:15:31 -0500747 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;/boot;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500748#endif
749 mConstValues.insert(make_pair(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE));
Dees Troyb21cc642013-09-10 17:36:41 +0000750 mValues.insert(make_pair(TW_BACKUP_NAME, make_pair("(Auto Generate)", 0)));
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500751
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200752 mValues.insert(make_pair(TW_REBOOT_AFTER_FLASH_VAR, make_pair("0", 1)));
753 mValues.insert(make_pair(TW_SIGNED_ZIP_VERIFY_VAR, make_pair("0", 1)));
754 mValues.insert(make_pair(TW_FORCE_MD5_CHECK_VAR, make_pair("0", 1)));
755 mValues.insert(make_pair(TW_COLOR_THEME_VAR, make_pair("0", 1)));
756 mValues.insert(make_pair(TW_USE_COMPRESSION_VAR, make_pair("0", 1)));
757 mValues.insert(make_pair(TW_SHOW_SPAM_VAR, make_pair("0", 1)));
758 mValues.insert(make_pair(TW_TIME_ZONE_VAR, make_pair("CST6CDT", 1)));
759 mValues.insert(make_pair(TW_SORT_FILES_BY_DATE_VAR, make_pair("0", 1)));
760 mValues.insert(make_pair(TW_GUI_SORT_ORDER, make_pair("1", 1)));
761 mValues.insert(make_pair(TW_RM_RF_VAR, make_pair("0", 1)));
762 mValues.insert(make_pair(TW_SKIP_MD5_CHECK_VAR, make_pair("0", 1)));
763 mValues.insert(make_pair(TW_SKIP_MD5_GENERATE_VAR, make_pair("0", 1)));
764 mValues.insert(make_pair(TW_SDEXT_SIZE, make_pair("512", 1)));
765 mValues.insert(make_pair(TW_SWAP_SIZE, make_pair("32", 1)));
766 mValues.insert(make_pair(TW_SDPART_FILE_SYSTEM, make_pair("ext3", 1)));
767 mValues.insert(make_pair(TW_TIME_ZONE_GUISEL, make_pair("CST6;CDT", 1)));
768 mValues.insert(make_pair(TW_TIME_ZONE_GUIOFFSET, make_pair("0", 1)));
769 mValues.insert(make_pair(TW_TIME_ZONE_GUIDST, make_pair("1", 1)));
770 mValues.insert(make_pair(TW_ACTION_BUSY, make_pair("0", 0)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200771 mValues.insert(make_pair("tw_wipe_cache", make_pair("0", 0)));
772 mValues.insert(make_pair("tw_wipe_dalvik", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400773 if (GetIntValue(TW_HAS_INTERNAL) == 1 && GetIntValue(TW_HAS_DATA_MEDIA) == 1 && GetIntValue(TW_HAS_EXTERNAL) == 0)
774 SetValue(TW_HAS_USB_STORAGE, 0, 0);
775 else
776 SetValue(TW_HAS_USB_STORAGE, 1, 0);
777 mValues.insert(make_pair(TW_ZIP_INDEX, make_pair("0", 0)));
778 mValues.insert(make_pair(TW_ZIP_QUEUE_COUNT, make_pair("0", 0)));
779 mValues.insert(make_pair(TW_FILENAME, make_pair("/sdcard", 0)));
780 mValues.insert(make_pair(TW_SIMULATE_ACTIONS, make_pair("0", 1)));
781 mValues.insert(make_pair(TW_SIMULATE_FAIL, make_pair("0", 1)));
782 mValues.insert(make_pair(TW_IS_ENCRYPTED, make_pair("0", 0)));
783 mValues.insert(make_pair(TW_IS_DECRYPTED, make_pair("0", 0)));
784 mValues.insert(make_pair(TW_CRYPTO_PASSWORD, make_pair("0", 0)));
785 mValues.insert(make_pair(TW_DATA_BLK_DEVICE, make_pair("0", 0)));
786 mValues.insert(make_pair("tw_terminal_state", make_pair("0", 0)));
787 mValues.insert(make_pair("tw_background_thread_running", make_pair("0", 0)));
788 mValues.insert(make_pair(TW_RESTORE_FILE_DATE, make_pair("0", 0)));
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500789 mValues.insert(make_pair("tw_military_time", make_pair("0", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700790#ifdef TW_NO_SCREEN_TIMEOUT
791 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("0", 1)));
792 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("1", 1)));
793#else
Dees_Troy2f9117a2013-02-17 19:52:09 -0600794 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("60", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700795 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("0", 1)));
796#endif
Dees_Troy6ef66352013-02-21 08:26:57 -0600797 mValues.insert(make_pair("tw_gui_done", make_pair("0", 0)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000798 mValues.insert(make_pair("tw_encrypt_backup", make_pair("0", 0)));
Vojtech Bocek85932342013-04-01 22:11:33 +0200799#ifdef TW_BRIGHTNESS_PATH
Ethan Yonker00028b42014-04-09 14:29:02 -0500800 string findbright;
Dees_Troy2f9117a2013-02-17 19:52:09 -0600801 if (strcmp(EXPAND(TW_BRIGHTNESS_PATH), "/nobrightness") != 0) {
Ethan Yonker00028b42014-04-09 14:29:02 -0500802 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 = "";
807 }
808 }
809 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");
816 mConstValues.insert(make_pair("tw_has_brightnesss_file", "0"));
817 } else {
818 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Dees_Troy2f9117a2013-02-17 19:52:09 -0600819 mConstValues.insert(make_pair("tw_has_brightnesss_file", "1"));
Ethan Yonker00028b42014-04-09 14:29:02 -0500820 mConstValues.insert(make_pair("tw_brightness_file", findbright));
Vojtech Bocek85932342013-04-01 22:11:33 +0200821 ostringstream maxVal;
822 maxVal << TW_MAX_BRIGHTNESS;
823 mConstValues.insert(make_pair("tw_brightness_max", maxVal.str()));
824 mValues.insert(make_pair("tw_brightness", make_pair(maxVal.str(), 1)));
825 mValues.insert(make_pair("tw_brightness_pct", make_pair("100", 1)));
xNUTxe85f02d2014-07-18 01:30:58 +0200826#ifdef TW_SECONDARY_BRIGHTNESS_PATH
827 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
828 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
829 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
830 mConstValues.insert(make_pair("tw_secondary_brightness_file", secondfindbright));
831 } else {
832 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
833 }
834#endif
Ethan Yonkera18f1082014-07-07 15:07:58 -0500835 string max_bright = maxVal.str();
xNUTxe85f02d2014-07-18 01:30:58 +0200836 TWFunc::Set_Brightness(max_bright);
Dees_Troy2f9117a2013-02-17 19:52:09 -0600837 }
838#endif
Dees_Troya13d74f2013-03-24 08:54:55 -0500839 mValues.insert(make_pair(TW_MILITARY_TIME, make_pair("0", 1)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000840#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
841 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("1", 0)));
842#else
843 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
844 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("0", 0)));
845#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400846#ifdef TW_HAS_MTP
847 mConstValues.insert(make_pair("tw_has_mtp", "1"));
848 mValues.insert(make_pair("tw_mtp_enabled", make_pair("1", 1)));
Ethan Yonkerc8743cf2014-09-03 21:16:40 -0500849 mValues.insert(make_pair("tw_mtp_debug", make_pair("0", 1)));
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400850#else
851 LOGINFO("TW_EXCLUDE_MTP := true\n");
852 mConstValues.insert(make_pair("tw_has_mtp", "0"));
853 mConstValues.insert(make_pair("tw_mtp_enabled", "0"));
854#endif
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100855
856 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400857}
858
859// Magic Values
860int DataManager::GetMagicValue(const string varName, string& value)
861{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200862 // Handle special dynamic cases
863 if (varName == "tw_time")
864 {
865 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400866
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200867 struct tm *current;
868 time_t now;
869 int tw_military_time;
870 now = time(0);
871 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500872 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200873 if (current->tm_hour >= 12)
874 {
875 if (tw_military_time == 1)
876 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
877 else
878 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500879 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500880 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200881 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500882 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200883 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
884 else
885 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
886 }
887 value = tmp;
888 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500889 }
Jenkins1710bf22014-10-02 20:22:21 -0400890 else if (varName == "tw_cpu_temp")
891 {
892 string cpu_temp_file;
893 static unsigned long convert_temp = 0;
894 static time_t cpuSecCheck = 0;
895 int divisor = 0;
896 struct timeval curTime;
897 string results;
898
899 gettimeofday(&curTime, NULL);
900 if (curTime.tv_sec > cpuSecCheck)
901 {
902#ifdef TW_CUSTOM_CPU_TEMP_PATH
903 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
904 if (TWFunc::read_file(cpu_temp_file, results) != 0)
905 return -1;
906#else
907 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
908 if (TWFunc::read_file(cpu_temp_file, results) != 0)
909 return -1;
910#endif
911 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
912 if (convert_temp <= 0)
913 convert_temp = strtoul(results.c_str(), NULL, 0);
HandyMennyb6033452014-10-15 21:39:12 +0200914 if (convert_temp >= 150)
915 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
916 cpuSecCheck = curTime.tv_sec + 5;
Jenkins1710bf22014-10-02 20:22:21 -0400917 }
918 value = TWFunc::to_string(convert_temp);
919 return 0;
920 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200921 else if (varName == "tw_battery")
922 {
923 char tmp[16];
Dees_Troy38bd7602012-09-14 13:33:53 -0400924 static char charging = ' ';
925 static int lastVal = -1;
926 static time_t nextSecCheck = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400927 struct timeval curTime;
928 gettimeofday(&curTime, NULL);
929 if (curTime.tv_sec > nextSecCheck)
930 {
931 char cap_s[4];
Dees_Troyf33b4902013-03-01 00:51:39 +0000932#ifdef TW_CUSTOM_BATTERY_PATH
933 string capacity_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
934 capacity_file += "/capacity";
935 FILE * cap = fopen(capacity_file.c_str(),"rt");
936#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400937 FILE * cap = fopen("/sys/class/power_supply/battery/capacity","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000938#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400939 if (cap){
940 fgets(cap_s, 4, cap);
941 fclose(cap);
942 lastVal = atoi(cap_s);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200943 if (lastVal > 100) lastVal = 101;
944 if (lastVal < 0) lastVal = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400945 }
Dees_Troyf33b4902013-03-01 00:51:39 +0000946#ifdef TW_CUSTOM_BATTERY_PATH
947 string status_file = EXPAND(TW_CUSTOM_BATTERY_PATH);
948 status_file += "/status";
949 cap = fopen(status_file.c_str(),"rt");
950#else
Dees_Troy38bd7602012-09-14 13:33:53 -0400951 cap = fopen("/sys/class/power_supply/battery/status","rt");
Dees_Troyf33b4902013-03-01 00:51:39 +0000952#endif
Dees_Troy38bd7602012-09-14 13:33:53 -0400953 if (cap) {
954 fgets(cap_s, 2, cap);
955 fclose(cap);
956 if (cap_s[0] == 'C')
957 charging = '+';
958 else
959 charging = ' ';
960 }
961 nextSecCheck = curTime.tv_sec + 60;
962 }
963
964 sprintf(tmp, "%i%%%c", lastVal, charging);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200965 value = tmp;
966 return 0;
967 }
968 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400969}
970
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200971void DataManager::Output_Version(void)
972{
Dees_Troy1c1ac442013-01-17 21:42:14 +0000973 string Path;
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400974 char version[255];
975
Dees_Troy1c1ac442013-01-17 21:42:14 +0000976 if (!PartitionManager.Mount_By_Path("/cache", false)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000977 LOGINFO("Unable to mount '%s' to write version number.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400978 return;
979 }
Dees_Troy1c1ac442013-01-17 21:42:14 +0000980 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000981 LOGINFO("Recreating /cache/recovery folder.\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +0000982 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000983 LOGERR("DataManager::Output_Version -- Unable to make /cache/recovery\n");
Dees_Troy1c1ac442013-01-17 21:42:14 +0000984 return;
985 }
986 }
987 Path = "/cache/recovery/.version";
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400988 if (TWFunc::Path_Exists(Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500989 unlink(Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400990 }
991 FILE *fp = fopen(Path.c_str(), "w");
992 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000993 LOGERR("Unable to open '%s'.\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -0400994 return;
995 }
996 strcpy(version, TW_VERSION_STR);
997 fwrite(version, sizeof(version[0]), strlen(version) / sizeof(version[0]), fp);
998 fclose(fp);
Dees_Troyd93bda52013-07-03 19:55:19 +0000999 TWFunc::copy_file("/etc/recovery.fstab", "/cache/recovery/recovery.fstab", 0644);
1000 PartitionManager.Output_Storage_Fstab();
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001001 sync();
Dees_Troy2673cec2013-04-02 20:22:16 +00001002 LOGINFO("Version number saved to '%s'\n", Path.c_str());
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001003}
1004
Dees_Troy51a0e822012-09-05 15:24:24 -04001005void DataManager::ReadSettingsFile(void)
1006{
Ethan Yonker83e82572014-04-04 10:59:28 -05001007#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001008 // Load up the values for TWRP - Sleep to let the card be ready
1009 char mkdir_path[255], settings_file[255];
1010 int is_enc, has_dual, use_ext, has_data_media, has_ext;
1011
1012 GetValue(TW_IS_ENCRYPTED, is_enc);
1013 GetValue(TW_HAS_DATA_MEDIA, has_data_media);
1014 if (is_enc == 1 && has_data_media == 1) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001015 LOGINFO("Cannot load settings -- encrypted.\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001016 return;
1017 }
1018
1019 memset(mkdir_path, 0, sizeof(mkdir_path));
1020 memset(settings_file, 0, sizeof(settings_file));
Vojtech Bocekfda239b2015-01-07 22:55:13 +01001021 sprintf(mkdir_path, "%s/TWRP", GetSettingsStoragePath().c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001022 sprintf(settings_file, "%s/.twrps", mkdir_path);
1023
Dees_Troy5bf43922012-09-07 16:07:55 -04001024 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -04001025 {
1026 usleep(500000);
Dees_Troy5bf43922012-09-07 16:07:55 -04001027 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy2673cec2013-04-02 20:22:16 +00001028 LOGERR("Unable to mount %s when trying to read settings file.\n", settings_file);
Dees_Troy51a0e822012-09-05 15:24:24 -04001029 }
1030
1031 mkdir(mkdir_path, 0777);
1032
Dees_Troy2673cec2013-04-02 20:22:16 +00001033 LOGINFO("Attempt to load settings from settings file...\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001034 LoadValues(settings_file);
Dees_Troy01a9b7a2012-10-01 09:01:03 -04001035 Output_Version();
Ethan Yonker83e82572014-04-04 10:59:28 -05001036#endif // ifdef TW_OEM_BUILD
Ethan Yonker7af51ce2014-04-04 13:33:30 -05001037 PartitionManager.Mount_All_Storage();
Dees_Troy8170a922012-09-18 15:40:25 -04001038 update_tz_environment_variables();
xNUTxe85f02d2014-07-18 01:30:58 +02001039#ifdef TW_MAX_BRIGHTNESS
1040 if (GetStrValue("tw_brightness_path") != "/nobrightness") {
1041 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy2f9117a2013-02-17 19:52:09 -06001042 }
xNUTxe85f02d2014-07-18 01:30:58 +02001043#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001044}
1045
1046string DataManager::GetCurrentStoragePath(void)
1047{
Dees_Troya13d74f2013-03-24 08:54:55 -05001048 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001049}
1050
Dees_Troy51a0e822012-09-05 15:24:24 -04001051string DataManager::GetSettingsStoragePath(void)
1052{
Dees_Troya13d74f2013-03-24 08:54:55 -05001053 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001054}
1055
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001056void DataManager::Vibrate(const string varName)
1057{
1058 int vib_value = 0;
1059 GetValue(varName, vib_value);
1060 if (vib_value) {
1061 vibrate(vib_value);
1062 }
1063}