blob: bc3c6105593eba7c1a85b146259002a78050e080 [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 */
Denys Vlasenkofb4da162016-11-22 23:14:24 +010023//config:config FBSPLASH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020024//config: bool "fbsplash (27 kb)"
Denys Vlasenkofb4da162016-11-22 23:14:24 +010025//config: default y
26//config: select PLATFORM_LINUX
27//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020028//config: Shows splash image and progress bar on framebuffer device.
29//config: Can be used during boot phase of an embedded device.
30//config: Usage:
31//config: - use kernel option 'vga=xxx' or otherwise enable fb device.
32//config: - put somewhere fbsplash.cfg file and an image in .ppm format.
33//config: - $ setsid fbsplash [params] &
Denys Vlasenkofb4da162016-11-22 23:14:24 +010034//config: -c: hide cursor
35//config: -d /dev/fbN: framebuffer device (if not /dev/fb0)
36//config: -s path_to_image_file (can be "-" for stdin)
37//config: -i path_to_cfg_file (can be "-" for stdin)
38//config: -f path_to_fifo (can be "-" for stdin)
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: - if you want to run it only in presence of kernel parameter:
Denys Vlasenkofb4da162016-11-22 23:14:24 +010040//config: grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] &
Denys Vlasenko72089cf2017-07-21 09:50:55 +020041//config: - commands for fifo:
Denys Vlasenkofb4da162016-11-22 23:14:24 +010042//config: "NN" (ASCII decimal number) - percentage to show on progress bar
43//config: "exit" - well you guessed it
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000044
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010045//applet:IF_FBSPLASH(APPLET(fbsplash, BB_DIR_SBIN, BB_SUID_DROP))
46
47//kbuild:lib-$(CONFIG_FBSPLASH) += fbsplash.o
48
Pere Orga5bc8c002011-04-11 03:29:49 +020049//usage:#define fbsplash_trivial_usage
50//usage: "-s IMGFILE [-c] [-d DEV] [-i INIFILE] [-f CMD]"
51//usage:#define fbsplash_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020052//usage: " -s Image"
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage: "\n -c Hide cursor"
54//usage: "\n -d Framebuffer device (default /dev/fb0)"
55//usage: "\n -i Config file (var=value):"
56//usage: "\n BAR_LEFT,BAR_TOP,BAR_WIDTH,BAR_HEIGHT"
Peter Korsgaarda82fe672018-03-29 13:35:01 +020057//usage: "\n BAR_R,BAR_G,BAR_B,IMG_LEFT,IMG_TOP"
Pere Orga5bc8c002011-04-11 03:29:49 +020058//usage: "\n -f Control pipe (else exit after drawing image)"
59//usage: "\n commands: 'NN' (% for progress bar) or 'exit'"
60
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000061#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020062#include "common_bufsiz.h"
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000063#include <linux/fb.h>
64
Denis Vlasenko25a9c172008-03-26 15:12:11 +000065/* If you want logging messages on /tmp/fbsplash.log... */
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000066#define DEBUG 0
67
Denys Vlasenko8187e012017-09-13 22:48:30 +020068#define ESC "\033"
69
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000070struct globals {
71#if DEBUG
72 bool bdebug_messages; // enable/disable logging
73 FILE *logfile_fd; // log file
74#endif
75 unsigned char *addr; // pointer to framebuffer memory
Peter Korsgaarda82fe672018-03-29 13:35:01 +020076 unsigned ns[9]; // n-parameters
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000077 const char *image_filename;
78 struct fb_var_screeninfo scr_var;
79 struct fb_fix_screeninfo scr_fix;
Nuno Lucas0e89fd92011-03-28 15:30:59 +020080 unsigned bytes_per_pixel;
Linus Walleij6d463de2012-09-06 16:52:31 +020081 // cached (8 - scr_var.COLOR.length):
82 unsigned red_shift;
83 unsigned green_shift;
84 unsigned blue_shift;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000085};
86#define G (*ptr_to_globals)
Denis Vlasenko7049ff82008-06-25 09:53:17 +000087#define INIT_G() do { \
88 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
89} while (0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +000090
Denis Vlasenko0f99d492008-07-24 23:38:04 +000091#define nbar_width ns[0] // progress bar width
92#define nbar_height ns[1] // progress bar height
93#define nbar_posx ns[2] // progress bar horizontal position
94#define nbar_posy ns[3] // progress bar vertical position
95#define nbar_colr ns[4] // progress bar color red component
96#define nbar_colg ns[5] // progress bar color green component
97#define nbar_colb ns[6] // progress bar color blue component
Peter Korsgaarda82fe672018-03-29 13:35:01 +020098#define img_posx ns[7] // image horizontal position
99#define img_posy ns[8] // image vertical position
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000100
101#if DEBUG
102#define DEBUG_MESSAGE(strMessage, args...) \
103 if (G.bdebug_messages) { \
104 fprintf(G.logfile_fd, "[%s][%s] - %s\n", \
105 __FILE__, __FUNCTION__, strMessage); \
106 }
107#else
108#define DEBUG_MESSAGE(...) ((void)0)
109#endif
110
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200111/**
112 * Configure palette for RGB:332
113 */
114static void fb_setpal(int fd)
115{
116 struct fb_cmap cmap;
117 /* fb colors are 16 bit */
118 unsigned short red[256], green[256], blue[256];
119 unsigned i;
120
121 /* RGB:332 */
122 for (i = 0; i < 256; i++) {
123 /* Color is encoded in pixel value as rrrgggbb.
124 * 3-bit color is mapped to 16-bit one as:
125 * 000 -> 00000000 00000000
126 * 001 -> 00100100 10010010
127 * ...
128 * 011 -> 01101101 10110110
129 * 100 -> 10010010 01001001
130 * ...
131 * 111 -> 11111111 11111111
132 */
133 red[i] = (( i >> 5 ) * 0x9249) >> 2; // rrr * 00 10010010 01001001 >> 2
134 green[i] = (((i >> 2) & 0x7) * 0x9249) >> 2; // ggg * 00 10010010 01001001 >> 2
135 /* 2-bit color is easier: */
136 blue[i] = ( i & 0x3) * 0x5555; // bb * 01010101 01010101
137 }
138
139 cmap.start = 0;
140 cmap.len = 256;
141 cmap.red = red;
142 cmap.green = green;
143 cmap.blue = blue;
144 cmap.transp = 0;
145
146 xioctl(fd, FBIOPUTCMAP, &cmap);
147}
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000148
149/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200150 * Open and initialize the framebuffer device
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000151 * \param *strfb_device pointer to framebuffer device
152 */
153static void fb_open(const char *strfb_device)
154{
155 int fbfd = xopen(strfb_device, O_RDWR);
156
157 // framebuffer properties
158 xioctl(fbfd, FBIOGET_VSCREENINFO, &G.scr_var);
159 xioctl(fbfd, FBIOGET_FSCREENINFO, &G.scr_fix);
160
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200161 switch (G.scr_var.bits_per_pixel) {
162 case 8:
163 fb_setpal(fbfd);
164 break;
165
166 case 16:
167 case 24:
168 case 32:
169 break;
170
171 default:
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200172 bb_error_msg_and_die("unsupported %u bpp", (int)G.scr_var.bits_per_pixel);
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200173 break;
174 }
175
Linus Walleij6d463de2012-09-06 16:52:31 +0200176 G.red_shift = 8 - G.scr_var.red.length;
177 G.green_shift = 8 - G.scr_var.green.length;
178 G.blue_shift = 8 - G.scr_var.blue.length;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200179 G.bytes_per_pixel = (G.scr_var.bits_per_pixel + 7) >> 3;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000180
181 // map the device in memory
182 G.addr = mmap(NULL,
Timo Teräs82c2fad2015-10-26 09:40:31 +0200183 (G.scr_var.yres_virtual ?: G.scr_var.yres) * G.scr_fix.line_length,
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000184 PROT_WRITE, MAP_SHARED, fbfd, 0);
185 if (G.addr == MAP_FAILED)
Bernhard Reutner-Fischer4efcec92009-02-14 12:36:16 +0000186 bb_perror_msg_and_die("mmap");
Dan Fandrich07078c22011-01-26 11:30:34 -0800187
188 // point to the start of the visible screen
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200189 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 +0000190 close(fbfd);
191}
192
193
194/**
Linus Walleij6d463de2012-09-06 16:52:31 +0200195 * Return pixel value of the passed RGB color.
196 * This is performance critical fn.
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200197 */
198static unsigned fb_pixel_value(unsigned r, unsigned g, unsigned b)
199{
Linus Walleij6d463de2012-09-06 16:52:31 +0200200 /* We assume that the r,g,b values are <= 255 */
201
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200202 if (G.bytes_per_pixel == 1) {
203 r = r & 0xe0; // 3-bit red
204 g = (g >> 3) & 0x1c; // 3-bit green
205 b = b >> 6; // 2-bit blue
206 return r + g + b;
207 }
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200208 if (G.bytes_per_pixel == 2) {
Linus Walleij6d463de2012-09-06 16:52:31 +0200209 // ARM PL110 on Integrator/CP has RGBA5551 bit arrangement.
210 // We want to support bit locations like that.
211 //
212 // First shift out unused bits
213 r = r >> G.red_shift;
214 g = g >> G.green_shift;
215 b = b >> G.blue_shift;
216 // Then shift the remaining bits to their offset
217 return (r << G.scr_var.red.offset) +
218 (g << G.scr_var.green.offset) +
219 (b << G.scr_var.blue.offset);
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200220 }
221 // RGB 888
222 return b + (g << 8) + (r << 16);
223}
224
225/**
226 * Draw pixel on framebuffer
227 */
228static void fb_write_pixel(unsigned char *addr, unsigned pixel)
229{
230 switch (G.bytes_per_pixel) {
Peter Korsgaardcd06e062011-10-17 05:31:52 +0200231 case 1:
232 *addr = pixel;
233 break;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200234 case 2:
235 *(uint16_t *)addr = pixel;
236 break;
237 case 4:
238 *(uint32_t *)addr = pixel;
239 break;
240 default: // 24 bits per pixel
241 addr[0] = pixel;
242 addr[1] = pixel >> 8;
243 addr[2] = pixel >> 16;
244 }
245}
246
247
248/**
249 * Draw hollow rectangle on framebuffer
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000250 */
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000251static void fb_drawrectangle(void)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000252{
253 int cnt;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200254 unsigned thispix;
255 unsigned char *ptr1, *ptr2;
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000256 unsigned char nred = G.nbar_colr/2;
257 unsigned char ngreen = G.nbar_colg/2;
258 unsigned char nblue = G.nbar_colb/2;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000259
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200260 thispix = fb_pixel_value(nred, ngreen, nblue);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000261
262 // horizontal lines
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800263 ptr1 = G.addr + G.nbar_posy * G.scr_fix.line_length + G.nbar_posx * G.bytes_per_pixel;
264 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 +0000265 cnt = G.nbar_width - 1;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000266 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200267 fb_write_pixel(ptr1, thispix);
268 fb_write_pixel(ptr2, thispix);
269 ptr1 += G.bytes_per_pixel;
270 ptr2 += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000271 } while (--cnt >= 0);
272
273 // vertical lines
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800274 ptr1 = G.addr + G.nbar_posy * G.scr_fix.line_length + G.nbar_posx * G.bytes_per_pixel;
275 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 +0100276 cnt = G.nbar_height - 1;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000277 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200278 fb_write_pixel(ptr1, thispix);
279 fb_write_pixel(ptr2, thispix);
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800280 ptr1 += G.scr_fix.line_length;
281 ptr2 += G.scr_fix.line_length;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000282 } while (--cnt >= 0);
283}
284
285
286/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200287 * Draw filled rectangle on framebuffer
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000288 * \param nx1pos,ny1pos upper left position
289 * \param nx2pos,ny2pos down right position
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000290 * \param nred,ngreen,nblue rgb color
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000291 */
292static void fb_drawfullrectangle(int nx1pos, int ny1pos, int nx2pos, int ny2pos,
293 unsigned char nred, unsigned char ngreen, unsigned char nblue)
294{
295 int cnt1, cnt2, nypos;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200296 unsigned thispix;
297 unsigned char *ptr;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000298
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200299 thispix = fb_pixel_value(nred, ngreen, nblue);
Denis Vlasenko1f228982008-04-22 00:16:29 +0000300
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000301 cnt1 = ny2pos - ny1pos;
302 nypos = ny1pos;
303 do {
Yin Kangkai3ac066c2012-02-23 15:56:36 +0800304 ptr = G.addr + nypos * G.scr_fix.line_length + nx1pos * G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000305 cnt2 = nx2pos - nx1pos;
306 do {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200307 fb_write_pixel(ptr, thispix);
308 ptr += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000309 } while (--cnt2 >= 0);
Denis Vlasenko1f228982008-04-22 00:16:29 +0000310
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000311 nypos++;
312 } while (--cnt1 >= 0);
313}
314
315
316/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200317 * Draw a progress bar on framebuffer
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000318 * \param percent percentage of loading
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000319 */
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000320static void fb_drawprogressbar(unsigned percent)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000321{
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200322 int left_x, top_y, pos_x;
323 unsigned width, height;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000324
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000325 // outer box
326 left_x = G.nbar_posx;
327 top_y = G.nbar_posy;
328 width = G.nbar_width - 1;
329 height = G.nbar_height - 1;
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200330 if ((int)(height | width) < 0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000331 return;
332 // NB: "width" of 1 actually makes rect with width of 2!
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000333 fb_drawrectangle();
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000334
335 // inner "empty" rectangle
336 left_x++;
337 top_y++;
338 width -= 2;
339 height -= 2;
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200340 if ((int)(height | width) < 0)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000341 return;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000342
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200343 pos_x = left_x;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000344 if (percent > 0) {
Timo Teräs67dc7b22012-10-17 19:39:34 +0200345 int i, y;
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200346
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000347 // actual progress bar
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200348 pos_x += (unsigned)(width * percent) / 100;
349
350 y = top_y;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000351 i = height;
352 if (height == 0)
353 height++; // divide by 0 is bad
354 while (i >= 0) {
355 // draw one-line thick "rectangle"
356 // top line will have gray lvl 200, bottom one 100
Timo Teräs67dc7b22012-10-17 19:39:34 +0200357 unsigned gray_level = 100 + (unsigned)i*100 / height;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000358 fb_drawfullrectangle(
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200359 left_x, y, pos_x, y,
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000360 gray_level, gray_level, gray_level);
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200361 y++;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000362 i--;
363 }
364 }
Peter Korsgaarde4fa7b72011-10-17 04:35:23 +0200365
366 fb_drawfullrectangle(
367 pos_x, top_y,
368 left_x + width, top_y + height,
369 G.nbar_colr, G.nbar_colg, G.nbar_colb);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000370}
371
372
373/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200374 * Draw image from PPM file
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000375 */
376static void fb_drawimage(void)
377{
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000378 FILE *theme_file;
Denys Vlasenko814da222010-03-14 23:59:54 +0100379 char *read_ptr;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000380 unsigned char *pixline;
381 unsigned i, j, width, height, line_size;
382
Denys Vlasenko814da222010-03-14 23:59:54 +0100383 if (LONE_DASH(G.image_filename)) {
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100384 theme_file = stdin;
Denys Vlasenko814da222010-03-14 23:59:54 +0100385 } else {
Denys Vlasenko640ce3d2014-02-02 02:06:38 +0100386 int fd = open_zipped(G.image_filename, /*fail_if_not_compressed:*/ 0);
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100387 if (fd < 0)
388 bb_simple_perror_msg_and_die(G.image_filename);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +0100389 theme_file = xfdopen_for_read(fd);
Vladimir Dronnikov6eaac022009-11-07 04:14:50 +0100390 }
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000391
Denys Vlasenko814da222010-03-14 23:59:54 +0100392 /* Parse ppm header:
393 * - Magic: two characters "P6".
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000394 * - Whitespace (blanks, TABs, CRs, LFs).
395 * - A width, formatted as ASCII characters in decimal.
396 * - Whitespace.
Denys Vlasenko814da222010-03-14 23:59:54 +0100397 * - A height, ASCII decimal.
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000398 * - Whitespace.
Denys Vlasenko814da222010-03-14 23:59:54 +0100399 * - The maximum color value, ASCII decimal, in 0..65535
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000400 * - Newline or other single whitespace character.
Denys Vlasenko814da222010-03-14 23:59:54 +0100401 * (we support newline only)
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000402 * - A raster of Width * Height pixels in triplets of rgb
Denys Vlasenko814da222010-03-14 23:59:54 +0100403 * in pure binary by 1 or 2 bytes. (we support only 1 byte)
Bernhard Reutner-Fischer8dcb33c2009-02-18 15:13:05 +0000404 */
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200405#define concat_buf bb_common_bufsiz1
406 setup_common_bufsiz();
407
Denys Vlasenko814da222010-03-14 23:59:54 +0100408 read_ptr = concat_buf;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000409 while (1) {
Denys Vlasenko814da222010-03-14 23:59:54 +0100410 int w, h, max_color_val;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200411 int rem = concat_buf + COMMON_BUFSIZE - read_ptr;
Denys Vlasenko814da222010-03-14 23:59:54 +0100412 if (rem < 2
413 || fgets(read_ptr, rem, theme_file) == NULL
414 ) {
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000415 bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
Denys Vlasenko814da222010-03-14 23:59:54 +0100416 }
417 read_ptr = strchrnul(read_ptr, '#');
418 *read_ptr = '\0'; /* ignore #comments */
419 if (sscanf(concat_buf, "P6 %u %u %u", &w, &h, &max_color_val) == 3
420 && max_color_val <= 255
421 ) {
422 width = w; /* w is on stack, width may be in register */
423 height = h;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000424 break;
Denys Vlasenko814da222010-03-14 23:59:54 +0100425 }
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000426 }
427
428 line_size = width*3;
Denys Vlasenko814da222010-03-14 23:59:54 +0100429 pixline = xmalloc(line_size);
430
Peter Korsgaarda82fe672018-03-29 13:35:01 +0200431 if ((width + G.img_posx) > G.scr_var.xres)
432 width = G.scr_var.xres - G.img_posx;
433 if ((height + G.img_posy) > G.scr_var.yres)
434 height = G.scr_var.yres - G.img_posy;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000435 for (j = 0; j < height; j++) {
Denys Vlasenko814da222010-03-14 23:59:54 +0100436 unsigned char *pixel;
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200437 unsigned char *src;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000438
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000439 if (fread(pixline, 1, line_size, theme_file) != line_size)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000440 bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
Denys Vlasenko814da222010-03-14 23:59:54 +0100441 pixel = pixline;
Peter Korsgaarda82fe672018-03-29 13:35:01 +0200442 src = G.addr + (G.img_posy + j) * G.scr_fix.line_length + G.img_posx * G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000443 for (i = 0; i < width; i++) {
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200444 unsigned thispix = fb_pixel_value(pixel[0], pixel[1], pixel[2]);
445 fb_write_pixel(src, thispix);
446 src += G.bytes_per_pixel;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000447 pixel += 3;
448 }
449 }
Denys Vlasenko814da222010-03-14 23:59:54 +0100450 free(pixline);
Bernhard Reutner-Fischer051fdb92009-02-16 12:36:50 +0000451 fclose(theme_file);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000452}
453
454
455/**
Nuno Lucas0e89fd92011-03-28 15:30:59 +0200456 * Parse configuration file
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000457 * \param *cfg_filename name of the configuration file
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000458 */
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000459static void init(const char *cfg_filename)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000460{
Denys Vlasenko10544a82010-02-09 00:26:10 +0100461 static const char param_names[] ALIGN1 =
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000462 "BAR_WIDTH\0" "BAR_HEIGHT\0"
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000463 "BAR_LEFT\0" "BAR_TOP\0"
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000464 "BAR_R\0" "BAR_G\0" "BAR_B\0"
Peter Korsgaarda82fe672018-03-29 13:35:01 +0200465 "IMG_LEFT\0" "IMG_TOP\0"
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000466#if DEBUG
467 "DEBUG\0"
468#endif
469 ;
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000470 char *token[2];
471 parser_t *parser = config_open2(cfg_filename, xfopen_stdin);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000472 while (config_read(parser, token, 2, 2, "#=",
Denys Vlasenko814da222010-03-14 23:59:54 +0100473 (PARSE_NORMAL | PARSE_MIN_DIE) & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
Denys Vlasenko77832482010-08-12 14:14:45 +0200474 unsigned val = xatoi_positive(token[1]);
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000475 int i = index_in_strings(param_names, token[0]);
476 if (i < 0)
Bernhard Reutner-Fischer4efcec92009-02-14 12:36:16 +0000477 bb_error_msg_and_die("syntax error: %s", token[0]);
Peter Korsgaarda82fe672018-03-29 13:35:01 +0200478 if (i >= 0 && i < 9)
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000479 G.ns[i] = val;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000480#if DEBUG
Peter Korsgaarda82fe672018-03-29 13:35:01 +0200481 if (i == 9) {
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000482 G.bdebug_messages = val;
483 if (G.bdebug_messages)
Denis Vlasenko5415c852008-07-21 23:05:26 +0000484 G.logfile_fd = xfopen_for_write("/tmp/fbsplash.log");
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000485 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000486#endif
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000487 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000488 config_close(parser);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000489}
490
491
492int fbsplash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000493int fbsplash_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000494{
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000495 const char *fb_device, *cfg_filename, *fifo_filename;
Denis Vlasenko11b9f262008-03-26 20:06:24 +0000496 FILE *fp = fp; // for compiler
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000497 char *num_buf;
498 unsigned num;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000499 bool bCursorOff;
500
501 INIT_G();
502
503 // parse command line options
504 fb_device = "/dev/fb0";
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000505 cfg_filename = NULL;
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000506 fifo_filename = NULL;
507 bCursorOff = 1 & getopt32(argv, "cs:d:i:f:",
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000508 &G.image_filename, &fb_device, &cfg_filename, &fifo_filename);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000509
510 // parse configuration file
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000511 if (cfg_filename)
512 init(cfg_filename);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000513
514 // We must have -s IMG
515 if (!G.image_filename)
516 bb_show_usage();
517
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000518 fb_open(fb_device);
519
520 if (fifo_filename && bCursorOff) {
521 // hide cursor (BEFORE any fb ops)
Denys Vlasenko8187e012017-09-13 22:48:30 +0200522 full_write(STDOUT_FILENO, ESC"[?25l", 6);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000523 }
524
525 fb_drawimage();
526
Denis Vlasenkoa38ba592008-03-28 11:17:35 +0000527 if (!fifo_filename)
528 return EXIT_SUCCESS;
529
530 fp = xfopen_stdin(fifo_filename);
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000531 if (fp != stdin) {
Denis Vlasenko72b34422008-03-27 13:14:29 +0000532 // For named pipes, we want to support this:
533 // mkfifo cmd_pipe
534 // fbsplash -f cmd_pipe .... &
535 // ...
536 // echo 33 >cmd_pipe
537 // ...
538 // echo 66 >cmd_pipe
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000539 // This means that we don't want fbsplash to get EOF
540 // when last writer closes input end.
541 // The simplest way is to open fifo for writing too
542 // and become an additional writer :)
543 open(fifo_filename, O_WRONLY); // errors are ignored
544 }
545
546 fb_drawprogressbar(0);
547 // Block on read, waiting for some input.
548 // Use of <stdio.h> style I/O allows to correctly
549 // handle a case when we have many buffered lines
550 // already in the pipe
551 while ((num_buf = xmalloc_fgetline(fp)) != NULL) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100552 if (is_prefixed_with(num_buf, "exit")) {
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000553 DEBUG_MESSAGE("exit");
554 break;
555 }
556 num = atoi(num_buf);
557 if (isdigit(num_buf[0]) && (num <= 100)) {
558#if DEBUG
Denys Vlasenko7bb346f2009-10-06 22:09:50 +0200559 DEBUG_MESSAGE(itoa(num));
Denis Vlasenko7f8f0fa2008-04-04 20:38:49 +0000560#endif
561 fb_drawprogressbar(num);
562 }
563 free(num_buf);
564 }
565
566 if (bCursorOff) // restore cursor
Denys Vlasenko8187e012017-09-13 22:48:30 +0200567 full_write(STDOUT_FILENO, ESC"[?25h", 6);
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000568
Denis Vlasenkoc6dbb852008-03-26 14:57:49 +0000569 return EXIT_SUCCESS;
570}