2008-03-26 20:27:49 +05:30
|
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
|
/*
|
2009-01-27 18:26:33 +05:30
|
|
|
|
* Copyright (C) 2008 Michele Sanges <michele.sanges@gmail.com>
|
2008-03-26 20:27:49 +05:30
|
|
|
|
*
|
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
|
*
|
|
|
|
|
* Usage:
|
|
|
|
|
* - use kernel option 'vga=xxx' or otherwise enable framebuffer device.
|
2008-03-26 20:42:11 +05:30
|
|
|
|
* - put somewhere fbsplash.cfg file and an image in .ppm format.
|
2008-03-26 20:27:49 +05:30
|
|
|
|
* - run applet: $ setsid fbsplash [params] &
|
2008-04-22 05:46:29 +05:30
|
|
|
|
* -c: hide cursor
|
|
|
|
|
* -d /dev/fbN: framebuffer device (if not /dev/fb0)
|
|
|
|
|
* -s path_to_image_file (can be "-" for stdin)
|
|
|
|
|
* -i path_to_cfg_file
|
|
|
|
|
* -f path_to_fifo (can be "-" for stdin)
|
2008-03-26 20:42:11 +05:30
|
|
|
|
* - if you want to run it only in presence of a kernel parameter
|
|
|
|
|
* (for example fbsplash=on), use:
|
2008-03-26 20:27:49 +05:30
|
|
|
|
* grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params]
|
|
|
|
|
* - commands for fifo:
|
|
|
|
|
* "NN" (ASCII decimal number) - percentage to show on progress bar.
|
|
|
|
|
* "exit" (or just close fifo) - well you guessed it.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
#include <linux/fb.h>
|
|
|
|
|
|
2008-03-26 20:42:11 +05:30
|
|
|
|
/* If you want logging messages on /tmp/fbsplash.log... */
|
2008-03-26 20:27:49 +05:30
|
|
|
|
#define DEBUG 0
|
|
|
|
|
|
|
|
|
|
#define BYTES_PER_PIXEL 2
|
|
|
|
|
|
|
|
|
|
typedef unsigned short DATA;
|
|
|
|
|
|
|
|
|
|
struct globals {
|
|
|
|
|
#if DEBUG
|
|
|
|
|
bool bdebug_messages; // enable/disable logging
|
|
|
|
|
FILE *logfile_fd; // log file
|
|
|
|
|
#endif
|
|
|
|
|
unsigned char *addr; // pointer to framebuffer memory
|
2008-07-25 05:08:04 +05:30
|
|
|
|
unsigned ns[7]; // n-parameters
|
2008-03-26 20:27:49 +05:30
|
|
|
|
const char *image_filename;
|
|
|
|
|
struct fb_var_screeninfo scr_var;
|
|
|
|
|
struct fb_fix_screeninfo scr_fix;
|
|
|
|
|
};
|
|
|
|
|
#define G (*ptr_to_globals)
|
2008-06-25 15:23:17 +05:30
|
|
|
|
#define INIT_G() do { \
|
|
|
|
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
|
|
|
|
|
} while (0)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
2008-07-25 05:08:04 +05:30
|
|
|
|
#define nbar_width ns[0] // progress bar width
|
|
|
|
|
#define nbar_height ns[1] // progress bar height
|
|
|
|
|
#define nbar_posx ns[2] // progress bar horizontal position
|
|
|
|
|
#define nbar_posy ns[3] // progress bar vertical position
|
|
|
|
|
#define nbar_colr ns[4] // progress bar color red component
|
|
|
|
|
#define nbar_colg ns[5] // progress bar color green component
|
|
|
|
|
#define nbar_colb ns[6] // progress bar color blue component
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
#define DEBUG_MESSAGE(strMessage, args...) \
|
|
|
|
|
if (G.bdebug_messages) { \
|
|
|
|
|
fprintf(G.logfile_fd, "[%s][%s] - %s\n", \
|
|
|
|
|
__FILE__, __FUNCTION__, strMessage); \
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#define DEBUG_MESSAGE(...) ((void)0)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Open and initialize the framebuffer device
|
|
|
|
|
* \param *strfb_device pointer to framebuffer device
|
|
|
|
|
*/
|
|
|
|
|
static void fb_open(const char *strfb_device)
|
|
|
|
|
{
|
|
|
|
|
int fbfd = xopen(strfb_device, O_RDWR);
|
|
|
|
|
|
|
|
|
|
// framebuffer properties
|
|
|
|
|
xioctl(fbfd, FBIOGET_VSCREENINFO, &G.scr_var);
|
|
|
|
|
xioctl(fbfd, FBIOGET_FSCREENINFO, &G.scr_fix);
|
|
|
|
|
|
|
|
|
|
if (G.scr_var.bits_per_pixel != 16)
|
|
|
|
|
bb_error_msg_and_die("only 16 bpp is supported");
|
|
|
|
|
|
|
|
|
|
// map the device in memory
|
|
|
|
|
G.addr = mmap(NULL,
|
|
|
|
|
G.scr_var.xres * G.scr_var.yres
|
|
|
|
|
* BYTES_PER_PIXEL /*(G.scr_var.bits_per_pixel / 8)*/ ,
|
|
|
|
|
PROT_WRITE, MAP_SHARED, fbfd, 0);
|
|
|
|
|
if (G.addr == MAP_FAILED)
|
2009-02-14 18:06:16 +05:30
|
|
|
|
bb_perror_msg_and_die("mmap");
|
2008-03-26 20:27:49 +05:30
|
|
|
|
close(fbfd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Draw hollow rectangle on framebuffer
|
|
|
|
|
*/
|
2008-03-28 16:47:35 +05:30
|
|
|
|
static void fb_drawrectangle(void)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
{
|
|
|
|
|
int cnt;
|
|
|
|
|
DATA thispix;
|
|
|
|
|
DATA *ptr1, *ptr2;
|
2008-03-28 16:47:35 +05:30
|
|
|
|
unsigned char nred = G.nbar_colr/2;
|
|
|
|
|
unsigned char ngreen = G.nbar_colg/2;
|
|
|
|
|
unsigned char nblue = G.nbar_colb/2;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
nred >>= 3; // 5-bit red
|
|
|
|
|
ngreen >>= 2; // 6-bit green
|
|
|
|
|
nblue >>= 3; // 5-bit blue
|
|
|
|
|
thispix = nblue + (ngreen << 5) + (nred << (5+6));
|
|
|
|
|
|
|
|
|
|
// horizontal lines
|
2008-03-28 16:47:35 +05:30
|
|
|
|
ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
|
|
|
|
|
ptr2 = (DATA*)(G.addr + ((G.nbar_posy + G.nbar_height - 1) * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
|
|
|
|
|
cnt = G.nbar_width - 1;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
do {
|
|
|
|
|
*ptr1++ = thispix;
|
|
|
|
|
*ptr2++ = thispix;
|
|
|
|
|
} while (--cnt >= 0);
|
|
|
|
|
|
|
|
|
|
// vertical lines
|
2008-03-28 16:47:35 +05:30
|
|
|
|
ptr1 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx) * BYTES_PER_PIXEL);
|
|
|
|
|
ptr2 = (DATA*)(G.addr + (G.nbar_posy * G.scr_var.xres + G.nbar_posx + G.nbar_width - 1) * BYTES_PER_PIXEL);
|
2009-02-14 18:06:16 +05:30
|
|
|
|
cnt = G.nbar_height - 1 /* HUH?! G.nbar_posy + G.nbar_height - 1 - G.nbar_posy*/;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
do {
|
|
|
|
|
*ptr1 = thispix; ptr1 += G.scr_var.xres;
|
|
|
|
|
*ptr2 = thispix; ptr2 += G.scr_var.xres;
|
|
|
|
|
} while (--cnt >= 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Draw filled rectangle on framebuffer
|
|
|
|
|
* \param nx1pos,ny1pos upper left position
|
|
|
|
|
* \param nx2pos,ny2pos down right position
|
2008-03-27 01:36:24 +05:30
|
|
|
|
* \param nred,ngreen,nblue rgb color
|
2008-03-26 20:27:49 +05:30
|
|
|
|
*/
|
|
|
|
|
static void fb_drawfullrectangle(int nx1pos, int ny1pos, int nx2pos, int ny2pos,
|
|
|
|
|
unsigned char nred, unsigned char ngreen, unsigned char nblue)
|
|
|
|
|
{
|
|
|
|
|
int cnt1, cnt2, nypos;
|
|
|
|
|
DATA thispix;
|
|
|
|
|
DATA *ptr;
|
|
|
|
|
|
|
|
|
|
nred >>= 3; // 5-bit red
|
|
|
|
|
ngreen >>= 2; // 6-bit green
|
|
|
|
|
nblue >>= 3; // 5-bit blue
|
|
|
|
|
thispix = nblue + (ngreen << 5) + (nred << (5+6));
|
2008-04-22 05:46:29 +05:30
|
|
|
|
|
2008-03-26 20:27:49 +05:30
|
|
|
|
cnt1 = ny2pos - ny1pos;
|
|
|
|
|
nypos = ny1pos;
|
|
|
|
|
do {
|
|
|
|
|
ptr = (DATA*)(G.addr + (nypos * G.scr_var.xres + nx1pos) * BYTES_PER_PIXEL);
|
|
|
|
|
cnt2 = nx2pos - nx1pos;
|
|
|
|
|
do {
|
|
|
|
|
*ptr++ = thispix;
|
|
|
|
|
} while (--cnt2 >= 0);
|
2008-04-22 05:46:29 +05:30
|
|
|
|
|
2008-03-26 20:27:49 +05:30
|
|
|
|
nypos++;
|
|
|
|
|
} while (--cnt1 >= 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Draw a progress bar on framebuffer
|
2008-03-27 01:36:24 +05:30
|
|
|
|
* \param percent percentage of loading
|
2008-03-26 20:27:49 +05:30
|
|
|
|
*/
|
2008-03-27 01:36:24 +05:30
|
|
|
|
static void fb_drawprogressbar(unsigned percent)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
{
|
|
|
|
|
int i, left_x, top_y, width, height;
|
2008-03-27 01:36:24 +05:30
|
|
|
|
|
2008-03-26 20:27:49 +05:30
|
|
|
|
// outer box
|
|
|
|
|
left_x = G.nbar_posx;
|
|
|
|
|
top_y = G.nbar_posy;
|
|
|
|
|
width = G.nbar_width - 1;
|
|
|
|
|
height = G.nbar_height - 1;
|
|
|
|
|
if ((height | width) < 0)
|
|
|
|
|
return;
|
|
|
|
|
// NB: "width" of 1 actually makes rect with width of 2!
|
2008-03-28 16:47:35 +05:30
|
|
|
|
fb_drawrectangle();
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
// inner "empty" rectangle
|
|
|
|
|
left_x++;
|
|
|
|
|
top_y++;
|
|
|
|
|
width -= 2;
|
|
|
|
|
height -= 2;
|
|
|
|
|
if ((height | width) < 0)
|
|
|
|
|
return;
|
|
|
|
|
fb_drawfullrectangle(
|
|
|
|
|
left_x, top_y,
|
|
|
|
|
left_x + width, top_y + height,
|
|
|
|
|
G.nbar_colr, G.nbar_colg, G.nbar_colb);
|
|
|
|
|
|
2008-03-27 01:36:24 +05:30
|
|
|
|
if (percent > 0) {
|
2008-03-26 20:27:49 +05:30
|
|
|
|
// actual progress bar
|
2008-03-27 01:36:24 +05:30
|
|
|
|
width = width * percent / 100;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
i = height;
|
|
|
|
|
if (height == 0)
|
|
|
|
|
height++; // divide by 0 is bad
|
|
|
|
|
while (i >= 0) {
|
|
|
|
|
// draw one-line thick "rectangle"
|
|
|
|
|
// top line will have gray lvl 200, bottom one 100
|
|
|
|
|
unsigned gray_level = 100 + i*100/height;
|
|
|
|
|
fb_drawfullrectangle(
|
|
|
|
|
left_x, top_y, left_x + width, top_y,
|
|
|
|
|
gray_level, gray_level, gray_level);
|
|
|
|
|
top_y++;
|
|
|
|
|
i--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Draw image from PPM file
|
|
|
|
|
*/
|
|
|
|
|
static void fb_drawimage(void)
|
|
|
|
|
{
|
2009-02-16 18:06:50 +05:30
|
|
|
|
char *head, *ptr;
|
|
|
|
|
FILE *theme_file;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
unsigned char *pixline;
|
|
|
|
|
unsigned i, j, width, height, line_size;
|
|
|
|
|
|
2009-02-16 18:06:50 +05:30
|
|
|
|
theme_file = xfopen_stdin(G.image_filename);
|
|
|
|
|
head = xmalloc(256);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
2009-02-18 20:43:05 +05:30
|
|
|
|
/* parse ppm header
|
|
|
|
|
* - A ppm image’s magic number is the two characters "P6".
|
|
|
|
|
* - Whitespace (blanks, TABs, CRs, LFs).
|
|
|
|
|
* - A width, formatted as ASCII characters in decimal.
|
|
|
|
|
* - Whitespace.
|
|
|
|
|
* - A height, again in ASCII decimal.
|
|
|
|
|
* - Whitespace.
|
|
|
|
|
* - The maximum color value (Maxval), again in ASCII decimal. Must be
|
|
|
|
|
* less than 65536.
|
|
|
|
|
* - Newline or other single whitespace character.
|
|
|
|
|
* - A raster of Width * Height pixels in triplets of rgb
|
|
|
|
|
* in pure binary by 1 (or not implemented 2) bytes.
|
|
|
|
|
*/
|
2008-03-26 20:27:49 +05:30
|
|
|
|
while (1) {
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (fgets(head, 256, theme_file) == NULL
|
|
|
|
|
/* do not overrun the buffer */
|
|
|
|
|
|| strlen(bb_common_bufsiz1) >= sizeof(bb_common_bufsiz1) - 256)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
|
|
|
|
|
|
2009-02-18 20:43:05 +05:30
|
|
|
|
ptr = memchr(skip_whitespace(head), '#', 256);
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (ptr != NULL)
|
|
|
|
|
*ptr = 0; /* ignore comments */
|
|
|
|
|
strcat(bb_common_bufsiz1, head);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
// width, height, max_color_val
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (sscanf(bb_common_bufsiz1, "P6 %u %u %u", &width, &height, &i) == 3
|
|
|
|
|
&& i <= 255)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
break;
|
2009-02-16 18:06:50 +05:30
|
|
|
|
/* If we do not find a signature throughout the whole file then
|
|
|
|
|
we will diagnose this via EOF on read in the head of the loop. */
|
2008-03-26 20:27:49 +05:30
|
|
|
|
}
|
|
|
|
|
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
|
free(head);
|
2009-02-18 20:58:43 +05:30
|
|
|
|
if (width != G.scr_var.xres || height != G.scr_var.yres)
|
|
|
|
|
bb_error_msg_and_die("PPM %dx%d does not match screen %dx%d",
|
|
|
|
|
width, height, G.scr_var.xres, G.scr_var.yres);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
line_size = width*3;
|
|
|
|
|
if (width > G.scr_var.xres)
|
|
|
|
|
width = G.scr_var.xres;
|
|
|
|
|
if (height > G.scr_var.yres)
|
|
|
|
|
height = G.scr_var.yres;
|
|
|
|
|
|
|
|
|
|
pixline = xmalloc(line_size);
|
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
|
unsigned char *pixel = pixline;
|
|
|
|
|
DATA *src = (DATA *)(G.addr + j * G.scr_fix.line_length);
|
|
|
|
|
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (fread(pixline, 1, line_size, theme_file) != line_size)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
bb_error_msg_and_die("bad PPM file '%s'", G.image_filename);
|
|
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
|
unsigned thispix;
|
|
|
|
|
thispix = (((unsigned)pixel[0] << 8) & 0xf800)
|
|
|
|
|
| (((unsigned)pixel[1] << 3) & 0x07e0)
|
|
|
|
|
| (((unsigned)pixel[2] >> 3));
|
|
|
|
|
*src++ = thispix;
|
|
|
|
|
pixel += 3;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-02-16 18:06:50 +05:30
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2009-02-14 18:06:16 +05:30
|
|
|
|
free(pixline);
|
2009-02-16 18:06:50 +05:30
|
|
|
|
fclose(theme_file);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-28 16:47:35 +05:30
|
|
|
|
* Parse configuration file
|
|
|
|
|
* \param *cfg_filename name of the configuration file
|
2008-03-26 20:27:49 +05:30
|
|
|
|
*/
|
2008-03-28 16:47:35 +05:30
|
|
|
|
static void init(const char *cfg_filename)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
{
|
|
|
|
|
static const char const param_names[] ALIGN1 =
|
|
|
|
|
"BAR_WIDTH\0" "BAR_HEIGHT\0"
|
2008-07-25 05:08:04 +05:30
|
|
|
|
"BAR_LEFT\0" "BAR_TOP\0"
|
2008-03-26 20:27:49 +05:30
|
|
|
|
"BAR_R\0" "BAR_G\0" "BAR_B\0"
|
|
|
|
|
#if DEBUG
|
|
|
|
|
"DEBUG\0"
|
|
|
|
|
#endif
|
|
|
|
|
;
|
2008-07-25 05:08:04 +05:30
|
|
|
|
char *token[2];
|
|
|
|
|
parser_t *parser = config_open2(cfg_filename, xfopen_stdin);
|
2008-07-27 04:38:31 +05:30
|
|
|
|
while (config_read(parser, token, 2, 2, "#=",
|
|
|
|
|
(PARSE_NORMAL | PARSE_MIN_DIE) & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
|
2008-07-25 05:08:04 +05:30
|
|
|
|
unsigned val = xatoi_u(token[1]);
|
|
|
|
|
int i = index_in_strings(param_names, token[0]);
|
|
|
|
|
if (i < 0)
|
2009-02-14 18:06:16 +05:30
|
|
|
|
bb_error_msg_and_die("syntax error: %s", token[0]);
|
2008-07-25 05:08:04 +05:30
|
|
|
|
if (i >= 0 && i < 7)
|
|
|
|
|
G.ns[i] = val;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
#if DEBUG
|
2008-07-25 05:08:04 +05:30
|
|
|
|
if (i == 7) {
|
2008-03-26 20:27:49 +05:30
|
|
|
|
G.bdebug_messages = val;
|
|
|
|
|
if (G.bdebug_messages)
|
2008-07-22 04:35:26 +05:30
|
|
|
|
G.logfile_fd = xfopen_for_write("/tmp/fbsplash.log");
|
2008-03-26 20:27:49 +05:30
|
|
|
|
}
|
2008-07-25 05:08:04 +05:30
|
|
|
|
#endif
|
2008-03-26 20:27:49 +05:30
|
|
|
|
}
|
2008-07-25 05:08:04 +05:30
|
|
|
|
config_close(parser);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int fbsplash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
|
int fbsplash_main(int argc UNUSED_PARAM, char **argv)
|
2008-03-26 20:27:49 +05:30
|
|
|
|
{
|
2008-03-28 16:47:35 +05:30
|
|
|
|
const char *fb_device, *cfg_filename, *fifo_filename;
|
2008-03-27 01:36:24 +05:30
|
|
|
|
FILE *fp = fp; // for compiler
|
2008-04-05 02:08:49 +05:30
|
|
|
|
char *num_buf;
|
|
|
|
|
unsigned num;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
bool bCursorOff;
|
|
|
|
|
|
|
|
|
|
INIT_G();
|
|
|
|
|
|
|
|
|
|
// parse command line options
|
|
|
|
|
fb_device = "/dev/fb0";
|
2008-03-28 16:47:35 +05:30
|
|
|
|
cfg_filename = NULL;
|
2008-03-26 20:27:49 +05:30
|
|
|
|
fifo_filename = NULL;
|
|
|
|
|
bCursorOff = 1 & getopt32(argv, "cs:d:i:f:",
|
2008-03-28 16:47:35 +05:30
|
|
|
|
&G.image_filename, &fb_device, &cfg_filename, &fifo_filename);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
// parse configuration file
|
2008-03-28 16:47:35 +05:30
|
|
|
|
if (cfg_filename)
|
|
|
|
|
init(cfg_filename);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
// We must have -s IMG
|
|
|
|
|
if (!G.image_filename)
|
|
|
|
|
bb_show_usage();
|
|
|
|
|
|
|
|
|
|
fb_open(fb_device);
|
|
|
|
|
|
|
|
|
|
if (fifo_filename && bCursorOff) {
|
|
|
|
|
// hide cursor (BEFORE any fb ops)
|
|
|
|
|
full_write(STDOUT_FILENO, "\x1b" "[?25l", 6);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fb_drawimage();
|
|
|
|
|
|
2008-03-28 16:47:35 +05:30
|
|
|
|
if (!fifo_filename)
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
|
|
|
|
|
fp = xfopen_stdin(fifo_filename);
|
2008-04-05 02:08:49 +05:30
|
|
|
|
if (fp != stdin) {
|
2008-03-27 18:44:29 +05:30
|
|
|
|
// For named pipes, we want to support this:
|
|
|
|
|
// mkfifo cmd_pipe
|
|
|
|
|
// fbsplash -f cmd_pipe .... &
|
|
|
|
|
// ...
|
|
|
|
|
// echo 33 >cmd_pipe
|
|
|
|
|
// ...
|
|
|
|
|
// echo 66 >cmd_pipe
|
2008-04-05 02:08:49 +05:30
|
|
|
|
// This means that we don't want fbsplash to get EOF
|
|
|
|
|
// when last writer closes input end.
|
|
|
|
|
// The simplest way is to open fifo for writing too
|
|
|
|
|
// and become an additional writer :)
|
|
|
|
|
open(fifo_filename, O_WRONLY); // errors are ignored
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fb_drawprogressbar(0);
|
|
|
|
|
// Block on read, waiting for some input.
|
|
|
|
|
// Use of <stdio.h> style I/O allows to correctly
|
|
|
|
|
// handle a case when we have many buffered lines
|
|
|
|
|
// already in the pipe
|
|
|
|
|
while ((num_buf = xmalloc_fgetline(fp)) != NULL) {
|
|
|
|
|
if (strncmp(num_buf, "exit", 4) == 0) {
|
|
|
|
|
DEBUG_MESSAGE("exit");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
num = atoi(num_buf);
|
|
|
|
|
if (isdigit(num_buf[0]) && (num <= 100)) {
|
|
|
|
|
#if DEBUG
|
|
|
|
|
char strVal[10];
|
|
|
|
|
sprintf(strVal, "%d", num);
|
|
|
|
|
DEBUG_MESSAGE(strVal);
|
|
|
|
|
#endif
|
|
|
|
|
fb_drawprogressbar(num);
|
|
|
|
|
}
|
|
|
|
|
free(num_buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bCursorOff) // restore cursor
|
|
|
|
|
full_write(STDOUT_FILENO, "\x1b" "[?25h", 6);
|
2008-03-26 20:27:49 +05:30
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|