mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
91 lines
2 KiB
Go
91 lines
2 KiB
Go
package auxents
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
// ================================================================
|
|
func unhexUsage(verbName string, o *os.File, exitCode int) {
|
|
fmt.Fprintf(o, "Usage: mlr %s [option] {zero or more file names}\n", verbName)
|
|
fmt.Fprintf(o, "Options:\n")
|
|
fmt.Fprintf(o, "-h or --help: print this message\n")
|
|
fmt.Fprintf(o, "Zero file names means read from standard input.\n")
|
|
fmt.Fprintf(o, "Output is always to standard output; files are not written in-place.\n")
|
|
os.Exit(exitCode)
|
|
}
|
|
|
|
func unhexMain(args []string) int {
|
|
// 'mlr' and 'hex' are already argv[0] and argv[1].
|
|
verb := args[1]
|
|
args = args[2:]
|
|
|
|
if len(args) >= 1 {
|
|
if args[0] == "-h" || args[0] == "--help" {
|
|
unhexUsage(verb, os.Stdout, 0)
|
|
}
|
|
}
|
|
|
|
if len(args) == 0 {
|
|
unhexFile(os.Stdin, os.Stdout)
|
|
} else {
|
|
for _, filename := range args {
|
|
istream, err := os.Open(filename)
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, "mlr unhex:", err)
|
|
os.Exit(1)
|
|
}
|
|
unhexFile(istream, os.Stdout)
|
|
istream.Close()
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func unhexFile(istream *os.File, ostream *os.File) {
|
|
// Key insight is os.File implements io.Reader
|
|
lineReader := bufio.NewReader(istream)
|
|
|
|
var scanValue int
|
|
byteArray := make([]byte, 1)
|
|
|
|
re := regexp.MustCompile(`\s+`)
|
|
|
|
eof := false
|
|
for !eof {
|
|
line, err := lineReader.ReadString('\n') // TODO: auto-detect
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, "mlr unhex:", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// This is how to do a chomp:
|
|
line = strings.TrimRight(line, "\n")
|
|
|
|
// Ignore "" which can happen on empty lines
|
|
fields := re.Split(line, -1)
|
|
for _, field := range fields {
|
|
if field != "" {
|
|
n, err := fmt.Sscanf(field, "%x", &scanValue)
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, "mlr unhex:", err)
|
|
os.Exit(1)
|
|
}
|
|
if n != 1 {
|
|
fmt.Fprintln(os.Stderr, "mlr unhex: internal coding error")
|
|
os.Exit(1)
|
|
}
|
|
byteArray[0] = byte(scanValue)
|
|
ostream.Write(byteArray)
|
|
}
|
|
}
|
|
}
|
|
}
|