blob: 988439b25a97abf4a0d4014b04a5f79f7977490c [file] [log] [blame]
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +00001/* vi: set sw=4 ts=4: */
2/*
Bernhard Reutner-Fischerdd76b792009-01-27 12:56:33 +00003 * Copyright (C) 2008 Michele Sanges <michele.sanges@gmail.com>
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +00004 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +00006 *
7 * Usage:
8 * - use kernel option 'vga=xxx' or otherwise enable framebuffer device.
Denis Vlasenko25a9c172008-03-26 15:12:11 +00009 * - put somewhere fbsplash.cfg file and an image in .ppm format.
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000010 * - run applet: $ setsid fbsplash [params] &
Denis Vlasenko1f228982008-04-22 00:16:29 +000011 * -c: hide cursor
12 * -d /dev/fbN: framebuffer device (if not /dev/fb0)
13 * -s path_to_image_file (can be "-" for stdin)
14 * -i path_to_cfg_file
15 * -f path_to_fifo (can be "-" for stdin)
Denis Vlasenko25a9c172008-03-26 15:12:11 +000016 * - if you want to run it only in presence of a kernel parameter
17 * (for example fbsplash=on), use:
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000018 * grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params]
19 * - commands for fifo:
20 * "NN" (ASCII decimal number) - percentage to show on progress bar.
21 * "exit" (or just close fifo) - well you guessed it.
22 */
23
Pere Orga5bc8c002011-04-11 03:29:49 +020024//usage:#define fbsplash_trivial_usage
25//usage: "-s IMGFILE [-c] [-d DEV] [-i INIFILE] [-f CMD]"
26//usage:#define fbsplash_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020027//usage: " -s Image"
Pere Orga5bc8c002011-04-11 03:29:49 +020028//usage: "\n -c Hide cursor"
29//usage: "\n -d Framebuffer device (default /dev/fb0)"
30//usage: "\n -i Config file (var=value):"
31//usage: "\n BAR_LEFT,BAR_TOP,BAR_WIDTH,BAR_HEIGHT"
32//usage: "\n BAR_R,BAR_G,BAR_B"
33//usage: "\n -f Control pipe (else exit after drawing image)"
34//usage: "\n commands: 'NN' (% for progress bar) or 'exit'"
35
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000036#include "libbb.h"
37#include <linux/fb.h>
38
Denis Vlasenko25a9c172008-03-26 15:12:11 +000039/* If you want logging messages on /tmp/fbsplash.log... */
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000040#define DEBUG 0
41
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000042struct globals {
43#if DEBUG
44 bool bdebug_messages; // enable/disable logging
45 FILE *logfile_fd; // log file
46#endif
47 unsigned char *addr; // pointer to framebuffer memory
Denis Vlasenko0f99d492008-07-24 23:38:04 +000048 unsigned ns[7]; // n-parameters
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000049 const char *image_filename;
50 struct fb_var_screeninfo scr_var;
51 struct fb_fix_screeninfo scr_fix;
Nuno Lucas0e89fd92011-03-28 15:30:59 +020052 unsigned bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000053};
54#define G (*ptr_to_globals)
Denis Vlasenko7049ff82008-06-25 09:53:17 +000055#define INIT_G() do { \
56 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
57} while (0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000058
Denis Vlasenko0f99d492008-07-24 23:38:04 +000059#define nbar_width ns[0] // progress bar width
60#define nbar_height ns[1] // progress bar height
61#define nbar_posx ns[2] // progress bar horizontal position
62#define nbar_posy ns[3] // progress bar vertical position
63#define nbar_colr ns[4] // progress bar color red component
64#define nbar_colg ns[5] // progress bar color green component
65#define nbar_colb ns[6] // progress bar color blue component
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000066
67#if DEBUG
68#define DEBUG_MESSAGE(strMessage, args...) \
69 if (G.bdebug_messages) { \
70 fprintf(G.logfile_fd, "[%s][%s] - %s\n", \
71 __FILE__, __FUNCTION__, strMessage); \
72 }
73#else
74#define DEBUG_MESSAGE(...) ((void)0)
75#endif
76
Peter Korsgaardcd06e062011-10-17 05:31:52 +020077/**
78 * Configure palette for RGB:332
79 */
80static void fb_setpal(int fd)
81{
82 struct fb_cmap cmap;
83 /* fb colors are 16 bit */
84 unsigned short red[256], green[256], blue[256];
85 unsigned i;
86
87 /* RGB:332 */
88 for (i = 0; i < 256; i++) {
89 /* Color is encoded in pixel value as rrrgggbb.
90 * 3-bit color is mapped to 16-bit one as:
91 * 000 -> 00000000 00000000
92 * 001 -> 00100100 10010010
93 * ...
94 * 011 -> 01101101 10110110
95 * 100 -> 10010010 01001001
96 * ...
97 * 111 -> 11111111 11111111
98 */
99 red[i] = (( i >> 5 ) * 0x9249) >> 2; // rrr * 00 10010010 01001001 >> 2
100 green[i] = (((i >> 2) & 0x7) * 0x9249) >> 2; // ggg * 00 10010010 01001001 >> 2
101 /* 2-bit color is easier: */
102 blue[i] = ( i & 0x3) * 0x5555; // bb * 01010101 01010101
103 }
104
105 cmap.start = 0;
106 cmap.len = 256;
107 cmap.red = red;
108 cmap.green = green;
109 cmap.blue = blue;
110 cmap.transp = 0;
111
112 xioctl(fd, FBIOPUTCMAP, &cmap);
113}
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000114
115/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200116 * Open and initialize the framebuffer device
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000117 * \param *strfb_device pointer to framebuffer device
118 */
119static void fb_open(const char *strfb_device)
120{
121 int fbfd = xopen(strfb_device, O_RDWR);
122
123 // framebuffer properties
124 xioctl(fbfd, FBIOGET_VSCREENINFO, &G.scr_var);
125 xioctl(fbfd, FBIOGET_FSCREENINFO, &G.scr_fix);
126
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200127 switch (G.scr_var.bits_per_pixel) {
128 case 8:
129 fb_setpal(fbfd);
130 break;
131
132 case 16:
133 case 24:
134 case 32:
135 break;
136
137 default:
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200138 bb_error_msg_and_die("unsupported %u bpp", (int)G.scr_var.bits_per_pixel);
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200139 break;
140 }
141
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200142 G.bytes_per_pixel = (G.scr_var.bits_per_pixel + 7) >> 3;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000143
144 // map the device in memory
145 G.addr = mmap(NULL,
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800146 G.scr_var.yres * G.scr_fix.line_length,
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000147 PROT_WRITE, MAP_SHARED, fbfd, 0);
148 if (G.addr == MAP_FAILED)
Bernhard Reutner-Fischer4efcec92009-02-14 12:36:16 +0000149 bb_perror_msg_and_die("mmap");
Dan Fandrich07078c22011-01-26 11:30:34 -0800150
151 // point to the start of the visible screen
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200152 G.addr += G.scr_var.yoffset * G.scr_fix.line_length + G.scr_var.xoffset * G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000153 close(fbfd);
154}
155
156
157/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200158 * Return pixel value of the passed RGB color
159 */
160static unsigned fb_pixel_value(unsigned r, unsigned g, unsigned b)
161{
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200162 if (G.bytes_per_pixel == 1) {
163 r = r & 0xe0; // 3-bit red
164 g = (g >> 3) & 0x1c; // 3-bit green
165 b = b >> 6; // 2-bit blue
166 return r + g + b;
167 }
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200168 if (G.bytes_per_pixel == 2) {
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200169 r = (r & 0xf8) << 8; // 5-bit red
170 g = (g & 0xfc) << 3; // 6-bit green
171 b = b >> 3; // 5-bit blue
172 return r + g + b;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200173 }
174 // RGB 888
175 return b + (g << 8) + (r << 16);
176}
177
178/**
179 * Draw pixel on framebuffer
180 */
181static void fb_write_pixel(unsigned char *addr, unsigned pixel)
182{
183 switch (G.bytes_per_pixel) {
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200184 case 1:
185 *addr = pixel;
186 break;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200187 case 2:
188 *(uint16_t *)addr = pixel;
189 break;
190 case 4:
191 *(uint32_t *)addr = pixel;
192 break;
193 default: // 24 bits per pixel
194 addr[0] = pixel;
195 addr[1] = pixel >> 8;
196 addr[2] = pixel >> 16;
197 }
198}
199
200
201/**
202 * Draw hollow rectangle on framebuffer
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000203 */
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000204static void fb_drawrectangle(void)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000205{
206 int cnt;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200207 unsigned thispix;
208 unsigned char *ptr1, *ptr2;
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000209 unsigned char nred = G.nbar_colr/2;
210 unsigned char ngreen = G.nbar_colg/2;
211 unsigned char nblue = G.nbar_colb/2;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000212
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200213 thispix = fb_pixel_value(nred, ngreen, nblue);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000214
215 // horizontal lines
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800216 ptr1 = G.addr + G.nbar_posy * G.scr_fix.line_length + G.nbar_posx * G.bytes_per_pixel;
217 ptr2 = G.addr + (G.nbar_posy + G.nbar_height - 1) * G.scr_fix.line_length + G.nbar_posx * G.bytes_per_pixel;
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000218 cnt = G.nbar_width - 1;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000219 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200220 fb_write_pixel(ptr1, thispix);
221 fb_write_pixel(ptr2, thispix);
222 ptr1 += G.bytes_per_pixel;
223 ptr2 += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000224 } while (--cnt >= 0);
225
226 // vertical lines
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800227 ptr1 = G.addr + G.nbar_posy * G.scr_fix.line_length + G.nbar_posx * G.bytes_per_pixel;
228 ptr2 = G.addr + G.nbar_posy * G.scr_fix.line_length + (G.nbar_posx + G.nbar_width - 1) * G.bytes_per_pixel;
Denys Vlasenko814da222010-03-14 23:59:54 +0100229 cnt = G.nbar_height - 1;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000230 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200231 fb_write_pixel(ptr1, thispix);
232 fb_write_pixel(ptr2, thispix);
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800233 ptr1 += G.scr_fix.line_length;
234 ptr2 += G.scr_fix.line_length;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000235 } while (--cnt >= 0);
236}
237
238
239/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200240 * Draw filled rectangle on framebuffer
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000241 * \param nx1pos,ny1pos upper left position
242 * \param nx2pos,ny2pos down right position
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000243 * \param nred,ngreen,nblue rgb color
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000244 */
245static void fb_drawfullrectangle(int nx1pos, int ny1pos, int nx2pos, int ny2pos,
246 unsigned char nred, unsigned char ngreen, unsigned char nblue)
247{
248 int cnt1, cnt2, nypos;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200249 unsigned thispix;
250 unsigned char *ptr;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000251
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200252 thispix = fb_pixel_value(nred, ngreen, nblue);
Denis Vlasenko1f228982008-04-22 00:16:29 +0000253
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000254 cnt1 = ny2pos - ny1pos;
255 nypos = ny1pos;
256 do {
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800257 ptr = G.addr + nypos * G.scr_fix.line_length + nx1pos * G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000258 cnt2 = nx2pos - nx1pos;
259 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200260 fb_write_pixel(ptr, thispix);
261 ptr += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000262 } while (--cnt2 >= 0);
Denis Vlasenko1f228982008-04-22 00:16:29 +0000263
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000264 nypos++;
265 } while (--cnt1 >= 0);
266}
267
268
269/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200270 * Draw a progress bar on framebuffer
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000271 * \param percent percentage of loading
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000272 */
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000273static void fb_drawprogressbar(unsigned percent)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000274{
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200275 int left_x, top_y, pos_x;
276 unsigned width, height;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000277
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000278 // outer box
279 left_x = G.nbar_posx;
280 top_y = G.nbar_posy;
281 width = G.nbar_width - 1;
282 height = G.nbar_height - 1;
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200283 if ((int)(height | width) < 0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000284 return;
285 // NB: "width" of 1 actually makes rect with width of 2!
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000286 fb_drawrectangle();
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000287
288 // inner "empty" rectangle
289 left_x++;
290 top_y++;
291 width -= 2;
292 height -= 2;
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200293 if ((int)(height | width) < 0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000294 return;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000295
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200296 pos_x = left_x;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000297 if (percent > 0) {
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200298 int y;
299 unsigned i;
300
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000301 // actual progress bar
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200302 pos_x += (unsigned)(width * percent) / 100;
303
304 y = top_y;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000305 i = height;
306 if (height == 0)
307 height++; // divide by 0 is bad
308 while (i >= 0) {
309 // draw one-line thick "rectangle"
310 // top line will have gray lvl 200, bottom one 100
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200311 unsigned gray_level = 100 + i*100 / height;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000312 fb_drawfullrectangle(
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200313 left_x, y, pos_x, y,
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000314 gray_level, gray_level, gray_level);
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200315 y++;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000316 i--;
317 }
318 }
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200319
320 fb_drawfullrectangle(
321 pos_x, top_y,
322 left_x + width, top_y + height,
323 G.nbar_colr, G.nbar_colg, G.nbar_colb);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000324}
325
326
327/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200328 * Draw image from PPM file
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000329 */
330static void fb_drawimage(void)
331{
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000332 FILE *theme_file;
Denys Vlasenko814da222010-03-14 23:59:54 +0100333 char *read_ptr;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000334 unsigned char *pixline;
335 unsigned i, j, width, height, line_size;
336
Denys Vlasenko814da222010-03-14 23:59:54 +0100337 if (LONE_DASH(G.image_filename)) {
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100338 theme_file = stdin;
Denys Vlasenko814da222010-03-14 23:59:54 +0100339 } else {
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100340 int fd = open_zipped(G.image_filename);
341 if (fd < 0)
342 bb_simple_perror_msg_and_die(G.image_filename);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +0100343 theme_file = xfdopen_for_read(fd);
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100344 }
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000345
Denys Vlasenko814da222010-03-14 23:59:54 +0100346 /* Parse ppm header:
347 * - Magic: two characters "P6".
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000348 * - Whitespace (blanks, TABs, CRs, LFs).
349 * - A width, formatted as ASCII characters in decimal.
350 * - Whitespace.
Denys Vlasenko814da222010-03-14 23:59:54 +0100351 * - A height, ASCII decimal.
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000352 * - Whitespace.
Denys Vlasenko814da222010-03-14 23:59:54 +0100353 * - The maximum color value, ASCII decimal, in 0..65535
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000354 * - Newline or other single whitespace character.
Denys Vlasenko814da222010-03-14 23:59:54 +0100355 * (we support newline only)
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000356 * - A raster of Width * Height pixels in triplets of rgb
Denys Vlasenko814da222010-03-14 23:59:54 +0100357 * in pure binary by 1 or 2 bytes. (we support only 1 byte)
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000358 */
Denys Vlasenko814da222010-03-14 23:59:54 +0100359#define concat_buf bb_common_bufsiz1
360 read_ptr = concat_buf;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000361 while (1) {
Denys Vlasenko814da222010-03-14 23:59:54 +0100362 int w, h, max_color_val;
363 int rem = concat_buf + sizeof(concat_buf) - read_ptr;
364 if (rem < 2
365 || fgets(read_ptr, rem, theme_file) == NULL
366 ) {
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000367 bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
Denys Vlasenko814da222010-03-14 23:59:54 +0100368 }
369 read_ptr = strchrnul(read_ptr, '#');
370 *read_ptr = '\0'; /* ignore #comments */
371 if (sscanf(concat_buf, "P6 %u %u %u", &w, &h, &max_color_val) == 3
372 && max_color_val <= 255
373 ) {
374 width = w; /* w is on stack, width may be in register */
375 height = h;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000376 break;
Denys Vlasenko814da222010-03-14 23:59:54 +0100377 }
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000378 }
379
380 line_size = width*3;
Denys Vlasenko814da222010-03-14 23:59:54 +0100381 pixline = xmalloc(line_size);
382
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000383 if (width > G.scr_var.xres)
384 width = G.scr_var.xres;
385 if (height > G.scr_var.yres)
386 height = G.scr_var.yres;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000387 for (j = 0; j < height; j++) {
Denys Vlasenko814da222010-03-14 23:59:54 +0100388 unsigned char *pixel;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200389 unsigned char *src;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000390
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000391 if (fread(pixline, 1, line_size, theme_file) != line_size)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000392 bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
Denys Vlasenko814da222010-03-14 23:59:54 +0100393 pixel = pixline;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200394 src = G.addr + j * G.scr_fix.line_length;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000395 for (i = 0; i < width; i++) {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200396 unsigned thispix = fb_pixel_value(pixel[0], pixel[1], pixel[2]);
397 fb_write_pixel(src, thispix);
398 src += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000399 pixel += 3;
400 }
401 }
Denys Vlasenko814da222010-03-14 23:59:54 +0100402 free(pixline);
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000403 fclose(theme_file);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000404}
405
406
407/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200408 * Parse configuration file
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000409 * \param *cfg_filename name of the configuration file
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000410 */
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000411static void init(const char *cfg_filename)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000412{
Denys Vlasenko10544a82010-02-09 00:26:10 +0100413 static const char param_names[] ALIGN1 =
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000414 "BAR_WIDTH\0" "BAR_HEIGHT\0"
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000415 "BAR_LEFT\0" "BAR_TOP\0"
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000416 "BAR_R\0" "BAR_G\0" "BAR_B\0"
417#if DEBUG
418 "DEBUG\0"
419#endif
420 ;
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000421 char *token[2];
422 parser_t *parser = config_open2(cfg_filename, xfopen_stdin);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000423 while (config_read(parser, token, 2, 2, "#=",
Denys Vlasenko814da222010-03-14 23:59:54 +0100424 (PARSE_NORMAL | PARSE_MIN_DIE) & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
Denys Vlasenko77832482010-08-12 14:14:45 +0200425 unsigned val = xatoi_positive(token[1]);
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000426 int i = index_in_strings(param_names, token[0]);
427 if (i < 0)
Bernhard Reutner-Fischer4efcec92009-02-14 12:36:16 +0000428 bb_error_msg_and_die("syntax error: %s", token[0]);
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000429 if (i >= 0 && i < 7)
430 G.ns[i] = val;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000431#if DEBUG
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000432 if (i == 7) {
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000433 G.bdebug_messages = val;
434 if (G.bdebug_messages)
Denis Vlasenko5415c852008-07-21 23:05:26 +0000435 G.logfile_fd = xfopen_for_write("/tmp/fbsplash.log");
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000436 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000437#endif
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000438 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000439 config_close(parser);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000440}
441
442
443int fbsplash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000444int fbsplash_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000445{
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000446 const char *fb_device, *cfg_filename, *fifo_filename;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000447 FILE *fp = fp; // for compiler
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000448 char *num_buf;
449 unsigned num;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000450 bool bCursorOff;
451
452 INIT_G();
453
454 // parse command line options
455 fb_device = "/dev/fb0";
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000456 cfg_filename = NULL;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000457 fifo_filename = NULL;
458 bCursorOff = 1 & getopt32(argv, "cs:d:i:f:",
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000459 &G.image_filename, &fb_device, &cfg_filename, &fifo_filename);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000460
461 // parse configuration file
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000462 if (cfg_filename)
463 init(cfg_filename);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000464
465 // We must have -s IMG
466 if (!G.image_filename)
467 bb_show_usage();
468
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000469 fb_open(fb_device);
470
471 if (fifo_filename && bCursorOff) {
472 // hide cursor (BEFORE any fb ops)
Denys Vlasenkod9a3e892010-05-16 23:42:13 +0200473 full_write(STDOUT_FILENO, "\033[?25l", 6);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000474 }
475
476 fb_drawimage();
477
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000478 if (!fifo_filename)
479 return EXIT_SUCCESS;
480
481 fp = xfopen_stdin(fifo_filename);
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000482 if (fp != stdin) {
Denis Vlasenko72b34422008-03-27 13:14:29 +0000483 // For named pipes, we want to support this:
484 // mkfifo cmd_pipe
485 // fbsplash -f cmd_pipe .... &
486 // ...
487 // echo 33 >cmd_pipe
488 // ...
489 // echo 66 >cmd_pipe
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000490 // This means that we don't want fbsplash to get EOF
491 // when last writer closes input end.
492 // The simplest way is to open fifo for writing too
493 // and become an additional writer :)
494 open(fifo_filename, O_WRONLY); // errors are ignored
495 }
496
497 fb_drawprogressbar(0);
498 // Block on read, waiting for some input.
499 // Use of <stdio.h> style I/O allows to correctly
500 // handle a case when we have many buffered lines
501 // already in the pipe
502 while ((num_buf = xmalloc_fgetline(fp)) != NULL) {
503 if (strncmp(num_buf, "exit", 4) == 0) {
504 DEBUG_MESSAGE("exit");
505 break;
506 }
507 num = atoi(num_buf);
508 if (isdigit(num_buf[0]) && (num <= 100)) {
509#if DEBUG
Denys Vlasenko7bb346f2009-10-06 22:09:50 +0200510 DEBUG_MESSAGE(itoa(num));
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000511#endif
512 fb_drawprogressbar(num);
513 }
514 free(num_buf);
515 }
516
517 if (bCursorOff) // restore cursor
Denys Vlasenkod9a3e892010-05-16 23:42:13 +0200518 full_write(STDOUT_FILENO, "\033[?25h", 6);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000519
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000520 return EXIT_SUCCESS;
521}