-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathreport_artifact.go
253 lines (220 loc) · 6.33 KB
/
report_artifact.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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package poplar
import (
"compress/gzip"
"context"
"io"
"os"
"path/filepath"
"strings"
"github.com/evergreen-ci/birch"
"github.com/evergreen-ci/pail"
"github.com/evergreen-ci/utility"
"github.com/mongodb/ftdc"
"github.com/mongodb/ftdc/metrics"
"github.com/mongodb/grip"
"github.com/pkg/errors"
)
const defaultChunkSize = 2048
// SetBucketInfo sets any missing fields related to uploading an artifact using
// the passed in `BucketConfiguration`. An error is returned if any required
// fields are blank. This method should be used before calling `Upload`.
func (a *TestArtifact) SetBucketInfo(conf BucketConfiguration) error {
if a.LocalFile == "" {
return errors.New("cannot upload unspecified file")
}
if a.Path == "" {
a.Path = filepath.Base(a.LocalFile)
}
if a.Bucket == "" {
if conf.Name == "" {
return errors.New("cannot upload file without a specified bucket")
}
a.Bucket = conf.Name
}
if a.Prefix == "" {
a.Prefix = conf.Prefix
}
if conf.Region == "" {
return errors.New("bucket configuration must specify a region")
}
return nil
}
// Convert translates a the artifact into a different format,
// typically by converting JSON, BSON, or CSV to FTDC, and also
// optionally gzipping the results.
func (a *TestArtifact) Convert(ctx context.Context) error {
if err := a.Validate(); err != nil {
return errors.Wrap(err, "invalid test artifact")
}
if a.LocalFile == "" {
return errors.New("cannot specify a conversion on a remote file")
}
if _, err := os.Stat(a.LocalFile); os.IsNotExist(err) {
return errors.New("cannot convert nonexistent file")
}
switch {
case a.ConvertBSON2FTDC:
fn, err := a.bsonToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "converting file from BSON to FTDC")
}
a.LocalFile = fn
case a.ConvertJSON2FTDC:
fn, err := a.jsonToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "converting file from JSON to FTDC")
}
a.LocalFile = fn
case a.ConvertCSV2FTDC:
fn, err := a.csvToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "converting file from CSV to FTDC")
}
a.LocalFile = fn
case a.ConvertGzip:
fn, err := a.gzip(a.LocalFile)
if err != nil {
return errors.Wrap(err, "writing gzip file")
}
a.LocalFile = fn
}
return nil
}
// Upload provides a way to upload an artifact using a bucket configuration.
func (a *TestArtifact) Upload(ctx context.Context, conf BucketConfiguration, dryRun bool) error {
var err error
if _, err = os.Stat(a.LocalFile); os.IsNotExist(err) {
return errors.New("cannot upload file that does not exist")
}
opts := pail.S3Options{
Name: a.Bucket,
Prefix: a.Prefix,
Region: conf.Region,
MaxRetries: utility.ToIntPtr(10),
Permissions: pail.S3Permissions(a.Permissions),
DryRun: dryRun,
}
if (conf.APIKey != "" && conf.APISecret != "") || conf.APIToken != "" {
opts.Credentials = pail.CreateAWSCredentials(conf.APIKey, conf.APISecret, conf.APIToken)
}
client := utility.GetHTTPClient()
defer utility.PutHTTPClient(client)
bucket, err := pail.NewS3MultiPartBucketWithHTTPClient(ctx, client, opts)
if err != nil {
return errors.Wrap(err, "creating bucket")
}
if err := bucket.Upload(ctx, a.Path, a.LocalFile); err != nil {
return errors.Wrap(err, "uploading file")
}
return nil
}
func (a *TestArtifact) bsonToFTDC(ctx context.Context, path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "opening BSON input file '%s'", path)
}
defer func() {
_ = srcFile.Close()
}()
path = strings.TrimSuffix(path, ".bson") + ".ftdc"
catcher := grip.NewCatcher()
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "opening FTDC output file '%s'", path)
}
defer func() {
_ = ftdcFile.Close()
}()
collector := ftdc.NewStreamingDynamicCollector(defaultChunkSize, ftdcFile)
defer func() {
_ = ftdc.FlushCollector(collector, ftdcFile)
}()
for {
if ctx.Err() != nil {
catcher.New("operation aborted")
break
}
bsonDoc := birch.NewDocument()
_, err = bsonDoc.ReadFrom(srcFile)
if err != nil {
if err == io.EOF {
break
}
catcher.Wrap(err, "reading BSON")
break
}
err = collector.Add(bsonDoc)
if err != nil {
catcher.Wrap(err, "writing FTDC from BSON")
break
}
}
return path, catcher.Resolve()
}
func (a *TestArtifact) csvToFTDC(ctx context.Context, path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "opening CSV input file '%s'", path)
}
defer func() {
_ = srcFile.Close()
}()
path = strings.TrimSuffix(path, ".csv") + ".ftdc"
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "opening ftdc output file '%s'", path)
}
defer func() {
_ = ftdcFile.Close()
}()
return path, errors.Wrap(ftdc.ConvertFromCSV(ctx, defaultChunkSize, srcFile, ftdcFile), "converting CSV to FTDC file")
}
func (a *TestArtifact) jsonToFTDC(ctx context.Context, path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "opening CSV input file '%s'", path)
}
defer func() {
_ = srcFile.Close()
}()
path = strings.TrimSuffix(path, ".json") + ".ftdc"
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "opening FTDC output file '%s'", path)
}
defer func() {
_ = ftdcFile.Close()
}()
opts := metrics.CollectJSONOptions{
OutputFilePrefix: strings.TrimSuffix(path, ".json"),
InputSource: ftdcFile,
}
_, err = metrics.CollectJSONStream(ctx, opts)
return path, errors.Wrap(err, "collecting JSON stream")
}
func (a *TestArtifact) gzip(path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "opening BSON input file '%s'", path)
}
defer func() {
_ = srcFile.Close()
}()
outputPath := path + ".gz"
outFile, err := os.Create(outputPath)
if err != nil {
return outputPath, errors.Wrapf(err, "opening FTDC output file '%s'", outputPath)
}
defer func() {
_ = outFile.Close()
}()
writer, err := gzip.NewWriterLevel(outFile, gzip.BestCompression)
if err != nil {
return outputPath, errors.Wrap(err, "creating gzip writer")
}
defer func() {
_ = writer.Close()
}()
_, err = io.Copy(writer, srcFile)
return outputPath, errors.Wrapf(err, "copying from input file '%s' to output file '%s'", path, outputPath)
}