Refactor Restore()

This commit refactors out the complexity of downloading ordered WAL
files in parallel to a type called `WALDownloader`. This makes it
easier to test the restore separately from the download.
This commit is contained in:
Ben Johnson
2022-01-04 14:47:11 -07:00
parent 531e19ed6f
commit 3f0ec9fa9f
130 changed files with 2943 additions and 1254 deletions

14
mock/read_closer.go Normal file
View File

@@ -0,0 +1,14 @@
package mock
type ReadCloser struct {
CloseFunc func() error
ReadFunc func([]byte) (int, error)
}
func (r *ReadCloser) Close() error {
return r.CloseFunc()
}
func (r *ReadCloser) Read(b []byte) (int, error) {
return r.ReadFunc(b)
}