mirror of https://github.com/restic/restic.git
termstatus: detect and respect dumb terminals on Unix
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
This commit is contained in:
parent
6bc99ce451
commit
541d232f1c
|
@ -4,6 +4,7 @@ package termstatus
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
"os"
|
||||||
|
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
|
|
||||||
|
@ -24,7 +25,15 @@ func moveCursorUp(wr io.Writer, fd uintptr) func(io.Writer, uintptr, int) {
|
||||||
// canUpdateStatus returns true if status lines can be printed, the process
|
// canUpdateStatus returns true if status lines can be printed, the process
|
||||||
// output is not redirected to a file or pipe.
|
// output is not redirected to a file or pipe.
|
||||||
func canUpdateStatus(fd uintptr) bool {
|
func canUpdateStatus(fd uintptr) bool {
|
||||||
return isatty.IsTerminal(fd)
|
if !isatty.IsTerminal(fd) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
term := os.Getenv("TERM")
|
||||||
|
if term == "" {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
// TODO actually read termcap db and detect if terminal supports what we need
|
||||||
|
return term != "dumb"
|
||||||
}
|
}
|
||||||
|
|
||||||
// getTermSize returns the dimensions of the given terminal.
|
// getTermSize returns the dimensions of the given terminal.
|
||||||
|
|
Loading…
Reference in New Issue