mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Fixed the enduring nasty "too many files open" bug!! Fix #446
This commit is contained in:
parent
0c2ca2a5e4
commit
452c8dc44b
2 changed files with 7 additions and 0 deletions
5
utils/cache/file_caches.go
vendored
5
utils/cache/file_caches.go
vendored
|
@ -121,6 +121,7 @@ func (fc *fileCache) Get(ctx context.Context, arg Item) (*CachedStream, error) {
|
||||||
return &CachedStream{
|
return &CachedStream{
|
||||||
Reader: sr,
|
Reader: sr,
|
||||||
Seeker: sr,
|
Seeker: sr,
|
||||||
|
Closer: r,
|
||||||
Cached: true,
|
Cached: true,
|
||||||
}, nil
|
}, nil
|
||||||
} else {
|
} else {
|
||||||
|
@ -135,11 +136,15 @@ func (fc *fileCache) Get(ctx context.Context, arg Item) (*CachedStream, error) {
|
||||||
type CachedStream struct {
|
type CachedStream struct {
|
||||||
io.Reader
|
io.Reader
|
||||||
io.Seeker
|
io.Seeker
|
||||||
|
io.Closer
|
||||||
Cached bool
|
Cached bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *CachedStream) Seekable() bool { return s.Seeker != nil }
|
func (s *CachedStream) Seekable() bool { return s.Seeker != nil }
|
||||||
func (s *CachedStream) Close() error {
|
func (s *CachedStream) Close() error {
|
||||||
|
if s.Closer != nil {
|
||||||
|
return s.Closer.Close()
|
||||||
|
}
|
||||||
if c, ok := s.Reader.(io.Closer); ok {
|
if c, ok := s.Reader.(io.Closer); ok {
|
||||||
return c.Close()
|
return c.Close()
|
||||||
}
|
}
|
||||||
|
|
2
utils/cache/file_caches_test.go
vendored
2
utils/cache/file_caches_test.go
vendored
|
@ -60,6 +60,7 @@ var _ = Describe("File Caches", func() {
|
||||||
s, err := fc.Get(context.TODO(), &testArg{"test"})
|
s, err := fc.Get(context.TODO(), &testArg{"test"})
|
||||||
Expect(err).To(BeNil())
|
Expect(err).To(BeNil())
|
||||||
Expect(s.Cached).To(BeFalse())
|
Expect(s.Cached).To(BeFalse())
|
||||||
|
Expect(s.Closer).To(BeNil())
|
||||||
Expect(ioutil.ReadAll(s)).To(Equal([]byte("test")))
|
Expect(ioutil.ReadAll(s)).To(Equal([]byte("test")))
|
||||||
|
|
||||||
// Second call is a HIT
|
// Second call is a HIT
|
||||||
|
@ -68,6 +69,7 @@ var _ = Describe("File Caches", func() {
|
||||||
Expect(err).To(BeNil())
|
Expect(err).To(BeNil())
|
||||||
Expect(ioutil.ReadAll(s)).To(Equal([]byte("test")))
|
Expect(ioutil.ReadAll(s)).To(Equal([]byte("test")))
|
||||||
Expect(s.Cached).To(BeTrue())
|
Expect(s.Cached).To(BeTrue())
|
||||||
|
Expect(s.Closer).ToNot(BeNil())
|
||||||
Expect(called).To(BeFalse())
|
Expect(called).To(BeFalse())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue