Skip to content

Commit

Permalink
split things up to build with gopherjs
Browse files Browse the repository at this point in the history
  • Loading branch information
deoxxa committed Jul 26, 2016
1 parent a085b6a commit a0ef52d
Show file tree
Hide file tree
Showing 5 changed files with 138 additions and 70 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/protofudger
/protofudger.js
/protofudger.js.map
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
all: protofudger

protofudger: decode.go main_native.go
go build

protofudger.js: decode.go main_js.go
gopherjs build -m -o protofudger.js

clean:
rm -f protofudger
rm -f protofudger.js protofudger.js.map

.PHONY: all clean
106 changes: 36 additions & 70 deletions main.go → decode.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,15 @@ import (
"bytes"
"encoding/binary"
"encoding/hex"
"flag"
"fmt"
"io"
"io/ioutil"
"math"
"os"
"strings"
"time"
"unicode/utf8"
)

var (
showAll = flag.Bool("show_all", false, "Show all possible types instead of just most likely.")
showOffsets = flag.Bool("show_offsets", false, "Show byte offsets of each value.")
)

type pbType int

const (
Expand All @@ -28,15 +22,15 @@ const (
type32Bit pbType = 5
)

func formatKey(k uint64, o int64) string {
if *showOffsets {
func formatKey(k uint64, o int64, showOffsets bool) string {
if showOffsets {
return fmt.Sprintf("%d @ %d", k, o)
}

return fmt.Sprintf("%d", k)
}

func decode(input []byte, offset int64, depth int) (int, []string, error) {
func decode(input []byte, offset int64, depth int, showAll, showOffsets bool) (int, []string, error) {
r := bytes.NewReader(input)
var a []string

Expand Down Expand Up @@ -81,17 +75,17 @@ func decode(input []byte, offset int64, depth int) (int, []string, error) {

switch {
case v > 1400000000000 && v < 1500000000000:
a = append(a, fmt.Sprintf("%s: (varint, microseconds) %s", formatKey(k, o), time.Unix(int64(v/1000), 0)))
a = append(a, fmt.Sprintf("%s: (varint, microseconds) %s", formatKey(k, o, showOffsets), time.Unix(int64(v/1000), 0)))
case v > 1400000000 && v < 1500000000:
a = append(a, fmt.Sprintf("%s: (varint, milliseconds) %s", formatKey(k, o), time.Unix(int64(v), 0)))
a = append(a, fmt.Sprintf("%s: (varint, milliseconds) %s", formatKey(k, o, showOffsets), time.Unix(int64(v), 0)))
case uint64(v) == v:
a = append(a, fmt.Sprintf("%s: (varint) %d", formatKey(k, o), v))
case !*showAll:
a = append(a, fmt.Sprintf("%s: (varint) %d OR %d", formatKey(k, o), v, uint64(v)))
a = append(a, fmt.Sprintf("%s: (varint) %d", formatKey(k, o, showOffsets), v))
case !showAll:
a = append(a, fmt.Sprintf("%s: (varint) %d OR %d", formatKey(k, o, showOffsets), v, uint64(v)))
}

if *showAll {
a = append(a, fmt.Sprintf("%s: (varint) %d OR %d", formatKey(k, o), v, uint64(v)))
if showAll {
a = append(a, fmt.Sprintf("%s: (varint) %d OR %d", formatKey(k, o, showOffsets), v, uint64(v)))
}

case type64Bit:
Expand Down Expand Up @@ -173,10 +167,14 @@ func decode(input []byte, offset int64, depth int) (int, []string, error) {
}
}

a = append(a, fmt.Sprintf("%s: (%s) %s", formatKey(k, o), closestName, closestText))
p := formatKey(k, o, showOffsets)

if *showAll {
a = append(a, s...)
a = append(a, fmt.Sprintf("%s: (%s) %s", p, closestName, closestText))

if showAll {
for _, e := range s {
a = append(a, strings.Repeat(" ", len(p))+e)
}
}
}
case typeBytes:
Expand Down Expand Up @@ -205,18 +203,18 @@ func decode(input []byte, offset int64, depth int) (int, []string, error) {
return n, a, fmt.Errorf("couldn't read enough data")
}

_, ma, merr := decode(v, o, depth+1)
_, ma, merr := decode(v, o, depth+1, showAll, showOffsets)
if merr == nil {
a = append(a, fmt.Sprintf("%s: {", formatKey(k, o)))
a = append(a, fmt.Sprintf("%s: {", formatKey(k, o, showOffsets)))
for _, s := range ma {
a = append(a, " "+s)
}
a = append(a, "}")
} else {
if utf8.ValidString(string(v)) {
a = append(a, fmt.Sprintf("%s: (string) %q", formatKey(k, o), string(v)))
a = append(a, fmt.Sprintf("%s: (string) %q", formatKey(k, o, showOffsets), string(v)))
} else {
a = append(a, fmt.Sprintf("%s: (bytes) %s", formatKey(k, o), hex.EncodeToString(v)))
a = append(a, fmt.Sprintf("%s: (bytes) %s", formatKey(k, o, showOffsets), hex.EncodeToString(v)))
}
}
case type32Bit:
Expand Down Expand Up @@ -298,9 +296,13 @@ func decode(input []byte, offset int64, depth int) (int, []string, error) {
}
}

a = append(a, fmt.Sprintf("%s: (%s) %s", formatKey(k, o), closestName, closestText))
if *showAll {
a = append(a, s...)
p := formatKey(k, o, showOffsets)

a = append(a, fmt.Sprintf("%s: (%s) %s", p, closestName, closestText))
if showAll {
for _, e := range s {
a = append(a, strings.Repeat(" ", len(p))+e)
}
}
}
default:
Expand All @@ -311,50 +313,14 @@ func decode(input []byte, offset int64, depth int) (int, []string, error) {
}
}

func parseStream(rd io.Reader) error {
d, err := ioutil.ReadAll(rd)
if err != nil {
return err
}

n, lines, err := decode(d, 0, 0)
func parseBuffer(d []byte, showAll, showOffsets bool) ([]string, error) {
n, lines, err := decode(d, 0, 0, showAll, showOffsets)
if n > 0 && err == nil {
fmt.Printf("decoded %d fields\n", n)

if err != nil {
fmt.Printf("error was %s\n", err.Error())
}

fmt.Printf("\n")

for _, l := range lines {
fmt.Printf(" %s\n", l)
}

fmt.Printf("\n")
}

return err
}

func main() {
flag.Parse()

if len(flag.Args()) == 0 {
parseStream(os.Stdin)
return append([]string{
fmt.Sprintf("decoded %d fields", n),
"",
}, lines...), nil
}

for _, f := range flag.Args() {
fmt.Printf("parsing %s\n", f)

func() {
fd, err := os.Open(f)
if err != nil {
panic(err)
}
defer fd.Close()

parseStream(fd)
}()
}
return nil, err
}
20 changes: 20 additions & 0 deletions main_js.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// +build js

package main

import (
"github.com/gopherjs/gopherjs/js"
)

func main() {
js.Global.Set("protofudger", map[string]interface{}{
"parse": func(d []byte, showAll, showOffsets bool) []string {
l, err := parseBuffer(d, showAll, showOffsets)
if err != nil {
panic(err)
}

return l
},
})
}
66 changes: 66 additions & 0 deletions main_native.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
// +build !js

package main

import (
"flag"
"fmt"
"io"
"io/ioutil"
"os"
)

var (
showAll = flag.Bool("show_all", false, "Show all possible types instead of just most likely.")
showOffsets = flag.Bool("show_offsets", false, "Show byte offsets of each value.")
)

func parseStream(rd io.Reader, showAll, showOffsets bool) ([]string, error) {
d, err := ioutil.ReadAll(rd)
if err != nil {
return nil, err
}

return parseBuffer(d, showAll, showOffsets)
}

func parseAndPrint(rd io.Reader, showAll, showOffsets bool) error {
lines, err := parseStream(rd, showAll, showOffsets)
if err != nil {
return err
}

for _, l := range lines {
if _, err := fmt.Println(l); err != nil {
return err
}
}

return nil
}

func main() {
flag.Parse()

if len(flag.Args()) == 0 {
if err := parseAndPrint(os.Stdin, *showAll, *showOffsets); err != nil {
panic(err)
}
}

for _, f := range flag.Args() {
fmt.Printf("parsing %s\n", f)

func() {
fd, err := os.Open(f)
if err != nil {
panic(err)
}
defer fd.Close()

if err := parseAndPrint(fd, *showAll, *showOffsets); err != nil {
panic(err)
}
}()
}
}

0 comments on commit a0ef52d

Please sign in to comment.