refactoring: separating .vif from tier file loading

This commit is contained in:
Chris Lu
2019-12-28 11:35:27 -08:00
parent 2000284435
commit f4a74e03d1
3 changed files with 11 additions and 13 deletions

View File

@@ -26,9 +26,13 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
fileName := v.FileName()
alreadyHasSuperBlock := false
if v.maybeLoadVolumeInfo() {
v.maybeLoadVolumeInfo()
if v.HasRemoteFile() {
v.noWriteCanDelete = true
// open remote file
v.noWriteOrDelete = false
glog.V(0).Infof("loading volume %d from remote %v", v.Id, v.volumeInfo.Files)
v.LoadRemoteFile()
alreadyHasSuperBlock = true
} else if exists, canRead, canWrite, modifiedTime, fileSize := checkFile(fileName + ".dat"); exists {
// open dat file