aboutsummaryrefslogtreecommitdiff
path: root/repo.go
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2021-09-09 13:56:06 +0200
committern-peugnet <n.peugnet@free.fr>2021-09-09 13:56:06 +0200
commit27cf33b15ee5c028f4816607c034df68adf7df4f (patch)
tree0c66c9a68295379cfc3f600c908f094c590b09ac /repo.go
parent8a03c46bf24b5a1fa1d2080ac4f763532db01bbe (diff)
downloaddna-backup-27cf33b15ee5c028f4816607c034df68adf7df4f.tar.gz
dna-backup-27cf33b15ee5c028f4816607c034df68adf7df4f.zip
move unused functions from repo to repo_test
Diffstat (limited to 'repo.go')
-rw-r--r--repo.go40
1 files changed, 1 insertions, 39 deletions
diff --git a/repo.go b/repo.go
index 908429d..1c1267c 100644
--- a/repo.go
+++ b/repo.go
@@ -171,32 +171,6 @@ func (r *Repo) chunkMinLen() int {
return sketch.SuperFeatureSize(r.chunkSize, r.sketchSfCount, r.sketchFCount)
}
-func (r *Repo) chunkStream(stream io.Reader, chunks chan<- []byte) {
- var buff []byte
- var prev, read = r.chunkSize, 0
- var err error
-
- for err != io.EOF {
- if prev == r.chunkSize {
- buff = make([]byte, r.chunkSize)
- prev, err = stream.Read(buff)
- } else {
- read, err = stream.Read(buff[prev:])
- prev += read
- }
- if err != nil && err != io.EOF {
- log.Println(err)
- }
- if prev == r.chunkSize {
- chunks <- buff
- }
- }
- if prev != r.chunkSize {
- chunks <- buff[:prev]
- }
- close(chunks)
-}
-
func storeFileList(dest string, files []File) {
file, err := os.Create(dest)
if err == nil {
@@ -245,7 +219,7 @@ func (r *Repo) StoreChunkContent(id *ChunkId, reader io.Reader) error {
// LoadChunkContent loads a chunk from the repo.
// If the chunk is in cache, get it from cache, else read it from drive.
-func (r *Repo) LoadChunkContent(id *ChunkId) io.ReadSeeker {
+func (r *Repo) LoadChunkContent(id *ChunkId) *bytes.Reader {
value, exists := r.chunkCache.Get(id)
if !exists {
path := id.Path(r.path)
@@ -262,18 +236,6 @@ func (r *Repo) LoadChunkContent(id *ChunkId) io.ReadSeeker {
return bytes.NewReader(value)
}
-func storeChunks(dest string, chunks <-chan []byte) {
- i := 0
- for c := range chunks {
- path := path.Join(dest, fmt.Sprintf(chunkIdFmt, i))
- err := os.WriteFile(path, c, 0664)
- if err != nil {
- log.Println(err)
- }
- i++
- }
-}
-
// TODO: use atoi for chunkid
func (r *Repo) loadChunks(versions []string, chunks chan<- IdentifiedChunk) {
for i, v := range versions {