Further simplifying merging files. Eliminated a structure, switched to PipeWriter

This commit is contained in:
Frederick F. Kautz IV 2015-01-04 14:46:51 +13:00
parent c3bc7176dc
commit b5d84790a2
2 changed files with 30 additions and 75 deletions

View File

@ -22,7 +22,6 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"errors" "errors"
"github.com/minio-io/minio/pkg/strbyteconv"
"io" "io"
"io/ioutil" "io/ioutil"
"os" "os"
@ -101,93 +100,48 @@ func splitStreamGoRoutine(reader io.Reader, chunkSize uint64, ch chan SplitMessa
close(ch) close(ch)
} }
func JoinStream(dirname string, inputPrefix string) <-chan JoinMessage { func JoinFiles(dirname string, inputPrefix string) io.Reader {
ch := make(chan JoinMessage) reader, writer := io.Pipe()
go joinStreamGoRoutine(dirname, inputPrefix, ch)
return ch
}
func joinStreamGoRoutine(dirname string, inputPrefix string, ch chan JoinMessage) {
var readError error
var bytesBuffer bytes.Buffer
bytesWriter := bufio.NewWriter(&bytesBuffer)
// read a full directory
fileInfos, readError := ioutil.ReadDir(dirname) fileInfos, readError := ioutil.ReadDir(dirname)
if readError != nil { if readError != nil {
ch <- JoinMessage{nil, 0, readError} writer.CloseWithError(readError)
} }
var newfileInfos []os.FileInfo var newfileInfos []os.FileInfo
for _, fi := range fileInfos { for _, fi := range fileInfos {
if strings.Contains(fi.Name(), inputPrefix) == true { if strings.Contains(fi.Name(), inputPrefix) == true {
newfileInfos = append(newfileInfos, fi) newfileInfos = append(newfileInfos, fi)
continue
} }
} }
if len(newfileInfos) == 0 { if len(newfileInfos) == 0 {
ch <- JoinMessage{nil, 0, errors.New("no files found for given prefix")} writer.CloseWithError(errors.New("no files found for given prefix"))
} }
for i := range newfileInfos { go joinFilesGoRoutine(newfileInfos, writer)
slice, err := ioutil.ReadFile(newfileInfos[i].Name()) return reader
}
func joinFilesGoRoutine(fileInfos []os.FileInfo, writer *io.PipeWriter) {
for _, fileInfo := range fileInfos {
file, err := os.Open(fileInfo.Name())
defer file.Close()
for err != nil {
writer.CloseWithError(err)
return
}
_, err = io.Copy(writer, file)
if err != nil { if err != nil {
ch <- JoinMessage{nil, 0, err} writer.CloseWithError(err)
} return
bytesWriter.Write(slice)
bytesWriter.Flush()
if bytesBuffer.Len() != 0 {
ch <- JoinMessage{&bytesBuffer, newfileInfos[i].Size(), nil}
} }
} }
writer.Close()
// close the channel, signaling the channel reader that the stream is complete
close(ch)
}
func JoinFilesWithPrefix(dirname string, inputPrefix string, outputFile string) error {
if dirname == "" {
return errors.New("Invalid directory")
}
if inputPrefix == "" {
return errors.New("Invalid argument inputPrefix cannot be empty string")
}
if outputFile == "" {
return errors.New("Invalid output file")
}
ch := JoinStream(dirname, inputPrefix)
var multiReaders []io.Reader
var aggregatedLength int64
for output := range ch {
if output.Err != nil {
return output.Err
}
multiReaders = append(multiReaders, output.Reader)
aggregatedLength += output.Length
}
newReader := io.MultiReader(multiReaders...)
aggregatedBytes := make([]byte, aggregatedLength)
_, err := newReader.Read(aggregatedBytes)
if err != nil {
return err
}
err = ioutil.WriteFile(outputFile, aggregatedBytes, 0600)
if err != nil {
return err
}
return nil
} }
// Takes a file and splits it into chunks with size chunkSize. The output // Takes a file and splits it into chunks with size chunkSize. The output
// filename is given with outputPrefix. // filename is given with outputPrefix.
func SplitFilesWithPrefix(filename string, chunkstr string, outputPrefix string) error { func SplitFileWithPrefix(filename string, chunkSize uint64, outputPrefix string) error {
// open file // open file
file, err := os.Open(filename) file, err := os.Open(filename)
defer file.Close() defer file.Close()
@ -199,11 +153,6 @@ func SplitFilesWithPrefix(filename string, chunkstr string, outputPrefix string)
return errors.New("Invalid argument outputPrefix cannot be empty string") return errors.New("Invalid argument outputPrefix cannot be empty string")
} }
chunkSize, err := strbyteconv.StringToBytes(chunkstr)
if err != nil {
return err
}
// start stream splitting goroutine // start stream splitting goroutine
ch := SplitStream(file, chunkSize) ch := SplitStream(file, chunkSize)

View File

@ -19,6 +19,8 @@ package split
import ( import (
"bufio" "bufio"
"bytes" "bytes"
"io"
"os"
"strconv" "strconv"
"testing" "testing"
@ -50,13 +52,17 @@ func (s *MySuite) TestSplitStream(c *C) {
} }
func (s *MySuite) TestFileSplitJoin(c *C) { func (s *MySuite) TestFileSplitJoin(c *C) {
err := SplitFilesWithPrefix("TESTFILE", "1KB", "TESTPREFIX") err := SplitFileWithPrefix("TESTFILE", 1024, "TESTPREFIX")
c.Assert(err, IsNil) c.Assert(err, IsNil)
err = SplitFilesWithPrefix("TESTFILE", "1KB", "") err = SplitFileWithPrefix("TESTFILE", 1024, "")
c.Assert(err, Not(IsNil)) c.Assert(err, Not(IsNil))
err = JoinFilesWithPrefix(".", "TESTPREFIX", "") devnull, err := os.OpenFile(os.DevNull, 2, os.ModeAppend)
defer devnull.Close()
reader := JoinFiles(".", "ERROR")
_, err = io.Copy(devnull, reader)
c.Assert(err, Not(IsNil)) c.Assert(err, Not(IsNil))
err = JoinFilesWithPrefix(".", "TESTPREFIX", "NEWFILE") reader = JoinFiles(".", "TESTPREFIX")
_, err = io.Copy(devnull, reader)
c.Assert(err, IsNil) c.Assert(err, IsNil)
} }