blob: 469beb6303049a7b3ab49ff139b0cddbf138dbcd [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.
208 bool processInput();
209
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
thatc5837f32015-02-01 01:59:43 +0100252bool InputHandler::processInput()
that9fa51532015-01-29 02:04:47 +0100253{
254 input_event ev;
255 int ret = ev_get(&ev);
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
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200549static void loopTimer(void)
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 {
thatc5837f32015-02-01 01:59:43 +0100563 bool got_event = input_handler.processInput(); // 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
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200586 } while (1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400587}
588
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600589static int runPages(const char *page_name, const int stop_on_page_done)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500590{
Ethan Yonker3f15be42015-02-09 09:39:47 -0600591 DataManager::SetValue("tw_page_done", 0);
592 DataManager::SetValue("tw_gui_done", 0);
593
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600594 if (page_name)
595 gui_changePage(page_name);
596
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200597 // Raise the curtain
598 if (gCurtain != NULL)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500599 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200600 gr_surface surface;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500601
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200602 PageManager::Render();
603 gr_get_surface(&surface);
604 curtainRaise(surface);
605 gr_free_surface(surface);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500606 }
607
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200608 gGuiRunning = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500609
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200610 DataManager::SetValue("tw_loaded", 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500611
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600612#ifndef TW_OEM_BUILD
613 struct timeval timeout;
614 fd_set fdset;
615 int has_data = 0;
616#endif
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100617
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200618 for (;;)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500619 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200620 loopTimer();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600621#ifndef TW_OEM_BUILD
622 if (ors_read_fd > 0) {
623 FD_ZERO(&fdset);
624 FD_SET(ors_read_fd, &fdset);
625 timeout.tv_sec = 0;
626 timeout.tv_usec = 1;
627 has_data = select(ors_read_fd+1, &fdset, NULL, NULL, &timeout);
628 if (has_data > 0) {
629 ors_command_read();
630 }
631 }
632#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500633
Ethan Yonker04536952015-01-27 08:41:28 -0600634 if (gGuiConsoleRunning.get_value()) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500635 continue;
636 }
637
Ethan Yonker04536952015-01-27 08:41:28 -0600638 if (!gForceRender.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500639 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200640 int ret;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500641
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200642 ret = PageManager::Update();
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100643
644#ifndef PRINT_RENDER_TIME
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200645 if (ret > 1)
646 PageManager::Render();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500647
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200648 if (ret > 0)
649 flip();
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100650#else
651 if (ret > 1)
652 {
that9fa51532015-01-29 02:04:47 +0100653 timespec start, end;
654 int32_t render_t, flip_t;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100655 clock_gettime(CLOCK_MONOTONIC, &start);
656 PageManager::Render();
657 clock_gettime(CLOCK_MONOTONIC, &end);
658 render_t = TWFunc::timespec_diff_ms(start, end);
659
660 flip();
661 clock_gettime(CLOCK_MONOTONIC, &start);
662 flip_t = TWFunc::timespec_diff_ms(end, start);
663
664 LOGINFO("Render(): %u ms, flip(): %u ms, total: %u ms\n", render_t, flip_t, render_t+flip_t);
665 }
666 else if(ret == 1)
667 flip();
668#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500669 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200670 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500671 {
Ethan Yonker04536952015-01-27 08:41:28 -0600672 gForceRender.set_value(0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200673 PageManager::Render();
674 flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500675 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200676
thatfb759d42015-01-11 12:16:53 +0100677 blankTimer.checkForTimeout();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600678 if (stop_on_page_done && DataManager::GetIntValue("tw_page_done") != 0)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200679 {
680 gui_changePage("main");
Dees_Troy6ef66352013-02-21 08:26:57 -0600681 break;
682 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600683 if (DataManager::GetIntValue("tw_gui_done") != 0)
684 break;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500685 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600686 if (ors_read_fd > 0)
687 close(ors_read_fd);
688 ors_read_fd = -1;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200689 gGuiRunning = 0;
690 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500691}
692
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200693int gui_forceRender(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500694{
Ethan Yonker04536952015-01-27 08:41:28 -0600695 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200696 return 0;
697}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500698
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200699int gui_changePage(std::string newPage)
700{
701 LOGINFO("Set page: '%s'\n", newPage.c_str());
702 PageManager::ChangePage(newPage);
Ethan Yonker04536952015-01-27 08:41:28 -0600703 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200704 return 0;
705}
706
707int gui_changeOverlay(std::string overlay)
708{
709 PageManager::ChangeOverlay(overlay);
Ethan Yonker04536952015-01-27 08:41:28 -0600710 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200711 return 0;
712}
713
714int gui_changePackage(std::string newPackage)
715{
716 PageManager::SelectPackage(newPackage);
Ethan Yonker04536952015-01-27 08:41:28 -0600717 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200718 return 0;
719}
720
721std::string gui_parse_text(string inText)
722{
723 // Copied from std::string GUIText::parseText(void)
724 // This function parses text for DataManager values encompassed by %value% in the XML
725 static int counter = 0;
726 std::string str = inText;
727 size_t pos = 0;
728 size_t next = 0, end = 0;
729
730 while (1)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500731 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200732 next = str.find('%', pos);
733 if (next == std::string::npos)
734 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500735
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200736 end = str.find('%', next + 1);
737 if (end == std::string::npos)
738 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500739
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200740 // We have a block of data
741 std::string var = str.substr(next + 1,(end - next) - 1);
742 str.erase(next,(end - next) + 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500743
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200744 if (next + 1 == end)
745 str.insert(next, 1, '%');
746 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500747 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200748 std::string value;
749 if (DataManager::GetValue(var, value) == 0)
750 str.insert(next, value);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500751 }
752
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200753 pos = next + 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500754 }
755}
756
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200757extern "C" int gui_init(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500758{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200759 gr_init();
Dees Troy3454ade2015-01-20 19:21:04 +0000760 std::string curtain_path = TWRES "images/curtain.jpg";
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500761
Dees Troy3454ade2015-01-20 19:21:04 +0000762 if (res_create_surface(curtain_path.c_str(), &gCurtain))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500763 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200764 printf
Dees Troy3454ade2015-01-20 19:21:04 +0000765 ("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 +0200766 return -1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500767 }
768
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200769 curtainSet();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500770
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200771 ev_init();
772 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500773}
774
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200775extern "C" int gui_loadResources(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400776{
Ethan Yonker83e82572014-04-04 10:59:28 -0500777#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200778 int check = 0;
779 DataManager::GetValue(TW_IS_ENCRYPTED, check);
Dees Troy3454ade2015-01-20 19:21:04 +0000780
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200781 if (check)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500782 {
Dees Troy3454ade2015-01-20 19:21:04 +0000783 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "decrypt"))
Dees_Troy5bf43922012-09-07 16:07:55 -0400784 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200785 LOGERR("Failed to load base packages.\n");
786 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400787 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200788 else
789 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500790 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400791
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200792 if (check == 0 && PageManager::LoadPackage("TWRP", "/script/ui.xml", "main"))
793 {
794 std::string theme_path;
795
796 theme_path = DataManager::GetSettingsStoragePath();
797 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400798 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200799 int retry_count = 5;
800 while (retry_count > 0 && !PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400801 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200802 usleep(500000);
803 retry_count--;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500804 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200805
806 if (!PartitionManager.Mount_Settings_Storage(false))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500807 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200808 LOGERR("Unable to mount %s during GUI startup.\n",
809 theme_path.c_str());
810 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500811 }
812 }
813
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200814 theme_path += "/TWRP/theme/ui.zip";
815 if (check || PageManager::LoadPackage("TWRP", theme_path, "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500816 {
Ethan Yonker83e82572014-04-04 10:59:28 -0500817#endif // ifndef TW_OEM_BUILD
Dees Troy3454ade2015-01-20 19:21:04 +0000818 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500819 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200820 LOGERR("Failed to load base packages.\n");
821 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400822 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500823#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -0400824 }
825 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500826#endif // ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200827 // Set the default package
828 PageManager::SelectPackage("TWRP");
Dees_Troy51a0e822012-09-05 15:24:24 -0400829
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200830 gGuiInitialized = 1;
831 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400832
833error:
Ethan Yonker83e82572014-04-04 10:59:28 -0500834 LOGERR("An internal error has occurred: unable to load theme.\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200835 gGuiInitialized = 0;
836 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400837}
838
Ethan Yonkercf50da52015-01-12 21:59:07 -0600839extern "C" int gui_loadCustomResources(void)
840{
841#ifndef TW_OEM_BUILD
842 if (!PartitionManager.Mount_Settings_Storage(false)) {
843 LOGERR("Unable to mount settings storage during GUI startup.\n");
844 return -1;
845 }
846
847 std::string theme_path = DataManager::GetSettingsStoragePath();
848 theme_path += "/TWRP/theme/ui.zip";
849 // Check for a custom theme
850 if (TWFunc::Path_Exists(theme_path)) {
851 // There is a custom theme, try to load it
852 if (PageManager::ReloadPackage("TWRP", theme_path)) {
853 // Custom theme failed to load, try to load stock theme
Dees Troy3454ade2015-01-20 19:21:04 +0000854 if (PageManager::ReloadPackage("TWRP", TWRES "ui.xml")) {
Ethan Yonkercf50da52015-01-12 21:59:07 -0600855 LOGERR("Failed to load base packages.\n");
856 goto error;
857 }
858 }
859 }
860 // Set the default package
861 PageManager::SelectPackage("TWRP");
862#endif
863 return 0;
864
865error:
866 LOGERR("An internal error has occurred: unable to load theme.\n");
867 gGuiInitialized = 0;
868 return -1;
869}
870
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200871extern "C" int gui_start(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400872{
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600873 return gui_startPage(NULL, 1, 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400874}
875
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600876extern "C" int gui_startPage(const char *page_name, const int allow_commands, int stop_on_page_done)
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000877{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200878 if (!gGuiInitialized)
879 return -1;
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000880
Ethan Yonker04536952015-01-27 08:41:28 -0600881 gGuiConsoleTerminate.set_value(1);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000882
Ethan Yonker04536952015-01-27 08:41:28 -0600883 while (gGuiConsoleRunning.get_value())
Ethan Yonkere13fa632015-01-27 11:30:03 -0600884 usleep(10000);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000885
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200886 // Set the default package
887 PageManager::SelectPackage("TWRP");
888
that9fa51532015-01-29 02:04:47 +0100889 input_handler.init();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600890#ifndef TW_OEM_BUILD
891 if (allow_commands)
892 {
893 if (ors_read_fd < 0)
894 setup_ors_command();
895 } else {
896 if (ors_read_fd >= 0) {
897 close(ors_read_fd);
898 ors_read_fd = -1;
899 }
900 }
901#endif
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600902 return runPages(page_name, stop_on_page_done);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000903}
904
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200905static void * console_thread(void *cookie)
Dees_Troy51a0e822012-09-05 15:24:24 -0400906{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200907 PageManager::SwitchToConsole();
Dees_Troy51a0e822012-09-05 15:24:24 -0400908
Ethan Yonker04536952015-01-27 08:41:28 -0600909 while (!gGuiConsoleTerminate.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500910 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200911 loopTimer();
Dees_Troy51a0e822012-09-05 15:24:24 -0400912
Ethan Yonker04536952015-01-27 08:41:28 -0600913 if (!gForceRender.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500914 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200915 int ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400916
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200917 ret = PageManager::Update();
918 if (ret > 1)
919 PageManager::Render();
Dees_Troy51a0e822012-09-05 15:24:24 -0400920
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200921 if (ret > 0)
922 flip();
Dees_Troy51a0e822012-09-05 15:24:24 -0400923
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200924 if (ret < 0)
925 LOGERR("An update request has failed.\n");
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500926 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200927 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500928 {
Ethan Yonker04536952015-01-27 08:41:28 -0600929 gForceRender.set_value(0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200930 PageManager::Render();
931 flip();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500932 }
933 }
Ethan Yonker04536952015-01-27 08:41:28 -0600934 gGuiConsoleRunning.set_value(0);
935 gForceRender.set_value(1); // this will kickstart the GUI to render again
Ethan Yonker03a42f62014-08-08 11:03:51 -0500936 PageManager::EndConsole();
937 LOGINFO("Console stopping\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200938 return NULL;
Dees_Troy51a0e822012-09-05 15:24:24 -0400939}
940
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200941extern "C" int gui_console_only(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400942{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200943 if (!gGuiInitialized)
944 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400945
Ethan Yonker04536952015-01-27 08:41:28 -0600946 gGuiConsoleTerminate.set_value(0);
Ethan Yonkerffbd6ff2014-10-22 10:40:40 -0500947
Ethan Yonker04536952015-01-27 08:41:28 -0600948 if (gGuiConsoleRunning.get_value())
Ethan Yonkerffbd6ff2014-10-22 10:40:40 -0500949 return 0;
950
Ethan Yonker04536952015-01-27 08:41:28 -0600951 gGuiConsoleRunning.set_value(1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400952
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200953 // Start by spinning off an input handler.
954 pthread_t t;
955 pthread_create(&t, NULL, console_thread, NULL);
Dees_Troy51a0e822012-09-05 15:24:24 -0400956
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200957 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400958}