mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-15 04:58:36 +00:00
Merge branch 'longlink'
This commit is contained in:
commit
b5c23068bb
4 changed files with 114 additions and 25 deletions
|
@ -154,44 +154,60 @@ func (tr *Reader) Next() (*Header, error) {
|
||||||
}
|
}
|
||||||
return hdr, nil
|
return hdr, nil
|
||||||
case TypeGNULongName:
|
case TypeGNULongName:
|
||||||
|
var b *bytes.Buffer
|
||||||
|
if tr.RawAccounting {
|
||||||
|
b = bytes.NewBuffer(tr.RawBytes())
|
||||||
|
}
|
||||||
// We have a GNU long name header. Its contents are the real file name.
|
// We have a GNU long name header. Its contents are the real file name.
|
||||||
realname, err := ioutil.ReadAll(tr)
|
realname, err := ioutil.ReadAll(tr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var b []byte
|
|
||||||
if tr.RawAccounting {
|
if tr.RawAccounting {
|
||||||
|
if _, err = tr.rawBytes.Write(b.Bytes()); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
if _, err = tr.rawBytes.Write(realname); err != nil {
|
if _, err = tr.rawBytes.Write(realname); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
b = tr.RawBytes()
|
b.Reset()
|
||||||
|
b.Write(tr.RawBytes())
|
||||||
}
|
}
|
||||||
hdr, err := tr.Next()
|
hdr, err := tr.Next()
|
||||||
// since the above call to Next() resets the buffer, we need to throw the bytes over
|
// since the above call to Next() resets the buffer, we need to throw the bytes over
|
||||||
if tr.RawAccounting {
|
if tr.RawAccounting {
|
||||||
if _, err = tr.rawBytes.Write(b); err != nil {
|
b.Write(tr.RawBytes())
|
||||||
|
if _, err = tr.rawBytes.Write(b.Bytes()); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
hdr.Name = cString(realname)
|
hdr.Name = cString(realname)
|
||||||
return hdr, err
|
return hdr, err
|
||||||
case TypeGNULongLink:
|
case TypeGNULongLink:
|
||||||
|
var b *bytes.Buffer
|
||||||
|
if tr.RawAccounting {
|
||||||
|
b = bytes.NewBuffer(tr.RawBytes())
|
||||||
|
}
|
||||||
// We have a GNU long link header.
|
// We have a GNU long link header.
|
||||||
realname, err := ioutil.ReadAll(tr)
|
realname, err := ioutil.ReadAll(tr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var b []byte
|
|
||||||
if tr.RawAccounting {
|
if tr.RawAccounting {
|
||||||
|
if _, err = tr.rawBytes.Write(b.Bytes()); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
if _, err = tr.rawBytes.Write(realname); err != nil {
|
if _, err = tr.rawBytes.Write(realname); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
b = tr.RawBytes()
|
b.Reset()
|
||||||
|
b.Write(tr.RawBytes())
|
||||||
}
|
}
|
||||||
hdr, err := tr.Next()
|
hdr, err := tr.Next()
|
||||||
// since the above call to Next() resets the buffer, we need to throw the bytes over
|
// since the above call to Next() resets the buffer, we need to throw the bytes over
|
||||||
if tr.RawAccounting {
|
if tr.RawAccounting {
|
||||||
if _, err = tr.rawBytes.Write(b); err != nil {
|
b.Write(tr.RawBytes())
|
||||||
|
if _, err = tr.rawBytes.Write(b.Bytes()); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,7 +114,7 @@ func TestTarStreamMangledGetterPutter(t *testing.T) {
|
||||||
|
|
||||||
func TestTarStream(t *testing.T) {
|
func TestTarStream(t *testing.T) {
|
||||||
var (
|
var (
|
||||||
expectedSum = "1eb237ff69bca6e22789ecb05b45d35ca307adbd"
|
expectedSHA1Sum = "1eb237ff69bca6e22789ecb05b45d35ca307adbd"
|
||||||
expectedSize int64 = 10240
|
expectedSize int64 = 10240
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -153,8 +153,8 @@ func TestTarStream(t *testing.T) {
|
||||||
if i != expectedSize {
|
if i != expectedSize {
|
||||||
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
||||||
}
|
}
|
||||||
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSum {
|
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSHA1Sum {
|
||||||
t.Fatalf("checksum of tar: expected %s; got %x", expectedSum, h0.Sum(nil))
|
t.Fatalf("checksum of tar: expected %s; got %x", expectedSHA1Sum, h0.Sum(nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Logf("%s", w.String()) // if we fail, then show the packed info
|
t.Logf("%s", w.String()) // if we fail, then show the packed info
|
||||||
|
@ -175,7 +175,75 @@ func TestTarStream(t *testing.T) {
|
||||||
if i != expectedSize {
|
if i != expectedSize {
|
||||||
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
||||||
}
|
}
|
||||||
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSum {
|
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSHA1Sum {
|
||||||
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSum, h1.Sum(nil))
|
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSHA1Sum, h1.Sum(nil))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTarGNUTar(t *testing.T) {
|
||||||
|
var (
|
||||||
|
expectedSHA1Sum = "d9f6babe107b7247953dff6b5b5ae31a3a880add"
|
||||||
|
expectedSize int64 = 20480
|
||||||
|
)
|
||||||
|
|
||||||
|
fh, err := os.Open("./testdata/longlink.tar.gz")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer fh.Close()
|
||||||
|
gzRdr, err := gzip.NewReader(fh)
|
||||||
|
if err != nil {
|
||||||
|
t.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 {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// get a sum of the stream after it has passed through to ensure it's the same.
|
||||||
|
h0 := sha1.New()
|
||||||
|
tRdr0 := io.TeeReader(tarStream, h0)
|
||||||
|
|
||||||
|
// read it all to the bit bucket
|
||||||
|
i, err := io.Copy(ioutil.Discard, tRdr0)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if i != expectedSize {
|
||||||
|
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
||||||
|
}
|
||||||
|
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSHA1Sum {
|
||||||
|
t.Fatalf("checksum of tar: expected %s; got %x", expectedSHA1Sum, h0.Sum(nil))
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Logf("%s", w.String()) // if we fail, then show the packed info
|
||||||
|
|
||||||
|
// If we've made it this far, then we'll turn it around and create a tar
|
||||||
|
// stream from the packed metadata and buffered file contents.
|
||||||
|
r := bytes.NewBuffer(w.Bytes())
|
||||||
|
sup := storage.NewJSONUnpacker(r)
|
||||||
|
// and reuse the fgp that we Put the payloads to.
|
||||||
|
|
||||||
|
rc := NewOutputTarStream(fgp, sup)
|
||||||
|
h1 := sha1.New()
|
||||||
|
i, err = io.Copy(h1, rc)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if i != expectedSize {
|
||||||
|
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
||||||
|
}
|
||||||
|
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSHA1Sum {
|
||||||
|
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSHA1Sum, h1.Sum(nil))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,27 +55,32 @@ func NewInputTarStream(r io.Reader, p storage.Packer, fp storage.FilePutter) (io
|
||||||
}
|
}
|
||||||
// even when an EOF is reached, there is often 1024 null bytes on
|
// even when an EOF is reached, there is often 1024 null bytes on
|
||||||
// the end of an archive. Collect them too.
|
// the end of an archive. Collect them too.
|
||||||
|
if b := tr.RawBytes(); len(b) > 0 {
|
||||||
_, err := p.AddEntry(storage.Entry{
|
_, err := p.AddEntry(storage.Entry{
|
||||||
Type: storage.SegmentType,
|
Type: storage.SegmentType,
|
||||||
Payload: tr.RawBytes(),
|
Payload: b,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
pW.CloseWithError(err)
|
pW.CloseWithError(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break // not return. We need the end of the reader.
|
break // not return. We need the end of the reader.
|
||||||
}
|
}
|
||||||
if hdr == nil {
|
if hdr == nil {
|
||||||
break // not return. We need the end of the reader.
|
break // not return. We need the end of the reader.
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := p.AddEntry(storage.Entry{
|
if b := tr.RawBytes(); len(b) > 0 {
|
||||||
|
_, err := p.AddEntry(storage.Entry{
|
||||||
Type: storage.SegmentType,
|
Type: storage.SegmentType,
|
||||||
Payload: tr.RawBytes(),
|
Payload: b,
|
||||||
}); err != nil {
|
})
|
||||||
|
if err != nil {
|
||||||
pW.CloseWithError(err)
|
pW.CloseWithError(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var csum []byte
|
var csum []byte
|
||||||
if hdr.Size > 0 {
|
if hdr.Size > 0 {
|
||||||
|
|
BIN
tar/asm/testdata/longlink.tar.gz
vendored
Normal file
BIN
tar/asm/testdata/longlink.tar.gz
vendored
Normal file
Binary file not shown.
Loading…
Reference in a new issue