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