blob: 6b0f97131e3e6f92fc2d2e9c7c1f24a6d10f042c [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>
Matt Mowere9260742015-02-22 20:20:18 -060034#include <ctype.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040035
36#include <string>
37#include <utility>
38#include <map>
39#include <fstream>
40#include <sstream>
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050041#include <pthread.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040042
43#include "variables.h"
44#include "data.hpp"
45#include "partitions.hpp"
Dees_Troy01a9b7a2012-10-01 09:01:03 -040046#include "twrp-functions.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070047#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troy2f9117a2013-02-17 19:52:09 -060048#include "gui/blanktimer.hpp"
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070049#endif
Ethan Yonker00028b42014-04-09 14:29:02 -050050#include "find_file.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060051#include "set_metadata.h"
Matt Mowere9260742015-02-22 20:20:18 -060052#include <cutils/properties.h>
Ethan Yonker74db1572015-10-28 12:44:49 -050053#include "gui/gui.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040054
Matt Mowere9260742015-02-22 20:20:18 -060055#define DEVID_MAX 64
56#define HWID_MAX 32
Anatoly Smaznov10c11f62013-02-12 13:33:40 +070057
Ethan Yonkera18f1082014-07-07 15:07:58 -050058#ifndef TW_MAX_BRIGHTNESS
59#define TW_MAX_BRIGHTNESS 255
60#endif
61
Dees_Troy51a0e822012-09-05 15:24:24 -040062extern "C"
63{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020064 #include "twcommon.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040065 #include "gui/pages.h"
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +000066 #include "minuitwrp/minui.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040067 void gui_notifyVarChange(const char *name, const char* value);
Dees_Troy51a0e822012-09-05 15:24:24 -040068}
69
Ethan Yonker961d20e2015-06-29 14:00:03 -050070#define FILE_VERSION 0x00010010
Dees_Troy51a0e822012-09-05 15:24:24 -040071
72using namespace std;
73
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070074map<string, DataManager::TStrIntPair> DataManager::mValues;
75map<string, string> DataManager::mConstValues;
76string DataManager::mBackingFile;
77int DataManager::mInitialized = 0;
Jenkins1710bf22014-10-02 20:22:21 -040078
Ethan Yonker6277c792014-09-15 14:54:30 -050079extern bool datamedia;
Dees_Troy51a0e822012-09-05 15:24:24 -040080
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050081#ifndef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
Vojtech Bocekfda239b2015-01-07 22:55:13 +010082pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050083#else
84pthread_mutex_t DataManager::m_valuesLock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
85#endif
Vojtech Bocekfda239b2015-01-07 22:55:13 +010086
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040087// Device ID functions
88void DataManager::sanitize_device_id(char* device_id) {
Matt Mowere9260742015-02-22 20:20:18 -060089 const char* whitelist ="-._";
90 char str[DEVID_MAX];
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040091 char* c = str;
92
Matt Mowere9260742015-02-22 20:20:18 -060093 snprintf(str, DEVID_MAX, "%s", device_id);
94 memset(device_id, 0, strlen(device_id));
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040095 while (*c) {
Matt Mowere9260742015-02-22 20:20:18 -060096 if (isalnum(*c) || strchr(whitelist, *c))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040097 strncat(device_id, c, 1);
98 c++;
99 }
100 return;
101}
102
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200103#define CMDLINE_SERIALNO "androidboot.serialno="
104#define CMDLINE_SERIALNO_LEN (strlen(CMDLINE_SERIALNO))
105#define CPUINFO_SERIALNO "Serial"
106#define CPUINFO_SERIALNO_LEN (strlen(CPUINFO_SERIALNO))
107#define CPUINFO_HARDWARE "Hardware"
108#define CPUINFO_HARDWARE_LEN (strlen(CPUINFO_HARDWARE))
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400109
110void DataManager::get_device_id(void) {
111 FILE *fp;
Matt Mowere9260742015-02-22 20:20:18 -0600112 size_t i;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400113 char line[2048];
Matt Mowere9260742015-02-22 20:20:18 -0600114 char hardware_id[HWID_MAX] = { 0 };
115 char device_id[DEVID_MAX] = { 0 };
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400116 char* token;
117
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700118#ifdef TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
Matt Mowere9260742015-02-22 20:20:18 -0600119 // Use (product_model)_(hardware_id) as device id
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700120 char model_id[PROPERTY_VALUE_MAX];
121 property_get("ro.product.model", model_id, "error");
Matt Mowere9260742015-02-22 20:20:18 -0600122 if (strcmp(model_id, "error") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000123 LOGINFO("=> product model: '%s'\n", model_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700124 // Replace spaces with underscores
Matt Mowere9260742015-02-22 20:20:18 -0600125 for (i = 0; i < strlen(model_id); i++) {
126 if (model_id[i] == ' ')
127 model_id[i] = '_';
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700128 }
Matt Mowere9260742015-02-22 20:20:18 -0600129 snprintf(device_id, DEVID_MAX, "%s", model_id);
130
131 if (strlen(device_id) < DEVID_MAX) {
132 fp = fopen("proc_cpuinfo.txt", "rt");
133 if (fp != NULL) {
134 while (fgets(line, sizeof(line), fp) != NULL) {
135 if (memcmp(line, CPUINFO_HARDWARE,
136 CPUINFO_HARDWARE_LEN) == 0) {
137 // skip past "Hardware", spaces, and colon
138 token = line + CPUINFO_HARDWARE_LEN;
139 while (*token && (!isgraph(*token) || *token == ':'))
140 token++;
141
142 if (*token && *token != '\n'
143 && strcmp("UNKNOWN\n", token)) {
144 snprintf(hardware_id, HWID_MAX, "%s", token);
145 if (hardware_id[strlen(hardware_id)-1] == '\n')
146 hardware_id[strlen(hardware_id)-1] = 0;
147 LOGINFO("=> hardware id from cpuinfo: '%s'\n",
148 hardware_id);
149 }
150 break;
151 }
152 }
153 fclose(fp);
154 }
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700155 }
Matt Mowere9260742015-02-22 20:20:18 -0600156
157 if (hardware_id[0] != 0)
158 snprintf(device_id, DEVID_MAX, "%s_%s", model_id, hardware_id);
159
160 sanitize_device_id(device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700161 mConstValues.insert(make_pair("device_id", device_id));
Dees_Troy2673cec2013-04-02 20:22:16 +0000162 LOGINFO("=> using device id: '%s'\n", device_id);
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700163 return;
164 }
165#endif
166
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400167#ifndef TW_FORCE_CPUINFO_FOR_DEVICE_ID
Matt Mowere9260742015-02-22 20:20:18 -0600168 // Check the cmdline to see if the serial number was supplied
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400169 fp = fopen("/proc/cmdline", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600170 if (fp != NULL) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200171 fgets(line, sizeof(line), fp);
Matt Mowere9260742015-02-22 20:20:18 -0600172 fclose(fp); // cmdline is only one line long
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400173
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200174 token = strtok(line, " ");
Matt Mowere9260742015-02-22 20:20:18 -0600175 while (token) {
176 if (memcmp(token, CMDLINE_SERIALNO, CMDLINE_SERIALNO_LEN) == 0) {
177 token += CMDLINE_SERIALNO_LEN;
178 snprintf(device_id, DEVID_MAX, "%s", token);
179 sanitize_device_id(device_id); // also removes newlines
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400180 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200181 return;
182 }
183 token = strtok(NULL, " ");
184 }
185 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400186#endif
Matt Mowere9260742015-02-22 20:20:18 -0600187 // Check cpuinfo for serial number; if found, use as device_id
188 // If serial number is not found, fallback to hardware_id for the device_id
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400189 fp = fopen("/proc/cpuinfo", "rt");
Matt Mowere9260742015-02-22 20:20:18 -0600190 if (fp != NULL) {
191 while (fgets(line, sizeof(line), fp) != NULL) {
192 if (memcmp(line, CPUINFO_SERIALNO, CPUINFO_SERIALNO_LEN) == 0) {
193 // skip past "Serial", spaces, and colon
194 token = line + CPUINFO_SERIALNO_LEN;
195 while (*token && (!isgraph(*token) || *token == ':'))
196 token++;
197
198 if (*token && *token != '\n') {
199 snprintf(device_id, DEVID_MAX, "%s", token);
200 sanitize_device_id(device_id); // also removes newlines
Dees_Troy2673cec2013-04-02 20:22:16 +0000201 LOGINFO("=> serial from cpuinfo: '%s'\n", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400202 mConstValues.insert(make_pair("device_id", device_id));
Matt Mowere9260742015-02-22 20:20:18 -0600203 fclose(fp);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400204 return;
205 }
Matt Mowere9260742015-02-22 20:20:18 -0600206 } else if (memcmp(line, CPUINFO_HARDWARE,
207 CPUINFO_HARDWARE_LEN) == 0) {
208 // skip past "Hardware", spaces, and colon
209 token = line + CPUINFO_HARDWARE_LEN;
210 while (*token && (!isgraph(*token) || *token == ':'))
211 token++;
212
213 if (*token && *token != '\n') {
214 snprintf(hardware_id, HWID_MAX, "%s", token);
215 if (hardware_id[strlen(hardware_id)-1] == '\n')
216 hardware_id[strlen(hardware_id)-1] = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000217 LOGINFO("=> hardware id from cpuinfo: '%s'\n", hardware_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400218 }
219 }
220 }
221 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200222 }
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400223
224 if (hardware_id[0] != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000225 LOGINFO("\nusing hardware id for device id: '%s'\n", hardware_id);
Matt Mowere9260742015-02-22 20:20:18 -0600226 snprintf(device_id, DEVID_MAX, "%s", hardware_id);
227 sanitize_device_id(device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400228 mConstValues.insert(make_pair("device_id", device_id));
229 return;
230 }
231
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200232 strcpy(device_id, "serialno");
Ethan Yonker74db1572015-10-28 12:44:49 -0500233 LOGINFO("=> device id not found, using '%s'\n", device_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400234 mConstValues.insert(make_pair("device_id", device_id));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200235 return;
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400236}
237
Dees_Troy51a0e822012-09-05 15:24:24 -0400238int DataManager::ResetDefaults()
239{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100240 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200241 mValues.clear();
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100242 pthread_mutex_unlock(&m_valuesLock);
243
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200244 mConstValues.clear();
245 SetDefaultValues();
246 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400247}
248
249int DataManager::LoadValues(const string filename)
250{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200251 string str, dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400252
253 if (!mInitialized)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200254 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400255
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200256 GetValue("device_id", dev_id);
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400257 // Save off the backing file for set operations
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200258 mBackingFile = filename;
Dees_Troy51a0e822012-09-05 15:24:24 -0400259
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200260 // Read in the file, if possible
261 FILE* in = fopen(filename.c_str(), "rb");
262 if (!in) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000263 LOGINFO("Settings file '%s' not found.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500264 return 0;
265 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000266 LOGINFO("Loading settings from '%s'.\n", filename.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500267 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400268
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200269 int file_version;
270 if (fread(&file_version, 1, sizeof(int), in) != sizeof(int)) goto error;
271 if (file_version != FILE_VERSION) goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400272
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200273 while (!feof(in))
274 {
275 string Name;
276 string Value;
277 unsigned short length;
Ethan Yonker7dad6252015-10-22 14:38:01 -0500278 char array[513];
Dees_Troy51a0e822012-09-05 15:24:24 -0400279
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200280 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
281 if (length >= 512) goto error;
282 if (fread(array, 1, length, in) != length) goto error;
Ethan Yonker7dad6252015-10-22 14:38:01 -0500283 array[length+1] = '\0';
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200284 Name = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400285
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200286 if (fread(&length, 1, sizeof(unsigned short), in) != sizeof(unsigned short)) goto error;
287 if (length >= 512) goto error;
288 if (fread(array, 1, length, in) != length) goto error;
Ethan Yonker7dad6252015-10-22 14:38:01 -0500289 array[length+1] = '\0';
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200290 Value = array;
Dees_Troy51a0e822012-09-05 15:24:24 -0400291
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200292 map<string, TStrIntPair>::iterator pos;
Dees_Troy51a0e822012-09-05 15:24:24 -0400293
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100294 pthread_mutex_lock(&m_valuesLock);
295
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200296 pos = mValues.find(Name);
297 if (pos != mValues.end())
298 {
299 pos->second.first = Value;
300 pos->second.second = 1;
301 }
302 else
303 mValues.insert(TNameValuePair(Name, TStrIntPair(Value, 1)));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100304
305 pthread_mutex_unlock(&m_valuesLock);
306
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700307#ifndef TW_NO_SCREEN_TIMEOUT
Dees_Troya13d74f2013-03-24 08:54:55 -0500308 if (Name == "tw_screen_timeout_secs")
309 blankTimer.setTime(atoi(Value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700310#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200311 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400312error:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200313 fclose(in);
Dees_Troya13d74f2013-03-24 08:54:55 -0500314 string current = GetCurrentStoragePath();
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500315 TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200316 if(!Part)
317 Part = PartitionManager.Get_Default_Storage_Partition();
318 if (Part && current != Part->Storage_Path && Part->Mount(false)) {
Ethan Yonkereeed3c52014-04-16 11:49:02 -0500319 LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
320 SetValue("tw_storage_path", Part->Storage_Path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500321 } else {
322 SetBackupFolder();
323 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200324 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400325}
326
327int DataManager::Flush()
328{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200329 return SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400330}
331
332int DataManager::SaveValues()
333{
Ethan Yonker83e82572014-04-04 10:59:28 -0500334#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200335 if (mBackingFile.empty())
336 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400337
338 string mount_path = GetSettingsStoragePath();
Dees_Troy5bf43922012-09-07 16:07:55 -0400339 PartitionManager.Mount_By_Path(mount_path.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400340
341 FILE* out = fopen(mBackingFile.c_str(), "wb");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200342 if (!out)
343 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400344
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200345 int file_version = FILE_VERSION;
346 fwrite(&file_version, 1, sizeof(int), out);
Dees_Troy51a0e822012-09-05 15:24:24 -0400347
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100348 pthread_mutex_lock(&m_valuesLock);
349
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200350 map<string, TStrIntPair>::iterator iter;
351 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
352 {
353 // Save only the persisted data
354 if (iter->second.second != 0)
355 {
356 unsigned short length = (unsigned short) iter->first.length() + 1;
357 fwrite(&length, 1, sizeof(unsigned short), out);
358 fwrite(iter->first.c_str(), 1, length, out);
359 length = (unsigned short) iter->second.first.length() + 1;
360 fwrite(&length, 1, sizeof(unsigned short), out);
361 fwrite(iter->second.first.c_str(), 1, length, out);
362 }
363 }
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100364
365 pthread_mutex_unlock(&m_valuesLock);
366
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200367 fclose(out);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600368 tw_set_default_metadata(mBackingFile.c_str());
Ethan Yonker83e82572014-04-04 10:59:28 -0500369#endif // ifdef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200370 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400371}
372
373int DataManager::GetValue(const string varName, string& value)
374{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200375 string localStr = varName;
Dees_Troy51a0e822012-09-05 15:24:24 -0400376
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200377 if (!mInitialized)
378 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400379
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200380 // Strip off leading and trailing '%' if provided
381 if (localStr.length() > 2 && localStr[0] == '%' && localStr[localStr.length()-1] == '%')
382 {
383 localStr.erase(0, 1);
384 localStr.erase(localStr.length() - 1, 1);
385 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400386
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200387 // Handle magic values
388 if (GetMagicValue(localStr, value) == 0)
389 return 0;
Xuefera163f152015-03-26 22:45:04 +0800390
391 // Handle property
392 if (localStr.length() > 9 && localStr.substr(0, 9) == "property.") {
393 char property_value[PROPERTY_VALUE_MAX];
394 property_get(localStr.substr(9).c_str(), property_value, "");
395 value = property_value;
396 return 0;
397 }
398
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200399 map<string, string>::iterator constPos;
400 constPos = mConstValues.find(localStr);
401 if (constPos != mConstValues.end())
402 {
403 value = constPos->second;
404 return 0;
405 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400406
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100407 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200408 map<string, TStrIntPair>::iterator pos;
409 pos = mValues.find(localStr);
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100410 if (pos == mValues.end()){
411 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200412 return -1;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100413 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400414
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200415 value = pos->second.first;
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100416 pthread_mutex_unlock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200417 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400418}
419
420int DataManager::GetValue(const string varName, int& value)
421{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200422 string data;
Dees_Troy51a0e822012-09-05 15:24:24 -0400423
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200424 if (GetValue(varName,data) != 0)
425 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400426
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200427 value = atoi(data.c_str());
428 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400429}
430
Dees_Troy2673cec2013-04-02 20:22:16 +0000431int DataManager::GetValue(const string varName, float& value)
432{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200433 string data;
Dees_Troy2673cec2013-04-02 20:22:16 +0000434
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200435 if (GetValue(varName,data) != 0)
436 return -1;
Dees_Troy2673cec2013-04-02 20:22:16 +0000437
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200438 value = atof(data.c_str());
439 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +0000440}
441
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500442unsigned long long DataManager::GetValue(const string varName, unsigned long long& value)
443{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200444 string data;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500445
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200446 if (GetValue(varName,data) != 0)
447 return -1;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500448
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200449 value = strtoull(data.c_str(), NULL, 10);
450 return 0;
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500451}
452
Dees_Troy51a0e822012-09-05 15:24:24 -0400453// This function will return an empty string if the value doesn't exist
454string DataManager::GetStrValue(const string varName)
455{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200456 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400457
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200458 GetValue(varName, retVal);
459 return retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400460}
461
462// This function will return 0 if the value doesn't exist
463int DataManager::GetIntValue(const string varName)
464{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200465 string retVal;
Dees_Troy51a0e822012-09-05 15:24:24 -0400466
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200467 GetValue(varName, retVal);
468 return atoi(retVal.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400469}
470
471int DataManager::SetValue(const string varName, string value, int persist /* = 0 */)
472{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200473 if (!mInitialized)
474 SetDefaultValues();
Dees_Troy51a0e822012-09-05 15:24:24 -0400475
Xuefera163f152015-03-26 22:45:04 +0800476 // Handle property
477 if (varName.length() > 9 && varName.substr(0, 9) == "property.") {
478 int ret = property_set(varName.substr(9).c_str(), value.c_str());
479 if (ret)
480 LOGERR("Error setting property '%s' to '%s'\n", varName.substr(9).c_str(), value.c_str());
481 return ret;
482 }
483
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200484 // Don't allow empty values or numerical starting values
485 if (varName.empty() || (varName[0] >= '0' && varName[0] <= '9'))
486 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400487
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200488 map<string, string>::iterator constChk;
489 constChk = mConstValues.find(varName);
490 if (constChk != mConstValues.end())
491 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400492
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100493 pthread_mutex_lock(&m_valuesLock);
494
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200495 map<string, TStrIntPair>::iterator pos;
496 pos = mValues.find(varName);
497 if (pos == mValues.end())
498 pos = (mValues.insert(TNameValuePair(varName, TStrIntPair(value, persist)))).first;
499 else
500 pos->second.first = value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400501
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200502 if (pos->second.second != 0)
503 SaveValues();
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700504
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100505 pthread_mutex_unlock(&m_valuesLock);
506
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700507#ifndef TW_NO_SCREEN_TIMEOUT
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500508 if (varName == "tw_screen_timeout_secs") {
Dees_Troy2f9117a2013-02-17 19:52:09 -0600509 blankTimer.setTime(atoi(value.c_str()));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700510 } else
511#endif
512 if (varName == "tw_storage_path") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500513 SetBackupFolder();
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500514 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500515 gui_notifyVarChange(varName.c_str(), value.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200516 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400517}
518
519int DataManager::SetValue(const string varName, int value, int persist /* = 0 */)
520{
521 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200522 valStr << value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400523 if (varName == "tw_use_external_storage") {
524 string str;
525
526 if (GetIntValue(TW_HAS_DUAL_STORAGE) == 1) {
527 if (value == 0) {
528 str = GetStrValue(TW_INTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400529 } else {
530 str = GetStrValue(TW_EXTERNAL_PATH);
Dees_Troy51a0e822012-09-05 15:24:24 -0400531 }
532 } else if (GetIntValue(TW_HAS_INTERNAL) == 1)
533 str = GetStrValue(TW_INTERNAL_PATH);
534 else
535 str = GetStrValue(TW_EXTERNAL_PATH);
536
Dees_Troya13d74f2013-03-24 08:54:55 -0500537 SetValue("tw_storage_path", str);
Dees_Troy51a0e822012-09-05 15:24:24 -0400538 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200539 return SetValue(varName, valStr.str(), persist);
Dees_Troy51a0e822012-09-05 15:24:24 -0400540}
541
542int DataManager::SetValue(const string varName, float value, int persist /* = 0 */)
543{
544 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200545 valStr << value;
546 return SetValue(varName, valStr.str(), persist);;
Dees_Troy51a0e822012-09-05 15:24:24 -0400547}
548
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500549int DataManager::SetValue(const string varName, unsigned long long value, int persist /* = 0 */)
550{
551 ostringstream valStr;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200552 valStr << value;
553 return SetValue(varName, valStr.str(), persist);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -0500554}
555
Dees_Troy2673cec2013-04-02 20:22:16 +0000556int DataManager::SetProgress(float Fraction) {
557 return SetValue("ui_progress", (float) (Fraction * 100.0));
558}
559
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200560int DataManager::ShowProgress(float Portion, float Seconds)
561{
Dees_Troy2673cec2013-04-02 20:22:16 +0000562 float Starting_Portion;
563 GetValue("ui_progress_portion", Starting_Portion);
564 if (SetValue("ui_progress_portion", (float)(Portion * 100.0) + Starting_Portion) != 0)
565 return -1;
566 if (SetValue("ui_progress_frames", Seconds * 30) != 0)
567 return -1;
568 return 0;
569}
570
Dees_Troy51a0e822012-09-05 15:24:24 -0400571void DataManager::DumpValues()
572{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200573 map<string, TStrIntPair>::iterator iter;
574 gui_print("Data Manager dump - Values with leading X are persisted.\n");
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100575 pthread_mutex_lock(&m_valuesLock);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200576 for (iter = mValues.begin(); iter != mValues.end(); ++iter)
577 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 +0100578 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400579}
580
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200581void DataManager::update_tz_environment_variables(void)
582{
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100583 setenv("TZ", GetStrValue(TW_TIME_ZONE_VAR).c_str(), 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200584 tzset();
Dees_Troy8170a922012-09-18 15:40:25 -0400585}
586
Dees_Troy16b74352012-11-14 22:27:31 +0000587void DataManager::SetBackupFolder()
588{
589 string str = GetCurrentStoragePath();
Dees_Troya13d74f2013-03-24 08:54:55 -0500590 TWPartition* partition = PartitionManager.Find_Partition_By_Path(str);
Dees_Troy16b74352012-11-14 22:27:31 +0000591 str += "/TWRP/BACKUPS/";
592
593 string dev_id;
594 GetValue("device_id", dev_id);
595
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200596 str += dev_id;
Dees_Troy2673cec2013-04-02 20:22:16 +0000597 LOGINFO("Backup folder set to '%s'\n", str.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +0000598 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
Dees_Troya13d74f2013-03-24 08:54:55 -0500599 if (partition != NULL) {
600 SetValue("tw_storage_display_name", partition->Storage_Name);
601 char free_space[255];
602 sprintf(free_space, "%llu", partition->Free / 1024 / 1024);
603 SetValue("tw_storage_free_size", free_space);
604 string zip_path, zip_root, storage_path;
605 GetValue(TW_ZIP_LOCATION_VAR, zip_path);
606 if (partition->Has_Data_Media)
607 storage_path = partition->Symlink_Mount_Point;
608 else
609 storage_path = partition->Storage_Path;
610 if (zip_path.size() < storage_path.size()) {
611 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
612 } else {
Dees Troyc2e9bc72013-09-10 00:16:24 +0000613 zip_root = TWFunc::Get_Root_Path(zip_path);
Dees_Troy18727952013-06-20 15:24:48 -0500614 if (zip_root != storage_path) {
615 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 -0500616 SetValue(TW_ZIP_LOCATION_VAR, storage_path);
Dees_Troy18727952013-06-20 15:24:48 -0500617 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500618 }
619 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500620 if (PartitionManager.Fstab_Processed() != 0) {
621 LOGINFO("Storage partition '%s' not found\n", str.c_str());
622 gui_err("unable_locate_storage=Unable to locate storage device.");
623 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500624 }
Dees_Troy16b74352012-11-14 22:27:31 +0000625}
626
Dees_Troy51a0e822012-09-05 15:24:24 -0400627void DataManager::SetDefaultValues()
628{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200629 string str, path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400630
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200631 get_device_id();
Dees_Troy51a0e822012-09-05 15:24:24 -0400632
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100633 pthread_mutex_lock(&m_valuesLock);
634
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200635 mInitialized = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400636
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200637 mConstValues.insert(make_pair("true", "1"));
638 mConstValues.insert(make_pair("false", "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400639
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200640 mConstValues.insert(make_pair(TW_VERSION_VAR, TW_VERSION_STR));
Ethan Yonker03db3262014-02-05 08:02:06 -0600641 mValues.insert(make_pair("tw_button_vibrate", make_pair("80", 1)));
642 mValues.insert(make_pair("tw_keyboard_vibrate", make_pair("40", 1)));
643 mValues.insert(make_pair("tw_action_vibrate", make_pair("160", 1)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400644
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200645 TWPartition *store = PartitionManager.Get_Default_Storage_Partition();
646 if(store)
647 mValues.insert(make_pair("tw_storage_path", make_pair(store->Storage_Path.c_str(), 1)));
648 else
649 mValues.insert(make_pair("tw_storage_path", make_pair("/", 1)));
650
Dees_Troyf4499812013-01-23 19:07:38 +0000651#ifdef TW_FORCE_CPUINFO_FOR_DEVICE_ID
652 printf("TW_FORCE_CPUINFO_FOR_DEVICE_ID := true\n");
653#endif
654
Dees_Troy51a0e822012-09-05 15:24:24 -0400655#ifdef BOARD_HAS_NO_REAL_SDCARD
Dees_Troyf4499812013-01-23 19:07:38 +0000656 printf("BOARD_HAS_NO_REAL_SDCARD := true\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200657 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "0"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400658#else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200659 mConstValues.insert(make_pair(TW_ALLOW_PARTITION_SDCARD, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400660#endif
661
662#ifdef TW_INCLUDE_DUMLOCK
Dees_Troyf4499812013-01-23 19:07:38 +0000663 printf("TW_INCLUDE_DUMLOCK := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400664 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "1"));
665#else
666 mConstValues.insert(make_pair(TW_SHOW_DUMLOCK, "0"));
667#endif
668
Dees_Troy51a0e822012-09-05 15:24:24 -0400669 str = GetCurrentStoragePath();
Dees_Troy51a0e822012-09-05 15:24:24 -0400670 SetValue(TW_ZIP_LOCATION_VAR, str.c_str(), 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400671 str += "/TWRP/BACKUPS/";
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400672
673 string dev_id;
674 GetValue("device_id", dev_id);
675
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200676 str += dev_id;
Dees_Troy51a0e822012-09-05 15:24:24 -0400677 SetValue(TW_BACKUPS_FOLDER_VAR, str, 0);
678
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200679 mConstValues.insert(make_pair(TW_REBOOT_SYSTEM, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400680#ifdef TW_NO_REBOOT_RECOVERY
Talustus33ebf932013-02-02 14:11:14 +0100681 printf("TW_NO_REBOOT_RECOVERY := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400682 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "0"));
683#else
Dees_Troya58bead2012-09-27 09:49:29 -0400684 mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400685#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200686 mConstValues.insert(make_pair(TW_REBOOT_POWEROFF, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400687#ifdef TW_NO_REBOOT_BOOTLOADER
Talustus33ebf932013-02-02 14:11:14 +0100688 printf("TW_NO_REBOOT_BOOTLOADER := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400689 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "0"));
690#else
Dees_Troya58bead2012-09-27 09:49:29 -0400691 mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "1"));
Dees_Troy51a0e822012-09-05 15:24:24 -0400692#endif
693#ifdef RECOVERY_SDCARD_ON_DATA
Dees_Troyf4499812013-01-23 19:07:38 +0000694 printf("RECOVERY_SDCARD_ON_DATA := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400695 mConstValues.insert(make_pair(TW_HAS_DATA_MEDIA, "1"));
Ethan Yonker6277c792014-09-15 14:54:30 -0500696 mConstValues.insert(make_pair("tw_has_internal", "1"));
697 datamedia = true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400698#else
Ethan Yonker6277c792014-09-15 14:54:30 -0500699 mValues.insert(make_pair(TW_HAS_DATA_MEDIA, make_pair("0", 0)));
700 mValues.insert(make_pair("tw_has_internal", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400701#endif
702#ifdef TW_NO_BATT_PERCENT
Dees_Troyf4499812013-01-23 19:07:38 +0000703 printf("TW_NO_BATT_PERCENT := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400704 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "1"));
705#else
706 mConstValues.insert(make_pair(TW_NO_BATTERY_PERCENT, "0"));
707#endif
Jenkins1710bf22014-10-02 20:22:21 -0400708#ifdef TW_NO_CPU_TEMP
709 printf("TW_NO_CPU_TEMP := true\n");
710 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
711#else
712 string cpu_temp_file;
713#ifdef TW_CUSTOM_CPU_TEMP_PATH
714 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
715#else
716 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
717#endif
718 if (TWFunc::Path_Exists(cpu_temp_file)) {
719 mConstValues.insert(make_pair("tw_no_cpu_temp", "0"));
720 } else {
721 LOGINFO("CPU temperature file '%s' not found, disabling CPU temp.\n", cpu_temp_file.c_str());
722 mConstValues.insert(make_pair("tw_no_cpu_temp", "1"));
723 }
724#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400725#ifdef TW_CUSTOM_POWER_BUTTON
Dees_Troyf4499812013-01-23 19:07:38 +0000726 printf("TW_POWER_BUTTON := %s\n", EXPAND(TW_CUSTOM_POWER_BUTTON));
Dees_Troy51a0e822012-09-05 15:24:24 -0400727 mConstValues.insert(make_pair(TW_POWER_BUTTON, EXPAND(TW_CUSTOM_POWER_BUTTON)));
728#else
729 mConstValues.insert(make_pair(TW_POWER_BUTTON, "0"));
730#endif
731#ifdef TW_ALWAYS_RMRF
Dees_Troyf4499812013-01-23 19:07:38 +0000732 printf("TW_ALWAYS_RMRF := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400733 mConstValues.insert(make_pair(TW_RM_RF_VAR, "1"));
734#endif
735#ifdef TW_NEVER_UNMOUNT_SYSTEM
Dees_Troyf4499812013-01-23 19:07:38 +0000736 printf("TW_NEVER_UNMOUNT_SYSTEM := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400737 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "1"));
738#else
739 mConstValues.insert(make_pair(TW_DONT_UNMOUNT_SYSTEM, "0"));
740#endif
741#ifdef TW_NO_USB_STORAGE
Dees_Troy6a042c82013-01-23 18:50:52 +0000742 printf("TW_NO_USB_STORAGE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400743 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
744#else
Dees_Troy6a042c82013-01-23 18:50:52 +0000745 char lun_file[255];
746 string Lun_File_str = CUSTOM_LUN_FILE;
747 size_t found = Lun_File_str.find("%");
748 if (found != string::npos) {
749 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
750 Lun_File_str = lun_file;
751 }
752 if (!TWFunc::Path_Exists(Lun_File_str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000753 LOGINFO("Lun file '%s' does not exist, USB storage mode disabled\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000754 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "0"));
755 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000756 LOGINFO("Lun file '%s'\n", Lun_File_str.c_str());
Dees_Troy6a042c82013-01-23 18:50:52 +0000757 mConstValues.insert(make_pair(TW_HAS_USB_STORAGE, "1"));
758 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400759#endif
760#ifdef TW_INCLUDE_INJECTTWRP
Dees_Troyf4499812013-01-23 19:07:38 +0000761 printf("TW_INCLUDE_INJECTTWRP := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400762 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "1"));
763 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("1", 1)));
764#else
765 mConstValues.insert(make_pair(TW_HAS_INJECTTWRP, "0"));
766 mValues.insert(make_pair(TW_INJECT_AFTER_ZIP, make_pair("0", 1)));
767#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400768#ifdef TW_HAS_DOWNLOAD_MODE
Dees_Troyf4499812013-01-23 19:07:38 +0000769 printf("TW_HAS_DOWNLOAD_MODE := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400770 mConstValues.insert(make_pair(TW_DOWNLOAD_MODE, "1"));
771#endif
772#ifdef TW_INCLUDE_CRYPTO
773 mConstValues.insert(make_pair(TW_HAS_CRYPTO, "1"));
Dees_Troyf4499812013-01-23 19:07:38 +0000774 printf("TW_INCLUDE_CRYPTO := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400775#endif
776#ifdef TW_SDEXT_NO_EXT4
Dees_Troyf4499812013-01-23 19:07:38 +0000777 printf("TW_SDEXT_NO_EXT4 := true\n");
Dees_Troy51a0e822012-09-05 15:24:24 -0400778 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "1"));
779#else
780 mConstValues.insert(make_pair(TW_SDEXT_DISABLE_EXT4, "0"));
781#endif
782
Dees_Troya13d74f2013-03-24 08:54:55 -0500783#ifdef TW_HAS_NO_BOOT_PARTITION
Dees_Troyf100c942013-06-21 08:15:31 -0500784 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500785#else
Dees_Troyf100c942013-06-21 08:15:31 -0500786 mValues.insert(make_pair("tw_backup_list", make_pair("/system;/data;/boot;", 1)));
Dees_Troya13d74f2013-03-24 08:54:55 -0500787#endif
788 mConstValues.insert(make_pair(TW_MIN_SYSTEM_VAR, TW_MIN_SYSTEM_SIZE));
Dees Troyb21cc642013-09-10 17:36:41 +0000789 mValues.insert(make_pair(TW_BACKUP_NAME, make_pair("(Auto Generate)", 0)));
bigbiff bigbiff7ce7f0c2013-01-25 09:54:04 -0500790
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200791 mValues.insert(make_pair(TW_REBOOT_AFTER_FLASH_VAR, make_pair("0", 1)));
792 mValues.insert(make_pair(TW_SIGNED_ZIP_VERIFY_VAR, make_pair("0", 1)));
793 mValues.insert(make_pair(TW_FORCE_MD5_CHECK_VAR, make_pair("0", 1)));
794 mValues.insert(make_pair(TW_COLOR_THEME_VAR, make_pair("0", 1)));
795 mValues.insert(make_pair(TW_USE_COMPRESSION_VAR, make_pair("0", 1)));
796 mValues.insert(make_pair(TW_SHOW_SPAM_VAR, make_pair("0", 1)));
Matt Mowercf94db12015-04-08 13:09:13 -0500797 mValues.insert(make_pair(TW_TIME_ZONE_VAR, make_pair("CST6CDT,M3.2.0,M11.1.0", 1)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200798 mValues.insert(make_pair(TW_SORT_FILES_BY_DATE_VAR, make_pair("0", 1)));
799 mValues.insert(make_pair(TW_GUI_SORT_ORDER, make_pair("1", 1)));
800 mValues.insert(make_pair(TW_RM_RF_VAR, make_pair("0", 1)));
801 mValues.insert(make_pair(TW_SKIP_MD5_CHECK_VAR, make_pair("0", 1)));
802 mValues.insert(make_pair(TW_SKIP_MD5_GENERATE_VAR, make_pair("0", 1)));
803 mValues.insert(make_pair(TW_SDEXT_SIZE, make_pair("512", 1)));
804 mValues.insert(make_pair(TW_SWAP_SIZE, make_pair("32", 1)));
805 mValues.insert(make_pair(TW_SDPART_FILE_SYSTEM, make_pair("ext3", 1)));
Matt Mowercf94db12015-04-08 13:09:13 -0500806 mValues.insert(make_pair(TW_TIME_ZONE_GUISEL, make_pair("CST6;CDT,M3.2.0,M11.1.0", 1)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200807 mValues.insert(make_pair(TW_TIME_ZONE_GUIOFFSET, make_pair("0", 1)));
808 mValues.insert(make_pair(TW_TIME_ZONE_GUIDST, make_pair("1", 1)));
809 mValues.insert(make_pair(TW_ACTION_BUSY, make_pair("0", 0)));
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200810 mValues.insert(make_pair("tw_wipe_cache", make_pair("0", 0)));
811 mValues.insert(make_pair("tw_wipe_dalvik", make_pair("0", 0)));
Dees_Troy51a0e822012-09-05 15:24:24 -0400812 if (GetIntValue(TW_HAS_INTERNAL) == 1 && GetIntValue(TW_HAS_DATA_MEDIA) == 1 && GetIntValue(TW_HAS_EXTERNAL) == 0)
813 SetValue(TW_HAS_USB_STORAGE, 0, 0);
814 else
815 SetValue(TW_HAS_USB_STORAGE, 1, 0);
816 mValues.insert(make_pair(TW_ZIP_INDEX, make_pair("0", 0)));
817 mValues.insert(make_pair(TW_ZIP_QUEUE_COUNT, make_pair("0", 0)));
818 mValues.insert(make_pair(TW_FILENAME, make_pair("/sdcard", 0)));
819 mValues.insert(make_pair(TW_SIMULATE_ACTIONS, make_pair("0", 1)));
820 mValues.insert(make_pair(TW_SIMULATE_FAIL, make_pair("0", 1)));
821 mValues.insert(make_pair(TW_IS_ENCRYPTED, make_pair("0", 0)));
822 mValues.insert(make_pair(TW_IS_DECRYPTED, make_pair("0", 0)));
823 mValues.insert(make_pair(TW_CRYPTO_PASSWORD, make_pair("0", 0)));
824 mValues.insert(make_pair(TW_DATA_BLK_DEVICE, make_pair("0", 0)));
825 mValues.insert(make_pair("tw_terminal_state", make_pair("0", 0)));
826 mValues.insert(make_pair("tw_background_thread_running", make_pair("0", 0)));
827 mValues.insert(make_pair(TW_RESTORE_FILE_DATE, make_pair("0", 0)));
bigbiff bigbifff8e2f372013-02-27 20:50:43 -0500828 mValues.insert(make_pair("tw_military_time", make_pair("0", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700829#ifdef TW_NO_SCREEN_TIMEOUT
830 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("0", 1)));
831 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("1", 1)));
832#else
Dees_Troy2f9117a2013-02-17 19:52:09 -0600833 mValues.insert(make_pair("tw_screen_timeout_secs", make_pair("60", 1)));
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700834 mValues.insert(make_pair("tw_no_screen_timeout", make_pair("0", 1)));
835#endif
Dees_Troy6ef66352013-02-21 08:26:57 -0600836 mValues.insert(make_pair("tw_gui_done", make_pair("0", 0)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000837 mValues.insert(make_pair("tw_encrypt_backup", make_pair("0", 0)));
Vojtech Bocek85932342013-04-01 22:11:33 +0200838#ifdef TW_BRIGHTNESS_PATH
Ethan Yonker00028b42014-04-09 14:29:02 -0500839 string findbright;
Dees_Troy2f9117a2013-02-17 19:52:09 -0600840 if (strcmp(EXPAND(TW_BRIGHTNESS_PATH), "/nobrightness") != 0) {
Ethan Yonker00028b42014-04-09 14:29:02 -0500841 findbright = EXPAND(TW_BRIGHTNESS_PATH);
842 LOGINFO("TW_BRIGHTNESS_PATH := %s\n", findbright.c_str());
843 if (!TWFunc::Path_Exists(findbright)) {
844 LOGINFO("Specified brightness file '%s' not found.\n", findbright.c_str());
845 findbright = "";
846 }
847 }
848 if (findbright.empty()) {
849 // Attempt to locate the brightness file
850 findbright = Find_File::Find("brightness", "/sys/class/backlight");
Ethan Yonker9c102b52014-04-15 11:06:18 -0500851 if (findbright.empty()) findbright = Find_File::Find("brightness", "/sys/class/leds/lcd-backlight");
Ethan Yonker00028b42014-04-09 14:29:02 -0500852 }
853 if (findbright.empty()) {
854 LOGINFO("Unable to locate brightness file\n");
855 mConstValues.insert(make_pair("tw_has_brightnesss_file", "0"));
856 } else {
857 LOGINFO("Found brightness file at '%s'\n", findbright.c_str());
Dees_Troy2f9117a2013-02-17 19:52:09 -0600858 mConstValues.insert(make_pair("tw_has_brightnesss_file", "1"));
Ethan Yonker00028b42014-04-09 14:29:02 -0500859 mConstValues.insert(make_pair("tw_brightness_file", findbright));
Vojtech Bocek85932342013-04-01 22:11:33 +0200860 ostringstream maxVal;
861 maxVal << TW_MAX_BRIGHTNESS;
862 mConstValues.insert(make_pair("tw_brightness_max", maxVal.str()));
863 mValues.insert(make_pair("tw_brightness", make_pair(maxVal.str(), 1)));
864 mValues.insert(make_pair("tw_brightness_pct", make_pair("100", 1)));
xNUTxe85f02d2014-07-18 01:30:58 +0200865#ifdef TW_SECONDARY_BRIGHTNESS_PATH
866 string secondfindbright = EXPAND(TW_SECONDARY_BRIGHTNESS_PATH);
867 if (secondfindbright != "" && TWFunc::Path_Exists(secondfindbright)) {
868 LOGINFO("Will use a second brightness file at '%s'\n", secondfindbright.c_str());
869 mConstValues.insert(make_pair("tw_secondary_brightness_file", secondfindbright));
870 } else {
871 LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
872 }
873#endif
Ethan Yonkera18f1082014-07-07 15:07:58 -0500874 string max_bright = maxVal.str();
xNUTxe85f02d2014-07-18 01:30:58 +0200875 TWFunc::Set_Brightness(max_bright);
Dees_Troy2f9117a2013-02-17 19:52:09 -0600876 }
877#endif
Dees_Troya13d74f2013-03-24 08:54:55 -0500878 mValues.insert(make_pair(TW_MILITARY_TIME, make_pair("0", 1)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000879#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
880 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("1", 0)));
881#else
882 LOGINFO("TW_EXCLUDE_ENCRYPTED_BACKUPS := true\n");
883 mValues.insert(make_pair("tw_include_encrypted_backup", make_pair("0", 0)));
884#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400885#ifdef TW_HAS_MTP
886 mConstValues.insert(make_pair("tw_has_mtp", "1"));
887 mValues.insert(make_pair("tw_mtp_enabled", make_pair("1", 1)));
Ethan Yonkerc8743cf2014-09-03 21:16:40 -0500888 mValues.insert(make_pair("tw_mtp_debug", make_pair("0", 1)));
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400889#else
890 LOGINFO("TW_EXCLUDE_MTP := true\n");
891 mConstValues.insert(make_pair("tw_has_mtp", "0"));
892 mConstValues.insert(make_pair("tw_mtp_enabled", "0"));
893#endif
Ethan Yonker961d20e2015-06-29 14:00:03 -0500894 mValues.insert(make_pair("tw_mount_system_ro", make_pair("2", 1)));
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500895 mValues.insert(make_pair("tw_never_show_system_ro_page", make_pair("0", 1)));
Ethan Yonker74db1572015-10-28 12:44:49 -0500896 mValues.insert(make_pair("tw_language", make_pair(EXPAND(TW_DEFAULT_LANGUAGE), 1)));
897 LOGINFO("LANG: %s\n", EXPAND(TW_DEFAULT_LANGUAGE));
Vojtech Bocekfda239b2015-01-07 22:55:13 +0100898
899 pthread_mutex_unlock(&m_valuesLock);
Dees_Troy51a0e822012-09-05 15:24:24 -0400900}
901
902// Magic Values
903int DataManager::GetMagicValue(const string varName, string& value)
904{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200905 // Handle special dynamic cases
906 if (varName == "tw_time")
907 {
908 char tmp[32];
Dees_Troy51a0e822012-09-05 15:24:24 -0400909
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200910 struct tm *current;
911 time_t now;
912 int tw_military_time;
913 now = time(0);
914 current = localtime(&now);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500915 GetValue(TW_MILITARY_TIME, tw_military_time);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200916 if (current->tm_hour >= 12)
917 {
918 if (tw_military_time == 1)
919 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
920 else
921 sprintf(tmp, "%d:%02d PM", current->tm_hour == 12 ? 12 : current->tm_hour - 12, current->tm_min);
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500922 }
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500923 else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200924 {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500925 if (tw_military_time == 1)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200926 sprintf(tmp, "%d:%02d", current->tm_hour, current->tm_min);
927 else
928 sprintf(tmp, "%d:%02d AM", current->tm_hour == 0 ? 12 : current->tm_hour, current->tm_min);
929 }
930 value = tmp;
931 return 0;
bigbiff bigbiff4efe9c32013-02-20 18:58:11 -0500932 }
Jenkins1710bf22014-10-02 20:22:21 -0400933 else if (varName == "tw_cpu_temp")
934 {
Agontuka29361a2015-04-22 14:42:59 +0600935 int tw_no_cpu_temp;
936 GetValue("tw_no_cpu_temp", tw_no_cpu_temp);
937 if (tw_no_cpu_temp == 1) return -1;
938
Jenkins1710bf22014-10-02 20:22:21 -0400939 string cpu_temp_file;
940 static unsigned long convert_temp = 0;
941 static time_t cpuSecCheck = 0;
942 int divisor = 0;
943 struct timeval curTime;
944 string results;
945
946 gettimeofday(&curTime, NULL);
947 if (curTime.tv_sec > cpuSecCheck)
948 {
949#ifdef TW_CUSTOM_CPU_TEMP_PATH
950 cpu_temp_file = EXPAND(TW_CUSTOM_CPU_TEMP_PATH);
951 if (TWFunc::read_file(cpu_temp_file, results) != 0)
952 return -1;
953#else
954 cpu_temp_file = "/sys/class/thermal/thermal_zone0/temp";
955 if (TWFunc::read_file(cpu_temp_file, results) != 0)
956 return -1;
957#endif
958 convert_temp = strtoul(results.c_str(), NULL, 0) / 1000;
959 if (convert_temp <= 0)
960 convert_temp = strtoul(results.c_str(), NULL, 0);
HandyMennyb6033452014-10-15 21:39:12 +0200961 if (convert_temp >= 150)
962 convert_temp = strtoul(results.c_str(), NULL, 0) / 10;
963 cpuSecCheck = curTime.tv_sec + 5;
Jenkins1710bf22014-10-02 20:22:21 -0400964 }
965 value = TWFunc::to_string(convert_temp);
966 return 0;
967 }
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
Dees_Troy38bd7602012-09-14 13:33:53 -0400986 if (cap){
987 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];
1059 int is_enc, has_dual, use_ext, has_data_media, has_ext;
1060
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();
xNUTxe85f02d2014-07-18 01:30:58 +02001088#ifdef TW_MAX_BRIGHTNESS
1089 if (GetStrValue("tw_brightness_path") != "/nobrightness") {
1090 TWFunc::Set_Brightness(GetStrValue("tw_brightness"));
Dees_Troy2f9117a2013-02-17 19:52:09 -06001091 }
xNUTxe85f02d2014-07-18 01:30:58 +02001092#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001093}
1094
1095string DataManager::GetCurrentStoragePath(void)
1096{
Dees_Troya13d74f2013-03-24 08:54:55 -05001097 return GetStrValue("tw_storage_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001098}
1099
Dees_Troy51a0e822012-09-05 15:24:24 -04001100string DataManager::GetSettingsStoragePath(void)
1101{
Dees_Troya13d74f2013-03-24 08:54:55 -05001102 return GetStrValue("tw_settings_path");
Dees_Troy51a0e822012-09-05 15:24:24 -04001103}
1104
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001105void DataManager::Vibrate(const string varName)
1106{
1107 int vib_value = 0;
1108 GetValue(varName, vib_value);
1109 if (vib_value) {
1110 vibrate(vib_value);
1111 }
1112}