-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport_artifact.go
249 lines (214 loc) · 6.51 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
package poplar
import (
"compress/gzip"
"context"
"io"
"os"
"path/filepath"
"strings"
"github.com/deciduosity/birch"
"github.com/deciduosity/pail"
"github.com/deciduosity/utility"
"github.com/deciduosity/birch/ftdc"
"github.com/deciduosity/birch/ftdc/metrics"
"github.com/cdr/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, no bucket specified")
}
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.New("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 non existent file")
}
converted := false
switch {
case a.ConvertBSON2FTDC:
converted = true
fn, err := a.bsonToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "problem converting file")
}
a.LocalFile = fn
case a.ConvertJSON2FTDC:
converted = true
fn, err := a.jsonToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "problem converting file")
}
a.LocalFile = fn
case a.ConvertCSV2FTDC:
converted = true
fn, err := a.csvToFTDC(ctx, a.LocalFile)
if err != nil {
return errors.Wrap(err, "problem converting file")
}
a.LocalFile = fn
case a.ConvertGzip:
converted = true
fn, err := a.gzip(a.LocalFile)
if err != nil {
return errors.Wrap(err, "problem writing file")
}
a.LocalFile = fn
}
if !converted {
grip.Warning("no conversion took place")
}
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: 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(client, opts)
if err != nil {
return errors.Wrap(err, "could not construct bucket")
}
if err := bucket.Upload(ctx, a.Path, a.LocalFile); err != nil {
return errors.Wrap(err, "problem 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, "problem opening bson input file '%s'", path)
}
defer srcFile.Close()
path = strings.TrimSuffix(path, ".bson") + ".ftdc"
catcher := grip.NewCatcher()
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening ftdc output file '%s'", path)
}
defer func() { catcher.Add(ftdcFile.Close()) }()
collector := ftdc.NewStreamingDynamicCollector(defaultChunkSize, ftdcFile)
defer func() { catcher.Add(ftdc.FlushCollector(collector, ftdcFile)) }()
for {
if ctx.Err() != nil {
catcher.Add(errors.New("operation aborted"))
break
}
bsonDoc := birch.NewDocument()
_, err = bsonDoc.ReadFrom(srcFile)
if err != nil {
if err == io.EOF {
break
}
catcher.Add(errors.Wrap(err, "failed to read BSON"))
break
}
err = collector.Add(bsonDoc)
if err != nil {
catcher.Add(errors.Wrap(err, "failed to write 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, "problem opening csv input file '%s'", path)
}
defer srcFile.Close()
path = strings.TrimSuffix(path, ".csv") + ".ftdc"
catcher := grip.NewCatcher()
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening ftdc output file '%s'", path)
}
defer func() { catcher.Add(ftdcFile.Close()) }()
catcher.Add(errors.Wrap(ftdc.ConvertFromCSV(ctx, defaultChunkSize, srcFile, ftdcFile),
"problem converting csv to ftdc file"))
return path, catcher.Resolve()
}
func (a *TestArtifact) jsonToFTDC(ctx context.Context, path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening csv input file '%s'", path)
}
defer srcFile.Close()
path = strings.TrimSuffix(path, ".json") + ".ftdc"
catcher := grip.NewCatcher()
ftdcFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening ftdc output file '%s'", path)
}
defer func() { catcher.Add(ftdcFile.Close()) }()
opts := metrics.CollectJSONOptions{
OutputFilePrefix: strings.TrimSuffix(path, ".json"),
InputSource: ftdcFile,
}
return path, metrics.CollectJSONStream(ctx, opts)
}
func (a *TestArtifact) gzip(path string) (string, error) {
srcFile, err := os.Open(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening bson input file '%s'", path)
}
defer srcFile.Close()
path += ".gz"
catcher := grip.NewCatcher()
outFile, err := os.Create(path)
if err != nil {
return path, errors.Wrapf(err, "problem opening ftdc output file '%s'", path)
}
defer func() { catcher.Add(outFile.Close()) }()
writer, err := gzip.NewWriterLevel(outFile, gzip.BestCompression)
if err != nil {
catcher.Add(err)
return path, catcher.Resolve()
}
defer func() { catcher.Add(writer.Close()) }()
_, err = io.Copy(writer, srcFile)
catcher.Add(err)
return path, catcher.Resolve()
}