Documentation ¶
Overview ¶
Package uilive provides a writer that live updates the terminal. It provides a buffered io.Writer that is flushed at a timed interval.
Example ¶
package main import ( "fmt" "time" "github.com/gosuri/uilive" ) func main() { writer := uilive.New() // start listening to updates and render writer.Start() for i := 0; i <= 100; i++ { fmt.Fprintf(writer, "Downloading.. (%d/%d) GB\n", i, 100) time.Sleep(time.Millisecond * 5) } fmt.Fprintln(writer, "Finished: Downloaded 100GB") writer.Stop() // flush and stop rendering }
Output:
Index ¶
Examples ¶
Constants ¶
const ESC = 27
ESC is the ASCII code for escape character
Variables ¶
var ErrClosedPipe = errors.New("uilive: read/write on closed pipe")
ErrClosedPipe is the error returned when trying to writer is not listening
var Out = io.Writer(os.Stdout)
Out is the default output writer for the Writer
var RefreshInterval = time.Millisecond
RefreshInterval is the default refresh interval to update the ui
Functions ¶
This section is empty.
Types ¶
type Writer ¶
type Writer struct { // Out is the writer to write to Out io.Writer // RefreshInterval is the time the UI sould refresh RefreshInterval time.Duration // contains filtered or unexported fields }
Writer is a buffered the writer that updates the terminal. The contents of writer will be flushed on a timed interval or when Flush is called.
func (*Writer) Bypass ¶
Bypass creates an io.Writer which allows non-buffered output to be written to the underlying output
func (*Writer) Flush ¶
Flush writes to the out and resets the buffer. It should be called after the last call to Write to ensure that any data buffered in the Writer is written to output. Any incomplete escape sequence at the end is considered complete for formatting purposes. An error is returned if the contents of the buffer cannot be written to the underlying output stream
func (*Writer) Listen ¶
func (w *Writer) Listen()
Listen listens for updates to the writer's buffer and flushes to the out provided. It blocks the runtime.