Golang : Command line ticker to show work in progress
Problem:
Your command line application is crunching data and you want your program to show the user that it is working. It is not a progress bar with percentage completion, but just a simple ticker to distract the user's attention. How to do that?
Solution:
Create an array of -
,\
,/
' and -
. Randomly selects one or iterates over the items in the array and display it.
Here you go!
package main
/*
#include <stdio.h>
#include <unistd.h>
#include <termios.h>
char getch(){
char ch = 0;
struct termios old = {0};
fflush(stdout);
if( tcgetattr(0, &old) < 0 ) perror("tcsetattr()");
old.c_lflag &= ~ICANON;
old.c_lflag &= ~ECHO;
old.c_cc[VMIN] = 1;
old.c_cc[VTIME] = 0;
if( tcsetattr(0, TCSANOW, &old) < 0 ) perror("tcsetattr ICANON");
if( read(0, &ch,1) < 0 ) perror("read()");
old.c_lflag |= ICANON;
old.c_lflag |= ECHO;
if(tcsetattr(0, TCSADRAIN, &old) < 0) perror("tcsetattr ~ICANON");
return ch;
}
*/
import "C"
import (
"fmt"
"math/rand"
"os"
"time"
)
func main() {
go func() {
key := C.getch() // get single key hit without pressing Enter button
fmt.Println()
fmt.Println("Exiting ...")
if key == 27 {
os.Exit(0)
}
}()
// recording in progress ticker. From good old DOS days.
ticker := []string{
"-",
"\\", //<--- need escape
"/",
"|",
}
rand.Seed(time.Now().UnixNano())
fmt.Println("Press ESC key to quit...")
for {
fmt.Printf("\rProcessing data now! [%v]", ticker[rand.Intn(len(ticker)-1)])
}
}
Run the code and you should see the ticker in action.
It is use in https://socketloop.com/tutorials/golang-save-webcamera-frames-to-video-file as well.
Happy coding!
References:
https://www.socketloop.com/tutorials/golang-overwrite-previous-output-with-count-down-timer
https://socketloop.com/tutorials/golang-randomly-pick-an-item-from-a-slice-array-example
http://stackoverflow.com/questions/14094190/golang-function-similar-to-getchar
See also : Golang : Overwrite previous output with count down timer
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5k Which content-type(MIME type) to use for JSON data
+8.7k Golang : Generate Datamatrix barcode
+6.3k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+8.3k Golang : Reverse text lines or flip line order example
+14.2k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+6.4k Golang & Javascript : How to save cropped image to file on server
+6.2k Golang : How to verify input is rune?
+7.4k Golang : Of hash table and hash map
+12.6k Golang : Extract part of string with regular expression
+34.1k Golang : Call a function after some delay(time.Sleep and Tick)
+7.9k Golang : Command line ticker to show work in progress
+6.6k CodeIgniter : form input set_value cause " to become & quot