1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
package cmd
import (
"bytes"
"errors"
"fmt"
"io"
"os"
)
func streamToBytes(stream io.Reader) ([]byte, error) {
buf := new(bytes.Buffer)
_, err := buf.ReadFrom(stream)
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
func isInputFromPipe() bool {
fi, _ := os.Stdin.Stat()
return (fi.Mode() & os.ModeCharDevice) == 0
}
func getFile() (*os.File, error) {
if flags.filepath == "" {
return nil, errors.New("please provide an input file")
}
if !fileExists(flags.filepath) {
return nil, errors.New("the file provided does not exist")
}
file, e := os.Open(flags.filepath)
if e != nil {
return nil, fmt.Errorf("Unable to open file: %w", e)
}
return file, nil
}
func fileExists(filepath string) bool {
info, e := os.Stat(filepath)
if os.IsNotExist(e) {
return false
}
return !info.IsDir()
}
|