-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchunk.go
65 lines (48 loc) · 1.29 KB
/
chunk.go
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package godm
import (
"errors"
"io"
"net/http"
"os"
"strconv"
)
type Chunk struct {
start int
end int
etag string
url string
}
func (chunk *Chunk) doPartialDownload(client *http.Client, file *os.File, compress bool) error {
// TODO: handle with gzip compression
req, _ := http.NewRequest("GET", chunk.url, nil)
req.Header.Set("Range", "bytes="+strconv.Itoa(chunk.start)+"-"+strconv.Itoa(chunk.end))
if compress {
req.Header.Set("Accept-Encoding", "gzip, deflate, br")
}
resp, err := client.Do(req)
// TODO: status code check esp. for dividing 200 and 206
if err != nil {
return err
}
defer resp.Body.Close()
etag := resp.Header.Get("ETag")
log.Debug("P_ETag: ", etag)
if etag != "" && etag != chunk.etag {
return errors.New("ETag mismatch")
}
contents, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
if len(contents)-1 != chunk.end-chunk.start {
log.Warn("read different bytes than expected at " + strconv.Itoa(chunk.start) + "-" + strconv.Itoa(chunk.end) + " : " + strconv.Itoa(len(contents)))
}
n, err := file.Write(contents)
if err != nil {
return err
}
if n-1 != chunk.end-chunk.start {
log.Warn("write different bytes than expected at " + strconv.Itoa(chunk.start) + "-" + strconv.Itoa(chunk.end) + " : " + strconv.Itoa(n))
}
return nil
}