1

output stderr from execution of zero-epwing

This commit is contained in:
Alex Yatskov 2016-12-31 15:05:35 -08:00
parent 3ae243bda8
commit 133655a958

View File

@ -23,9 +23,11 @@
package main package main
import ( import (
"bufio"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log"
"os" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
@ -86,7 +88,39 @@ func epwingExportDb(inputPath, outputDir, title string, stride int, pretty bool)
return fmt.Errorf("failed to find zero-epwing in '%s'", toolPath) return fmt.Errorf("failed to find zero-epwing in '%s'", toolPath)
} }
data, err = exec.Command(toolPath, inputPath).Output() cmd := exec.Command(toolPath, inputPath)
stdout, err := cmd.StdoutPipe()
if err != nil {
return err
}
stderr, err := cmd.StderrPipe()
if err != nil {
return err
}
log.Printf("invoking zero-epwing from '%s'...\n", toolPath)
if err := cmd.Start(); err != nil {
return err
}
go func() {
scanner := bufio.NewScanner(stderr)
for scanner.Scan() {
log.Printf("\t > %s\n", scanner.Text())
}
}()
if data, err = ioutil.ReadAll(stdout); err != nil {
return err
}
if err := cmd.Wait(); err != nil {
return err
}
log.Println("completed zero-epwing processing")
} else { } else {
data, err = ioutil.ReadFile(inputPath) data, err = ioutil.ReadFile(inputPath)
} }