2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-26 04:22:36 +00:00
restic/internal/cache
Alexander Neumann 99f7fd74e3 backend: Improve Save()
As mentioned in issue [#1560](https://github.com/restic/restic/pull/1560#issuecomment-364689346)
this changes the signature for `backend.Save()`. It now takes a
parameter of interface type `RewindReader`, so that the backend
implementations or our `RetryBackend` middleware can reset the reader to
the beginning and then retry an upload operation.

The `RewindReader` interface also provides a `Length()` method, which is
used in the backend to get the size of the data to be saved. This
removes several ugly hacks we had to do to pull the size back out of the
`io.Reader` passed to `Save()` before. In the `s3` and `rest` backend
this is actively used.
2018-03-03 15:49:44 +01:00
..
backend_test.go backend: Improve Save() 2018-03-03 15:49:44 +01:00
backend.go backend: Improve Save() 2018-03-03 15:49:44 +01:00
cache.go cache: Simplify cache dir creation 2017-11-24 20:53:26 +01:00
dir.go cache: Correctly return dir for Windows/darwin 2017-11-20 06:11:18 +01:00
file_test.go Add cache 2017-09-24 21:54:53 +02:00
file.go small cleanup: 2017-10-25 12:03:55 -04:00
testing.go Add cache 2017-09-24 21:54:53 +02:00