quiet output

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-06-07 00:36:46 -07:00
parent 8db41cc911
commit b56c3fe1f6
1 changed files with 16 additions and 7 deletions

View File

@ -22,13 +22,14 @@ var shellStdout *os.File
var shellStderr *os.File
var spewOn bool = false
var quiet bool = false
var msecDelay int = 20 // number of milliseconds to delay between reads with no data
var bytesBuffer bytes.Buffer
var bytesSplice []byte
func handleError(c interface{}, ret int) {
log.Println("shell.Run() Returned", ret)
log.Debug("shell.Run() Returned", ret)
if (callback != nil) {
callback(c, ret)
}
@ -42,6 +43,11 @@ func InitCallback(f func(interface{}, int)) {
callback = f
}
// this means it won't copy all the output to STDOUT
func Quiet() {
quiet = true
}
func Script(cmds string) int {
// split on new lines (while we are at it, handle stupid windows text files
lines := strings.Split(strings.Replace(cmds, "\r\n", "\n", -1), "\n")
@ -140,8 +146,10 @@ func Run(cmdline string) string {
oneByte = make([]byte, 1024)
count, err = nbr.Read(oneByte)
log.Debug("STDOUT: count = ", count)
if (! quiet) {
f.Write(oneByte[0:count])
f.Flush()
}
empty = true
dead = true
}
@ -151,10 +159,12 @@ func Run(cmdline string) string {
} else {
log.Debug("STDOUT: count = ", count)
io.WriteString(&bytesBuffer, string(oneByte))
if (! quiet) {
f.Write(oneByte[0:count])
f.Flush()
}
}
}
if (totalCount != 0) {
log.Debug("STDOUT: totalCount = ", totalCount)
@ -193,9 +203,8 @@ func Run(cmdline string) string {
// this removes the newlines at the end
tmp2 := string(b)
tmp2 = strings.TrimSuffix(tmp2, "\n")
log.Println("shell.Run() END ", cmdline)
log.Println("shell.Run() calling handleError() :")
handleError(nil, 0)
log.Println("shell.Run() END ", cmdline)
return Chomp(b)
}