blob: 8bdd4251c7d4e9b2cc746d557e9b362f0aff50ed [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
Dees Troy3be70a82013-10-22 14:25:12 +00002 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <linux/input.h>
20#include <pthread.h>
21#include <stdarg.h>
22#include <stdio.h>
23#include <errno.h>
24#include <stdlib.h>
25#include <string.h>
26#include <fcntl.h>
27#include <sys/reboot.h>
28#include <sys/stat.h>
29#include <sys/time.h>
30#include <sys/mman.h>
31#include <sys/types.h>
32#include <sys/ioctl.h>
33#include <sys/mount.h>
34#include <time.h>
35#include <unistd.h>
36#include <stdlib.h>
37
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050038extern "C"
39{
Dees_Troy2673cec2013-04-02 20:22:16 +000040#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040041#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040042#include <pixelflinger/pixelflinger.h>
43}
44
45#include "rapidxml.hpp"
46#include "objects.hpp"
47#include "../data.hpp"
48#include "../variables.h"
Dees_Troy5bf43922012-09-07 16:07:55 -040049#include "../partitions.hpp"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050050#include "../twrp-functions.hpp"
Ethan Yonker03a42f62014-08-08 11:03:51 -050051#include "../openrecoveryscript.hpp"
52#include "../orscmd/orscmd.h"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050053#include "blanktimer.hpp"
Ethan Yonker04536952015-01-27 08:41:28 -060054#include "../tw_atomic.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040055
Vojtech Boceke5ffcd12014-02-06 21:17:32 +010056// Enable to print render time of each frame to the log file
57//#define PRINT_RENDER_TIME 1
58
that9fa51532015-01-29 02:04:47 +010059#ifdef _EVENT_LOGGING
thatc5837f32015-02-01 01:59:43 +010060#define LOGEVENT(...) LOGERR(__VA_ARGS__)
that9fa51532015-01-29 02:04:47 +010061#else
62#define LOGEVENT(...) do {} while (0)
63#endif
64
Dees_Troy51a0e822012-09-05 15:24:24 -040065const static int CURTAIN_FADE = 32;
66
67using namespace rapidxml;
68
69// Global values
70static gr_surface gCurtain = NULL;
71static int gGuiInitialized = 0;
Ethan Yonker04536952015-01-27 08:41:28 -060072static TWAtomicInt gGuiConsoleRunning;
73static TWAtomicInt gGuiConsoleTerminate;
74static TWAtomicInt gForceRender;
75const int gNoAnimation = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050076blanktimer blankTimer;
Ethan Yonkerfd0439e2015-01-14 11:08:13 -060077int ors_read_fd = -1;
Dees_Troy51a0e822012-09-05 15:24:24 -040078
79// Needed by pages.cpp too
80int gGuiRunning = 0;
81
82static int gRecorder = -1;
83
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020084extern "C" void gr_write_frame_to_file(int fd);
Dees_Troy51a0e822012-09-05 15:24:24 -040085
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020086void flip(void)
Dees_Troy51a0e822012-09-05 15:24:24 -040087{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020088 if (gRecorder != -1)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050089 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020090 timespec time;
91 clock_gettime(CLOCK_MONOTONIC, &time);
92 write(gRecorder, &time, sizeof(timespec));
93 gr_write_frame_to_file(gRecorder);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050094 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020095 gr_flip();
Dees_Troy51a0e822012-09-05 15:24:24 -040096}
97
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020098void rapidxml::parse_error_handler(const char *what, void *where)
Dees_Troy51a0e822012-09-05 15:24:24 -040099{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200100 fprintf(stderr, "Parser error: %s\n", what);
101 fprintf(stderr, " Start of string: %s\n",(char *) where);
102 LOGERR("Error parsing XML file.\n");
103 //abort();
Dees_Troy51a0e822012-09-05 15:24:24 -0400104}
105
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200106static void curtainSet()
Dees_Troy51a0e822012-09-05 15:24:24 -0400107{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200108 gr_color(0, 0, 0, 255);
109 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
Ethan Yonker751a85e2014-12-12 16:59:10 -0600110 gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), gr_get_height(gCurtain), TW_X_OFFSET, TW_Y_OFFSET);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200111 gr_flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400112}
113
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200114static void curtainRaise(gr_surface surface)
Dees_Troy51a0e822012-09-05 15:24:24 -0400115{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200116 int sy = 0;
117 int h = gr_get_height(gCurtain) - 1;
118 int w = gr_get_width(gCurtain);
119 int fy = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400120
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200121 int msw = gr_get_width(surface);
122 int msh = gr_get_height(surface);
123 int CURTAIN_RATE = msh / 30;
Dees_Troy51a0e822012-09-05 15:24:24 -0400124
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200125 if (gNoAnimation == 0)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500126 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200127 for (; h > 0; h -= CURTAIN_RATE, sy += CURTAIN_RATE, fy += CURTAIN_RATE)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500128 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200129 gr_blit(surface, 0, 0, msw, msh, 0, 0);
130 gr_blit(gCurtain, 0, sy, w, h, 0, 0);
131 gr_flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500132 }
133 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200134 gr_blit(surface, 0, 0, msw, msh, 0, 0);
135 flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400136}
137
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200138void curtainClose()
Dees_Troy51a0e822012-09-05 15:24:24 -0400139{
140#if 0
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200141 int w = gr_get_width(gCurtain);
142 int h = 1;
143 int sy = gr_get_height(gCurtain) - 1;
144 int fbh = gr_fb_height();
145 int CURTAIN_RATE = fbh / 30;
Dees_Troy51a0e822012-09-05 15:24:24 -0400146
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200147 if (gNoAnimation == 0)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500148 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200149 for (; h < fbh; h += CURTAIN_RATE, sy -= CURTAIN_RATE)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500150 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200151 gr_blit(gCurtain, 0, sy, w, h, 0, 0);
152 gr_flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500153 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200154 gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain),
155 gr_get_height(gCurtain), 0, 0);
156 gr_flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400157
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200158 if (gRecorder != -1)
159 close(gRecorder);
Dees_Troy51a0e822012-09-05 15:24:24 -0400160
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200161 int fade;
162 for (fade = 16; fade < 255; fade += CURTAIN_FADE)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500163 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200164 gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain),
165 gr_get_height(gCurtain), 0, 0);
166 gr_color(0, 0, 0, fade);
167 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
168 gr_flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500169 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200170 gr_color(0, 0, 0, 255);
171 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
172 gr_flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400173 }
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500174#else
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200175 gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), gr_get_height(gCurtain), 0, 0);
176 gr_flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500177#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400178}
179
that9fa51532015-01-29 02:04:47 +0100180class InputHandler
Dees_Troy51a0e822012-09-05 15:24:24 -0400181{
that9fa51532015-01-29 02:04:47 +0100182public:
183 void init()
thatfb759d42015-01-11 12:16:53 +0100184 {
that9fa51532015-01-29 02:04:47 +0100185 // these might be read from DataManager in the future
186 touch_hold_ms = 500;
187 touch_repeat_ms = 100;
188 key_hold_ms = 500;
189 key_repeat_ms = 100;
190 touch_status = TS_NONE;
191 key_status = KS_NONE;
192 state = AS_NO_ACTION;
193 x = y = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400194
that9fa51532015-01-29 02:04:47 +0100195#ifndef TW_NO_SCREEN_TIMEOUT
196 {
197 string seconds;
198 DataManager::GetValue("tw_screen_timeout_secs", seconds);
199 blankTimer.setTime(atoi(seconds.c_str()));
200 blankTimer.resetTimerAndUnblank();
Ethan Yonkere13fa632015-01-27 11:30:03 -0600201 }
that9fa51532015-01-29 02:04:47 +0100202#else
203 LOGINFO("Skipping screen timeout: TW_NO_SCREEN_TIMEOUT is set\n");
204#endif
Ethan Yonkere13fa632015-01-27 11:30:03 -0600205 }
206
thatc5837f32015-02-01 01:59:43 +0100207 // process input events. returns true if any event was received.
thatde72b6d2015-02-08 08:55:00 +0100208 bool processInput(int timeout_ms);
thatc5837f32015-02-01 01:59:43 +0100209
that9fa51532015-01-29 02:04:47 +0100210 void handleDrag();
211
212private:
213 // timeouts for touch/key hold and repeat
214 int touch_hold_ms;
215 int touch_repeat_ms;
216 int key_hold_ms;
217 int key_repeat_ms;
218
219 enum touch_status_enum {
220 TS_NONE = 0,
221 TS_TOUCH_AND_HOLD = 1,
222 TS_TOUCH_REPEAT = 2,
223 };
224
225 enum key_status_enum {
226 KS_NONE = 0,
227 KS_KEY_PRESSED = 1,
228 KS_KEY_REPEAT = 2,
229 };
230
231 enum action_state_enum {
232 AS_IN_ACTION_AREA = 0, // we've touched a spot with an action
233 AS_NO_ACTION = 1, // we've touched in an empty area (no action) and ignore remaining events until touch release
234 };
235 touch_status_enum touch_status;
236 key_status_enum key_status;
237 action_state_enum state;
238 int x, y; // x and y coordinates of last touch
239 struct timeval touchStart; // used to track time for long press / key repeat
240
241 void processHoldAndRepeat();
242 void process_EV_REL(input_event& ev);
243 void process_EV_ABS(input_event& ev);
244 void process_EV_KEY(input_event& ev);
245
246 void doTouchStart();
247};
248
249InputHandler input_handler;
250
251
thatde72b6d2015-02-08 08:55:00 +0100252bool InputHandler::processInput(int timeout_ms)
that9fa51532015-01-29 02:04:47 +0100253{
254 input_event ev;
thatde72b6d2015-02-08 08:55:00 +0100255 int ret = ev_get(&ev, timeout_ms);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600256
257 if (ret < 0)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500258 {
Ethan Yonkere13fa632015-01-27 11:30:03 -0600259 // This path means that we did not get any new touch data, but
260 // we do not get new touch data if you press and hold on either
261 // the screen or on a keyboard key or mouse button
that9fa51532015-01-29 02:04:47 +0100262 if (touch_status || key_status)
263 processHoldAndRepeat();
thatc5837f32015-02-01 01:59:43 +0100264 return (ret != -2); // -2 means no more events in the queue
Ethan Yonkere13fa632015-01-27 11:30:03 -0600265 }
that9fa51532015-01-29 02:04:47 +0100266
267 switch (ev.type)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600268 {
that9fa51532015-01-29 02:04:47 +0100269 case EV_ABS:
270 process_EV_ABS(ev);
271 break;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600272
that9fa51532015-01-29 02:04:47 +0100273 case EV_REL:
274 process_EV_REL(ev);
275 break;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600276
that9fa51532015-01-29 02:04:47 +0100277 case EV_KEY:
278 process_EV_KEY(ev);
279 break;
280 }
thatc5837f32015-02-01 01:59:43 +0100281
282 blankTimer.resetTimerAndUnblank();
283 return true; // we got an event, so there might be more in the queue
that9fa51532015-01-29 02:04:47 +0100284}
285
286void InputHandler::processHoldAndRepeat()
287{
288 HardwareKeyboard *kb = PageManager::GetHardwareKeyboard();
289
290 // touch and key repeat section
291 struct timeval curTime;
292 gettimeofday(&curTime, NULL);
293 long seconds = curTime.tv_sec - touchStart.tv_sec;
294 long useconds = curTime.tv_usec - touchStart.tv_usec;
295 long mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5;
296
297 if (touch_status == TS_TOUCH_AND_HOLD && mtime > touch_hold_ms)
298 {
299 touch_status = TS_TOUCH_REPEAT;
300 gettimeofday(&touchStart, NULL);
301 LOGEVENT("TOUCH_HOLD: %d,%d\n", x, y);
302 PageManager::NotifyTouch(TOUCH_HOLD, x, y);
that9fa51532015-01-29 02:04:47 +0100303 }
304 else if (touch_status == TS_TOUCH_REPEAT && mtime > touch_repeat_ms)
305 {
306 LOGEVENT("TOUCH_REPEAT: %d,%d\n", x, y);
307 gettimeofday(&touchStart, NULL);
308 PageManager::NotifyTouch(TOUCH_REPEAT, x, y);
that9fa51532015-01-29 02:04:47 +0100309 }
310 else if (key_status == KS_KEY_PRESSED && mtime > key_hold_ms)
311 {
312 LOGEVENT("KEY_HOLD: %d,%d\n", x, y);
313 gettimeofday(&touchStart, NULL);
314 key_status = KS_KEY_REPEAT;
315 kb->KeyRepeat();
that9fa51532015-01-29 02:04:47 +0100316 }
317 else if (key_status == KS_KEY_REPEAT && mtime > key_repeat_ms)
318 {
319 LOGEVENT("KEY_REPEAT: %d,%d\n", x, y);
320 gettimeofday(&touchStart, NULL);
321 kb->KeyRepeat();
that9fa51532015-01-29 02:04:47 +0100322 }
323}
324
325void InputHandler::doTouchStart()
326{
327 LOGEVENT("TOUCH_START: %d,%d\n", x, y);
328 if (PageManager::NotifyTouch(TOUCH_START, x, y) > 0)
329 state = AS_NO_ACTION;
330 else
331 state = AS_IN_ACTION_AREA;
332 touch_status = TS_TOUCH_AND_HOLD;
333 gettimeofday(&touchStart, NULL);
that9fa51532015-01-29 02:04:47 +0100334}
335
336void InputHandler::process_EV_ABS(input_event& ev)
337{
338 x = ev.value >> 16;
339 y = ev.value & 0xFFFF;
340
341 if (ev.code == 0)
342 {
343 if (state == AS_IN_ACTION_AREA)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500344 {
that9fa51532015-01-29 02:04:47 +0100345 LOGEVENT("TOUCH_RELEASE: %d,%d\n", x, y);
346 PageManager::NotifyTouch(TOUCH_RELEASE, x, y);
that9fa51532015-01-29 02:04:47 +0100347 }
348 touch_status = TS_NONE;
349 }
350 else
351 {
352 if (!touch_status)
353 {
354 doTouchStart();
Ethan Yonkere13fa632015-01-27 11:30:03 -0600355 }
356 else
357 {
that9fa51532015-01-29 02:04:47 +0100358 if (state == AS_IN_ACTION_AREA)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600359 {
that9fa51532015-01-29 02:04:47 +0100360 LOGEVENT("TOUCH_DRAG: %d,%d\n", x, y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400361 }
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500362 }
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500363 }
that9fa51532015-01-29 02:04:47 +0100364}
365
366void InputHandler::process_EV_KEY(input_event& ev)
367{
368 HardwareKeyboard *kb = PageManager::GetHardwareKeyboard();
369
370 // Handle key-press here
371 LOGEVENT("TOUCH_KEY: %d\n", ev.code);
372 // Left mouse button is treated as a touch
373 if(ev.code == BTN_LEFT)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600374 {
that9fa51532015-01-29 02:04:47 +0100375 MouseCursor *cursor = PageManager::GetMouseCursor();
376 if(ev.value == 1)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600377 {
that9fa51532015-01-29 02:04:47 +0100378 cursor->GetPos(x, y);
379 doTouchStart();
380 }
381 else if(touch_status)
382 {
383 // Left mouse button was previously pressed and now is
384 // being released so send a TOUCH_RELEASE
385 if (state == AS_IN_ACTION_AREA)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600386 {
387 cursor->GetPos(x, y);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600388
that9fa51532015-01-29 02:04:47 +0100389 LOGEVENT("Mouse TOUCH_RELEASE: %d,%d\n", x, y);
390 PageManager::NotifyTouch(TOUCH_RELEASE, x, y);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600391 }
that9fa51532015-01-29 02:04:47 +0100392 touch_status = TS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600393 }
that9fa51532015-01-29 02:04:47 +0100394 }
395 // side mouse button, often used for "back" function
396 else if(ev.code == BTN_SIDE)
397 {
398 if(ev.value == 1)
399 kb->KeyDown(KEY_BACK);
400 else
401 kb->KeyUp(KEY_BACK);
402 } else if (ev.value != 0) {
403 // This is a key press
404 if (kb->KeyDown(ev.code)) {
405 // Key repeat is enabled for this key
406 key_status = KS_KEY_PRESSED;
407 touch_status = TS_NONE;
408 gettimeofday(&touchStart, NULL);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600409 } else {
Ethan Yonkere13fa632015-01-27 11:30:03 -0600410 key_status = KS_NONE;
411 touch_status = TS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600412 }
that9fa51532015-01-29 02:04:47 +0100413 } else {
414 // This is a key release
415 kb->KeyUp(ev.code);
416 key_status = KS_NONE;
417 touch_status = TS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600418 }
that9fa51532015-01-29 02:04:47 +0100419}
Ethan Yonkere13fa632015-01-27 11:30:03 -0600420
that9fa51532015-01-29 02:04:47 +0100421void InputHandler::process_EV_REL(input_event& ev)
422{
423 // Mouse movement
424 MouseCursor *cursor = PageManager::GetMouseCursor();
425 LOGEVENT("EV_REL %d %d\n", ev.code, ev.value);
426 if(ev.code == REL_X)
427 cursor->Move(ev.value, 0);
428 else if(ev.code == REL_Y)
429 cursor->Move(0, ev.value);
430
431 if(touch_status) {
432 cursor->GetPos(x, y);
433 LOGEVENT("Mouse TOUCH_DRAG: %d, %d\n", x, y);
434 key_status = KS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600435 }
that9fa51532015-01-29 02:04:47 +0100436}
437
438void InputHandler::handleDrag()
439{
440 // This allows us to only send one NotifyTouch event per render
441 // cycle to reduce overhead and perceived input latency.
442 static int prevx = 0, prevy = 0; // these track where the last drag notice was so that we don't send duplicate drag notices
443 if (touch_status && (x != prevx || y != prevy)) {
444 prevx = x;
445 prevy = y;
446 if (PageManager::NotifyTouch(TOUCH_DRAG, x, y) > 0)
447 state = AS_NO_ACTION;
448 else
449 state = AS_IN_ACTION_AREA;
450 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400451}
452
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600453static void setup_ors_command()
Ethan Yonker03a42f62014-08-08 11:03:51 -0500454{
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600455 ors_read_fd = -1;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500456
457 unlink(ORS_INPUT_FILE);
458 if (mkfifo(ORS_INPUT_FILE, 06660) != 0) {
459 LOGINFO("Unable to mkfifo %s\n", ORS_INPUT_FILE);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600460 return;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500461 }
462 unlink(ORS_OUTPUT_FILE);
463 if (mkfifo(ORS_OUTPUT_FILE, 06666) != 0) {
464 LOGINFO("Unable to mkfifo %s\n", ORS_OUTPUT_FILE);
465 unlink(ORS_INPUT_FILE);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600466 return;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500467 }
468
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600469 ors_read_fd = open(ORS_INPUT_FILE, O_RDONLY | O_NONBLOCK);
470 if (ors_read_fd < 0) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500471 LOGINFO("Unable to open %s\n", ORS_INPUT_FILE);
472 unlink(ORS_INPUT_FILE);
473 unlink(ORS_OUTPUT_FILE);
Ethan Yonker03a42f62014-08-08 11:03:51 -0500474 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600475}
Ethan Yonker03a42f62014-08-08 11:03:51 -0500476
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600477static void ors_command_read()
478{
479 FILE* orsout;
480 char command[1024], result[512];
481 int set_page_done = 0, read_ret = 0;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500482
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600483 if ((read_ret = read(ors_read_fd, &command, sizeof(command))) > 0) {
484 command[1022] = '\n';
485 command[1023] = '\0';
486 LOGINFO("Command '%s' received\n", command);
487 orsout = fopen(ORS_OUTPUT_FILE, "w");
488 if (!orsout) {
489 close(ors_read_fd);
490 ors_read_fd = -1;
491 LOGINFO("Unable to fopen %s\n", ORS_OUTPUT_FILE);
492 unlink(ORS_INPUT_FILE);
493 unlink(ORS_OUTPUT_FILE);
494 return;
495 }
496 if (DataManager::GetIntValue("tw_busy") != 0) {
497 strcpy(result, "Failed, operation in progress\n");
498 fprintf(orsout, "%s", result);
499 LOGINFO("Command cannot be performed, operation in progress.\n");
500 } else {
501 if (gui_console_only() == 0) {
502 LOGINFO("Console started successfully\n");
503 gui_set_FILE(orsout);
504 if (strlen(command) > 11 && strncmp(command, "runscript", 9) == 0) {
505 char* filename = command + 11;
506 if (OpenRecoveryScript::copy_script_file(filename) == 0) {
507 LOGERR("Unable to copy script file\n");
508 } else {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500509 OpenRecoveryScript::run_script_file();
510 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600511 } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) {
512 char* varname = command + 4;
513 string temp;
514 DataManager::GetValue(varname, temp);
515 gui_print("%s = %s\n", varname, temp.c_str());
516 } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) {
517 char* pass = command + 8;
518 gui_print("Attempting to decrypt data partition via command line.\n");
519 if (PartitionManager.Decrypt_Device(pass) == 0) {
520 set_page_done = 1;
521 }
522 } else if (OpenRecoveryScript::Insert_ORS_Command(command)) {
523 OpenRecoveryScript::run_script_file();
Ethan Yonker03a42f62014-08-08 11:03:51 -0500524 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600525 gui_set_FILE(NULL);
Ethan Yonker04536952015-01-27 08:41:28 -0600526 gGuiConsoleTerminate.set_value(1);
Ethan Yonker03a42f62014-08-08 11:03:51 -0500527 }
Ethan Yonker03a42f62014-08-08 11:03:51 -0500528 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600529 fclose(orsout);
530 LOGINFO("Done reading ORS command from command line\n");
531 if (set_page_done) {
532 DataManager::SetValue("tw_page_done", 1);
533 } else {
534 // The select function will return ready to read and the
535 // read function will return errno 19 no such device unless
536 // we set everything up all over again.
537 close(ors_read_fd);
538 setup_ors_command();
539 }
540 } else {
541 LOGINFO("ORS command line read returned an error: %i, %i, %s\n", read_ret, errno, strerror(errno));
Ethan Yonker03a42f62014-08-08 11:03:51 -0500542 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600543 return;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500544}
545
Dees_Troy51a0e822012-09-05 15:24:24 -0400546// This special function will return immediately the first time, but then
547// always returns 1/30th of a second (or immediately if called later) from
548// the last time it was called
thatde72b6d2015-02-08 08:55:00 +0100549static void loopTimer(int input_timeout_ms)
Dees_Troy51a0e822012-09-05 15:24:24 -0400550{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200551 static timespec lastCall;
552 static int initialized = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400553
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200554 if (!initialized)
Dees_Troyc8b199c2012-09-24 11:55:07 -0400555 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200556 clock_gettime(CLOCK_MONOTONIC, &lastCall);
557 initialized = 1;
558 return;
Dees_Troyc8b199c2012-09-24 11:55:07 -0400559 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400560
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200561 do
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500562 {
thatde72b6d2015-02-08 08:55:00 +0100563 bool got_event = input_handler.processInput(input_timeout_ms); // get inputs but don't send drag notices
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200564 timespec curTime;
565 clock_gettime(CLOCK_MONOTONIC, &curTime);
Dees_Troy51a0e822012-09-05 15:24:24 -0400566
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200567 timespec diff = TWFunc::timespec_diff(lastCall, curTime);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500568
thatc5837f32015-02-01 01:59:43 +0100569 // This is really 2 or 30 times per second
570 // As long as we get events, increase the timeout so we can catch up with input
571 long timeout = got_event ? 500000000 : 33333333;
572
573 if (diff.tv_sec || diff.tv_nsec > timeout)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500574 {
thatc5837f32015-02-01 01:59:43 +0100575 // int32_t input_time = TWFunc::timespec_diff_ms(lastCall, curTime);
576 // LOGINFO("loopTimer(): %u ms, count: %u\n", input_time, count);
577
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200578 lastCall = curTime;
that9fa51532015-01-29 02:04:47 +0100579 input_handler.handleDrag(); // send only drag notices if needed
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200580 return;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500581 }
582
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200583 // We need to sleep some period time microseconds
Ethan Yonkere13fa632015-01-27 11:30:03 -0600584 //unsigned int sleepTime = 33333 -(diff.tv_nsec / 1000);
585 //usleep(sleepTime); // removed so we can scan for input
thatde72b6d2015-02-08 08:55:00 +0100586 input_timeout_ms = 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200587 } while (1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400588}
589
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600590static int runPages(const char *page_name, const int stop_on_page_done)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500591{
Ethan Yonker3f15be42015-02-09 09:39:47 -0600592 DataManager::SetValue("tw_page_done", 0);
593 DataManager::SetValue("tw_gui_done", 0);
594
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600595 if (page_name)
596 gui_changePage(page_name);
597
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200598 // Raise the curtain
599 if (gCurtain != NULL)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500600 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200601 gr_surface surface;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500602
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200603 PageManager::Render();
604 gr_get_surface(&surface);
605 curtainRaise(surface);
606 gr_free_surface(surface);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500607 }
608
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200609 gGuiRunning = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500610
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200611 DataManager::SetValue("tw_loaded", 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500612
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600613#ifndef TW_OEM_BUILD
614 struct timeval timeout;
615 fd_set fdset;
616 int has_data = 0;
617#endif
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100618
thatde72b6d2015-02-08 08:55:00 +0100619 int input_timeout_ms = 0;
620 int idle_frames = 0;
621
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200622 for (;;)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500623 {
thatde72b6d2015-02-08 08:55:00 +0100624 loopTimer(input_timeout_ms);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600625#ifndef TW_OEM_BUILD
626 if (ors_read_fd > 0) {
627 FD_ZERO(&fdset);
628 FD_SET(ors_read_fd, &fdset);
629 timeout.tv_sec = 0;
630 timeout.tv_usec = 1;
631 has_data = select(ors_read_fd+1, &fdset, NULL, NULL, &timeout);
632 if (has_data > 0) {
633 ors_command_read();
634 }
635 }
636#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500637
Ethan Yonker04536952015-01-27 08:41:28 -0600638 if (gGuiConsoleRunning.get_value()) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500639 continue;
640 }
641
Ethan Yonker04536952015-01-27 08:41:28 -0600642 if (!gForceRender.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500643 {
thatde72b6d2015-02-08 08:55:00 +0100644 int ret = PageManager::Update();
645 if (ret == 0)
646 ++idle_frames;
647 else
648 idle_frames = 0;
649 // due to possible animation objects, we need to delay activating the input timeout
650 input_timeout_ms = idle_frames > 15 ? 1000 : 0;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100651
652#ifndef PRINT_RENDER_TIME
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200653 if (ret > 1)
654 PageManager::Render();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500655
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200656 if (ret > 0)
657 flip();
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100658#else
659 if (ret > 1)
660 {
that9fa51532015-01-29 02:04:47 +0100661 timespec start, end;
662 int32_t render_t, flip_t;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100663 clock_gettime(CLOCK_MONOTONIC, &start);
664 PageManager::Render();
665 clock_gettime(CLOCK_MONOTONIC, &end);
666 render_t = TWFunc::timespec_diff_ms(start, end);
667
668 flip();
669 clock_gettime(CLOCK_MONOTONIC, &start);
670 flip_t = TWFunc::timespec_diff_ms(end, start);
671
672 LOGINFO("Render(): %u ms, flip(): %u ms, total: %u ms\n", render_t, flip_t, render_t+flip_t);
673 }
thatde72b6d2015-02-08 08:55:00 +0100674 else if (ret > 0)
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100675 flip();
676#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500677 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200678 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500679 {
Ethan Yonker04536952015-01-27 08:41:28 -0600680 gForceRender.set_value(0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200681 PageManager::Render();
682 flip();
thatde72b6d2015-02-08 08:55:00 +0100683 input_timeout_ms = 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500684 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200685
thatfb759d42015-01-11 12:16:53 +0100686 blankTimer.checkForTimeout();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600687 if (stop_on_page_done && DataManager::GetIntValue("tw_page_done") != 0)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200688 {
689 gui_changePage("main");
Dees_Troy6ef66352013-02-21 08:26:57 -0600690 break;
691 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600692 if (DataManager::GetIntValue("tw_gui_done") != 0)
693 break;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500694 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600695 if (ors_read_fd > 0)
696 close(ors_read_fd);
697 ors_read_fd = -1;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200698 gGuiRunning = 0;
699 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500700}
701
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200702int gui_forceRender(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500703{
Ethan Yonker04536952015-01-27 08:41:28 -0600704 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200705 return 0;
706}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500707
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200708int gui_changePage(std::string newPage)
709{
710 LOGINFO("Set page: '%s'\n", newPage.c_str());
711 PageManager::ChangePage(newPage);
Ethan Yonker04536952015-01-27 08:41:28 -0600712 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200713 return 0;
714}
715
716int gui_changeOverlay(std::string overlay)
717{
718 PageManager::ChangeOverlay(overlay);
Ethan Yonker04536952015-01-27 08:41:28 -0600719 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200720 return 0;
721}
722
723int gui_changePackage(std::string newPackage)
724{
725 PageManager::SelectPackage(newPackage);
Ethan Yonker04536952015-01-27 08:41:28 -0600726 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200727 return 0;
728}
729
730std::string gui_parse_text(string inText)
731{
732 // Copied from std::string GUIText::parseText(void)
733 // This function parses text for DataManager values encompassed by %value% in the XML
734 static int counter = 0;
735 std::string str = inText;
736 size_t pos = 0;
737 size_t next = 0, end = 0;
738
739 while (1)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500740 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200741 next = str.find('%', pos);
742 if (next == std::string::npos)
743 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500744
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200745 end = str.find('%', next + 1);
746 if (end == std::string::npos)
747 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500748
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200749 // We have a block of data
750 std::string var = str.substr(next + 1,(end - next) - 1);
751 str.erase(next,(end - next) + 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500752
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200753 if (next + 1 == end)
754 str.insert(next, 1, '%');
755 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500756 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200757 std::string value;
758 if (DataManager::GetValue(var, value) == 0)
759 str.insert(next, value);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500760 }
761
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200762 pos = next + 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500763 }
764}
765
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200766extern "C" int gui_init(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500767{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200768 gr_init();
Dees Troy3454ade2015-01-20 19:21:04 +0000769 std::string curtain_path = TWRES "images/curtain.jpg";
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500770
Dees Troy3454ade2015-01-20 19:21:04 +0000771 if (res_create_surface(curtain_path.c_str(), &gCurtain))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500772 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200773 printf
Dees Troy3454ade2015-01-20 19:21:04 +0000774 ("Unable to locate '%s'\nDid you set a DEVICE_RESOLUTION in your config files?\n", curtain_path.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200775 return -1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500776 }
777
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200778 curtainSet();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500779
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200780 ev_init();
781 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500782}
783
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200784extern "C" int gui_loadResources(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400785{
Ethan Yonker83e82572014-04-04 10:59:28 -0500786#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200787 int check = 0;
788 DataManager::GetValue(TW_IS_ENCRYPTED, check);
Dees Troy3454ade2015-01-20 19:21:04 +0000789
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200790 if (check)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500791 {
Dees Troy3454ade2015-01-20 19:21:04 +0000792 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "decrypt"))
Dees_Troy5bf43922012-09-07 16:07:55 -0400793 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200794 LOGERR("Failed to load base packages.\n");
795 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400796 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200797 else
798 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500799 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400800
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200801 if (check == 0 && PageManager::LoadPackage("TWRP", "/script/ui.xml", "main"))
802 {
803 std::string theme_path;
804
805 theme_path = DataManager::GetSettingsStoragePath();
806 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400807 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200808 int retry_count = 5;
809 while (retry_count > 0 && !PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400810 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200811 usleep(500000);
812 retry_count--;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500813 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200814
815 if (!PartitionManager.Mount_Settings_Storage(false))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500816 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200817 LOGERR("Unable to mount %s during GUI startup.\n",
818 theme_path.c_str());
819 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500820 }
821 }
822
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200823 theme_path += "/TWRP/theme/ui.zip";
824 if (check || PageManager::LoadPackage("TWRP", theme_path, "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500825 {
Ethan Yonker83e82572014-04-04 10:59:28 -0500826#endif // ifndef TW_OEM_BUILD
Dees Troy3454ade2015-01-20 19:21:04 +0000827 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500828 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200829 LOGERR("Failed to load base packages.\n");
830 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400831 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500832#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -0400833 }
834 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500835#endif // ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200836 // Set the default package
837 PageManager::SelectPackage("TWRP");
Dees_Troy51a0e822012-09-05 15:24:24 -0400838
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200839 gGuiInitialized = 1;
840 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400841
842error:
Ethan Yonker83e82572014-04-04 10:59:28 -0500843 LOGERR("An internal error has occurred: unable to load theme.\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200844 gGuiInitialized = 0;
845 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400846}
847
Ethan Yonkercf50da52015-01-12 21:59:07 -0600848extern "C" int gui_loadCustomResources(void)
849{
850#ifndef TW_OEM_BUILD
851 if (!PartitionManager.Mount_Settings_Storage(false)) {
852 LOGERR("Unable to mount settings storage during GUI startup.\n");
853 return -1;
854 }
855
856 std::string theme_path = DataManager::GetSettingsStoragePath();
857 theme_path += "/TWRP/theme/ui.zip";
858 // Check for a custom theme
859 if (TWFunc::Path_Exists(theme_path)) {
860 // There is a custom theme, try to load it
861 if (PageManager::ReloadPackage("TWRP", theme_path)) {
862 // Custom theme failed to load, try to load stock theme
Dees Troy3454ade2015-01-20 19:21:04 +0000863 if (PageManager::ReloadPackage("TWRP", TWRES "ui.xml")) {
Ethan Yonkercf50da52015-01-12 21:59:07 -0600864 LOGERR("Failed to load base packages.\n");
865 goto error;
866 }
867 }
868 }
869 // Set the default package
870 PageManager::SelectPackage("TWRP");
871#endif
872 return 0;
873
874error:
875 LOGERR("An internal error has occurred: unable to load theme.\n");
876 gGuiInitialized = 0;
877 return -1;
878}
879
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200880extern "C" int gui_start(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400881{
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600882 return gui_startPage(NULL, 1, 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400883}
884
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600885extern "C" int gui_startPage(const char *page_name, const int allow_commands, int stop_on_page_done)
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000886{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200887 if (!gGuiInitialized)
888 return -1;
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000889
Ethan Yonker04536952015-01-27 08:41:28 -0600890 gGuiConsoleTerminate.set_value(1);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000891
Ethan Yonker04536952015-01-27 08:41:28 -0600892 while (gGuiConsoleRunning.get_value())
Ethan Yonkere13fa632015-01-27 11:30:03 -0600893 usleep(10000);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000894
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200895 // Set the default package
896 PageManager::SelectPackage("TWRP");
897
that9fa51532015-01-29 02:04:47 +0100898 input_handler.init();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600899#ifndef TW_OEM_BUILD
900 if (allow_commands)
901 {
902 if (ors_read_fd < 0)
903 setup_ors_command();
904 } else {
905 if (ors_read_fd >= 0) {
906 close(ors_read_fd);
907 ors_read_fd = -1;
908 }
909 }
910#endif
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600911 return runPages(page_name, stop_on_page_done);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000912}
913
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200914static void * console_thread(void *cookie)
Dees_Troy51a0e822012-09-05 15:24:24 -0400915{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200916 PageManager::SwitchToConsole();
Dees_Troy51a0e822012-09-05 15:24:24 -0400917
Ethan Yonker04536952015-01-27 08:41:28 -0600918 while (!gGuiConsoleTerminate.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500919 {
thatde72b6d2015-02-08 08:55:00 +0100920 loopTimer(0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400921
Ethan Yonker04536952015-01-27 08:41:28 -0600922 if (!gForceRender.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500923 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200924 int ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400925
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200926 ret = PageManager::Update();
927 if (ret > 1)
928 PageManager::Render();
Dees_Troy51a0e822012-09-05 15:24:24 -0400929
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200930 if (ret > 0)
931 flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400932
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200933 if (ret < 0)
934 LOGERR("An update request has failed.\n");
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500935 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200936 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500937 {
Ethan Yonker04536952015-01-27 08:41:28 -0600938 gForceRender.set_value(0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200939 PageManager::Render();
940 flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500941 }
942 }
Ethan Yonker04536952015-01-27 08:41:28 -0600943 gGuiConsoleRunning.set_value(0);
944 gForceRender.set_value(1); // this will kickstart the GUI to render again
Ethan Yonker03a42f62014-08-08 11:03:51 -0500945 PageManager::EndConsole();
946 LOGINFO("Console stopping\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200947 return NULL;
Dees_Troy51a0e822012-09-05 15:24:24 -0400948}
949
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200950extern "C" int gui_console_only(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400951{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200952 if (!gGuiInitialized)
953 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400954
Ethan Yonker04536952015-01-27 08:41:28 -0600955 gGuiConsoleTerminate.set_value(0);
Ethan Yonkerffbd6ff2014-10-22 10:40:40 -0500956
Ethan Yonker04536952015-01-27 08:41:28 -0600957 if (gGuiConsoleRunning.get_value())
Ethan Yonkerffbd6ff2014-10-22 10:40:40 -0500958 return 0;
959
Ethan Yonker04536952015-01-27 08:41:28 -0600960 gGuiConsoleRunning.set_value(1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400961
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200962 // Start by spinning off an input handler.
963 pthread_t t;
964 pthread_create(&t, NULL, console_thread, NULL);
Dees_Troy51a0e822012-09-05 15:24:24 -0400965
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200966 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400967}