2015-03-02 20:25:03 +00:00
|
|
|
package asm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2015-03-02 21:49:53 +00:00
|
|
|
"io/ioutil"
|
2015-03-02 20:25:03 +00:00
|
|
|
|
|
|
|
"github.com/vbatts/tar-split/archive/tar"
|
|
|
|
"github.com/vbatts/tar-split/tar/storage"
|
|
|
|
)
|
|
|
|
|
2015-03-02 21:49:53 +00:00
|
|
|
// NewInputTarStream wraps the Reader stream of a tar archive and provides a
|
|
|
|
// Reader stream of the same.
|
|
|
|
//
|
|
|
|
// In the middle it will pack the segments and file metadata to storage.Packer
|
|
|
|
// `p`.
|
|
|
|
//
|
|
|
|
// The the FilePutter is where payload of files in the stream are stashed. If
|
|
|
|
// this stashing is not needed, fp can be nil or use NewDiscardFilePutter.
|
|
|
|
func NewInputTarStream(r io.Reader, p storage.Packer, fp FilePutter) (io.Reader, error) {
|
2015-03-02 20:25:03 +00:00
|
|
|
// What to do here... folks will want their own access to the Reader that is
|
|
|
|
// their tar archive stream, but we'll need that same stream to use our
|
|
|
|
// forked 'archive/tar'.
|
|
|
|
// Perhaps do an io.TeeReader that hand back an io.Reader for them to read
|
|
|
|
// from, and we'll mitm the stream to store metadata.
|
|
|
|
// We'll need a FilePutter too ...
|
|
|
|
|
|
|
|
// Another concern, whether to do any FilePutter operations, such that we
|
|
|
|
// don't extract any amount of the archive. But then again, we're not making
|
|
|
|
// files/directories, hardlinks, etc. Just writing the io to the FilePutter.
|
|
|
|
// Perhaps we have a DiscardFilePutter that is a bit bucket.
|
|
|
|
|
|
|
|
// we'll return the pipe reader, since TeeReader does not buffer and will
|
|
|
|
// only read what the outputRdr Read's. Since Tar archive's have padding on
|
|
|
|
// the end, we want to be the one reading the padding, even if the user's
|
|
|
|
// `archive/tar` doesn't care.
|
|
|
|
pR, pW := io.Pipe()
|
|
|
|
outputRdr := io.TeeReader(r, pW)
|
|
|
|
|
2015-03-04 22:14:43 +00:00
|
|
|
// we need a putter that will generate the crc64 sums of file payloads
|
2015-03-03 19:23:04 +00:00
|
|
|
if fp == nil {
|
|
|
|
fp = NewDiscardFilePutter()
|
|
|
|
}
|
|
|
|
|
2015-03-02 21:49:53 +00:00
|
|
|
go func() {
|
|
|
|
tr := tar.NewReader(outputRdr)
|
|
|
|
tr.RawAccounting = true
|
|
|
|
for {
|
|
|
|
hdr, err := tr.Next()
|
|
|
|
if err != nil {
|
|
|
|
if err != io.EOF {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// even when an EOF is reached, there is often 1024 null bytes on
|
|
|
|
// the end of an archive. Collect them too.
|
|
|
|
_, err := p.AddEntry(storage.Entry{
|
|
|
|
Type: storage.SegmentType,
|
|
|
|
Payload: tr.RawBytes(),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
2015-03-04 22:14:43 +00:00
|
|
|
break // not return. We need the end of the reader.
|
2015-03-02 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := p.AddEntry(storage.Entry{
|
|
|
|
Type: storage.SegmentType,
|
|
|
|
Payload: tr.RawBytes(),
|
|
|
|
}); err != nil {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
sumChan := make(chan []byte)
|
2015-03-02 21:49:53 +00:00
|
|
|
if hdr.Size > 0 {
|
2015-03-03 19:23:04 +00:00
|
|
|
// if there is a file payload to write, then write the file to the FilePutter
|
|
|
|
fileRdr, fileWrtr := io.Pipe()
|
|
|
|
go func() {
|
2015-03-05 19:09:17 +00:00
|
|
|
_, csum, err := fp.Put(hdr.Name, fileRdr)
|
2015-03-03 19:23:04 +00:00
|
|
|
if err != nil {
|
2015-03-02 21:49:53 +00:00
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
2015-03-05 19:09:17 +00:00
|
|
|
sumChan <- csum
|
2015-03-03 19:23:04 +00:00
|
|
|
}()
|
|
|
|
if _, err = io.Copy(fileWrtr, tr); err != nil {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
return
|
2015-03-02 21:49:53 +00:00
|
|
|
}
|
2015-03-04 22:14:43 +00:00
|
|
|
fileWrtr.Close()
|
2015-03-02 21:49:53 +00:00
|
|
|
}
|
|
|
|
// File entries added, regardless of size
|
2015-03-04 22:14:43 +00:00
|
|
|
_, err = p.AddEntry(storage.Entry{
|
2015-03-03 19:23:04 +00:00
|
|
|
Type: storage.FileType,
|
|
|
|
Name: hdr.Name,
|
|
|
|
Size: hdr.Size,
|
2015-03-05 19:09:17 +00:00
|
|
|
Payload: <-sumChan,
|
2015-03-04 22:14:43 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2015-03-02 21:49:53 +00:00
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
if b := tr.RawBytes(); len(b) > 0 {
|
|
|
|
_, err = p.AddEntry(storage.Entry{
|
|
|
|
Type: storage.SegmentType,
|
|
|
|
Payload: b,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
2015-03-02 21:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// it is allowable, and not uncommon that there is further padding on the
|
2015-03-04 22:14:43 +00:00
|
|
|
// end of an archive, apart from the expected 1024 null bytes.
|
2015-03-02 21:49:53 +00:00
|
|
|
remainder, err := ioutil.ReadAll(outputRdr)
|
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
}
|
|
|
|
_, err = p.AddEntry(storage.Entry{
|
|
|
|
Type: storage.SegmentType,
|
|
|
|
Payload: remainder,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
pW.CloseWithError(err)
|
|
|
|
} else {
|
|
|
|
pW.Close()
|
|
|
|
}
|
|
|
|
}()
|
2015-03-02 20:25:03 +00:00
|
|
|
|
|
|
|
return pR, nil
|
|
|
|
}
|