fbsplash.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2008 Michele Sanges <michele.sanges@otomelara.it>,
  4. * <michele.sanges@gmail.it>
  5. *
  6. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  7. *
  8. * Usage:
  9. * - use kernel option 'vga=xxx' or otherwise enable framebuffer device.
  10. * - put somewhere fbsplash.cfg file and an image in .ppm format.
  11. * - run applet: $ setsid fbsplash [params] &
  12. * -c: hide cursor
  13. * -d /dev/fbN: framebuffer device (if not /dev/fb0)
  14. * -s path_to_image_file (can be "-" for stdin)
  15. * -i path_to_cfg_file
  16. * -f path_to_fifo (can be "-" for stdin)
  17. * - if you want to run it only in presence of a kernel parameter
  18. * (for example fbsplash=on), use:
  19. * grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params]
  20. * - commands for fifo:
  21. * "NN" (ASCII decimal number) - percentage to show on progress bar.
  22. * "exit" (or just close fifo) - well you guessed it.
  23. */
  24. #include "libbb.h"
  25. #include <linux/fb.h>
  26. /* If you want logging messages on /tmp/fbsplash.log... */
  27. #define DEBUG 0
  28. #define BYTES_PER_PIXEL 2
  29. typedef unsigned short DATA;
  30. struct globals {
  31. #if DEBUG
  32. bool bdebug_messages; // enable/disable logging
  33. FILE *logfile_fd; // log file
  34. #endif
  35. unsigned char *addr; // pointer to framebuffer memory
  36. unsigned nbar_width; // progress bar width
  37. unsigned nbar_height; // progress bar height
  38. unsigned nbar_posx; // progress bar horizontal position
  39. unsigned nbar_posy; // progress bar vertical position
  40. unsigned char nbar_colr; // progress bar color red component
  41. unsigned char nbar_colg; // progress bar color green component
  42. unsigned char nbar_colb; // progress bar color blue component
  43. const char *image_filename;
  44. struct fb_var_screeninfo scr_var;
  45. struct fb_fix_screeninfo scr_fix;
  46. };
  47. #define G (*ptr_to_globals)
  48. #define INIT_G() do { \
  49. SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
  50. } while (0)
  51. #if DEBUG
  52. #define DEBUG_MESSAGE(strMessage, args...) \
  53. if (G.bdebug_messages) { \
  54. fprintf(G.logfile_fd, "[%s][%s] - %s\n", \
  55. __FILE__, __FUNCTION__, strMessage); \
  56. }
  57. #else
  58. #define DEBUG_MESSAGE(...) ((void)0)
  59. #endif
  60. /**
  61. * Open and initialize the framebuffer device
  62. * \param *strfb_device pointer to framebuffer device
  63. */
  64. static void fb_open(const char *strfb_device)
  65. {
  66. int fbfd = xopen(strfb_device, O_RDWR);
  67. // framebuffer properties
  68. xioctl(fbfd, FBIOGET_VSCREENINFO, &G.scr_var);
  69. xioctl(fbfd, FBIOGET_FSCREENINFO, &G.scr_fix);
  70. if (G.scr_var.bits_per_pixel != 16)
  71. bb_error_msg_and_die("only 16 bpp is supported");
  72. // map the device in memory
  73. G.addr = mmap(NULL,
  74. G.scr_var.xres * G.scr_var.yres
  75. * BYTES_PER_PIXEL /*(G.scr_var.bits_per_pixel / 8)*/ ,
  76. PROT_WRITE, MAP_SHARED, fbfd, 0);
  77. if (G.addr == MAP_FAILED)
  78. bb_perror_msg_and_die("can't mmap %s", strfb_device);
  79. close(fbfd);
  80. }
  81. /**
  82. * Draw hollow rectangle on framebuffer
  83. */
  84. static void fb_drawrectangle(void)
  85. {
  86. int cnt;
  87. DATA thispix;
  88. DATA *ptr1, *ptr2;
  89. unsigned char nred = G.nbar_colr/2;
  90. unsigned char ngreen = G.nbar_colg/2;
  91. unsigned char nblue = G.nbar_colb/2;
  92. nred >>= 3; // 5-bit red
  93. ngreen >>= 2; // 6-bit green
  94. nblue >>= 3; // 5-bit blue
  95. thispix = nblue + (ngreen << 5) + (nred << (5+6));
  96. // horizontal lines
  97. ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  98. ptr2 = (DATA*)(G.addr + ((G.nbar_posy + G.nbar_height - 1) * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  99. cnt = G.nbar_width - 1;
  100. do {
  101. *ptr1++ = thispix;
  102. *ptr2++ = thispix;
  103. } while (--cnt >= 0);
  104. // vertical lines
  105. ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
  106. ptr2 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx + G.nbar_width - 1) * BYTES_PER_PIXEL);
  107. cnt = G.nbar_posy + G.nbar_height - 1 - G.nbar_posy;
  108. do {
  109. *ptr1 = thispix; ptr1 += G.scr_var.xres;
  110. *ptr2 = thispix; ptr2 += G.scr_var.xres;
  111. } while (--cnt >= 0);
  112. }
  113. /**
  114. * Draw filled rectangle on framebuffer
  115. * \param nx1pos,ny1pos upper left position
  116. * \param nx2pos,ny2pos down right position
  117. * \param nred,ngreen,nblue rgb color
  118. */
  119. static void fb_drawfullrectangle(int nx1pos, int ny1pos, int nx2pos, int ny2pos,
  120. unsigned char nred, unsigned char ngreen, unsigned char nblue)
  121. {
  122. int cnt1, cnt2, nypos;
  123. DATA thispix;
  124. DATA *ptr;
  125. nred >>= 3; // 5-bit red
  126. ngreen >>= 2; // 6-bit green
  127. nblue >>= 3; // 5-bit blue
  128. thispix = nblue + (ngreen << 5) + (nred << (5+6));
  129. cnt1 = ny2pos - ny1pos;
  130. nypos = ny1pos;
  131. do {
  132. ptr = (DATA*)(G.addr + (nypos * G.scr_var.xres + nx1pos) * BYTES_PER_PIXEL);
  133. cnt2 = nx2pos - nx1pos;
  134. do {
  135. *ptr++ = thispix;
  136. } while (--cnt2 >= 0);
  137. nypos++;
  138. } while (--cnt1 >= 0);
  139. }
  140. /**
  141. * Draw a progress bar on framebuffer
  142. * \param percent percentage of loading
  143. */
  144. static void fb_drawprogressbar(unsigned percent)
  145. {
  146. int i, left_x, top_y, width, height;
  147. // outer box
  148. left_x = G.nbar_posx;
  149. top_y = G.nbar_posy;
  150. width = G.nbar_width - 1;
  151. height = G.nbar_height - 1;
  152. if ((height | width) < 0)
  153. return;
  154. // NB: "width" of 1 actually makes rect with width of 2!
  155. fb_drawrectangle();
  156. // inner "empty" rectangle
  157. left_x++;
  158. top_y++;
  159. width -= 2;
  160. height -= 2;
  161. if ((height | width) < 0)
  162. return;
  163. fb_drawfullrectangle(
  164. left_x, top_y,
  165. left_x + width, top_y + height,
  166. G.nbar_colr, G.nbar_colg, G.nbar_colb);
  167. if (percent > 0) {
  168. // actual progress bar
  169. width = width * percent / 100;
  170. i = height;
  171. if (height == 0)
  172. height++; // divide by 0 is bad
  173. while (i >= 0) {
  174. // draw one-line thick "rectangle"
  175. // top line will have gray lvl 200, bottom one 100
  176. unsigned gray_level = 100 + i*100/height;
  177. fb_drawfullrectangle(
  178. left_x, top_y, left_x + width, top_y,
  179. gray_level, gray_level, gray_level);
  180. top_y++;
  181. i--;
  182. }
  183. }
  184. }
  185. /**
  186. * Draw image from PPM file
  187. */
  188. static void fb_drawimage(void)
  189. {
  190. char head[256];
  191. char s[80];
  192. FILE *theme_file;
  193. unsigned char *pixline;
  194. unsigned i, j, width, height, line_size;
  195. memset(head, 0, sizeof(head));
  196. theme_file = xfopen_stdin(G.image_filename);
  197. // parse ppm header
  198. while (1) {
  199. if (fgets(s, sizeof(s), theme_file) == NULL)
  200. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  201. if (s[0] == '#')
  202. continue;
  203. if (strlen(head) + strlen(s) >= sizeof(head))
  204. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  205. strcat(head, s);
  206. if (head[0] != 'P' || head[1] != '6')
  207. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  208. // width, height, max_color_val
  209. if (sscanf(head, "P6 %u %u %u", &width, &height, &i) == 3)
  210. break;
  211. // TODO: i must be <= 255!
  212. }
  213. line_size = width*3;
  214. if (width > G.scr_var.xres)
  215. width = G.scr_var.xres;
  216. if (height > G.scr_var.yres)
  217. height = G.scr_var.yres;
  218. pixline = xmalloc(line_size);
  219. for (j = 0; j < height; j++) {
  220. unsigned char *pixel = pixline;
  221. DATA *src = (DATA *)(G.addr + j * G.scr_fix.line_length);
  222. if (fread(pixline, 1, line_size, theme_file) != line_size)
  223. bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
  224. for (i = 0; i < width; i++) {
  225. unsigned thispix;
  226. thispix = (((unsigned)pixel[0] << 8) & 0xf800)
  227. | (((unsigned)pixel[1] << 3) & 0x07e0)
  228. | (((unsigned)pixel[2] >> 3));
  229. *src++ = thispix;
  230. pixel += 3;
  231. }
  232. }
  233. free(pixline);
  234. fclose(theme_file);
  235. }
  236. /**
  237. * Parse configuration file
  238. * \param *cfg_filename name of the configuration file
  239. */
  240. static void init(const char *cfg_filename)
  241. {
  242. static const char const param_names[] ALIGN1 =
  243. "BAR_LEFT\0" "BAR_TOP\0"
  244. "BAR_WIDTH\0" "BAR_HEIGHT\0"
  245. "BAR_R\0" "BAR_G\0" "BAR_B\0"
  246. #if DEBUG
  247. "DEBUG\0"
  248. #endif
  249. ;
  250. FILE *inifile;
  251. char *buf;
  252. inifile = xfopen_stdin(cfg_filename);
  253. while ((buf = xmalloc_fgetline(inifile)) != NULL) {
  254. char *value_str;
  255. int val;
  256. if (*buf == '#') { // it's a comment
  257. free(buf);
  258. continue;
  259. }
  260. value_str = strchr(buf, '=');
  261. if (!value_str)
  262. goto err;
  263. *value_str++ = '\0';
  264. val = xatoi_u(value_str);
  265. switch (index_in_strings(param_names, buf)) {
  266. case 0:
  267. // progress bar horizontal position
  268. G.nbar_posx = val;
  269. break;
  270. case 1:
  271. // progress bar vertical position
  272. G.nbar_posy = val;
  273. break;
  274. case 2:
  275. // progress bar width
  276. G.nbar_width = val;
  277. break;
  278. case 3:
  279. // progress bar height
  280. G.nbar_height = val;
  281. break;
  282. case 4:
  283. // progress bar color - red component
  284. G.nbar_colr = val;
  285. break;
  286. case 5:
  287. // progress bar color - green component
  288. G.nbar_colg = val;
  289. break;
  290. case 6:
  291. // progress bar color - blue component
  292. G.nbar_colb = val;
  293. break;
  294. #if DEBUG
  295. case 7:
  296. G.bdebug_messages = val;
  297. if (G.bdebug_messages)
  298. G.logfile_fd = xfopen("/tmp/fbsplash.log", "w");
  299. break;
  300. #endif
  301. err:
  302. default:
  303. bb_error_msg_and_die("syntax error: '%s'", buf);
  304. }
  305. free(buf);
  306. }
  307. fclose(inifile);
  308. }
  309. int fbsplash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  310. int fbsplash_main(int argc ATTRIBUTE_UNUSED, char **argv)
  311. {
  312. const char *fb_device, *cfg_filename, *fifo_filename;
  313. FILE *fp = fp; // for compiler
  314. char *num_buf;
  315. unsigned num;
  316. bool bCursorOff;
  317. INIT_G();
  318. // parse command line options
  319. fb_device = "/dev/fb0";
  320. cfg_filename = NULL;
  321. fifo_filename = NULL;
  322. bCursorOff = 1 & getopt32(argv, "cs:d:i:f:",
  323. &G.image_filename, &fb_device, &cfg_filename, &fifo_filename);
  324. // parse configuration file
  325. if (cfg_filename)
  326. init(cfg_filename);
  327. // We must have -s IMG
  328. if (!G.image_filename)
  329. bb_show_usage();
  330. fb_open(fb_device);
  331. if (fifo_filename && bCursorOff) {
  332. // hide cursor (BEFORE any fb ops)
  333. full_write(STDOUT_FILENO, "\x1b" "[?25l", 6);
  334. }
  335. fb_drawimage();
  336. if (!fifo_filename)
  337. return EXIT_SUCCESS;
  338. fp = xfopen_stdin(fifo_filename);
  339. if (fp != stdin) {
  340. // For named pipes, we want to support this:
  341. // mkfifo cmd_pipe
  342. // fbsplash -f cmd_pipe .... &
  343. // ...
  344. // echo 33 >cmd_pipe
  345. // ...
  346. // echo 66 >cmd_pipe
  347. // This means that we don't want fbsplash to get EOF
  348. // when last writer closes input end.
  349. // The simplest way is to open fifo for writing too
  350. // and become an additional writer :)
  351. open(fifo_filename, O_WRONLY); // errors are ignored
  352. }
  353. fb_drawprogressbar(0);
  354. // Block on read, waiting for some input.
  355. // Use of <stdio.h> style I/O allows to correctly
  356. // handle a case when we have many buffered lines
  357. // already in the pipe
  358. while ((num_buf = xmalloc_fgetline(fp)) != NULL) {
  359. if (strncmp(num_buf, "exit", 4) == 0) {
  360. DEBUG_MESSAGE("exit");
  361. break;
  362. }
  363. num = atoi(num_buf);
  364. if (isdigit(num_buf[0]) && (num <= 100)) {
  365. #if DEBUG
  366. char strVal[10];
  367. sprintf(strVal, "%d", num);
  368. DEBUG_MESSAGE(strVal);
  369. #endif
  370. fb_drawprogressbar(num);
  371. }
  372. free(num_buf);
  373. }
  374. if (bCursorOff) // restore cursor
  375. full_write(STDOUT_FILENO, "\x1b" "[?25h", 6);
  376. return EXIT_SUCCESS;
  377. }