From 19b7e22058e0b57f031f3021bbdf0aa1881e099b Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 2 Dec 2015 14:36:02 -0500 Subject: [PATCH] tar/asm: basic benchmark on disasm/asm of testdata ``` PASS BenchmarkAsm-4 5 238968475 ns/op 66841059 B/op 2449 allocs/op ok _/home/vbatts/src/vb/tar-split/tar/asm 2.267s ``` Signed-off-by: Vincent Batts --- tar/asm/assemble_test.go | 71 ++++++++++++++++++++++++++++++++++------ 1 file changed, 61 insertions(+), 10 deletions(-) diff --git a/tar/asm/assemble_test.go b/tar/asm/assemble_test.go index cb16eed..c0c7f17 100644 --- a/tar/asm/assemble_test.go +++ b/tar/asm/assemble_test.go @@ -7,6 +7,7 @@ import ( "fmt" "hash/crc64" "io" + "io/ioutil" "os" "testing" @@ -129,17 +130,18 @@ func TestTarStreamMangledGetterPutter(t *testing.T) { } } +var testCases = []struct { + path string + expectedSHA1Sum string + expectedSize int64 +}{ + {"./testdata/t.tar.gz", "1eb237ff69bca6e22789ecb05b45d35ca307adbd", 10240}, + {"./testdata/longlink.tar.gz", "d9f6babe107b7247953dff6b5b5ae31a3a880add", 20480}, + {"./testdata/fatlonglink.tar.gz", "8537f03f89aeef537382f8b0bb065d93e03b0be8", 26234880}, + {"./testdata/iso-8859.tar.gz", "ddafa51cb03c74ec117ab366ee2240d13bba1ec3", 10240}, +} + func TestTarStream(t *testing.T) { - testCases := []struct { - path string - expectedSHA1Sum string - expectedSize int64 - }{ - {"./testdata/t.tar.gz", "1eb237ff69bca6e22789ecb05b45d35ca307adbd", 10240}, - {"./testdata/longlink.tar.gz", "d9f6babe107b7247953dff6b5b5ae31a3a880add", 20480}, - {"./testdata/fatlonglink.tar.gz", "8537f03f89aeef537382f8b0bb065d93e03b0be8", 26234880}, - {"./testdata/iso-8859.tar.gz", "ddafa51cb03c74ec117ab366ee2240d13bba1ec3", 10240}, - } for _, tc := range testCases { fh, err := os.Open(tc.path) @@ -201,3 +203,52 @@ func TestTarStream(t *testing.T) { } } } + +func BenchmarkAsm(b *testing.B) { + for i := 0; i < b.N; i++ { + for _, tc := range testCases { + func() { + fh, err := os.Open(tc.path) + if err != nil { + b.Fatal(err) + } + defer fh.Close() + gzRdr, err := gzip.NewReader(fh) + if err != nil { + b.Fatal(err) + } + defer gzRdr.Close() + + // Setup where we'll store the metadata + w := bytes.NewBuffer([]byte{}) + sp := storage.NewJSONPacker(w) + fgp := storage.NewBufferFileGetPutter() + + // wrap the disassembly stream + tarStream, err := NewInputTarStream(gzRdr, sp, fgp) + if err != nil { + b.Fatal(err) + } + // read it all to the bit bucket + i1, err := io.Copy(ioutil.Discard, tarStream) + if err != nil { + b.Fatal(err) + } + + r := bytes.NewBuffer(w.Bytes()) + sup := storage.NewJSONUnpacker(r) + // and reuse the fgp that we Put the payloads to. + + rc := NewOutputTarStream(fgp, sup) + + i2, err := io.Copy(ioutil.Discard, rc) + if err != nil { + b.Fatal(err) + } + if i1 != i2 { + b.Errorf("%s: input(%d) and ouput(%d) byte count didn't match", tc.path, i1, i2) + } + }() + } + } +}