blob: 371d3f126a897bb99befbeaca80c3f0b9c45945d [file] [log] [blame]
bigbiff bigbiff8a68c312013-02-10 14:28:30 -05001/*
2 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*/
18
19using namespace std;
20#include "rapidxml.hpp"
21using namespace rapidxml;
22extern "C" {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050023#include "../minuitwrp/minui.h"
24}
25#include <string>
26#include <vector>
27#include <map>
28#include "resources.hpp"
29#include <pthread.h>
30#include <sys/time.h>
31#include <time.h>
32#include <unistd.h>
33#include <pixelflinger/pixelflinger.h>
34#include <linux/kd.h>
35#include <linux/fb.h>
36#include <sstream>
37#include "pages.hpp"
38#include "blanktimer.hpp"
Dees Troyb7ae0982013-09-10 20:47:35 +000039#include "objects.hpp"
bigbiff bigbifff8e2f372013-02-27 20:50:43 -050040#include "../data.hpp"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050041extern "C" {
Dees_Troy2673cec2013-04-02 20:22:16 +000042#include "../twcommon.h"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050043}
44#include "../twrp-functions.hpp"
45#include "../variables.h"
46
47blanktimer::blanktimer(void) {
Dees_Troy70237dc2013-02-28 21:31:48 +000048 setTime(0);
49 setConBlank(0);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050050 orig_brightness = getBrightness();
gordon13370d9133d2013-06-08 14:17:07 +020051 screenoff = false;
52}
53
54bool blanktimer::IsScreenOff() {
55 return screenoff;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050056}
57
Dees_Troy2f9117a2013-02-17 19:52:09 -060058void blanktimer::setTime(int newtime) {
59 sleepTimer = newtime;
60}
61
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050062int blanktimer::setTimerThread(void) {
63 pthread_t thread;
64 ThreadPtr blankptr = &blanktimer::setClockTimer;
65 PThreadPtr p = *(PThreadPtr*)&blankptr;
66 pthread_create(&thread, NULL, p, this);
67 return 0;
68}
69
Dees_Troy70237dc2013-02-28 21:31:48 +000070void blanktimer::setConBlank(int blank) {
71 pthread_mutex_lock(&conblankmutex);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050072 conblank = blank;
Dees_Troy70237dc2013-02-28 21:31:48 +000073 pthread_mutex_unlock(&conblankmutex);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050074}
75
76void blanktimer::setTimer(void) {
77 pthread_mutex_lock(&timermutex);
78 clock_gettime(CLOCK_MONOTONIC, &btimer);
79 pthread_mutex_unlock(&timermutex);
80}
81
82timespec blanktimer::getTimer(void) {
83 return btimer;
84}
85
86int blanktimer::setClockTimer(void) {
87 timespec curTime, diff;
Dees_Troy70237dc2013-02-28 21:31:48 +000088 for(;;) {
89 usleep(1000000);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050090 clock_gettime(CLOCK_MONOTONIC, &curTime);
91 diff = TWFunc::timespec_diff(btimer, curTime);
Dees_Troy70237dc2013-02-28 21:31:48 +000092 if (sleepTimer > 2 && diff.tv_sec > (sleepTimer - 2) && conblank == 0) {
Dees_Troy2f9117a2013-02-17 19:52:09 -060093 orig_brightness = getBrightness();
Dees_Troy70237dc2013-02-28 21:31:48 +000094 setConBlank(1);
xNUTxe85f02d2014-07-18 01:30:58 +020095 TWFunc::Set_Brightness("5");
Dees_Troy70237dc2013-02-28 21:31:48 +000096 }
97 if (sleepTimer && diff.tv_sec > sleepTimer && conblank < 2) {
98 setConBlank(2);
xNUTxe85f02d2014-07-18 01:30:58 +020099 TWFunc::Set_Brightness("0");
gordon13370d9133d2013-06-08 14:17:07 +0200100 screenoff = true;
Dees_Troy1c8d4fb2013-07-12 15:05:29 +0000101 TWFunc::check_and_run_script("/sbin/postscreenblank.sh", "blank");
Dees_Troy2f9117a2013-02-17 19:52:09 -0600102 PageManager::ChangeOverlay("lock");
103 }
bigbiff bigbiff87940362013-03-09 09:58:50 -0500104#ifndef TW_NO_SCREEN_BLANK
Dees_Troy70237dc2013-02-28 21:31:48 +0000105 if (conblank == 2 && gr_fb_blank(1) >= 0) {
106 setConBlank(3);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500107 }
bigbiff bigbiff87940362013-03-09 09:58:50 -0500108#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500109 }
Dees_Troy70237dc2013-02-28 21:31:48 +0000110 return -1; //shouldn't get here
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500111}
112
xNUTxe85f02d2014-07-18 01:30:58 +0200113string blanktimer::getBrightness(void) {
114 string result;
Ethan Yonkerfc966502014-04-16 13:30:45 -0500115 string brightness_path;
116 DataManager::GetValue("tw_brightness_file", brightness_path);
xNUTxe85f02d2014-07-18 01:30:58 +0200117 if (brightness_path == "/nobrightness")
118 return brightness_path;
119 DataManager::GetValue("tw_brightness", result);
120 if (result == "") {
121 result = "255";
Dees_Troya13d74f2013-03-24 08:54:55 -0500122 }
123 return result;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500124
125}
126
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500127void blanktimer::resetTimerAndUnblank(void) {
128 setTimer();
Dees_Troy70237dc2013-02-28 21:31:48 +0000129 switch (conblank) {
130 case 3:
bigbiff bigbiff87940362013-03-09 09:58:50 -0500131#ifndef TW_NO_SCREEN_BLANK
Dees_Troy70237dc2013-02-28 21:31:48 +0000132 if (gr_fb_blank(0) < 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000133 LOGINFO("blanktimer::resetTimerAndUnblank failed to gr_fb_blank(0)\n");
Dees_Troy70237dc2013-02-28 21:31:48 +0000134 break;
135 }
bigbiff bigbiff87940362013-03-09 09:58:50 -0500136#endif
Dees_Troy1c8d4fb2013-07-12 15:05:29 +0000137 TWFunc::check_and_run_script("/sbin/postscreenunblank.sh", "unblank");
Dees_Troy70237dc2013-02-28 21:31:48 +0000138 // No break here, we want to keep going
139 case 2:
140 gui_forceRender();
gordon13370d9133d2013-06-08 14:17:07 +0200141 screenoff = false;
Dees_Troy70237dc2013-02-28 21:31:48 +0000142 // No break here, we want to keep going
143 case 1:
xNUTxe85f02d2014-07-18 01:30:58 +0200144 if (orig_brightness != "/nobrightness")
145 TWFunc::Set_Brightness(orig_brightness);
Dees_Troy70237dc2013-02-28 21:31:48 +0000146 setConBlank(0);
147 break;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500148 }
149}