@@ -21,9 +21,7 @@ import (
21
21
// It is not impervious to errors (writing to disk is hard), but it should
22
22
// guard against non-arcane failure conditions.
23
23
type SafeWriter struct {
24
- Manifest * Manifest // the manifest to write, if any
25
- Lock * Lock // the old lock, if any
26
- NewLock gps.Lock // the new lock, if any
24
+ Payload SafeWriterPayload
27
25
}
28
26
29
27
// SafeWriterPayload represents the actions SafeWriter will execute when SafeWriter.Write is called.
@@ -66,44 +64,37 @@ type LockedProjectDiff struct {
66
64
67
65
// Prepare to write a set of config yaml, lock and vendor tree.
68
66
//
69
- // - If sw.Manifest is provided, it will be written to the standard manifest file
67
+ // - If manifest is provided, it will be written to the standard manifest file
70
68
// name beneath root.
71
- // - If sw.Lock is provided it will be written to the standard
69
+ // - If lock is provided it will be written to the standard
72
70
// lock file name in the root dir, but vendor will NOT be written
73
- // - If sw.Lock and sw.NewLock are both provided and are equivalent, then neither lock
71
+ // - If lock and newLock are both provided and are equivalent, then neither lock
74
72
// nor vendor will be written
75
- // - If sw.Lock and sw.NewLock are both provided and are not equivalent,
76
- // the nl will be written to the same location as above, and a vendor
77
- // tree will be written to sw.Root/vendor
78
- // - If sw.NewLock is provided and sw.Lockock is not, it will write both a lock
79
- // and vendor dir in the same way
80
- // - If the forceVendor param is true, then vendor will be unconditionally
81
- // written out based on sw.NewLock if present, else sw.Lock, else error.
82
- func (sw SafeWriter ) Prepare (forceVendor bool ) SafeWriterPayload {
83
- // Decide which writes we need to do
84
- var payload SafeWriterPayload
85
- payload .ForceWriteVendor = forceVendor
86
-
87
- if sw .Manifest != nil {
88
- payload .Manifest = sw .Manifest
89
- }
90
-
91
- if sw .NewLock != nil {
92
- rlf := LockFromInterface (sw .NewLock )
93
- if sw .Lock == nil {
94
- payload .Lock = rlf
95
- payload .ForceWriteVendor = true
73
+ // - If lock and newLock are both provided and are not equivalent,
74
+ // the newLock will be written to the same location as above, and a vendor
75
+ // tree will be written to vendor/
76
+ // - If newLock is provided and lock is not, it will write both a lock
77
+ // and vendor/ dir in the same way
78
+ // - If the forceVendor param is true, then vendor/ will be unconditionally
79
+ // written out based on newLock if present, else lock, else error.
80
+ func (sw * SafeWriter ) Prepare (manifest * Manifest , lock * Lock , newLock gps.Lock , forceVendor bool ) {
81
+ sw .Payload .Manifest = manifest
82
+ sw .Payload .ForceWriteVendor = forceVendor
83
+
84
+ if newLock != nil {
85
+ rlf := LockFromInterface (newLock )
86
+ if lock == nil {
87
+ sw .Payload .Lock = rlf
88
+ sw .Payload .ForceWriteVendor = true
96
89
} else {
97
- if ! locksAreEquivalent (rlf , sw . Lock ) {
98
- payload .Lock = rlf
99
- payload .ForceWriteVendor = true
90
+ if ! locksAreEquivalent (rlf , lock ) {
91
+ sw . Payload .Lock = rlf
92
+ sw . Payload .ForceWriteVendor = true
100
93
}
101
94
}
102
- } else if sw . Lock != nil {
103
- payload . Lock = sw . Lock
95
+ } else if lock != nil {
96
+ sw . Payload . Lock = lock
104
97
}
105
-
106
- return payload
107
98
}
108
99
109
100
func (payload SafeWriterPayload ) validate (root string , sm gps.SourceManager ) error {
@@ -136,13 +127,13 @@ func (payload SafeWriterPayload) validate(root string, sm gps.SourceManager) err
136
127
// operations succeeded. It also does its best to roll back if any moves fail.
137
128
// This mostly guarantees that dep cannot exit with a partial write that would
138
129
// leave an undefined state on disk.
139
- func (payload SafeWriterPayload ) Write (root string , sm gps.SourceManager ) error {
140
- err := payload .validate (root , sm )
130
+ func (sw * SafeWriter ) Write (root string , sm gps.SourceManager ) error {
131
+ err := sw . Payload .validate (root , sm )
141
132
if err != nil {
142
133
return err
143
134
}
144
135
145
- if ! payload . ShouldWriteManifest () && ! payload . ShouldWriteLock () && ! payload .ShouldWriteVendor () {
136
+ if ! sw . Payload . ShouldWriteManifest () && ! sw . Payload . ShouldWriteLock () && ! sw . Payload .ShouldWriteVendor () {
146
137
// nothing to do
147
138
return nil
148
139
}
@@ -157,20 +148,20 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
157
148
}
158
149
defer os .RemoveAll (td )
159
150
160
- if payload .ShouldWriteManifest () {
161
- if err := writeFile (filepath .Join (td , ManifestName ), payload .Manifest ); err != nil {
151
+ if sw . Payload .ShouldWriteManifest () {
152
+ if err := writeFile (filepath .Join (td , ManifestName ), sw . Payload .Manifest ); err != nil {
162
153
return errors .Wrap (err , "failed to write manifest file to temp dir" )
163
154
}
164
155
}
165
156
166
- if payload .ShouldWriteLock () {
167
- if err := writeFile (filepath .Join (td , LockName ), payload .Lock ); err != nil {
157
+ if sw . Payload .ShouldWriteLock () {
158
+ if err := writeFile (filepath .Join (td , LockName ), sw . Payload .Lock ); err != nil {
168
159
return errors .Wrap (err , "failed to write lock file to temp dir" )
169
160
}
170
161
}
171
162
172
- if payload .ShouldWriteVendor () {
173
- err = gps .WriteDepTree (filepath .Join (td , "vendor" ), payload .Lock , sm , true )
163
+ if sw . Payload .ShouldWriteVendor () {
164
+ err = gps .WriteDepTree (filepath .Join (td , "vendor" ), sw . Payload .Lock , sm , true )
174
165
if err != nil {
175
166
return errors .Wrap (err , "error while writing out vendor tree" )
176
167
}
@@ -185,7 +176,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
185
176
var failerr error
186
177
var vendorbak string
187
178
188
- if payload .ShouldWriteManifest () {
179
+ if sw . Payload .ShouldWriteManifest () {
189
180
if _ , err := os .Stat (mpath ); err == nil {
190
181
// Move out the old one.
191
182
tmploc := filepath .Join (td , ManifestName + ".orig" )
@@ -203,7 +194,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
203
194
}
204
195
}
205
196
206
- if payload .ShouldWriteLock () {
197
+ if sw . Payload .ShouldWriteLock () {
207
198
if _ , err := os .Stat (lpath ); err == nil {
208
199
// Move out the old one.
209
200
tmploc := filepath .Join (td , LockName + ".orig" )
@@ -222,7 +213,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
222
213
}
223
214
}
224
215
225
- if payload .ShouldWriteVendor () {
216
+ if sw . Payload .ShouldWriteVendor () {
226
217
if _ , err := os .Stat (vpath ); err == nil {
227
218
// Move out the old vendor dir. just do it into an adjacent dir, to
228
219
// try to mitigate the possibility of a pointless cross-filesystem
@@ -250,7 +241,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
250
241
251
242
// Renames all went smoothly. The deferred os.RemoveAll will get the temp
252
243
// dir, but if we wrote vendor, we have to clean that up directly
253
- if payload .ShouldWriteVendor () {
244
+ if sw . Payload .ShouldWriteVendor () {
254
245
// Nothing we can really do about an error at this point, so ignore it
255
246
os .RemoveAll (vendorbak )
256
247
}
@@ -266,28 +257,28 @@ fail:
266
257
return failerr
267
258
}
268
259
269
- func (payload SafeWriterPayload ) PrintPreparedActions () error {
270
- if payload .ShouldWriteManifest () {
260
+ func (sw * SafeWriter ) PrintPreparedActions () error {
261
+ if sw . Payload .ShouldWriteManifest () {
271
262
fmt .Println ("Would have written the following manifest.json:" )
272
- m , err := payload .Manifest .MarshalJSON ()
263
+ m , err := sw . Payload .Manifest .MarshalJSON ()
273
264
if err != nil {
274
265
return errors .Wrap (err , "ensure DryRun cannot read manifest" )
275
266
}
276
267
fmt .Println (string (m ))
277
268
}
278
269
279
- if payload .ShouldWriteLock () {
270
+ if sw . Payload .ShouldWriteLock () {
280
271
fmt .Println ("Would have written the following lock.json:" )
281
- m , err := payload .Lock .MarshalJSON ()
272
+ m , err := sw . Payload .Lock .MarshalJSON ()
282
273
if err != nil {
283
274
return errors .Wrap (err , "ensure DryRun cannot read lock" )
284
275
}
285
276
fmt .Println (string (m ))
286
277
}
287
278
288
- if payload .ShouldWriteVendor () {
279
+ if sw . Payload .ShouldWriteVendor () {
289
280
fmt .Println ("Would have written the following projects to the vendor directory:" )
290
- for _ , project := range payload .Lock .Projects () {
281
+ for _ , project := range sw . Payload .Lock .Projects () {
291
282
prj := project .Ident ()
292
283
rev := GetRevisionFromVersion (project .Version ())
293
284
if prj .Source == "" {
0 commit comments