|
@ -17,27 +17,32 @@ func StreamContent(masterClient *wdclient.MasterClient, w io.Writer, chunks []*f |
|
|
// fmt.Printf("start to stream content for chunks: %+v\n", chunks)
|
|
|
// fmt.Printf("start to stream content for chunks: %+v\n", chunks)
|
|
|
chunkViews := ViewFromChunks(masterClient.LookupFileId, chunks, offset, size) |
|
|
chunkViews := ViewFromChunks(masterClient.LookupFileId, chunks, offset, size) |
|
|
|
|
|
|
|
|
fileId2Url := make(map[string]string) |
|
|
|
|
|
|
|
|
fileId2Url := make(map[string][]string) |
|
|
|
|
|
|
|
|
for _, chunkView := range chunkViews { |
|
|
for _, chunkView := range chunkViews { |
|
|
|
|
|
|
|
|
urlString, err := masterClient.LookupFileId(chunkView.FileId) |
|
|
|
|
|
|
|
|
urlStrings, err := masterClient.LookupFileId(chunkView.FileId) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
return err |
|
|
return err |
|
|
} |
|
|
} |
|
|
fileId2Url[chunkView.FileId] = urlString |
|
|
|
|
|
|
|
|
fileId2Url[chunkView.FileId] = urlStrings |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
for _, chunkView := range chunkViews { |
|
|
for _, chunkView := range chunkViews { |
|
|
|
|
|
|
|
|
urlString := fileId2Url[chunkView.FileId] |
|
|
|
|
|
err := util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
w.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
return err |
|
|
|
|
|
|
|
|
urlStrings := fileId2Url[chunkView.FileId] |
|
|
|
|
|
for _, urlString := range urlStrings { |
|
|
|
|
|
err := util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
w.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
// data already written to w would be wrong
|
|
|
|
|
|
// but usually there are nothing written if fails to read
|
|
|
|
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
} else { |
|
|
|
|
|
break |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -51,24 +56,28 @@ func ReadAll(masterClient *wdclient.MasterClient, chunks []*filer_pb.FileChunk) |
|
|
|
|
|
|
|
|
buffer := bytes.Buffer{} |
|
|
buffer := bytes.Buffer{} |
|
|
|
|
|
|
|
|
lookupFileIdFn := func(fileId string) (targetUrl string, err error) { |
|
|
|
|
|
|
|
|
lookupFileIdFn := func(fileId string) (targetUrls []string, err error) { |
|
|
return masterClient.LookupFileId(fileId) |
|
|
return masterClient.LookupFileId(fileId) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
chunkViews := ViewFromChunks(lookupFileIdFn, chunks, 0, math.MaxInt64) |
|
|
chunkViews := ViewFromChunks(lookupFileIdFn, chunks, 0, math.MaxInt64) |
|
|
|
|
|
|
|
|
for _, chunkView := range chunkViews { |
|
|
for _, chunkView := range chunkViews { |
|
|
urlString, err := lookupFileIdFn(chunkView.FileId) |
|
|
|
|
|
|
|
|
urlStrings, err := lookupFileIdFn(chunkView.FileId) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
return nil, err |
|
|
return nil, err |
|
|
} |
|
|
} |
|
|
err = util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
buffer.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
return nil, err |
|
|
|
|
|
|
|
|
for _, urlString := range urlStrings { |
|
|
|
|
|
err = util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
buffer.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
buffer.Reset() |
|
|
|
|
|
} else { |
|
|
|
|
|
break |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
return buffer.Bytes(), nil |
|
|
return buffer.Bytes(), nil |
|
@ -89,7 +98,7 @@ var _ = io.ReadSeeker(&ChunkStreamReader{}) |
|
|
|
|
|
|
|
|
func NewChunkStreamReaderFromFiler(masterClient *wdclient.MasterClient, chunks []*filer_pb.FileChunk) *ChunkStreamReader { |
|
|
func NewChunkStreamReaderFromFiler(masterClient *wdclient.MasterClient, chunks []*filer_pb.FileChunk) *ChunkStreamReader { |
|
|
|
|
|
|
|
|
lookupFileIdFn := func(fileId string) (targetUrl string, err error) { |
|
|
|
|
|
|
|
|
lookupFileIdFn := func(fileId string) (targetUrl []string, err error) { |
|
|
return masterClient.LookupFileId(fileId) |
|
|
return masterClient.LookupFileId(fileId) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -169,17 +178,24 @@ func (c *ChunkStreamReader) Seek(offset int64, whence int) (int64, error) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (c *ChunkStreamReader) fetchChunkToBuffer(chunkView *ChunkView) error { |
|
|
func (c *ChunkStreamReader) fetchChunkToBuffer(chunkView *ChunkView) error { |
|
|
urlString, err := c.lookupFileId(chunkView.FileId) |
|
|
|
|
|
|
|
|
urlStrings, err := c.lookupFileId(chunkView.FileId) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
glog.V(1).Infof("operation LookupFileId %s failed, err: %v", chunkView.FileId, err) |
|
|
return err |
|
|
return err |
|
|
} |
|
|
} |
|
|
var buffer bytes.Buffer |
|
|
var buffer bytes.Buffer |
|
|
err = util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
buffer.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
for _, urlString := range urlStrings { |
|
|
|
|
|
err = util.ReadUrlAsStream(urlString, chunkView.CipherKey, chunkView.IsGzipped, chunkView.IsFullChunk(), chunkView.Offset, int(chunkView.Size), func(data []byte) { |
|
|
|
|
|
buffer.Write(data) |
|
|
|
|
|
}) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
buffer.Reset() |
|
|
|
|
|
} else { |
|
|
|
|
|
break |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.V(1).Infof("read %s failed, err: %v", chunkView.FileId, err) |
|
|
|
|
|
return err |
|
|
return err |
|
|
} |
|
|
} |
|
|
c.buffer = buffer.Bytes() |
|
|
c.buffer = buffer.Bytes() |
|
|