Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a "progress bar" using printf? [duplicate]

Tags:

c

printf

Many command line tools implement text-based progress bar. Like rpm installing:

installing ##############[45%]

the # grows with the percentage, while keeps itself in a single line. What I want is something similar: I need a progress indicator taking just one line, that is to say, when percentage grows, it got overwritten, instead of make a new line(\n).

I tried this:

   #include <stdio.h>

   int main (){
       int i = 0;
       for (i = 0; i < 10000; i++){
           printf("\rIn progress %d", i/100);
       }
       printf("\n");
   }

\r works to overwrite the single line. However, \r brings cursor to the beginning of line and printf brings cursor to the end, which result in a rapidly waving cursor. You guys can feel it by a little compiling. Can Anyone come up with alternatives to avoid this issue?

like image 257
qweruiop Avatar asked Jan 06 '14 09:01

qweruiop


People also ask

What is progress bar in bootstrap?

A progress bar can be used to show a user how far along he/she is in a process. Bootstrap provides several types of progress bars. A default progress bar in Bootstrap looks like this: 70% Complete.


4 Answers

This is a problem of the stdout stream being buffered. You have to flush it explicitly (implicit flushing occurs with a \n) using fflush(stdout) after the printf():

fflush(stdout);
like image 190
Alan Haggai Alavi Avatar answered Nov 09 '22 20:11

Alan Haggai Alavi


Here is how rpm did it, maybe you can write a similar function for your own purpose: printHash.

rpm use \b instead of \r to erase the output line character by character.

like image 3
Lee Duhem Avatar answered Nov 09 '22 18:11

Lee Duhem


I believe using

printf("\e[?25l");

may be able to help. This will hide the cursor. Honestly, I'm not sure if using /r or printf again will override that bit of code and show the cursor, but it's worth a shot. Also, the below code can be used to show the cursor again.

printf("\e[?25h");
like image 1
ArmaAK Avatar answered Nov 09 '22 20:11

ArmaAK


Rather than giving your some erroneous and non-portable code lines, I'd recommend you to read through the man pages for your system's termcap and terminfo. It's a bit hard to follow at first, but it's a must-read if your about to start mucking with terminal-dependent code. The Wikipedia pages are a good place to start, but then do give the man pages on your system a read as well.

Also I just realized your question is most definitely a duplicate of a few other questions.

like image 1
haylem Avatar answered Nov 09 '22 18:11

haylem