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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
package lbc
import (
"context"
"fmt"
"io"
"io/ioutil"
"net/http"
"sync/atomic"
)
var chunkSize int = 5000
type LoadBearingConnection interface {
Start(context.Context, bool) bool
Transferred() uint64
Client() *http.Client
IsValid() bool
}
type LoadBearingConnectionDownload struct {
Path string
downloaded uint64
client *http.Client
debug bool
valid bool
}
func (lbd *LoadBearingConnectionDownload) Transferred() uint64 {
transferred := atomic.LoadUint64(&lbd.downloaded)
if lbd.debug {
fmt.Printf("download: Transferred: %v\n", transferred)
}
return transferred
}
func (lbd *LoadBearingConnectionDownload) Client() *http.Client {
return lbd.client
}
type countingReader struct {
n *uint64
ctx context.Context
readable io.Reader
}
func (cr *countingReader) Read(p []byte) (n int, err error) {
if cr.ctx.Err() != nil {
return 0, io.EOF
}
n, err = cr.readable.Read(p)
*cr.n += uint64(n)
return
}
func (lbd *LoadBearingConnectionDownload) Start(ctx context.Context, debug bool) bool {
lbd.downloaded = 0
lbd.client = &http.Client{}
lbd.debug = debug
lbd.valid = true
// At some point this might be useful: It is a snippet of code that will enable
// logging of per-session TLS key material in order to make debugging easier in
// Wireshark.
/*
lbd.client = &http.Client{
Transport: &http2.Transport{
TLSClientConfig: &tls.Config{
KeyLogWriter: w,
Rand: utilities.RandZeroSource{}, // for reproducible output; don't do this.
InsecureSkipVerify: true, // test server certificate is not trusted.
},
},
}
*/
if debug {
fmt.Printf("Started a load-bearing download.\n")
}
go lbd.doDownload(ctx)
return true
}
func (lbd *LoadBearingConnectionDownload) IsValid() bool {
return lbd.valid
}
func (lbd *LoadBearingConnectionDownload) doDownload(ctx context.Context) {
get, err := lbd.client.Get(lbd.Path)
if err != nil {
lbd.valid = false
return
}
buff := make([]byte, 500*1024*1024)
cr := &countingReader{n: &lbd.downloaded, ctx: ctx, readable: get.Body}
_, _ = io.CopyBuffer(ioutil.Discard, cr, buff)
lbd.valid = false
get.Body.Close()
if lbd.debug {
fmt.Printf("Ending a load-bearing download.\n")
}
}
type LoadBearingConnectionUpload struct {
Path string
uploaded uint64
client *http.Client
debug bool
valid bool
}
func (lbu *LoadBearingConnectionUpload) Transferred() uint64 {
transferred := atomic.LoadUint64(&lbu.uploaded)
if lbu.debug {
fmt.Printf("upload: Transferred: %v\n", transferred)
}
return transferred
}
func (lbu *LoadBearingConnectionUpload) Client() *http.Client {
return lbu.client
}
func (lbu *LoadBearingConnectionUpload) IsValid() bool {
return lbu.valid
}
type syntheticCountingReader struct {
n *uint64
ctx context.Context
}
func (s *syntheticCountingReader) Read(p []byte) (n int, err error) {
if s.ctx.Err() != nil {
return 0, io.EOF
}
err = nil
n = len(p)
n = chunkSize
atomic.AddUint64(s.n, uint64(n))
return
}
func (lbu *LoadBearingConnectionUpload) doUpload(ctx context.Context) bool {
lbu.uploaded = 0
s := &syntheticCountingReader{n: &lbu.uploaded, ctx: ctx}
if resp, err := lbu.client.Post(lbu.Path, "application/octet-stream", s); err == nil {
resp.Body.Close()
}
lbu.valid = false
if lbu.debug {
fmt.Printf("Ending a load-bearing upload.\n")
}
return true
}
func (lbu *LoadBearingConnectionUpload) Start(ctx context.Context, debug bool) bool {
lbu.uploaded = 0
lbu.client = &http.Client{}
lbu.debug = debug
lbu.valid = true
if debug {
fmt.Printf("Started a load-bearing upload.\n")
}
go lbu.doUpload(ctx)
return true
}
|