diff --git a/request-interfaces.go b/request-interfaces.go index da56ed40..0aa16577 100644 --- a/request-interfaces.go +++ b/request-interfaces.go @@ -149,6 +149,12 @@ type ListerAt interface { ListAt([]os.FileInfo, int64) (int, error) } +// ListerAtCloser is a ListerAt that implements the Close method. +type ListerAtCloser interface { + ListerAt + Close() error +} + // TransferError is an optional interface that readerAt and writerAt // can implement to be notified about the error causing Serve() to exit // with the request still open diff --git a/request-server_test.go b/request-server_test.go index 6825bf43..ca911b89 100644 --- a/request-server_test.go +++ b/request-server_test.go @@ -793,6 +793,36 @@ func TestRequestReaddir(t *testing.T) { checkRequestServerAllocator(t, p) } +type testListerAtCloser struct { + isClosed bool +} + +func (l *testListerAtCloser) ListAt([]os.FileInfo, int64) (int, error) { + return 0, io.EOF +} + +func (l *testListerAtCloser) Close() error { + l.isClosed = true + return nil +} + +func TestRequestServerListerAtCloser(t *testing.T) { + p := clientRequestServerPair(t) + defer p.Close() + + handle, err := p.cli.opendir(context.Background(), "/") + require.NoError(t, err) + require.Len(t, p.svr.openRequests, 1) + req, ok := p.svr.getRequest(handle) + require.True(t, ok) + listerAt := &testListerAtCloser{} + req.setListerAt(listerAt) + assert.NotNil(t, req.state.getListerAt()) + p.cli.close(handle) + require.Len(t, p.svr.openRequests, 0) + assert.True(t, listerAt.isClosed) +} + func TestRequestStatVFS(t *testing.T) { if runtime.GOOS != "linux" && runtime.GOOS != "darwin" { t.Skip("StatVFS is implemented on linux and darwin") diff --git a/request.go b/request.go index 57d788df..cc4c2404 100644 --- a/request.go +++ b/request.go @@ -121,6 +121,18 @@ func (s *state) getListerAt() ListerAt { return s.listerAt } +func (s *state) closeListerAt() { + s.mu.Lock() + defer s.mu.Unlock() + + if s.listerAt != nil { + if closer, ok := s.listerAt.(ListerAtCloser); ok { + closer.Close() + } + s.listerAt = nil + } +} + // Request contains the data and state for the incoming service request. type Request struct { // Get, Put, Setstat, Stat, Rename, Remove @@ -229,6 +241,8 @@ func (r *Request) close() error { } }() + r.state.closeListerAt() + rd, wr, rw := r.getAllReaderWriters() var err error