blob: 9f09e5547350a1f1dc0207c9d8a065bb7b1ebb84 (
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
|
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"}
}
type ChunkError struct {
err string
}
func (e *ChunkError) Error() string {
return fmt.Sprintf("Chunk error: %s", e.err)
}
|