add cache

This commit is contained in:
YouROK
2020-12-07 15:55:54 +03:00
parent 30604c6e94
commit a5c1d5b4de
7 changed files with 142 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ import (
"server/log"
"server/settings"
"server/torr/state"
cacheSt "server/torr/storage/state"
"server/torr/utils"
utils2 "server/utils"
@@ -258,10 +259,10 @@ func (t *Torrent) Preload(index int, size int64) {
}
}()
if index < 0 || index >= len(t.Files()) {
index = 0
file := t.findFileIndex(index)
if file == nil {
file = t.Files()[0]
}
file := t.Files()[index]
buff5mb := int64(5 * 1024 * 1024)
startPreloadLength := size
@@ -393,7 +394,7 @@ func (t *Torrent) Status() *state.TorrentStatus {
return files[i].Path() < files[j].Path()
})
for i, f := range files {
st.FileStats = append(st.FileStats, state.TorrentFileStat{
st.FileStats = append(st.FileStats, &state.TorrentFileStat{
Id: i + 1,
Path: f.Path(),
Length: f.Length(),
@@ -403,3 +404,32 @@ func (t *Torrent) Status() *state.TorrentStatus {
}
return st
}
func (t *Torrent) CacheState() *cacheSt.CacheState {
if t.Torrent != nil && t.cache != nil {
st := t.cache.GetState()
st.DownloadSpeed = t.DownloadSpeed
return st
}
return nil
}
func (t *Torrent) findFileIndex(index int) *torrent.File {
st := t.Status()
var stFile *state.TorrentFileStat
for _, f := range st.FileStats {
if index == f.Id {
stFile = f
break
}
}
if stFile == nil {
return nil
}
for _, file := range t.Files() {
if file.Path() == stFile.Path {
return file
}
}
return nil
}