jrior001 | aad0311 | 2014-07-05 10:31:21 -0400 | [diff] [blame] | 1 | /*update |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2 | Copyright 2013 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 19 | #include <stdarg.h> |
| 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
| 23 | #include <fcntl.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <sys/time.h> |
| 26 | #include <sys/mman.h> |
| 27 | #include <sys/types.h> |
| 28 | #include <sys/ioctl.h> |
| 29 | #include <linux/input.h> |
| 30 | #include <time.h> |
| 31 | #include <unistd.h> |
| 32 | #include <stdlib.h> |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 33 | #include <sys/wait.h> |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 34 | #include <dirent.h> |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 35 | #include <pwd.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 36 | |
| 37 | #include <string> |
| 38 | #include <sstream> |
| 39 | #include "../partitions.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 40 | #include "../twrp-functions.hpp" |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 41 | #include "../openrecoveryscript.hpp" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 42 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 43 | #include "../adb_install.h" |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 44 | #include "../fuse_sideload.h" |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 45 | #include "blanktimer.hpp" |
Ethan Yonker | fbb4353 | 2015-12-28 21:54:50 +0100 | [diff] [blame] | 46 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 47 | extern "C" { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 48 | #include "../twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 49 | #include "../variables.h" |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 50 | #include "../twinstall.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 51 | #include "cutils/properties.h" |
Ethan Yonker | 2481342 | 2014-11-07 17:19:07 -0600 | [diff] [blame] | 52 | #include "../adb_install.h" |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 53 | #include "../set_metadata.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 54 | }; |
Ethan Yonker | fbb4353 | 2015-12-28 21:54:50 +0100 | [diff] [blame] | 55 | #include "../minuitwrp/minui.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 56 | |
| 57 | #include "rapidxml.hpp" |
| 58 | #include "objects.hpp" |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 59 | #include "../tw_atomic.hpp" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 60 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 61 | GUIAction::mapFunc GUIAction::mf; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 62 | std::set<string> GUIAction::setActionsRunningInCallerThread; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 63 | static string zip_queue[10]; |
| 64 | static int zip_queue_index; |
| 65 | static pthread_t terminal_command; |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 66 | pid_t sideload_child_pid; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 67 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 68 | static void *ActionThread_work_wrapper(void *data); |
| 69 | |
| 70 | class ActionThread |
| 71 | { |
| 72 | public: |
| 73 | ActionThread(); |
| 74 | ~ActionThread(); |
| 75 | |
| 76 | void threadActions(GUIAction *act); |
| 77 | void run(void *data); |
| 78 | private: |
| 79 | friend void *ActionThread_work_wrapper(void*); |
| 80 | struct ThreadData |
| 81 | { |
| 82 | ActionThread *this_; |
| 83 | GUIAction *act; |
| 84 | ThreadData(ActionThread *this_, GUIAction *act) : this_(this_), act(act) {} |
| 85 | }; |
| 86 | |
| 87 | pthread_t m_thread; |
| 88 | bool m_thread_running; |
| 89 | pthread_mutex_t m_act_lock; |
| 90 | }; |
| 91 | |
| 92 | static ActionThread action_thread; // for all kinds of longer running actions |
| 93 | static ActionThread cancel_thread; // for longer running "cancel" actions |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 94 | |
| 95 | static void *ActionThread_work_wrapper(void *data) |
| 96 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 97 | static_cast<ActionThread::ThreadData*>(data)->this_->run(data); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 98 | return NULL; |
| 99 | } |
| 100 | |
| 101 | ActionThread::ActionThread() |
| 102 | { |
| 103 | m_thread_running = false; |
| 104 | pthread_mutex_init(&m_act_lock, NULL); |
| 105 | } |
| 106 | |
| 107 | ActionThread::~ActionThread() |
| 108 | { |
| 109 | pthread_mutex_lock(&m_act_lock); |
| 110 | if(m_thread_running) { |
| 111 | pthread_mutex_unlock(&m_act_lock); |
| 112 | pthread_join(m_thread, NULL); |
| 113 | } else { |
| 114 | pthread_mutex_unlock(&m_act_lock); |
| 115 | } |
| 116 | pthread_mutex_destroy(&m_act_lock); |
| 117 | } |
| 118 | |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 119 | void ActionThread::threadActions(GUIAction *act) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 120 | { |
| 121 | pthread_mutex_lock(&m_act_lock); |
| 122 | if (m_thread_running) { |
| 123 | pthread_mutex_unlock(&m_act_lock); |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 124 | LOGERR("Another threaded action is already running -- not running %u actions starting with '%s'\n", |
| 125 | act->mActions.size(), act->mActions[0].mFunction.c_str()); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 126 | } else { |
| 127 | m_thread_running = true; |
| 128 | pthread_mutex_unlock(&m_act_lock); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 129 | ThreadData *d = new ThreadData(this, act); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 130 | pthread_create(&m_thread, NULL, &ActionThread_work_wrapper, d); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | void ActionThread::run(void *data) |
| 135 | { |
| 136 | ThreadData *d = (ThreadData*)data; |
| 137 | GUIAction* act = d->act; |
| 138 | |
| 139 | std::vector<GUIAction::Action>::iterator it; |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 140 | for (it = act->mActions.begin(); it != act->mActions.end(); ++it) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 141 | act->doAction(*it); |
| 142 | |
| 143 | pthread_mutex_lock(&m_act_lock); |
| 144 | m_thread_running = false; |
| 145 | pthread_mutex_unlock(&m_act_lock); |
| 146 | delete d; |
| 147 | } |
| 148 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 149 | GUIAction::GUIAction(xml_node<>* node) |
Vojtech Bocek | ede51c5 | 2014-02-07 23:58:09 +0100 | [diff] [blame] | 150 | : GUIObject(node) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 151 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 152 | xml_node<>* child; |
| 153 | xml_node<>* actions; |
| 154 | xml_attribute<>* attr; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 155 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 156 | if (!node) return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 157 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 158 | if (mf.empty()) { |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 159 | #define ADD_ACTION(n) mf[#n] = &GUIAction::n |
| 160 | #define ADD_ACTION_EX(name, func) mf[name] = &GUIAction::func |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 161 | // These actions will be run in the caller's thread |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 162 | ADD_ACTION(reboot); |
| 163 | ADD_ACTION(home); |
| 164 | ADD_ACTION(key); |
| 165 | ADD_ACTION(page); |
| 166 | ADD_ACTION(reload); |
| 167 | ADD_ACTION(readBackup); |
| 168 | ADD_ACTION(set); |
| 169 | ADD_ACTION(clear); |
| 170 | ADD_ACTION(mount); |
| 171 | ADD_ACTION(unmount); |
| 172 | ADD_ACTION_EX("umount", unmount); |
| 173 | ADD_ACTION(restoredefaultsettings); |
| 174 | ADD_ACTION(copylog); |
| 175 | ADD_ACTION(compute); |
| 176 | ADD_ACTION_EX("addsubtract", compute); |
| 177 | ADD_ACTION(setguitimezone); |
| 178 | ADD_ACTION(overlay); |
| 179 | ADD_ACTION(queuezip); |
| 180 | ADD_ACTION(cancelzip); |
| 181 | ADD_ACTION(queueclear); |
| 182 | ADD_ACTION(sleep); |
Matt Mower | 9a2a205 | 2016-05-31 21:31:22 -0500 | [diff] [blame] | 183 | ADD_ACTION(sleepcounter); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 184 | ADD_ACTION(appenddatetobackupname); |
| 185 | ADD_ACTION(generatebackupname); |
| 186 | ADD_ACTION(checkpartitionlist); |
| 187 | ADD_ACTION(getpartitiondetails); |
| 188 | ADD_ACTION(screenshot); |
| 189 | ADD_ACTION(setbrightness); |
| 190 | ADD_ACTION(fileexists); |
| 191 | ADD_ACTION(killterminal); |
| 192 | ADD_ACTION(checkbackupname); |
| 193 | ADD_ACTION(adbsideloadcancel); |
| 194 | ADD_ACTION(fixsu); |
| 195 | ADD_ACTION(startmtp); |
| 196 | ADD_ACTION(stopmtp); |
| 197 | ADD_ACTION(cancelbackup); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 198 | ADD_ACTION(checkpartitionlifetimewrites); |
| 199 | ADD_ACTION(mountsystemtoggle); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 200 | ADD_ACTION(setlanguage); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 201 | |
| 202 | // remember actions that run in the caller thread |
| 203 | for (mapFunc::const_iterator it = mf.begin(); it != mf.end(); ++it) |
| 204 | setActionsRunningInCallerThread.insert(it->first); |
| 205 | |
| 206 | // These actions will run in a separate thread |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 207 | ADD_ACTION(flash); |
| 208 | ADD_ACTION(wipe); |
| 209 | ADD_ACTION(refreshsizes); |
| 210 | ADD_ACTION(nandroid); |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 211 | ADD_ACTION(fixcontexts); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 212 | ADD_ACTION(fixpermissions); |
| 213 | ADD_ACTION(dd); |
| 214 | ADD_ACTION(partitionsd); |
| 215 | ADD_ACTION(installhtcdumlock); |
| 216 | ADD_ACTION(htcdumlockrestoreboot); |
| 217 | ADD_ACTION(htcdumlockreflashrecovery); |
| 218 | ADD_ACTION(cmd); |
| 219 | ADD_ACTION(terminalcommand); |
| 220 | ADD_ACTION(reinjecttwrp); |
| 221 | ADD_ACTION(decrypt); |
| 222 | ADD_ACTION(adbsideload); |
| 223 | ADD_ACTION(openrecoveryscript); |
| 224 | ADD_ACTION(installsu); |
| 225 | ADD_ACTION(decrypt_backup); |
| 226 | ADD_ACTION(repair); |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 227 | ADD_ACTION(resize); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 228 | ADD_ACTION(changefilesystem); |
| 229 | ADD_ACTION(flashimage); |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 230 | ADD_ACTION(twcmd); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 231 | } |
| 232 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 233 | // First, get the action |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 234 | actions = FindNode(node, "actions"); |
| 235 | if (actions) child = FindNode(actions, "action"); |
| 236 | else child = FindNode(node, "action"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 237 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 238 | if (!child) return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 239 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 240 | while (child) |
| 241 | { |
| 242 | Action action; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 243 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 244 | attr = child->first_attribute("function"); |
| 245 | if (!attr) return; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 246 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 247 | action.mFunction = attr->value(); |
| 248 | action.mArg = child->value(); |
| 249 | mActions.push_back(action); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 250 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 251 | child = child->next_sibling("action"); |
| 252 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 253 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 254 | // Now, let's get either the key or region |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 255 | child = FindNode(node, "touch"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 256 | if (child) |
| 257 | { |
| 258 | attr = child->first_attribute("key"); |
| 259 | if (attr) |
| 260 | { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 261 | std::vector<std::string> keys = TWFunc::Split_String(attr->value(), "+"); |
| 262 | for(size_t i = 0; i < keys.size(); ++i) |
| 263 | { |
| 264 | const int key = getKeyByName(keys[i]); |
| 265 | mKeys[key] = false; |
| 266 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 267 | } |
| 268 | else |
| 269 | { |
| 270 | attr = child->first_attribute("x"); |
| 271 | if (!attr) return; |
| 272 | mActionX = atol(attr->value()); |
| 273 | attr = child->first_attribute("y"); |
| 274 | if (!attr) return; |
| 275 | mActionY = atol(attr->value()); |
| 276 | attr = child->first_attribute("w"); |
| 277 | if (!attr) return; |
| 278 | mActionW = atol(attr->value()); |
| 279 | attr = child->first_attribute("h"); |
| 280 | if (!attr) return; |
| 281 | mActionH = atol(attr->value()); |
| 282 | } |
| 283 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 284 | } |
| 285 | |
Matt Mower | 25036b7 | 2016-06-24 12:30:18 -0500 | [diff] [blame] | 286 | int GUIAction::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 287 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 288 | if (state == TOUCH_RELEASE) |
| 289 | doActions(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 290 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 291 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 292 | } |
| 293 | |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 294 | int GUIAction::NotifyKey(int key, bool down) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 295 | { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 296 | std::map<int, bool>::iterator itr = mKeys.find(key); |
| 297 | if(itr == mKeys.end()) |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 298 | return 1; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 299 | |
| 300 | bool prevState = itr->second; |
| 301 | itr->second = down; |
| 302 | |
| 303 | // If there is only one key for this action, wait for key up so it |
| 304 | // doesn't trigger with multi-key actions. |
| 305 | // Else, check if all buttons are pressed, then consume their release events |
| 306 | // so they don't trigger one-button actions and reset mKeys pressed status |
| 307 | if(mKeys.size() == 1) { |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 308 | if(!down && prevState) { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 309 | doActions(); |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 310 | return 0; |
| 311 | } |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 312 | } else if(down) { |
| 313 | for(itr = mKeys.begin(); itr != mKeys.end(); ++itr) { |
| 314 | if(!itr->second) |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 315 | return 1; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | // Passed, all req buttons are pressed, reset them and consume release events |
| 319 | HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); |
| 320 | for(itr = mKeys.begin(); itr != mKeys.end(); ++itr) { |
| 321 | kb->ConsumeKeyRelease(itr->first); |
| 322 | itr->second = false; |
| 323 | } |
| 324 | |
| 325 | doActions(); |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 326 | return 0; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 327 | } |
| 328 | |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 329 | return 1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 330 | } |
| 331 | |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 332 | int GUIAction::NotifyVarChange(const std::string& varName, const std::string& value) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 333 | { |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 334 | GUIObject::NotifyVarChange(varName, value); |
| 335 | |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 336 | if (varName.empty() && !isConditionValid() && mKeys.empty() && !mActionW) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 337 | doActions(); |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 338 | else if((varName.empty() || IsConditionVariable(varName)) && isConditionValid() && isConditionTrue()) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 339 | doActions(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 340 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 341 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | void GUIAction::simulate_progress_bar(void) |
| 345 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 346 | gui_msg("simulating=Simulating actions..."); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 347 | for (int i = 0; i < 5; i++) |
| 348 | { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 349 | if (PartitionManager.stop_backup.get_value()) { |
| 350 | DataManager::SetValue("tw_cancel_backup", 1); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 351 | gui_msg("backup_cancel=Backup Cancelled"); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 352 | DataManager::SetValue("ui_progress", 0); |
| 353 | PartitionManager.stop_backup.set_value(0); |
| 354 | return; |
| 355 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 356 | usleep(500000); |
| 357 | DataManager::SetValue("ui_progress", i * 20); |
| 358 | } |
| 359 | } |
| 360 | |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 361 | int GUIAction::flash_zip(std::string filename, int* wipe_cache) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 362 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 363 | int ret_val = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 364 | |
| 365 | DataManager::SetValue("ui_progress", 0); |
| 366 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 367 | if (filename.empty()) |
| 368 | { |
| 369 | LOGERR("No file specified.\n"); |
| 370 | return -1; |
| 371 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 372 | |
Ethan Yonker | 9598c07 | 2016-01-15 21:54:34 -0600 | [diff] [blame] | 373 | if (!TWFunc::Path_Exists(filename)) { |
| 374 | if (!PartitionManager.Mount_By_Path(filename, true)) { |
| 375 | return -1; |
| 376 | } |
| 377 | if (!TWFunc::Path_Exists(filename)) { |
| 378 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(filename)); |
| 379 | return -1; |
| 380 | } |
| 381 | } |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 382 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 383 | if (simulate) { |
| 384 | simulate_progress_bar(); |
| 385 | } else { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 386 | ret_val = TWinstall_zip(filename.c_str(), wipe_cache); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 387 | |
| 388 | // Now, check if we need to ensure TWRP remains installed... |
| 389 | struct stat st; |
| 390 | if (stat("/sbin/installTwrp", &st) == 0) |
| 391 | { |
| 392 | DataManager::SetValue("tw_operation", "Configuring TWRP"); |
| 393 | DataManager::SetValue("tw_partition", ""); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 394 | gui_msg("config_twrp=Configuring TWRP..."); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 395 | if (TWFunc::Exec_Cmd("/sbin/installTwrp reinstall") < 0) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 396 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 397 | gui_msg("config_twrp_err=Unable to configure TWRP with this kernel."); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 398 | } |
| 399 | } |
| 400 | } |
| 401 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 402 | // Done |
| 403 | DataManager::SetValue("ui_progress", 100); |
| 404 | DataManager::SetValue("ui_progress", 0); |
| 405 | return ret_val; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 406 | } |
| 407 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 408 | GUIAction::ThreadType GUIAction::getThreadType(const GUIAction::Action& action) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 409 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 410 | string func = gui_parse_text(action.mFunction); |
| 411 | bool needsThread = setActionsRunningInCallerThread.find(func) == setActionsRunningInCallerThread.end(); |
| 412 | if (needsThread) { |
| 413 | if (func == "cancelbackup") |
| 414 | return THREAD_CANCEL; |
| 415 | else |
| 416 | return THREAD_ACTION; |
| 417 | } |
| 418 | return THREAD_NONE; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 419 | } |
| 420 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 421 | int GUIAction::doActions() |
| 422 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 423 | if (mActions.size() < 1) |
| 424 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 425 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 426 | // Determine in which thread to run the actions. |
| 427 | // Do it for all actions at once before starting, so that we can cancel the whole batch if the thread is already busy. |
| 428 | ThreadType threadType = THREAD_NONE; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 429 | std::vector<Action>::iterator it; |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 430 | for (it = mActions.begin(); it != mActions.end(); ++it) { |
| 431 | ThreadType tt = getThreadType(*it); |
| 432 | if (tt == THREAD_NONE) |
| 433 | continue; |
| 434 | if (threadType == THREAD_NONE) |
| 435 | threadType = tt; |
| 436 | else if (threadType != tt) { |
| 437 | LOGERR("Can't mix normal and cancel actions in the same list.\n" |
| 438 | "Running the whole batch in the cancel thread.\n"); |
| 439 | threadType = THREAD_CANCEL; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 440 | break; |
| 441 | } |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 442 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 443 | |
| 444 | // Now run the actions in the desired thread. |
| 445 | switch (threadType) { |
| 446 | case THREAD_ACTION: |
| 447 | action_thread.threadActions(this); |
| 448 | break; |
| 449 | |
| 450 | case THREAD_CANCEL: |
| 451 | cancel_thread.threadActions(this); |
| 452 | break; |
| 453 | |
| 454 | default: { |
| 455 | // no iterators here because theme reloading might kill our object |
| 456 | const size_t cnt = mActions.size(); |
| 457 | for (size_t i = 0; i < cnt; ++i) |
| 458 | doAction(mActions[i]); |
| 459 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 460 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 461 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 462 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 463 | } |
| 464 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 465 | int GUIAction::doAction(Action action) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 466 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 467 | DataManager::GetValue(TW_SIMULATE_ACTIONS, simulate); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 468 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 469 | std::string function = gui_parse_text(action.mFunction); |
| 470 | std::string arg = gui_parse_text(action.mArg); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 471 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 472 | // find function and execute it |
| 473 | mapFunc::const_iterator funcitr = mf.find(function); |
| 474 | if (funcitr != mf.end()) |
| 475 | return (this->*funcitr->second)(arg); |
| 476 | |
| 477 | LOGERR("Unknown action '%s'\n", function.c_str()); |
| 478 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | void GUIAction::operation_start(const string operation_name) |
| 482 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 483 | LOGINFO("operation_start: '%s'\n", operation_name.c_str()); |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 484 | time(&Start); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 485 | DataManager::SetValue(TW_ACTION_BUSY, 1); |
| 486 | DataManager::SetValue("ui_progress", 0); |
| 487 | DataManager::SetValue("tw_operation", operation_name); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 488 | DataManager::SetValue("tw_operation_state", 0); |
Ethan Yonker | d83c9ea | 2015-01-02 15:22:31 -0600 | [diff] [blame] | 489 | DataManager::SetValue("tw_operation_status", 0); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 490 | } |
| 491 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 492 | void GUIAction::operation_end(const int operation_status) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 493 | { |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 494 | time_t Stop; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 495 | int simulate_fail; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 496 | DataManager::SetValue("ui_progress", 100); |
| 497 | if (simulate) { |
| 498 | DataManager::GetValue(TW_SIMULATE_FAIL, simulate_fail); |
| 499 | if (simulate_fail != 0) |
| 500 | DataManager::SetValue("tw_operation_status", 1); |
| 501 | else |
| 502 | DataManager::SetValue("tw_operation_status", 0); |
| 503 | } else { |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 504 | if (operation_status != 0) { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 505 | DataManager::SetValue("tw_operation_status", 1); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 506 | } |
| 507 | else { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 508 | DataManager::SetValue("tw_operation_status", 0); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 509 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 510 | } |
| 511 | DataManager::SetValue("tw_operation_state", 1); |
| 512 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 513 | blankTimer.resetTimerAndUnblank(); |
LuK1337 | 62326f4 | 2015-09-30 19:57:46 +0200 | [diff] [blame] | 514 | property_set("twrp.action_complete", "1"); |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 515 | time(&Stop); |
| 516 | if ((int) difftime(Stop, Start) > 10) |
Ethan Yonker | 03db326 | 2014-02-05 08:02:06 -0600 | [diff] [blame] | 517 | DataManager::Vibrate("tw_action_vibrate"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 518 | LOGINFO("operation_end - status=%d\n", operation_status); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 519 | } |
| 520 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 521 | int GUIAction::reboot(std::string arg) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 522 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 523 | sync(); |
| 524 | DataManager::SetValue("tw_gui_done", 1); |
| 525 | DataManager::SetValue("tw_reboot_arg", arg); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 526 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 527 | return 0; |
| 528 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 529 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 530 | int GUIAction::home(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 531 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 532 | gui_changePage("main"); |
| 533 | return 0; |
| 534 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 535 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 536 | int GUIAction::key(std::string arg) |
| 537 | { |
| 538 | const int key = getKeyByName(arg); |
| 539 | PageManager::NotifyKey(key, true); |
| 540 | PageManager::NotifyKey(key, false); |
| 541 | return 0; |
| 542 | } |
| 543 | |
| 544 | int GUIAction::page(std::string arg) |
| 545 | { |
LuK1337 | 62326f4 | 2015-09-30 19:57:46 +0200 | [diff] [blame] | 546 | property_set("twrp.action_complete", "0"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 547 | std::string page_name = gui_parse_text(arg); |
| 548 | return gui_changePage(page_name); |
| 549 | } |
| 550 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 551 | int GUIAction::reload(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 552 | { |
Ethan Yonker | e0f1f3b | 2015-10-27 09:49:01 -0500 | [diff] [blame] | 553 | PageManager::RequestReload(); |
| 554 | // The actual reload is handled in pages.cpp in PageManager::RunReload() |
| 555 | // The reload will occur on the next Update or Render call and will |
| 556 | // be performed in the rendoer thread instead of the action thread |
| 557 | // to prevent crashing which could occur when we start deleting |
| 558 | // GUI resources in the action thread while we attempt to render |
| 559 | // with those same resources in another thread. |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 560 | return 0; |
| 561 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 562 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 563 | int GUIAction::readBackup(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 564 | { |
| 565 | string Restore_Name; |
| 566 | DataManager::GetValue("tw_restore", Restore_Name); |
| 567 | PartitionManager.Set_Restore_Files(Restore_Name); |
| 568 | return 0; |
| 569 | } |
| 570 | |
| 571 | int GUIAction::set(std::string arg) |
| 572 | { |
| 573 | if (arg.find('=') != string::npos) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 574 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 575 | string varName = arg.substr(0, arg.find('=')); |
| 576 | string value = arg.substr(arg.find('=') + 1, string::npos); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 577 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 578 | DataManager::GetValue(value, value); |
| 579 | DataManager::SetValue(varName, value); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 580 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 581 | else |
| 582 | DataManager::SetValue(arg, "1"); |
| 583 | return 0; |
| 584 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 585 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 586 | int GUIAction::clear(std::string arg) |
| 587 | { |
| 588 | DataManager::SetValue(arg, "0"); |
| 589 | return 0; |
| 590 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 591 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 592 | int GUIAction::mount(std::string arg) |
| 593 | { |
| 594 | if (arg == "usb") { |
| 595 | DataManager::SetValue(TW_ACTION_BUSY, 1); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 596 | if (!simulate) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 597 | PartitionManager.usb_storage_enable(); |
| 598 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 599 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 600 | } else if (!simulate) { |
| 601 | PartitionManager.Mount_By_Path(arg, true); |
| 602 | PartitionManager.Add_MTP_Storage(arg); |
| 603 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 604 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
| 608 | int GUIAction::unmount(std::string arg) |
| 609 | { |
| 610 | if (arg == "usb") { |
| 611 | if (!simulate) |
| 612 | PartitionManager.usb_storage_disable(); |
| 613 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 614 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 615 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
| 616 | } else if (!simulate) { |
| 617 | PartitionManager.UnMount_By_Path(arg, true); |
| 618 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 619 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 620 | return 0; |
| 621 | } |
| 622 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 623 | int GUIAction::restoredefaultsettings(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 624 | { |
| 625 | operation_start("Restore Defaults"); |
| 626 | if (simulate) // Simulated so that people don't accidently wipe out the "simulation is on" setting |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 627 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 628 | else { |
| 629 | DataManager::ResetDefaults(); |
| 630 | PartitionManager.Update_System_Details(); |
| 631 | PartitionManager.Mount_Current_Storage(true); |
| 632 | } |
| 633 | operation_end(0); |
| 634 | return 0; |
| 635 | } |
| 636 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 637 | int GUIAction::copylog(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 638 | { |
| 639 | operation_start("Copy Log"); |
| 640 | if (!simulate) |
| 641 | { |
| 642 | string dst; |
| 643 | PartitionManager.Mount_Current_Storage(true); |
| 644 | dst = DataManager::GetCurrentStoragePath() + "/recovery.log"; |
| 645 | TWFunc::copy_file("/tmp/recovery.log", dst.c_str(), 0755); |
| 646 | tw_set_default_metadata(dst.c_str()); |
| 647 | sync(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 648 | gui_msg(Msg("copy_log=Copied recovery log to {1}.")(DataManager::GetCurrentStoragePath())); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 649 | } else |
| 650 | simulate_progress_bar(); |
| 651 | operation_end(0); |
| 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | |
| 656 | int GUIAction::compute(std::string arg) |
| 657 | { |
| 658 | if (arg.find("+") != string::npos) |
| 659 | { |
| 660 | string varName = arg.substr(0, arg.find('+')); |
| 661 | string string_to_add = arg.substr(arg.find('+') + 1, string::npos); |
| 662 | int amount_to_add = atoi(string_to_add.c_str()); |
| 663 | int value; |
| 664 | |
| 665 | DataManager::GetValue(varName, value); |
| 666 | DataManager::SetValue(varName, value + amount_to_add); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 667 | return 0; |
| 668 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 669 | if (arg.find("-") != string::npos) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 670 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 671 | string varName = arg.substr(0, arg.find('-')); |
| 672 | string string_to_subtract = arg.substr(arg.find('-') + 1, string::npos); |
| 673 | int amount_to_subtract = atoi(string_to_subtract.c_str()); |
| 674 | int value; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 675 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 676 | DataManager::GetValue(varName, value); |
| 677 | value -= amount_to_subtract; |
| 678 | if (value <= 0) |
| 679 | value = 0; |
| 680 | DataManager::SetValue(varName, value); |
| 681 | return 0; |
| 682 | } |
| 683 | if (arg.find("*") != string::npos) |
| 684 | { |
| 685 | string varName = arg.substr(0, arg.find('*')); |
| 686 | string multiply_by_str = gui_parse_text(arg.substr(arg.find('*') + 1, string::npos)); |
| 687 | int multiply_by = atoi(multiply_by_str.c_str()); |
| 688 | int value; |
| 689 | |
| 690 | DataManager::GetValue(varName, value); |
| 691 | DataManager::SetValue(varName, value*multiply_by); |
| 692 | return 0; |
| 693 | } |
| 694 | if (arg.find("/") != string::npos) |
| 695 | { |
| 696 | string varName = arg.substr(0, arg.find('/')); |
| 697 | string divide_by_str = gui_parse_text(arg.substr(arg.find('/') + 1, string::npos)); |
| 698 | int divide_by = atoi(divide_by_str.c_str()); |
| 699 | int value; |
| 700 | |
| 701 | if(divide_by != 0) |
| 702 | { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 703 | DataManager::GetValue(varName, value); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 704 | DataManager::SetValue(varName, value/divide_by); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 705 | } |
| 706 | return 0; |
| 707 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 708 | LOGERR("Unable to perform compute '%s'\n", arg.c_str()); |
| 709 | return -1; |
| 710 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 711 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 712 | int GUIAction::setguitimezone(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 713 | { |
| 714 | string SelectedZone; |
| 715 | DataManager::GetValue(TW_TIME_ZONE_GUISEL, SelectedZone); // read the selected time zone into SelectedZone |
| 716 | string Zone = SelectedZone.substr(0, SelectedZone.find(';')); // parse to get time zone |
| 717 | string DSTZone = SelectedZone.substr(SelectedZone.find(';') + 1, string::npos); // parse to get DST component |
| 718 | |
| 719 | int dst; |
| 720 | DataManager::GetValue(TW_TIME_ZONE_GUIDST, dst); // check wether user chose to use DST |
| 721 | |
| 722 | string offset; |
| 723 | DataManager::GetValue(TW_TIME_ZONE_GUIOFFSET, offset); // pull in offset |
| 724 | |
| 725 | string NewTimeZone = Zone; |
| 726 | if (offset != "0") |
| 727 | NewTimeZone += ":" + offset; |
| 728 | |
| 729 | if (dst != 0) |
| 730 | NewTimeZone += DSTZone; |
| 731 | |
| 732 | DataManager::SetValue(TW_TIME_ZONE_VAR, NewTimeZone); |
| 733 | DataManager::update_tz_environment_variables(); |
| 734 | return 0; |
| 735 | } |
| 736 | |
| 737 | int GUIAction::overlay(std::string arg) |
| 738 | { |
| 739 | return gui_changeOverlay(arg); |
| 740 | } |
| 741 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 742 | int GUIAction::queuezip(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 743 | { |
| 744 | if (zip_queue_index >= 10) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 745 | gui_msg("max_queue=Maximum zip queue reached!"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 746 | return 0; |
| 747 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 748 | DataManager::GetValue("tw_filename", zip_queue[zip_queue_index]); |
| 749 | if (strlen(zip_queue[zip_queue_index].c_str()) > 0) { |
| 750 | zip_queue_index++; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 751 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 752 | } |
| 753 | return 0; |
| 754 | } |
| 755 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 756 | int GUIAction::cancelzip(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 757 | { |
| 758 | if (zip_queue_index <= 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 759 | gui_msg("min_queue=Minimum zip queue reached!"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 760 | return 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 761 | } else { |
| 762 | zip_queue_index--; |
| 763 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 764 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 765 | return 0; |
| 766 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 767 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 768 | int GUIAction::queueclear(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 769 | { |
| 770 | zip_queue_index = 0; |
| 771 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
| 772 | return 0; |
| 773 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 774 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 775 | int GUIAction::sleep(std::string arg) |
| 776 | { |
| 777 | operation_start("Sleep"); |
| 778 | usleep(atoi(arg.c_str())); |
| 779 | operation_end(0); |
| 780 | return 0; |
| 781 | } |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 782 | |
Matt Mower | 9a2a205 | 2016-05-31 21:31:22 -0500 | [diff] [blame] | 783 | int GUIAction::sleepcounter(std::string arg) |
| 784 | { |
| 785 | operation_start("SleepCounter"); |
| 786 | // Ensure user notices countdown in case it needs to be cancelled |
| 787 | blankTimer.resetTimerAndUnblank(); |
| 788 | int total = atoi(arg.c_str()); |
| 789 | for (int t = total; t > 0; t--) { |
| 790 | int progress = (int)(((float)(total-t)/(float)total)*100.0); |
| 791 | DataManager::SetValue("ui_progress", progress); |
| 792 | ::sleep(1); |
| 793 | DataManager::SetValue("tw_sleep", t-1); |
| 794 | } |
| 795 | DataManager::SetValue("ui_progress", 100); |
| 796 | operation_end(0); |
| 797 | return 0; |
| 798 | } |
| 799 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 800 | int GUIAction::appenddatetobackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 801 | { |
| 802 | operation_start("AppendDateToBackupName"); |
| 803 | string Backup_Name; |
| 804 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 805 | Backup_Name += TWFunc::Get_Current_Date(); |
| 806 | if (Backup_Name.size() > MAX_BACKUP_NAME_LEN) |
| 807 | Backup_Name.resize(MAX_BACKUP_NAME_LEN); |
| 808 | DataManager::SetValue(TW_BACKUP_NAME, Backup_Name); |
Matt Mower | 76b8afc | 2016-06-24 12:04:27 -0500 | [diff] [blame] | 809 | PageManager::NotifyKey(KEY_END, true); |
| 810 | PageManager::NotifyKey(KEY_END, false); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 811 | operation_end(0); |
| 812 | return 0; |
| 813 | } |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 814 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 815 | int GUIAction::generatebackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 816 | { |
| 817 | operation_start("GenerateBackupName"); |
| 818 | TWFunc::Auto_Generate_Backup_Name(); |
| 819 | operation_end(0); |
| 820 | return 0; |
| 821 | } |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 822 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 823 | int GUIAction::checkpartitionlist(std::string arg) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 824 | { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 825 | string List, part_path; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 826 | int count = 0; |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 827 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 828 | if (arg.empty()) |
| 829 | arg = "tw_wipe_list"; |
| 830 | DataManager::GetValue(arg, List); |
| 831 | LOGINFO("checkpartitionlist list '%s'\n", List.c_str()); |
| 832 | if (!List.empty()) { |
| 833 | size_t start_pos = 0, end_pos = List.find(";", start_pos); |
| 834 | while (end_pos != string::npos && start_pos < List.size()) { |
| 835 | part_path = List.substr(start_pos, end_pos - start_pos); |
| 836 | LOGINFO("checkpartitionlist part_path '%s'\n", part_path.c_str()); |
| 837 | if (part_path == "/and-sec" || part_path == "DALVIK" || part_path == "INTERNAL") { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 838 | // Do nothing |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 839 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 840 | count++; |
| 841 | } |
| 842 | start_pos = end_pos + 1; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 843 | end_pos = List.find(";", start_pos); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 844 | } |
| 845 | DataManager::SetValue("tw_check_partition_list", count); |
| 846 | } else { |
| 847 | DataManager::SetValue("tw_check_partition_list", 0); |
| 848 | } |
| 849 | return 0; |
| 850 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 851 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 852 | int GUIAction::getpartitiondetails(std::string arg) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 853 | { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 854 | string List, part_path; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 855 | int count = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 856 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 857 | if (arg.empty()) |
| 858 | arg = "tw_wipe_list"; |
| 859 | DataManager::GetValue(arg, List); |
| 860 | LOGINFO("getpartitiondetails list '%s'\n", List.c_str()); |
| 861 | if (!List.empty()) { |
| 862 | size_t start_pos = 0, end_pos = List.find(";", start_pos); |
| 863 | part_path = List; |
| 864 | while (end_pos != string::npos && start_pos < List.size()) { |
| 865 | part_path = List.substr(start_pos, end_pos - start_pos); |
| 866 | LOGINFO("getpartitiondetails part_path '%s'\n", part_path.c_str()); |
| 867 | if (part_path == "/and-sec" || part_path == "DALVIK" || part_path == "INTERNAL") { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 868 | // Do nothing |
| 869 | } else { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 870 | DataManager::SetValue("tw_partition_path", part_path); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 871 | break; |
| 872 | } |
| 873 | start_pos = end_pos + 1; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 874 | end_pos = List.find(";", start_pos); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 875 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 876 | if (!part_path.empty()) { |
| 877 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(part_path); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 878 | if (Part) { |
| 879 | unsigned long long mb = 1048576; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 880 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 881 | DataManager::SetValue("tw_partition_name", Part->Display_Name); |
| 882 | DataManager::SetValue("tw_partition_mount_point", Part->Mount_Point); |
| 883 | DataManager::SetValue("tw_partition_file_system", Part->Current_File_System); |
| 884 | DataManager::SetValue("tw_partition_size", Part->Size / mb); |
| 885 | DataManager::SetValue("tw_partition_used", Part->Used / mb); |
| 886 | DataManager::SetValue("tw_partition_free", Part->Free / mb); |
| 887 | DataManager::SetValue("tw_partition_backup_size", Part->Backup_Size / mb); |
| 888 | DataManager::SetValue("tw_partition_removable", Part->Removable); |
| 889 | DataManager::SetValue("tw_partition_is_present", Part->Is_Present); |
| 890 | |
| 891 | if (Part->Can_Repair()) |
| 892 | DataManager::SetValue("tw_partition_can_repair", 1); |
| 893 | else |
| 894 | DataManager::SetValue("tw_partition_can_repair", 0); |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 895 | if (Part->Can_Resize()) |
| 896 | DataManager::SetValue("tw_partition_can_resize", 1); |
| 897 | else |
| 898 | DataManager::SetValue("tw_partition_can_resize", 0); |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 899 | if (TWFunc::Path_Exists("/sbin/mkfs.fat")) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 900 | DataManager::SetValue("tw_partition_vfat", 1); |
| 901 | else |
| 902 | DataManager::SetValue("tw_partition_vfat", 0); |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 903 | if (TWFunc::Path_Exists("/sbin/mkexfatfs")) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 904 | DataManager::SetValue("tw_partition_exfat", 1); |
| 905 | else |
| 906 | DataManager::SetValue("tw_partition_exfat", 0); |
| 907 | if (TWFunc::Path_Exists("/sbin/mkfs.f2fs")) |
| 908 | DataManager::SetValue("tw_partition_f2fs", 1); |
| 909 | else |
| 910 | DataManager::SetValue("tw_partition_f2fs", 0); |
| 911 | if (TWFunc::Path_Exists("/sbin/mke2fs")) |
| 912 | DataManager::SetValue("tw_partition_ext", 1); |
| 913 | else |
| 914 | DataManager::SetValue("tw_partition_ext", 0); |
| 915 | return 0; |
| 916 | } else { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 917 | LOGERR("Unable to locate partition: '%s'\n", part_path.c_str()); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 918 | } |
| 919 | } |
| 920 | } |
| 921 | DataManager::SetValue("tw_partition_name", ""); |
| 922 | DataManager::SetValue("tw_partition_file_system", ""); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 923 | // Set this to 0 to prevent trying to partition this device, just in case |
| 924 | DataManager::SetValue("tw_partition_removable", 0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 925 | return 0; |
| 926 | } |
| 927 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 928 | int GUIAction::screenshot(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 929 | { |
| 930 | time_t tm; |
| 931 | char path[256]; |
| 932 | int path_len; |
| 933 | uid_t uid = -1; |
| 934 | gid_t gid = -1; |
| 935 | |
| 936 | struct passwd *pwd = getpwnam("media_rw"); |
| 937 | if(pwd) { |
| 938 | uid = pwd->pw_uid; |
| 939 | gid = pwd->pw_gid; |
| 940 | } |
| 941 | |
| 942 | const std::string storage = DataManager::GetCurrentStoragePath(); |
| 943 | if(PartitionManager.Is_Mounted_By_Path(storage)) { |
| 944 | snprintf(path, sizeof(path), "%s/Pictures/Screenshots/", storage.c_str()); |
| 945 | } else { |
| 946 | strcpy(path, "/tmp/"); |
| 947 | } |
| 948 | |
Xuefer | 579e907 | 2016-01-22 13:35:50 +0800 | [diff] [blame] | 949 | if(!TWFunc::Create_Dir_Recursive(path, 0775, uid, gid)) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 950 | return 0; |
| 951 | |
| 952 | tm = time(NULL); |
| 953 | path_len = strlen(path); |
| 954 | |
| 955 | // Screenshot_2014-01-01-18-21-38.png |
| 956 | strftime(path+path_len, sizeof(path)-path_len, "Screenshot_%Y-%m-%d-%H-%M-%S.png", localtime(&tm)); |
| 957 | |
| 958 | int res = gr_save_screenshot(path); |
| 959 | if(res == 0) { |
| 960 | chmod(path, 0666); |
| 961 | chown(path, uid, gid); |
| 962 | |
that | 677b13f | 2015-12-26 23:57:31 +0100 | [diff] [blame] | 963 | gui_msg(Msg("screenshot_saved=Screenshot was saved to {1}")(path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 964 | |
| 965 | // blink to notify that the screenshow was taken |
| 966 | gr_color(255, 255, 255, 255); |
| 967 | gr_fill(0, 0, gr_fb_width(), gr_fb_height()); |
| 968 | gr_flip(); |
| 969 | gui_forceRender(); |
| 970 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 971 | gui_err("screenshot_err=Failed to take a screenshot!"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 972 | } |
| 973 | return 0; |
| 974 | } |
| 975 | |
| 976 | int GUIAction::setbrightness(std::string arg) |
| 977 | { |
| 978 | return TWFunc::Set_Brightness(arg); |
| 979 | } |
| 980 | |
| 981 | int GUIAction::fileexists(std::string arg) |
| 982 | { |
| 983 | struct stat st; |
| 984 | string newpath = arg + "/."; |
| 985 | |
| 986 | operation_start("FileExists"); |
| 987 | if (stat(arg.c_str(), &st) == 0 || stat(newpath.c_str(), &st) == 0) |
| 988 | operation_end(0); |
| 989 | else |
| 990 | operation_end(1); |
| 991 | return 0; |
| 992 | } |
| 993 | |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 994 | void GUIAction::reinject_after_flash() |
| 995 | { |
| 996 | if (DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 997 | gui_msg("injecttwrp=Injecting TWRP into boot image..."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 998 | if (simulate) { |
| 999 | simulate_progress_bar(); |
| 1000 | } else { |
| 1001 | TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); |
| 1002 | if (Boot == NULL || Boot->Current_File_System != "emmc") |
| 1003 | TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash"); |
| 1004 | else { |
| 1005 | string injectcmd = "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" + Boot->Actual_Block_Device; |
| 1006 | TWFunc::Exec_Cmd(injectcmd); |
| 1007 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1008 | gui_msg("done=Done."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1009 | } |
| 1010 | } |
| 1011 | } |
| 1012 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1013 | int GUIAction::flash(std::string arg) |
| 1014 | { |
| 1015 | int i, ret_val = 0, wipe_cache = 0; |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1016 | // We're going to jump to this page first, like a loading page |
| 1017 | gui_changePage(arg); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1018 | for (i=0; i<zip_queue_index; i++) { |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1019 | string zip_path = zip_queue[i]; |
| 1020 | size_t slashpos = zip_path.find_last_of('/'); |
| 1021 | string zip_filename = (slashpos == string::npos) ? zip_path : zip_path.substr(slashpos + 1); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1022 | operation_start("Flashing"); |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1023 | DataManager::SetValue("tw_filename", zip_path); |
| 1024 | DataManager::SetValue("tw_file", zip_filename); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1025 | DataManager::SetValue(TW_ZIP_INDEX, (i + 1)); |
| 1026 | |
| 1027 | TWFunc::SetPerformanceMode(true); |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1028 | ret_val = flash_zip(zip_path, &wipe_cache); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1029 | TWFunc::SetPerformanceMode(false); |
| 1030 | if (ret_val != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1031 | gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(zip_path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1032 | ret_val = 1; |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1033 | break; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | zip_queue_index = 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1037 | |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1038 | if (wipe_cache) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1039 | gui_msg("zip_wipe_cache=One or more zip requested a cache wipe -- Wiping cache now."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1040 | PartitionManager.Wipe_By_Path("/cache"); |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1041 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1042 | |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1043 | reinject_after_flash(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1044 | PartitionManager.Update_System_Details(); |
| 1045 | operation_end(ret_val); |
bigbiff | a869fc7 | 2016-03-01 19:40:36 -0500 | [diff] [blame] | 1046 | // This needs to be after the operation_end call so we change pages before we change variables that we display on the screen |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1047 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1048 | return 0; |
| 1049 | } |
| 1050 | |
| 1051 | int GUIAction::wipe(std::string arg) |
| 1052 | { |
| 1053 | operation_start("Format"); |
| 1054 | DataManager::SetValue("tw_partition", arg); |
| 1055 | |
| 1056 | int ret_val = false; |
| 1057 | |
| 1058 | if (simulate) { |
| 1059 | simulate_progress_bar(); |
| 1060 | } else { |
| 1061 | if (arg == "data") |
| 1062 | ret_val = PartitionManager.Factory_Reset(); |
| 1063 | else if (arg == "battery") |
| 1064 | ret_val = PartitionManager.Wipe_Battery_Stats(); |
| 1065 | else if (arg == "rotate") |
| 1066 | ret_val = PartitionManager.Wipe_Rotate_Data(); |
| 1067 | else if (arg == "dalvik") |
| 1068 | ret_val = PartitionManager.Wipe_Dalvik_Cache(); |
| 1069 | else if (arg == "DATAMEDIA") { |
| 1070 | ret_val = PartitionManager.Format_Data(); |
| 1071 | } else if (arg == "INTERNAL") { |
| 1072 | int has_datamedia, dual_storage; |
| 1073 | |
| 1074 | DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia); |
| 1075 | if (has_datamedia) { |
| 1076 | ret_val = PartitionManager.Wipe_Media_From_Data(); |
| 1077 | } else { |
| 1078 | ret_val = PartitionManager.Wipe_By_Path(DataManager::GetSettingsStoragePath()); |
| 1079 | } |
| 1080 | } else if (arg == "EXTERNAL") { |
| 1081 | string External_Path; |
| 1082 | |
| 1083 | DataManager::GetValue(TW_EXTERNAL_PATH, External_Path); |
| 1084 | ret_val = PartitionManager.Wipe_By_Path(External_Path); |
| 1085 | } else if (arg == "ANDROIDSECURE") { |
| 1086 | ret_val = PartitionManager.Wipe_Android_Secure(); |
| 1087 | } else if (arg == "LIST") { |
| 1088 | string Wipe_List, wipe_path; |
| 1089 | bool skip = false; |
| 1090 | ret_val = true; |
| 1091 | TWPartition* wipe_part = NULL; |
| 1092 | |
| 1093 | DataManager::GetValue("tw_wipe_list", Wipe_List); |
| 1094 | LOGINFO("wipe list '%s'\n", Wipe_List.c_str()); |
| 1095 | if (!Wipe_List.empty()) { |
| 1096 | size_t start_pos = 0, end_pos = Wipe_List.find(";", start_pos); |
| 1097 | while (end_pos != string::npos && start_pos < Wipe_List.size()) { |
| 1098 | wipe_path = Wipe_List.substr(start_pos, end_pos - start_pos); |
| 1099 | LOGINFO("wipe_path '%s'\n", wipe_path.c_str()); |
| 1100 | if (wipe_path == "/and-sec") { |
| 1101 | if (!PartitionManager.Wipe_Android_Secure()) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1102 | gui_msg("and_sec_wipe_err=Unable to wipe android secure"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1103 | ret_val = false; |
| 1104 | break; |
| 1105 | } else { |
| 1106 | skip = true; |
| 1107 | } |
| 1108 | } else if (wipe_path == "DALVIK") { |
| 1109 | if (!PartitionManager.Wipe_Dalvik_Cache()) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1110 | gui_err("dalvik_wipe_err=Failed to wipe dalvik"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1111 | ret_val = false; |
| 1112 | break; |
| 1113 | } else { |
| 1114 | skip = true; |
| 1115 | } |
| 1116 | } else if (wipe_path == "INTERNAL") { |
| 1117 | if (!PartitionManager.Wipe_Media_From_Data()) { |
| 1118 | ret_val = false; |
| 1119 | break; |
| 1120 | } else { |
| 1121 | skip = true; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1122 | } |
| 1123 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1124 | if (!skip) { |
| 1125 | if (!PartitionManager.Wipe_By_Path(wipe_path)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1126 | gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(wipe_path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1127 | ret_val = false; |
| 1128 | break; |
| 1129 | } else if (wipe_path == DataManager::GetSettingsStoragePath()) { |
| 1130 | arg = wipe_path; |
| 1131 | } |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1132 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1133 | skip = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1134 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1135 | start_pos = end_pos + 1; |
| 1136 | end_pos = Wipe_List.find(";", start_pos); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1137 | } |
| 1138 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1139 | } else |
| 1140 | ret_val = PartitionManager.Wipe_By_Path(arg); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1141 | #ifndef TW_OEM_BUILD |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1142 | if (arg == DataManager::GetSettingsStoragePath()) { |
| 1143 | // If we wiped the settings storage path, recreate the TWRP folder and dump the settings |
| 1144 | string Storage_Path = DataManager::GetSettingsStoragePath(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1145 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1146 | if (PartitionManager.Mount_By_Path(Storage_Path, true)) { |
| 1147 | LOGINFO("Making TWRP folder and saving settings.\n"); |
| 1148 | Storage_Path += "/TWRP"; |
| 1149 | mkdir(Storage_Path.c_str(), 0777); |
| 1150 | DataManager::Flush(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1151 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1152 | LOGERR("Unable to recreate TWRP folder and save settings.\n"); |
| 1153 | } |
| 1154 | } |
| 1155 | #endif |
| 1156 | } |
| 1157 | PartitionManager.Update_System_Details(); |
| 1158 | if (ret_val) |
| 1159 | ret_val = 0; // 0 is success |
| 1160 | else |
| 1161 | ret_val = 1; // 1 is failure |
| 1162 | operation_end(ret_val); |
| 1163 | return 0; |
| 1164 | } |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 1165 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1166 | int GUIAction::refreshsizes(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1167 | { |
| 1168 | operation_start("Refreshing Sizes"); |
| 1169 | if (simulate) { |
| 1170 | simulate_progress_bar(); |
| 1171 | } else |
| 1172 | PartitionManager.Update_System_Details(); |
| 1173 | operation_end(0); |
| 1174 | return 0; |
| 1175 | } |
| 1176 | |
| 1177 | int GUIAction::nandroid(std::string arg) |
| 1178 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1179 | if (simulate) { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1180 | PartitionManager.stop_backup.set_value(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1181 | DataManager::SetValue("tw_partition", "Simulation"); |
| 1182 | simulate_progress_bar(); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1183 | operation_end(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1184 | } else { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1185 | operation_start("Nandroid"); |
| 1186 | int ret = 0; |
| 1187 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1188 | if (arg == "backup") { |
| 1189 | string Backup_Name; |
| 1190 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Ethan Yonker | 4adc33e | 2016-01-22 16:07:11 -0600 | [diff] [blame] | 1191 | string auto_gen = gui_lookup("auto_generate", "(Auto Generate)"); |
| 1192 | if (Backup_Name == auto_gen || Backup_Name == gui_lookup("curr_date", "(Current Date)") || Backup_Name == "0" || Backup_Name == "(" || PartitionManager.Check_Backup_Name(true) == 0) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1193 | ret = PartitionManager.Run_Backup(false); |
| 1194 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1195 | operation_end(1); |
| 1196 | return -1; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1197 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1198 | DataManager::SetValue(TW_BACKUP_NAME, auto_gen); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1199 | } else if (arg == "restore") { |
| 1200 | string Restore_Name; |
| 1201 | DataManager::GetValue("tw_restore", Restore_Name); |
| 1202 | ret = PartitionManager.Run_Restore(Restore_Name); |
| 1203 | } else { |
| 1204 | operation_end(1); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1205 | return -1; |
| 1206 | } |
| 1207 | DataManager::SetValue("tw_encrypt_backup", 0); |
| 1208 | if (!PartitionManager.stop_backup.get_value()) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1209 | if (ret == false) |
| 1210 | ret = 1; // 1 for failure |
| 1211 | else |
| 1212 | ret = 0; // 0 for success |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1213 | DataManager::SetValue("tw_cancel_backup", 0); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1214 | } |
| 1215 | else { |
| 1216 | DataManager::SetValue("tw_cancel_backup", 1); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1217 | gui_msg("backup_cancel=Backup Cancelled"); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1218 | ret = 0; |
| 1219 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1220 | operation_end(ret); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1221 | return ret; |
| 1222 | } |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1226 | int GUIAction::cancelbackup(std::string arg __unused) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1227 | if (simulate) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1228 | PartitionManager.stop_backup.set_value(1); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1229 | } |
| 1230 | else { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1231 | int op_status = PartitionManager.Cancel_Backup(); |
| 1232 | if (op_status != 0) |
| 1233 | op_status = 1; // failure |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | return 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1237 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1238 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1239 | int GUIAction::fixcontexts(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1240 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1241 | int op_status = 0; |
| 1242 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1243 | operation_start("Fix Contexts"); |
| 1244 | LOGINFO("fix contexts started!\n"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1245 | if (simulate) { |
| 1246 | simulate_progress_bar(); |
| 1247 | } else { |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1248 | op_status = PartitionManager.Fix_Contexts(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1249 | if (op_status != 0) |
| 1250 | op_status = 1; // failure |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1251 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1252 | operation_end(op_status); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1253 | return 0; |
| 1254 | } |
| 1255 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1256 | int GUIAction::fixpermissions(std::string arg) |
| 1257 | { |
| 1258 | return fixcontexts(arg); |
| 1259 | } |
| 1260 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1261 | int GUIAction::dd(std::string arg) |
| 1262 | { |
| 1263 | operation_start("imaging"); |
| 1264 | |
| 1265 | if (simulate) { |
| 1266 | simulate_progress_bar(); |
| 1267 | } else { |
| 1268 | string cmd = "dd " + arg; |
| 1269 | TWFunc::Exec_Cmd(cmd); |
| 1270 | } |
| 1271 | operation_end(0); |
| 1272 | return 0; |
| 1273 | } |
| 1274 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1275 | int GUIAction::partitionsd(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1276 | { |
| 1277 | operation_start("Partition SD Card"); |
| 1278 | int ret_val = 0; |
| 1279 | |
| 1280 | if (simulate) { |
| 1281 | simulate_progress_bar(); |
| 1282 | } else { |
| 1283 | int allow_partition; |
| 1284 | DataManager::GetValue(TW_ALLOW_PARTITION_SDCARD, allow_partition); |
| 1285 | if (allow_partition == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1286 | gui_err("no_real_sdcard=This device does not have a real SD Card! Aborting!"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1287 | } else { |
| 1288 | if (!PartitionManager.Partition_SDCard()) |
| 1289 | ret_val = 1; // failed |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1290 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1291 | } |
| 1292 | operation_end(ret_val); |
| 1293 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1294 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1295 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1296 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1297 | int GUIAction::installhtcdumlock(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1298 | { |
| 1299 | operation_start("Install HTC Dumlock"); |
| 1300 | if (simulate) { |
| 1301 | simulate_progress_bar(); |
| 1302 | } else |
| 1303 | TWFunc::install_htc_dumlock(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1304 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1305 | operation_end(0); |
| 1306 | return 0; |
| 1307 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1308 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1309 | int GUIAction::htcdumlockrestoreboot(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1310 | { |
| 1311 | operation_start("HTC Dumlock Restore Boot"); |
| 1312 | if (simulate) { |
| 1313 | simulate_progress_bar(); |
| 1314 | } else |
| 1315 | TWFunc::htc_dumlock_restore_original_boot(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1316 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1317 | operation_end(0); |
| 1318 | return 0; |
| 1319 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1320 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1321 | int GUIAction::htcdumlockreflashrecovery(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1322 | { |
| 1323 | operation_start("HTC Dumlock Reflash Recovery"); |
| 1324 | if (simulate) { |
| 1325 | simulate_progress_bar(); |
| 1326 | } else |
| 1327 | TWFunc::htc_dumlock_reflash_recovery_to_boot(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1328 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1329 | operation_end(0); |
| 1330 | return 0; |
| 1331 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1332 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1333 | int GUIAction::cmd(std::string arg) |
| 1334 | { |
| 1335 | int op_status = 0; |
| 1336 | |
| 1337 | operation_start("Command"); |
| 1338 | LOGINFO("Running command: '%s'\n", arg.c_str()); |
| 1339 | if (simulate) { |
| 1340 | simulate_progress_bar(); |
| 1341 | } else { |
| 1342 | op_status = TWFunc::Exec_Cmd(arg); |
| 1343 | if (op_status != 0) |
| 1344 | op_status = 1; |
| 1345 | } |
| 1346 | |
| 1347 | operation_end(op_status); |
| 1348 | return 0; |
| 1349 | } |
| 1350 | |
| 1351 | int GUIAction::terminalcommand(std::string arg) |
| 1352 | { |
| 1353 | int op_status = 0; |
| 1354 | string cmdpath, command; |
| 1355 | |
| 1356 | DataManager::GetValue("tw_terminal_location", cmdpath); |
| 1357 | operation_start("CommandOutput"); |
| 1358 | gui_print("%s # %s\n", cmdpath.c_str(), arg.c_str()); |
| 1359 | if (simulate) { |
| 1360 | simulate_progress_bar(); |
| 1361 | operation_end(op_status); |
Matt Mower | 5aa29ab | 2015-02-25 23:50:55 -0600 | [diff] [blame] | 1362 | } else if (arg == "exit") { |
| 1363 | LOGINFO("Exiting terminal\n"); |
| 1364 | operation_end(op_status); |
| 1365 | page("main"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1366 | } else { |
| 1367 | command = "cd \"" + cmdpath + "\" && " + arg + " 2>&1";; |
| 1368 | LOGINFO("Actual command is: '%s'\n", command.c_str()); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1369 | DataManager::SetValue("tw_terminal_state", 1); |
| 1370 | DataManager::SetValue("tw_background_thread_running", 1); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1371 | FILE* fp; |
| 1372 | char line[512]; |
| 1373 | |
| 1374 | fp = popen(command.c_str(), "r"); |
| 1375 | if (fp == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1376 | LOGERR("Error opening command to run (%s).\n", strerror(errno)); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1377 | } else { |
| 1378 | int fd = fileno(fp), has_data = 0, check = 0, keep_going = -1, bytes_read = 0; |
| 1379 | struct timeval timeout; |
| 1380 | fd_set fdset; |
| 1381 | |
| 1382 | while(keep_going) |
| 1383 | { |
| 1384 | FD_ZERO(&fdset); |
| 1385 | FD_SET(fd, &fdset); |
| 1386 | timeout.tv_sec = 0; |
| 1387 | timeout.tv_usec = 400000; |
| 1388 | has_data = select(fd+1, &fdset, NULL, NULL, &timeout); |
| 1389 | if (has_data == 0) { |
| 1390 | // Timeout reached |
| 1391 | DataManager::GetValue("tw_terminal_state", check); |
| 1392 | if (check == 0) { |
| 1393 | keep_going = 0; |
| 1394 | } |
| 1395 | } else if (has_data < 0) { |
| 1396 | // End of execution |
| 1397 | keep_going = 0; |
| 1398 | } else { |
| 1399 | // Try to read output |
xiaolu | e738da5 | 2015-02-22 20:49:35 +0800 | [diff] [blame] | 1400 | if(fgets(line, sizeof(line), fp) != NULL) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1401 | gui_print("%s", line); // Display output |
| 1402 | else |
| 1403 | keep_going = 0; // Done executing |
| 1404 | } |
| 1405 | } |
| 1406 | fclose(fp); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1407 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1408 | DataManager::SetValue("tw_operation_status", 0); |
| 1409 | DataManager::SetValue("tw_operation_state", 1); |
| 1410 | DataManager::SetValue("tw_terminal_state", 0); |
| 1411 | DataManager::SetValue("tw_background_thread_running", 0); |
| 1412 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1413 | } |
| 1414 | return 0; |
| 1415 | } |
| 1416 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1417 | int GUIAction::killterminal(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1418 | { |
| 1419 | int op_status = 0; |
| 1420 | |
| 1421 | LOGINFO("Sending kill command...\n"); |
| 1422 | operation_start("KillCommand"); |
| 1423 | DataManager::SetValue("tw_operation_status", 0); |
| 1424 | DataManager::SetValue("tw_operation_state", 1); |
| 1425 | DataManager::SetValue("tw_terminal_state", 0); |
| 1426 | DataManager::SetValue("tw_background_thread_running", 0); |
| 1427 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1431 | int GUIAction::reinjecttwrp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1432 | { |
| 1433 | int op_status = 0; |
| 1434 | operation_start("ReinjectTWRP"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1435 | gui_msg("injecttwrp=Injecting TWRP into boot image..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1436 | if (simulate) { |
| 1437 | simulate_progress_bar(); |
| 1438 | } else { |
| 1439 | TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1440 | gui_msg("done=Done."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1441 | } |
| 1442 | |
| 1443 | operation_end(op_status); |
| 1444 | return 0; |
| 1445 | } |
| 1446 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1447 | int GUIAction::checkbackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1448 | { |
| 1449 | int op_status = 0; |
| 1450 | |
| 1451 | operation_start("CheckBackupName"); |
| 1452 | if (simulate) { |
| 1453 | simulate_progress_bar(); |
| 1454 | } else { |
| 1455 | op_status = PartitionManager.Check_Backup_Name(true); |
| 1456 | if (op_status != 0) |
| 1457 | op_status = 1; |
| 1458 | } |
| 1459 | |
| 1460 | operation_end(op_status); |
| 1461 | return 0; |
| 1462 | } |
| 1463 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1464 | int GUIAction::decrypt(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1465 | { |
| 1466 | int op_status = 0; |
| 1467 | |
| 1468 | operation_start("Decrypt"); |
| 1469 | if (simulate) { |
| 1470 | simulate_progress_bar(); |
| 1471 | } else { |
| 1472 | string Password; |
| 1473 | DataManager::GetValue("tw_crypto_password", Password); |
| 1474 | op_status = PartitionManager.Decrypt_Device(Password); |
| 1475 | if (op_status != 0) |
| 1476 | op_status = 1; |
| 1477 | else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1478 | |
| 1479 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 1480 | |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1481 | int has_datamedia; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1482 | |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1483 | // Check for a custom theme and load it if exists |
| 1484 | DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia); |
| 1485 | if (has_datamedia != 0) { |
| 1486 | if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 1487 | LOGINFO("Failed to get default contexts and file mode for storage files.\n"); |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1488 | } else { |
| 1489 | LOGINFO("Got default contexts and file mode for storage files.\n"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1490 | } |
| 1491 | } |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1492 | PartitionManager.Decrypt_Adopted(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1493 | } |
| 1494 | } |
| 1495 | |
| 1496 | operation_end(op_status); |
| 1497 | return 0; |
| 1498 | } |
| 1499 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1500 | int GUIAction::adbsideload(std::string arg __unused) |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1501 | { |
| 1502 | operation_start("Sideload"); |
| 1503 | if (simulate) { |
| 1504 | simulate_progress_bar(); |
| 1505 | operation_end(0); |
| 1506 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1507 | gui_msg("start_sideload=Starting ADB sideload feature..."); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1508 | bool mtp_was_enabled = TWFunc::Toggle_MTP(false); |
| 1509 | |
| 1510 | // wait for the adb connection |
| 1511 | int ret = apply_from_adb("/", &sideload_child_pid); |
| 1512 | DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui now that the zip install is going to start |
| 1513 | |
| 1514 | if (ret != 0) { |
| 1515 | if (ret == -2) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1516 | gui_msg("need_new_adb=You need adb 1.0.32 or newer to sideload to this device."); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1517 | ret = 1; // failure |
| 1518 | } else { |
| 1519 | int wipe_cache = 0; |
| 1520 | int wipe_dalvik = 0; |
| 1521 | DataManager::GetValue("tw_wipe_dalvik", wipe_dalvik); |
| 1522 | |
| 1523 | if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) { |
| 1524 | if (wipe_cache || DataManager::GetIntValue("tw_wipe_cache")) |
| 1525 | PartitionManager.Wipe_By_Path("/cache"); |
| 1526 | if (wipe_dalvik) |
| 1527 | PartitionManager.Wipe_Dalvik_Cache(); |
| 1528 | } else { |
| 1529 | ret = 1; // failure |
| 1530 | } |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1531 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1532 | if (sideload_child_pid) { |
| 1533 | LOGINFO("Signaling child sideload process to exit.\n"); |
| 1534 | struct stat st; |
| 1535 | // Calling stat() on this magic filename signals the minadbd |
| 1536 | // subprocess to shut down. |
| 1537 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
| 1538 | int status; |
| 1539 | LOGINFO("Waiting for child sideload process to exit.\n"); |
| 1540 | waitpid(sideload_child_pid, &status, 0); |
| 1541 | } |
Dees Troy | 28a85d2 | 2015-04-28 02:03:16 +0000 | [diff] [blame] | 1542 | property_set("ctl.start", "adbd"); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1543 | TWFunc::Toggle_MTP(mtp_was_enabled); |
| 1544 | reinject_after_flash(); |
| 1545 | operation_end(ret); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1546 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1547 | return 0; |
| 1548 | } |
| 1549 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1550 | int GUIAction::adbsideloadcancel(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1551 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1552 | struct stat st; |
| 1553 | DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1554 | gui_msg("cancel_sideload=Cancelling ADB sideload..."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1555 | LOGINFO("Signaling child sideload process to exit.\n"); |
| 1556 | // Calling stat() on this magic filename signals the minadbd |
| 1557 | // subprocess to shut down. |
| 1558 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
| 1559 | if (!sideload_child_pid) { |
| 1560 | LOGERR("Unable to get child ID\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1561 | return 0; |
| 1562 | } |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1563 | ::sleep(1); |
| 1564 | LOGINFO("Killing child sideload process.\n"); |
| 1565 | kill(sideload_child_pid, SIGTERM); |
| 1566 | int status; |
| 1567 | LOGINFO("Waiting for child sideload process to exit.\n"); |
| 1568 | waitpid(sideload_child_pid, &status, 0); |
| 1569 | sideload_child_pid = 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1570 | DataManager::SetValue("tw_page_done", "1"); // For OpenRecoveryScript support |
| 1571 | return 0; |
| 1572 | } |
| 1573 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1574 | int GUIAction::openrecoveryscript(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1575 | { |
| 1576 | operation_start("OpenRecoveryScript"); |
| 1577 | if (simulate) { |
| 1578 | simulate_progress_bar(); |
Ethan Yonker | 24e7eb7 | 2015-01-03 16:13:06 -0600 | [diff] [blame] | 1579 | operation_end(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1580 | } else { |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 1581 | int op_status = OpenRecoveryScript::Run_OpenRecoveryScript_Action(); |
Ethan Yonker | e1abe61 | 2015-06-09 11:09:32 -0500 | [diff] [blame] | 1582 | operation_end(op_status); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1583 | } |
| 1584 | return 0; |
| 1585 | } |
| 1586 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1587 | int GUIAction::installsu(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1588 | { |
| 1589 | int op_status = 0; |
| 1590 | |
| 1591 | operation_start("Install SuperSU"); |
| 1592 | if (simulate) { |
| 1593 | simulate_progress_bar(); |
| 1594 | } else { |
| 1595 | if (!TWFunc::Install_SuperSU()) |
| 1596 | op_status = 1; |
| 1597 | } |
| 1598 | |
| 1599 | operation_end(op_status); |
| 1600 | return 0; |
| 1601 | } |
| 1602 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1603 | int GUIAction::fixsu(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1604 | { |
| 1605 | int op_status = 0; |
| 1606 | |
| 1607 | operation_start("Fixing Superuser Permissions"); |
| 1608 | if (simulate) { |
| 1609 | simulate_progress_bar(); |
| 1610 | } else { |
| 1611 | LOGERR("Fixing su permissions was deprecated from TWRP.\n"); |
| 1612 | LOGERR("4.3+ ROMs with SELinux will always lose su perms.\n"); |
| 1613 | } |
| 1614 | |
| 1615 | operation_end(op_status); |
| 1616 | return 0; |
| 1617 | } |
| 1618 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1619 | int GUIAction::decrypt_backup(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1620 | { |
| 1621 | int op_status = 0; |
| 1622 | |
| 1623 | operation_start("Try Restore Decrypt"); |
| 1624 | if (simulate) { |
| 1625 | simulate_progress_bar(); |
| 1626 | } else { |
| 1627 | string Restore_Path, Filename, Password; |
| 1628 | DataManager::GetValue("tw_restore", Restore_Path); |
| 1629 | Restore_Path += "/"; |
| 1630 | DataManager::GetValue("tw_restore_password", Password); |
| 1631 | TWFunc::SetPerformanceMode(true); |
| 1632 | if (TWFunc::Try_Decrypting_Backup(Restore_Path, Password)) |
| 1633 | op_status = 0; // success |
| 1634 | else |
| 1635 | op_status = 1; // fail |
| 1636 | TWFunc::SetPerformanceMode(false); |
| 1637 | } |
| 1638 | |
| 1639 | operation_end(op_status); |
| 1640 | return 0; |
| 1641 | } |
| 1642 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1643 | int GUIAction::repair(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1644 | { |
| 1645 | int op_status = 0; |
| 1646 | |
| 1647 | operation_start("Repair Partition"); |
| 1648 | if (simulate) { |
| 1649 | simulate_progress_bar(); |
| 1650 | } else { |
| 1651 | string part_path; |
| 1652 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1653 | if (PartitionManager.Repair_By_Path(part_path, true)) { |
| 1654 | op_status = 0; // success |
| 1655 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1656 | op_status = 1; // fail |
| 1657 | } |
| 1658 | } |
| 1659 | |
| 1660 | operation_end(op_status); |
| 1661 | return 0; |
| 1662 | } |
| 1663 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1664 | int GUIAction::resize(std::string arg __unused) |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1665 | { |
| 1666 | int op_status = 0; |
| 1667 | |
| 1668 | operation_start("Resize Partition"); |
| 1669 | if (simulate) { |
| 1670 | simulate_progress_bar(); |
| 1671 | } else { |
| 1672 | string part_path; |
| 1673 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1674 | if (PartitionManager.Resize_By_Path(part_path, true)) { |
| 1675 | op_status = 0; // success |
| 1676 | } else { |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1677 | op_status = 1; // fail |
| 1678 | } |
| 1679 | } |
| 1680 | |
| 1681 | operation_end(op_status); |
| 1682 | return 0; |
| 1683 | } |
| 1684 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1685 | int GUIAction::changefilesystem(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1686 | { |
| 1687 | int op_status = 0; |
| 1688 | |
| 1689 | operation_start("Change File System"); |
| 1690 | if (simulate) { |
| 1691 | simulate_progress_bar(); |
| 1692 | } else { |
| 1693 | string part_path, file_system; |
| 1694 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1695 | DataManager::GetValue("tw_action_new_file_system", file_system); |
| 1696 | if (PartitionManager.Wipe_By_Path(part_path, file_system)) { |
| 1697 | op_status = 0; // success |
| 1698 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1699 | gui_err("change_fs_err=Error changing file system."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1700 | op_status = 1; // fail |
| 1701 | } |
| 1702 | } |
| 1703 | PartitionManager.Update_System_Details(); |
| 1704 | operation_end(op_status); |
| 1705 | return 0; |
| 1706 | } |
| 1707 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1708 | int GUIAction::startmtp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1709 | { |
| 1710 | int op_status = 0; |
| 1711 | |
| 1712 | operation_start("Start MTP"); |
| 1713 | if (PartitionManager.Enable_MTP()) |
| 1714 | op_status = 0; // success |
| 1715 | else |
| 1716 | op_status = 1; // fail |
| 1717 | |
| 1718 | operation_end(op_status); |
| 1719 | return 0; |
| 1720 | } |
| 1721 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1722 | int GUIAction::stopmtp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1723 | { |
| 1724 | int op_status = 0; |
| 1725 | |
| 1726 | operation_start("Stop MTP"); |
| 1727 | if (PartitionManager.Disable_MTP()) |
| 1728 | op_status = 0; // success |
| 1729 | else |
| 1730 | op_status = 1; // fail |
| 1731 | |
| 1732 | operation_end(op_status); |
| 1733 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1734 | } |
| 1735 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1736 | int GUIAction::flashimage(std::string arg __unused) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 1737 | { |
| 1738 | int op_status = 0; |
| 1739 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1740 | PartitionSettings part_settings; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 1741 | operation_start("Flash Image"); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1742 | DataManager::GetValue("tw_zip_location", part_settings.Restore_Name); |
| 1743 | DataManager::GetValue("tw_file", part_settings.Backup_FileName); |
| 1744 | unsigned long long total_bytes = TWFunc::Get_File_Size(part_settings.Restore_Name + "/" + part_settings.Backup_FileName); |
| 1745 | ProgressTracking progress(total_bytes); |
| 1746 | part_settings.progress = &progress; |
| 1747 | part_settings.adbbackup = false; |
| 1748 | part_settings.PM_Method = PM_RESTORE; |
| 1749 | if (PartitionManager.Flash_Image(&part_settings)) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 1750 | op_status = 0; // success |
| 1751 | else |
| 1752 | op_status = 1; // fail |
| 1753 | |
| 1754 | operation_end(op_status); |
| 1755 | return 0; |
| 1756 | } |
| 1757 | |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 1758 | int GUIAction::twcmd(std::string arg) |
| 1759 | { |
| 1760 | operation_start("TWRP CLI Command"); |
| 1761 | if (simulate) |
| 1762 | simulate_progress_bar(); |
| 1763 | else |
| 1764 | OpenRecoveryScript::Run_CLI_Command(arg.c_str()); |
| 1765 | operation_end(0); |
| 1766 | return 0; |
| 1767 | } |
| 1768 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1769 | int GUIAction::getKeyByName(std::string key) |
| 1770 | { |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 1771 | if (key == "home") return KEY_HOMEPAGE; // note: KEY_HOME is cursor movement (like KEY_END) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1772 | else if (key == "menu") return KEY_MENU; |
| 1773 | else if (key == "back") return KEY_BACK; |
| 1774 | else if (key == "search") return KEY_SEARCH; |
| 1775 | else if (key == "voldown") return KEY_VOLUMEDOWN; |
| 1776 | else if (key == "volup") return KEY_VOLUMEUP; |
| 1777 | else if (key == "power") { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1778 | int ret_val; |
| 1779 | DataManager::GetValue(TW_POWER_BUTTON, ret_val); |
| 1780 | if (!ret_val) |
| 1781 | return KEY_POWER; |
| 1782 | else |
| 1783 | return ret_val; |
| 1784 | } |
| 1785 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1786 | return atol(key.c_str()); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1787 | } |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1788 | |
| 1789 | int GUIAction::checkpartitionlifetimewrites(std::string arg) |
| 1790 | { |
| 1791 | int op_status = 0; |
| 1792 | TWPartition* sys = PartitionManager.Find_Partition_By_Path(arg); |
| 1793 | |
| 1794 | operation_start("Check Partition Lifetime Writes"); |
| 1795 | if (sys) { |
| 1796 | if (sys->Check_Lifetime_Writes() != 0) |
| 1797 | DataManager::SetValue("tw_lifetime_writes", 1); |
| 1798 | else |
| 1799 | DataManager::SetValue("tw_lifetime_writes", 0); |
| 1800 | op_status = 0; // success |
| 1801 | } else { |
| 1802 | DataManager::SetValue("tw_lifetime_writes", 1); |
| 1803 | op_status = 1; // fail |
| 1804 | } |
| 1805 | |
| 1806 | operation_end(op_status); |
| 1807 | return 0; |
| 1808 | } |
| 1809 | |
| 1810 | int GUIAction::mountsystemtoggle(std::string arg) |
| 1811 | { |
| 1812 | int op_status = 0; |
| 1813 | bool remount_system = PartitionManager.Is_Mounted_By_Path("/system"); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 1814 | bool remount_vendor = PartitionManager.Is_Mounted_By_Path("/vendor"); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1815 | |
| 1816 | operation_start("Toggle System Mount"); |
| 1817 | if (!PartitionManager.UnMount_By_Path("/system", true)) { |
| 1818 | op_status = 1; // fail |
| 1819 | } else { |
| 1820 | TWPartition* Part = PartitionManager.Find_Partition_By_Path("/system"); |
| 1821 | if (Part) { |
Ethan Yonker | d6966f4 | 2015-05-30 14:52:16 -0500 | [diff] [blame] | 1822 | if (arg == "0") { |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1823 | DataManager::SetValue("tw_mount_system_ro", 0); |
| 1824 | Part->Change_Mount_Read_Only(false); |
| 1825 | } else { |
| 1826 | DataManager::SetValue("tw_mount_system_ro", 1); |
| 1827 | Part->Change_Mount_Read_Only(true); |
| 1828 | } |
| 1829 | if (remount_system) { |
| 1830 | Part->Mount(true); |
| 1831 | } |
| 1832 | op_status = 0; // success |
| 1833 | } else { |
| 1834 | op_status = 1; // fail |
| 1835 | } |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 1836 | Part = PartitionManager.Find_Partition_By_Path("/vendor"); |
| 1837 | if (Part) { |
| 1838 | if (arg == "0") { |
| 1839 | Part->Change_Mount_Read_Only(false); |
| 1840 | } else { |
| 1841 | Part->Change_Mount_Read_Only(true); |
| 1842 | } |
| 1843 | if (remount_vendor) { |
| 1844 | Part->Mount(true); |
| 1845 | } |
| 1846 | op_status = 0; // success |
| 1847 | } else { |
| 1848 | op_status = 1; // fail |
| 1849 | } |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | operation_end(op_status); |
| 1853 | return 0; |
| 1854 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1855 | |
| 1856 | int GUIAction::setlanguage(std::string arg __unused) |
| 1857 | { |
| 1858 | int op_status = 0; |
| 1859 | |
| 1860 | operation_start("Set Language"); |
| 1861 | PageManager::LoadLanguage(DataManager::GetStrValue("tw_language")); |
| 1862 | PageManager::RequestReload(); |
| 1863 | op_status = 0; // success |
| 1864 | |
| 1865 | operation_end(op_status); |
| 1866 | return 0; |
| 1867 | } |