-
Notifications
You must be signed in to change notification settings - Fork 17
/
yamui-screensaverd.c
263 lines (216 loc) · 6.27 KB
/
yamui-screensaverd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
* Simple screen saver daemon. Turns off the display after idle timeout.
* Turns the display on on any event from /dev/input/event* files.
* On exit turns the display on.
*
* Copyright (C) 2015 Jolla Ltd.
* Contact: Igor Zhbanov <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define _DEFAULT_SOURCE
#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/select.h>
#include <linux/input.h>
/*#define DEBUG*/
#include "yamui-tools.h"
#include "minui/minui.h"
#define NBITS(x) ((((x) - 1) / __BITS_PER_LONG) + 1)
#define BIT(arr, bit) ((arr[(bit) / __BITS_PER_LONG] >> \
((bit) % __BITS_PER_LONG)) & 1)
#define DISPLAY_CONTROL "/sys/class/graphics/fb0/blank"
#define DISPLAY_CONTROL_DRM "/sys/class/backlight/panel0-backlight/brightness"
#define MAX_DEVICES 256
#define DISPLAY_OFF_TIME 25 /* seconds */
const char *app_name = "screensaverd";
sig_atomic_t volatile running = 1;
char *display_control = NULL;
int display_control_on_value = 1024;
/* ------------------------------------------------------------------------ */
/* Check for input device type. Returns 0 if button or touchscreen. */
static int
check_device_type(int fd, const char *name)
{
unsigned long bits[EV_MAX][NBITS(KEY_MAX)];
memset(bits, '\0', sizeof(bits));
if (ioctl(fd, EVIOCGBIT(0, EV_MAX), bits[0]) == -1) {
errorf("ioctl(, EVIOCGBIT(0, ), ) error on event device %s",
name);
return -1;
}
if (BIT(bits[0], EV_ABS)) {
if (ioctl(fd, EVIOCGBIT(EV_ABS, KEY_MAX), bits[EV_ABS]) == -1)
errorf("ioctl(, EVIOCGBIT(EV_ABS, ), ) error on event"
" device %s", name);
else if (BIT(bits[EV_ABS], ABS_MT_POSITION_X) &&
BIT(bits[EV_ABS], ABS_MT_POSITION_Y)) {
debugf("Device %s supports multi-touch events.", name);
return 0;
}
}
if (BIT(bits[0], EV_KEY)) {
if (ioctl(fd, EVIOCGBIT(EV_KEY, KEY_MAX), bits[EV_KEY]) == -1)
errorf("ioctl(, EVIOCGBIT(EV_KEY, ), ) error on event"
" device %s", name);
else if (BIT(bits[EV_KEY], KEY_POWER) ||
BIT(bits[EV_KEY], KEY_VOLUMEDOWN) ||
BIT(bits[EV_KEY], KEY_VOLUMEUP) ||
BIT(bits[EV_KEY], KEY_OK) ||
BIT(bits[EV_KEY], KEY_ENTER)) {
debugf("Device %s supports needed key events.", name);
return 0;
}
}
debugf("Skipping unsupported device %s.", name);
return -1;
}
/* ------------------------------------------------------------------------ */
static int
sysfs_write_int(const char *fname, int val)
{
FILE *f;
if (!(f = fopen(fname, "w"))) {
errorf("Can't open \"%s\" for writing", fname);
return -1;
}
fprintf(f, "%d\n", val);
fclose(f);
return 0;
}
/* ------------------------------------------------------------------------ */
typedef enum {
state_unknown = -1,
state_off,
state_on
} display_state_t;
static display_state_t display_state = state_unknown;
static int
turn_display_on(void)
{
int ret;
if (display_state == state_on)
return 0;
debugf("Turning display on.");
display_state = state_on;
ret = sysfs_write_int(display_control, display_control_on_value);
#ifdef __arm___
gr_restore(); /* Qualcomm specific. TODO: implement generic solution. */
#endif /* __arm__ */
return ret;
}
/* ------------------------------------------------------------------------ */
static int
turn_display_off(void)
{
if (display_state == state_off)
return 0;
debugf("Turning display off.");
display_state = state_off;
#ifdef __arm__
gr_save(); /* Qualcomm specific. TODO: implement generic solution. */
#endif /* __arm__ */
return sysfs_write_int(display_control, 0);
}
/* ------------------------------------------------------------------------ */
static void
signal_handler(int sig UNUSED)
{
running = 0;
}
/* ------------------------------------------------------------------------ */
int
main(void)
{
int fds[MAX_DEVICES], num_fds = 0, ret = EXIT_SUCCESS;
if (open_fds(fds, &num_fds, MAX_DEVICES, check_device_type) == -1)
return EXIT_FAILURE;
int have_fb0 = 0;
/* the drm backend doesn't support multiple clients */
have_fb0 = !access("/dev/fb0", F_OK) || !access("/dev/graphics/fb0", F_OK);
if (have_fb0) {
#ifdef __arm__
/* Qualcomm specific. TODO: implement generic solution. */
if (gr_init(false)) {
errorf("Failed gr_init().\n");
close_fds(fds, num_fds);
return EXIT_FAILURE;
}
#endif /* __arm__ */
}
if (have_fb0) {
display_control = DISPLAY_CONTROL;
} else {
display_control = DISPLAY_CONTROL_DRM;
}
if (getenv("DISPLAY_BRIGHTNESS_PATH") != NULL) {
display_control = getenv("DISPLAY_BRIGHTNESS_PATH");
}
if (getenv("DISPLAY_BRIGHTNESS") != NULL) {
display_control_on_value = atoi(getenv("DISPLAY_BRIGHTNESS"));
}
debugf("Started");
signal(SIGINT, signal_handler);
signal(SIGTERM, signal_handler);
while (running) { /* Main loop */
int i, rv, max_fd = 0;
fd_set rfds;
struct timeval tv;
FD_ZERO(&rfds);
for (i = 0; i < num_fds; i++) {
FD_SET(fds[i], &rfds);
if (fds[i] > max_fd)
max_fd = fds[i];
}
/* Wait up to 25 seconds. */
tv.tv_sec = DISPLAY_OFF_TIME;
tv.tv_usec = 0;
rv = select(max_fd + 1, &rfds, NULL, NULL, &tv);
if (rv > 0) {
for (i = 0; i < num_fds; i++)
if (FD_ISSET(fds[i], &rfds)) {
ret_t r;
r = handle_events(fds[i], NULL);
if (r == ret_continue)
continue;
ret = get_exit_status(r);
running = 0;
break;
}
turn_display_on();
} else if (rv == 0) /* Timeout */
turn_display_off();
else { /* Error or signal */
if (errno != EINTR) {
errorf("Error on select()");
ret = EXIT_FAILURE;
}
break;
}
}
turn_display_on();
#ifdef __arm__
if (have_fb0) {
gr_exit(); /* Qualcomm specific. TODO: implement generic solution. */
}
#endif /* __arm__ */
close_fds(fds, num_fds);
debugf("Terminated");
return ret;
}