mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9fac44028e
full diff: https://github.com/sirupsen/logrus/compare/v1.4.1...v1.4.2 - sirupsen/logrus#946 Fix solaris build - sirupsen/logrus#966 Add a checkTerminal for nacl to support running on play.golang.org - sirupsen/logrus#969 fix build break for plan9 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
34 lines
572 B
Go
34 lines
572 B
Go
// +build !appengine,!js,windows
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"syscall"
|
|
|
|
sequences "github.com/konsorten/go-windows-terminal-sequences"
|
|
)
|
|
|
|
func initTerminal(w io.Writer) {
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
sequences.EnableVirtualTerminalProcessing(syscall.Handle(v.Fd()), true)
|
|
}
|
|
}
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
var ret bool
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
var mode uint32
|
|
err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
|
|
ret = (err == nil)
|
|
default:
|
|
ret = false
|
|
}
|
|
if ret {
|
|
initTerminal(w)
|
|
}
|
|
return ret
|
|
}
|