2021-05-10 05:56:10 +00:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-12-20 09:02:23 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filesys/page_writer"
|
2021-05-10 05:56:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TempFileDirtyPages struct {
|
2021-12-24 01:17:32 +00:00
|
|
|
f *File
|
|
|
|
writeWaitGroup sync.WaitGroup
|
|
|
|
pageAddLock sync.Mutex
|
|
|
|
chunkAddLock sync.Mutex
|
|
|
|
lastErr error
|
|
|
|
collection string
|
|
|
|
replication string
|
|
|
|
chunkedFile *page_writer.ChunkedFileWriter
|
2021-05-10 05:56:10 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func newTempFileDirtyPages(file *File, chunkSize int64) *TempFileDirtyPages {
|
2021-05-10 05:56:10 +00:00
|
|
|
|
|
|
|
tempFile := &TempFileDirtyPages{
|
2021-12-24 01:17:32 +00:00
|
|
|
f: file,
|
|
|
|
chunkedFile: page_writer.NewChunkedFileWriter(file.wfs.option.getTempFilePageDir(), chunkSize),
|
2021-05-10 05:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tempFile
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pages *TempFileDirtyPages) AddPage(offset int64, data []byte) {
|
|
|
|
|
|
|
|
pages.pageAddLock.Lock()
|
|
|
|
defer pages.pageAddLock.Unlock()
|
|
|
|
|
2021-12-25 06:38:22 +00:00
|
|
|
glog.V(4).Infof("%v tempfile AddPage [%d, %d)", pages.f.fullpath(), offset, offset+int64(len(data)))
|
2021-12-24 01:17:32 +00:00
|
|
|
if _, err := pages.chunkedFile.WriteAt(data, offset); err != nil {
|
2021-05-10 05:56:10 +00:00
|
|
|
pages.lastErr = err
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pages *TempFileDirtyPages) FlushData() error {
|
2021-12-24 01:17:32 +00:00
|
|
|
pages.saveChunkedFileToStorage()
|
2021-05-10 05:56:10 +00:00
|
|
|
pages.writeWaitGroup.Wait()
|
|
|
|
if pages.lastErr != nil {
|
|
|
|
return fmt.Errorf("flush data: %v", pages.lastErr)
|
|
|
|
}
|
2021-12-25 06:38:22 +00:00
|
|
|
pages.chunkedFile.Reset()
|
2021-05-10 05:56:10 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func (pages *TempFileDirtyPages) ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64) {
|
|
|
|
return pages.chunkedFile.ReadDataAt(data, startOffset)
|
|
|
|
}
|
2021-05-10 05:56:10 +00:00
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func (pages *TempFileDirtyPages) GetStorageOptions() (collection, replication string) {
|
|
|
|
return pages.collection, pages.replication
|
|
|
|
}
|
2021-05-10 05:56:10 +00:00
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func (pages *TempFileDirtyPages) saveChunkedFileToStorage() {
|
2021-05-11 04:47:07 +00:00
|
|
|
|
2021-12-24 02:23:18 +00:00
|
|
|
pages.chunkedFile.ProcessEachInterval(func(file *os.File, logicChunkIndex page_writer.LogicChunkIndex, interval *page_writer.ChunkWrittenInterval) {
|
2021-12-24 01:17:32 +00:00
|
|
|
reader := page_writer.NewFileIntervalReader(pages.chunkedFile, logicChunkIndex, interval)
|
2021-12-25 06:38:22 +00:00
|
|
|
pages.saveChunkedFileIntevalToStorage(reader, int64(logicChunkIndex)*pages.chunkedFile.ChunkSize+interval.StartOffset, interval.Size())
|
2021-12-24 01:17:32 +00:00
|
|
|
})
|
2021-05-10 05:56:10 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func (pages *TempFileDirtyPages) saveChunkedFileIntevalToStorage(reader io.Reader, offset int64, size int64) {
|
2021-05-10 05:56:10 +00:00
|
|
|
|
|
|
|
mtime := time.Now().UnixNano()
|
|
|
|
pages.writeWaitGroup.Add(1)
|
|
|
|
writer := func() {
|
|
|
|
defer pages.writeWaitGroup.Done()
|
|
|
|
|
2021-12-20 09:11:43 +00:00
|
|
|
chunk, collection, replication, err := pages.f.wfs.saveDataAsChunk(pages.f.fullpath())(reader, pages.f.Name, offset)
|
2021-05-10 05:56:10 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("%s saveToStorage [%d,%d): %v", pages.f.fullpath(), offset, offset+size, err)
|
|
|
|
pages.lastErr = err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
chunk.Mtime = mtime
|
|
|
|
pages.collection, pages.replication = collection, replication
|
|
|
|
pages.chunkAddLock.Lock()
|
|
|
|
defer pages.chunkAddLock.Unlock()
|
|
|
|
pages.f.addChunks([]*filer_pb.FileChunk{chunk})
|
|
|
|
glog.V(3).Infof("%s saveToStorage %s [%d,%d)", pages.f.fullpath(), chunk.FileId, offset, offset+size)
|
|
|
|
}
|
|
|
|
|
|
|
|
if pages.f.wfs.concurrentWriters != nil {
|
|
|
|
pages.f.wfs.concurrentWriters.Execute(writer)
|
|
|
|
} else {
|
|
|
|
go writer()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-12-24 01:17:32 +00:00
|
|
|
func (pages TempFileDirtyPages) Destroy() {
|
2021-12-25 06:38:22 +00:00
|
|
|
pages.chunkedFile.Reset()
|
2021-05-10 05:56:10 +00:00
|
|
|
}
|