summaryrefslogtreecommitdiffstats
path: root/playlpm/playlpm.c
blob: dec26914326b441eeae8c5f3b78c519ecd364ec8 (plain)
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
/**
 * PlayLPM
 *
 * Copyright (C) 2012 Paul Kocialkowski <contact@paulk.fr>
 *
 * playlpm is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * playlpm is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with playlpm.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define LOG_TAG "PlayLPM"
#include <cutils/log.h>

#define LPM_LOOP_DELAY		5
#define LPM_FRAMES_DIR		"/system/media/charging"
#define LPM_FRAMES_PREFIX	"charging-"
#define LPM_FRAMES_SUFFIX	".bgra"

void lpm_display_level(int level)
{
	char *frame_file;
	unsigned char *frame_data;
	int frame_size = -1;
	struct stat frame_stat;

	int fd = -1;

	memset(&frame_stat, 0, sizeof(frame_stat));

	asprintf(&frame_file, "%s/%s%d%s", LPM_FRAMES_DIR, LPM_FRAMES_PREFIX, level, LPM_FRAMES_SUFFIX);

	LOGD("frame file is: %s\n", frame_file);

	stat(frame_file, &frame_stat);
	frame_size = frame_stat.st_size;
	
	if(frame_size < 0)
	{
		LOGE("Wrong frame size, aborting");
		return;
	}

	fd = open(frame_file, O_RDONLY);
	free(frame_file);

	if(fd < 0)
	{
		LOGE("Failed to open frame file, aborting");
		return;
	}

	frame_data = malloc(frame_size);

	read(fd, frame_data, frame_size);

	close(fd);

	fd = open("/dev/graphics/fb0", O_WRONLY);
	if(fd < 0)
	{
		LOGE("Failed to open framebuffer node, aborting");
		return;
	}

	LOGD("Writing frame for level: %d", level);
	write(fd, frame_data, frame_size);

	close(fd);

	free(frame_data);
}

int lpm_battery_level(void)
{
	int capacity = -1;
	int level = -1;

	int fd = -1;
	char value[2];
	char status[6];

	fd = open("/sys/class/power_supply/battery/capacity", O_RDONLY);
	if(fd < 0)
	{
		LOGE("Failed to open capacity node, aborting");
		return 0;
	}

	read(fd, value, sizeof(value));

	close(fd);

	capacity = atoi(value);
	if(capacity < 0 || capacity > 100)
	{
		LOGE("capacity value (%d) is unreliable, aborting", capacity);
		return 0;
	}

	// Truncate capacity to get a multiple of 10 as level
	level = ((capacity - (capacity % 10)) / 10) * 10;

	fd = open("/sys/class/power_supply/battery/status", O_RDONLY);
	if(fd < 0)
	{
		LOGE("Failed to open status node, aborting");
		return 0;
	}

	read(fd, status, sizeof(status));

	close(fd);

	// If status is reported as Full, assume 100% charged
	if(strncmp(status, "Full", 4) == 0)
	{
		level = 100;
	}

	LOGD("level is: %d\n", level);

	return level;
}

// This is the main loop function, where we check battery state
void lpm_loop(void)
{
	int level = -1;
	int l;

	while(1)
	{
		level = lpm_battery_level();

		// Only refresh the image if the battery level changed
		if(level != l)
			lpm_display_level(level);

		l = level;

		sleep(LPM_LOOP_DELAY);
	}
}

// Check if the phone is booting in charging mode
int lpm_check(void)
{
	int fd = -1;
	char value[2];

	fd = open("/sys/class/power_supply/battery/charging_mode_booting", O_RDONLY);
	if(fd < 0)
	{
		LOGE("Failed to open charging_mode_booting node, aborting");
		return 0;
	}

	read(fd, value, sizeof(value));

	close(fd);

	if(value[0] == '1')
	{
		LOGD("Phone is booting in charging mode");
		return 1;
	}

	return 0;
}

int main(int argc, char *argv[])
{
	// Start loop only if the phone is booting in charging mode
	if(lpm_check() == 1)
	{
		lpm_loop();
	}

	return 0;
}