dirty_pages_stream.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package filesys
  2. import (
  3. "fmt"
  4. "github.com/chrislusf/seaweedfs/weed/filesys/page_writer"
  5. "github.com/chrislusf/seaweedfs/weed/glog"
  6. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  7. "io"
  8. "sync"
  9. "time"
  10. )
  11. type StreamDirtyPages struct {
  12. f *File
  13. writeWaitGroup sync.WaitGroup
  14. pageAddLock sync.Mutex
  15. chunkAddLock sync.Mutex
  16. lastErr error
  17. collection string
  18. replication string
  19. chunkedStream *page_writer.ChunkedStreamWriter
  20. }
  21. func newStreamDirtyPages(file *File, chunkSize int64) *StreamDirtyPages {
  22. dirtyPages := &StreamDirtyPages{
  23. f: file,
  24. chunkedStream: page_writer.NewChunkedStreamWriter(chunkSize),
  25. }
  26. dirtyPages.chunkedStream.SetSaveToStorageFunction(dirtyPages.saveChunkedFileIntevalToStorage)
  27. return dirtyPages
  28. }
  29. func (pages *StreamDirtyPages) AddPage(offset int64, data []byte) {
  30. pages.pageAddLock.Lock()
  31. defer pages.pageAddLock.Unlock()
  32. glog.V(4).Infof("%v stream AddPage [%d, %d)", pages.f.fullpath(), offset, offset+int64(len(data)))
  33. if _, err := pages.chunkedStream.WriteAt(data, offset); err != nil {
  34. pages.lastErr = err
  35. }
  36. return
  37. }
  38. func (pages *StreamDirtyPages) FlushData() error {
  39. pages.saveChunkedFileToStorage()
  40. pages.writeWaitGroup.Wait()
  41. if pages.lastErr != nil {
  42. return fmt.Errorf("flush data: %v", pages.lastErr)
  43. }
  44. return nil
  45. }
  46. func (pages *StreamDirtyPages) ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64) {
  47. return pages.chunkedStream.ReadDataAt(data, startOffset)
  48. }
  49. func (pages *StreamDirtyPages) GetStorageOptions() (collection, replication string) {
  50. return pages.collection, pages.replication
  51. }
  52. func (pages *StreamDirtyPages) saveChunkedFileToStorage() {
  53. pages.chunkedStream.FlushAll()
  54. }
  55. func (pages *StreamDirtyPages) saveChunkedFileIntevalToStorage(reader io.Reader, offset int64, size int64, cleanupFn func()) {
  56. mtime := time.Now().UnixNano()
  57. pages.writeWaitGroup.Add(1)
  58. writer := func() {
  59. defer pages.writeWaitGroup.Done()
  60. defer cleanupFn()
  61. chunk, collection, replication, err := pages.f.wfs.saveDataAsChunk(pages.f.fullpath())(reader, pages.f.Name, offset)
  62. if err != nil {
  63. glog.V(0).Infof("%s saveToStorage [%d,%d): %v", pages.f.fullpath(), offset, offset+size, err)
  64. pages.lastErr = err
  65. return
  66. }
  67. chunk.Mtime = mtime
  68. pages.collection, pages.replication = collection, replication
  69. pages.chunkAddLock.Lock()
  70. pages.f.addChunks([]*filer_pb.FileChunk{chunk})
  71. glog.V(3).Infof("%s saveToStorage %s [%d,%d)", pages.f.fullpath(), chunk.FileId, offset, offset+size)
  72. pages.chunkAddLock.Unlock()
  73. }
  74. if pages.f.wfs.concurrentWriters != nil {
  75. pages.f.wfs.concurrentWriters.Execute(writer)
  76. } else {
  77. go writer()
  78. }
  79. }
  80. func (pages StreamDirtyPages) Destroy() {
  81. pages.chunkedStream.Destroy()
  82. }