blob: 321f04682dc5875b188dc2756503330edcaa5973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
package main
import (
"bytes"
"fmt"
"io"
"log"
"os"
"path"
)
type ChunkId struct {
Ver int
Idx uint64
}
func (i *ChunkId) Reader(repo string) io.Reader {
p := path.Join(repo, fmt.Sprintf(versionFmt, i.Ver), chunksName, fmt.Sprintf(chunkIdFmt, i.Idx))
f, err := os.Open(p)
if err != nil {
log.Printf("Cannot open chunk %s\n", p)
}
return f
}
type Chunk struct {
Id *ChunkId
Value []byte
}
func (c *Chunk) Reader(repo string) (io.Reader, error) {
if c.Value != nil {
return bytes.NewReader(c.Value), nil
}
if c.Id != nil {
return c.Id.Reader(repo), nil
}
return nil, &ChunkError{"Uninitialized chunk"}
}
func (c *Chunk) isStored() bool {
return c.Id != nil
}
type ChunkError struct {
err string
}
func (e *ChunkError) Error() string {
return fmt.Sprintf("Chunk error: %s", e.err)
}
|