Browse Source

read in case cross chunks

pull/1298/head
Chris Lu 5 years ago
parent
commit
7c10602b49
  1. 20
      weed/filer2/stream.go

20
weed/filer2/stream.go

@ -98,18 +98,20 @@ func NewChunkStreamReaderFromFiler(masterClient *wdclient.MasterClient, chunks [
}
}
func (c *ChunkStreamReader) Read(p []byte) (n int, err error) {
if c.isBufferEmpty() {
if c.chunkIndex >= len(c.chunkViews) {
return 0, io.EOF
for n < len(p) {
if c.isBufferEmpty() {
if c.chunkIndex >= len(c.chunkViews) {
return n, io.EOF
}
chunkView := c.chunkViews[c.chunkIndex]
c.fetchChunkToBuffer(chunkView)
c.chunkIndex++
}
chunkView := c.chunkViews[c.chunkIndex]
c.fetchChunkToBuffer(chunkView)
c.chunkIndex++
t := copy(p[n:], c.buffer[c.bufferPos:])
c.bufferPos += t
n += t
}
n = copy(p, c.buffer[c.bufferPos:])
c.bufferPos += n
return
}

Loading…
Cancel
Save