blob: d89966e6e2b33c612b9297fdfe6edf995f8577a8 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
bigbiffab76bd72021-10-11 10:17:48 -04002 Copyright 2012 to 2021 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#ifndef _DATAMANAGER_HPP_HEADER
20#define _DATAMANAGER_HPP_HEADER
21
22#include <string>
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050023#include <pthread.h>
Ethan Yonkerfe916112016-03-14 14:54:37 -050024#include "infomanager.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040025
26using namespace std;
27
28class DataManager
29{
30public:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020031 static int ResetDefaults();
Ethan Yonkerfe916112016-03-14 14:54:37 -050032 static int LoadValues(const string& filename);
nkk7198fc3992017-12-16 16:26:42 +020033 static int LoadPersistValues(void);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020034 static int Flush();
epicXa721f952021-01-04 13:01:31 +053035 static void LoadTWRPFolderInfo(void);
Dees_Troy51a0e822012-09-05 15:24:24 -040036
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020037 // Core get routines
Ethan Yonkerfe916112016-03-14 14:54:37 -050038 static int GetValue(const string& varName, string& value);
39 static int GetValue(const string& varName, int& value);
40 static int GetValue(const string& varName, float& value);
nkk7198fc3992017-12-16 16:26:42 +020041 static int GetValue(const string& varName, unsigned long long& value);
Dees_Troy51a0e822012-09-05 15:24:24 -040042
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020043 // Helper functions
Ethan Yonkerfe916112016-03-14 14:54:37 -050044 static string GetStrValue(const string& varName);
45 static int GetIntValue(const string& varName);
Dees_Troy51a0e822012-09-05 15:24:24 -040046
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020047 // Core set routines
Ethan Yonkerfe916112016-03-14 14:54:37 -050048 static int SetValue(const string& varName, const string& value, const int persist = 0);
49 static int SetValue(const string& varName, const int value, const int persist = 0);
50 static int SetValue(const string& varName, const float value, const int persist = 0);
51 static int SetValue(const string& varName, const unsigned long long& value, const int persist = 0);
52 static int SetProgress(const float Fraction);
Chaosmasterd5364a02020-02-03 15:38:02 +010053 static int _SetProgress(float Fraction);
54 static int ShowProgress(float Portion, const float Seconds);
Dees_Troy51a0e822012-09-05 15:24:24 -040055
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020056 static void DumpValues();
Dees_Troy8170a922012-09-18 15:40:25 -040057 static void update_tz_environment_variables();
Ethan Yonkerfe916112016-03-14 14:54:37 -050058 static void Vibrate(const string& varName);
Dees_Troy16b74352012-11-14 22:27:31 +000059 static void SetBackupFolder();
Dees_Troy51a0e822012-09-05 15:24:24 -040060 static void SetDefaultValues();
Dees_Troy01a9b7a2012-10-01 09:01:03 -040061 static void Output_Version(void); // Outputs the version to a file in the TWRP folder
Dees_Troy51a0e822012-09-05 15:24:24 -040062 static void ReadSettingsFile(void);
bigbiff bigbiff2c57d782013-02-19 10:09:21 -050063
Dees_Troy51a0e822012-09-05 15:24:24 -040064 static string GetCurrentStoragePath(void);
Dees_Troy51a0e822012-09-05 15:24:24 -040065 static string GetSettingsStoragePath(void);
Dees_Troy51a0e822012-09-05 15:24:24 -040066
epicXa721f952021-01-04 13:01:31 +053067public:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020068 static string mBackingFile;
epicXa721f952021-01-04 13:01:31 +053069
70protected:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020071 static int mInitialized;
Ethan Yonkerfe916112016-03-14 14:54:37 -050072 static InfoManager mPersist;
73 static InfoManager mData;
74 static InfoManager mConst;
Dees_Troy51a0e822012-09-05 15:24:24 -040075
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020076 static map<string, string> mConstValues;
Dees_Troy51a0e822012-09-05 15:24:24 -040077
78protected:
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020079 static int SaveValues();
Dees_Troy51a0e822012-09-05 15:24:24 -040080
Ethan Yonkerfe916112016-03-14 14:54:37 -050081 static int GetMagicValue(const string& varName, string& value);
Dees_Troy51a0e822012-09-05 15:24:24 -040082
Dees_Troyfdf5fcc2012-09-11 10:27:01 -040083private:
84 static void sanitize_device_id(char* device_id);
85 static void get_device_id(void);
86
Vojtech Bocekfda239b2015-01-07 22:55:13 +010087 static pthread_mutex_t m_valuesLock;
Dees_Troy51a0e822012-09-05 15:24:24 -040088};
89
90#endif // _DATAMANAGER_HPP_HEADER
91