2016-04-02 08:06:31 +03:00
|
|
|
// +build solaris,!appengine
|
2015-11-03 12:21:35 +03:00
|
|
|
|
|
|
|
package logrus
|
|
|
|
|
|
|
|
import (
|
2017-02-24 02:16:21 +03:00
|
|
|
"io"
|
2015-11-03 12:21:35 +03:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IsTerminal returns true if the given file descriptor is a terminal.
|
2017-02-05 17:21:03 +03:00
|
|
|
func IsTerminal(f io.Writer) bool {
|
|
|
|
switch v := f.(type) {
|
|
|
|
case *os.File:
|
2017-02-07 03:16:20 +03:00
|
|
|
_, err := unix.IoctlGetTermios(int(v.Fd()), unix.TCGETA)
|
2017-02-05 17:21:03 +03:00
|
|
|
return err == nil
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
2015-11-03 12:21:35 +03:00
|
|
|
}
|