mirror of
https://github.com/NotAShelf/hexxy.git
synced 2024-11-22 21:31:12 +00:00
[hexxy] init
This commit is contained in:
parent
1196348f19
commit
6020591ea9
1 changed files with 72 additions and 8 deletions
80
hexxy.go
80
hexxy.go
|
@ -14,11 +14,17 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var opts struct {
|
var opts struct {
|
||||||
NoColor bool `short:"N" long:"no-color" description:"do not print output with color"`
|
NoColor bool `short:"N" long:"no-color" description:"do not print output with color"`
|
||||||
Verbose bool `short:"v" long:"verbose" description:"print debugging information and verbose output"`
|
OffsetFormat string `short:"t" long:"radix" default:"x" choice:"d" choice:"o" choice:"x" description:"Print offset in [d|o|x] format"`
|
||||||
|
Verbose bool `short:"v" long:"verbose" description:"print debugging information and verbose output"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var Debug = func(string, ...interface{}) {}
|
var Debug = func(string, ...interface{}) {}
|
||||||
|
var OffsetFormat string
|
||||||
|
var Separator string
|
||||||
|
|
||||||
|
const GREY = "\x1b[38;2;111;111;111m"
|
||||||
|
const CLR = "\x1b[0m"
|
||||||
|
|
||||||
type Color struct {
|
type Color struct {
|
||||||
disable bool
|
disable bool
|
||||||
|
@ -70,10 +76,23 @@ func asciiRow(ascii []byte, clr *Color, stdout io.Writer) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func printOffset(offset uint64) string {
|
||||||
|
return fmt.Sprintf(OffsetFormat, offset)
|
||||||
|
}
|
||||||
|
|
||||||
|
func printSeparator(writer io.Writer, newline bool) {
|
||||||
|
if newline {
|
||||||
|
fmt.Fprintln(writer, Separator)
|
||||||
|
} else {
|
||||||
|
fmt.Fprint(writer, Separator)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func Hexdump(file *os.File, color *Color) error {
|
func Hexdump(file *os.File, color *Color) error {
|
||||||
stdout := bufio.NewWriter(os.Stdout)
|
stdout := bufio.NewWriter(os.Stdout)
|
||||||
stderr := os.Stderr
|
stderr := os.Stderr
|
||||||
ascii := [16]byte{}
|
ascii := [16]byte{}
|
||||||
|
defer stdout.Flush()
|
||||||
|
|
||||||
var i uint64 = 0
|
var i uint64 = 0
|
||||||
reader := bufio.NewReaderSize(file, 10*1024*1024)
|
reader := bufio.NewReaderSize(file, 10*1024*1024)
|
||||||
|
@ -92,7 +111,9 @@ func Hexdump(file *os.File, color *Color) error {
|
||||||
|
|
||||||
// offset
|
// offset
|
||||||
if i%16 == 0 {
|
if i%16 == 0 {
|
||||||
fmt.Fprintf(stdout, "%08x ", i)
|
// fmt.Fprintf(stdout, "%08x ", i)
|
||||||
|
offy := printOffset(i)
|
||||||
|
fmt.Fprint(stdout, offy)
|
||||||
}
|
}
|
||||||
|
|
||||||
// byte
|
// byte
|
||||||
|
@ -105,9 +126,14 @@ func Hexdump(file *os.File, color *Color) error {
|
||||||
|
|
||||||
// print ascii row and newline │ | ┆
|
// print ascii row and newline │ | ┆
|
||||||
if (i+1)%16 == 0 {
|
if (i+1)%16 == 0 {
|
||||||
fmt.Fprint(stdout, "│")
|
// fmt.Fprint(stdout, "│")
|
||||||
|
printSeparator(stdout, false)
|
||||||
|
|
||||||
asciiRow(ascii[:i%16], color, stdout)
|
asciiRow(ascii[:i%16], color, stdout)
|
||||||
fmt.Fprintln(stdout, "│")
|
|
||||||
|
// fmt.Fprintln(stdout, "│")
|
||||||
|
printSeparator(stdout, true)
|
||||||
|
|
||||||
ascii = [16]byte{} // reset
|
ascii = [16]byte{} // reset
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,16 +143,48 @@ func Hexdump(file *os.File, color *Color) error {
|
||||||
if i%16 != 0 {
|
if i%16 != 0 {
|
||||||
left := int(16 - i%16)
|
left := int(16 - i%16)
|
||||||
spaces := 3*left + (left-1)/4 + 1
|
spaces := 3*left + (left-1)/4 + 1
|
||||||
|
|
||||||
fmt.Fprint(stdout, strings.Repeat(" ", spaces))
|
fmt.Fprint(stdout, strings.Repeat(" ", spaces))
|
||||||
fmt.Fprint(stdout, "│")
|
printSeparator(stdout, false)
|
||||||
|
|
||||||
asciiRow(ascii[:i%16], color, stdout)
|
asciiRow(ascii[:i%16], color, stdout)
|
||||||
fmt.Fprintln(stdout, "│")
|
printSeparator(stdout, true)
|
||||||
fmt.Fprintf(stdout, "%08x\n", i)
|
|
||||||
|
offy := printOffset(i)
|
||||||
|
fmt.Fprintln(stdout, offy)
|
||||||
|
// fmt.Fprintf(stdout, "%08x\n", i)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getOffsetFormat() error {
|
||||||
|
var prefix string
|
||||||
|
var suffix string
|
||||||
|
|
||||||
|
if !opts.NoColor {
|
||||||
|
prefix = GREY
|
||||||
|
suffix = CLR
|
||||||
|
} else {
|
||||||
|
prefix = ""
|
||||||
|
suffix = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
Separator = prefix + "│" + suffix
|
||||||
|
|
||||||
|
switch opts.OffsetFormat {
|
||||||
|
case "d":
|
||||||
|
OffsetFormat = prefix + "%08d " + suffix
|
||||||
|
case "o":
|
||||||
|
OffsetFormat = prefix + "%08o " + suffix
|
||||||
|
case "x":
|
||||||
|
OffsetFormat = prefix + "%08x " + suffix
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("Offset format must be [d|o|x]")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func Hexxy(args []string) error {
|
func Hexxy(args []string) error {
|
||||||
color := &Color{}
|
color := &Color{}
|
||||||
|
|
||||||
|
@ -147,6 +205,7 @@ func Hexxy(args []string) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
if err := Hexdump(file, color); err != nil {
|
if err := Hexdump(file, color); err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -169,6 +228,11 @@ func main() {
|
||||||
Debug = log.Printf
|
Debug = log.Printf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = getOffsetFormat()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
if err := Hexxy(args); err != nil {
|
if err := Hexxy(args); err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue