-
Notifications
You must be signed in to change notification settings - Fork 0
/
writer.go
93 lines (78 loc) · 2.24 KB
/
writer.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
// Copyright 2015 The LUCI Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gs
import (
"context"
"io"
"time"
gs "cloud.google.com/go/storage"
log "go.chromium.org/luci/common/logging"
"go.chromium.org/luci/common/retry"
"go.chromium.org/luci/common/retry/transient"
)
// Writer is an augmented io.WriteCloser instance.
type Writer interface {
io.WriteCloser
// Count returns the number of bytes written by the object.
Count() int64
}
type prodWriter struct {
context.Context
// Writer is the active Writer instance. It will be nil until the first Write
// invocation.
*gs.Writer
client *prodClient
bucket string
relpath string
count int64
}
// Write writes data with exponenital backoff/retry.
func (w *prodWriter) Write(d []byte) (a int, err error) {
if w.Writer == nil {
w.Writer = w.client.baseClient.Bucket(w.bucket).Object(w.relpath).NewWriter(w)
}
err = retry.Retry(w, transient.Only(retry.Default), func() (ierr error) {
a, ierr = w.Writer.Write(d)
// Assume all Write errors are transient.
ierr = transient.Tag.Apply(ierr)
return
}, func(err error, d time.Duration) {
log.Fields{
log.ErrorKey: err,
"delay": d,
"bucket": w.bucket,
"path": w.relpath,
}.Warningf(w, "Transient error on GS write. Retrying...")
})
w.count += int64(a)
return
}
func (w *prodWriter) Close() error {
if w.Writer == nil {
return nil
}
return retry.Retry(w, transient.Only(retry.Default),
w.Writer.Close,
func(err error, d time.Duration) {
log.Fields{
log.ErrorKey: err,
"delay": d,
"bucket": w.bucket,
"path": w.relpath,
}.Warningf(w, "Transient error closing GS Writer. Retrying...")
})
}
func (w *prodWriter) Count() int64 {
return w.count
}