Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 1b2e978

Browse files
committed
Move the payload into SafeWriter
1 parent 7f00a8e commit 1b2e978

File tree

5 files changed

+107
-131
lines changed

5 files changed

+107
-131
lines changed

cmd/dep/ensure.go

+9-11
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,6 @@ func (cmd *ensureCommand) Run(ctx *dep.Ctx, args []string) error {
147147
return errors.Wrap(err, "ensure Solve()")
148148
}
149149

150-
sw := dep.SafeWriter{
151-
Lock: p.Lock,
152-
NewLock: solution,
153-
}
154-
if !cmd.update {
155-
sw.Manifest = p.Manifest
156-
}
157-
158150
// check if vendor exists, because if the locks are the same but
159151
// vendor does not exist we should write vendor
160152
vendorExists, err := dep.IsNonEmptyDir(filepath.Join(p.AbsRoot, "vendor"))
@@ -163,12 +155,18 @@ func (cmd *ensureCommand) Run(ctx *dep.Ctx, args []string) error {
163155
}
164156
writeV := !vendorExists && solution != nil
165157

166-
payload := sw.Prepare(writeV)
158+
var sw dep.SafeWriter
159+
var manifest *dep.Manifest
160+
if !cmd.update {
161+
manifest = p.Manifest
162+
}
163+
164+
sw.Prepare(manifest, p.Lock, solution, writeV)
167165
if cmd.dryRun {
168-
return payload.PrintPreparedActions()
166+
return sw.PrintPreparedActions()
169167
}
170168

171-
return errors.Wrap(payload.Write(p.AbsRoot, sm), "grouped write of manifest, lock and vendor")
169+
return errors.Wrap(sw.Write(p.AbsRoot, sm), "grouped write of manifest, lock and vendor")
172170
}
173171

174172
func applyUpdateArgs(args []string, params *gps.SolveParameters) {

cmd/dep/init.go

+8-13
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
106106
if err != nil {
107107
return err
108108
}
109-
m := dep.Manifest{
109+
m := &dep.Manifest{
110110
Dependencies: pd.constraints,
111111
}
112112

113113
// Make an initial lock from what knowledge we've collected about the
114114
// versions on disk
115-
l := dep.Lock{
115+
l := &dep.Lock{
116116
P: make([]gps.LockedProject, 0, len(pd.ondisk)),
117117
}
118118

@@ -134,17 +134,13 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
134134
)
135135
}
136136

137-
sw := dep.SafeWriter{
138-
Manifest: &m,
139-
}
140-
141137
if len(pd.notondisk) > 0 {
142138
vlogf("Solving...")
143139
params := gps.SolveParameters{
144140
RootDir: root,
145141
RootPackageTree: pkgT,
146-
Manifest: &m,
147-
Lock: &l,
142+
Manifest: m,
143+
Lock: l,
148144
}
149145

150146
if *verbose {
@@ -161,15 +157,14 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
161157
handleAllTheFailuresOfTheWorld(err)
162158
return err
163159
}
164-
sw.Lock = dep.LockFromInterface(soln)
165-
} else {
166-
sw.Lock = &l
160+
l = dep.LockFromInterface(soln)
167161
}
168162

169163
vlogf("Writing manifest and lock files.")
170164

171-
payload := sw.Prepare(true)
172-
if err := payload.Write(root, sm); err != nil {
165+
var sw dep.SafeWriter
166+
sw.Prepare(m, l, nil, true)
167+
if err := sw.Write(root, sm); err != nil {
173168
return errors.Wrap(err, "safe write of manifest and lock")
174169
}
175170

cmd/dep/remove.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,9 @@ func (cmd *removeCommand) Run(ctx *dep.Ctx, args []string) error {
179179
return err
180180
}
181181

182-
sw := dep.SafeWriter{
183-
Manifest: p.Manifest,
184-
Lock: p.Lock,
185-
NewLock: soln,
186-
}
187-
188-
payload := sw.Prepare(false)
189-
if err := payload.Write(p.AbsRoot, sm); err != nil {
182+
var sw dep.SafeWriter
183+
sw.Prepare(p.Manifest, p.Lock, soln, false)
184+
if err := sw.Write(p.AbsRoot, sm); err != nil {
190185
return errors.Wrap(err, "grouped write of manifest, lock and vendor")
191186
}
192187
return nil

txn_writer.go

+45-54
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ import (
2121
// It is not impervious to errors (writing to disk is hard), but it should
2222
// guard against non-arcane failure conditions.
2323
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
2725
}
2826

2927
// SafeWriterPayload represents the actions SafeWriter will execute when SafeWriter.Write is called.
@@ -66,44 +64,37 @@ type LockedProjectDiff struct {
6664

6765
// Prepare to write a set of config yaml, lock and vendor tree.
6866
//
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
7068
// 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
7270
// 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
7472
// 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
9689
} 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
10093
}
10194
}
102-
} else if sw.Lock != nil {
103-
payload.Lock = sw.Lock
95+
} else if lock != nil {
96+
sw.Payload.Lock = lock
10497
}
105-
106-
return payload
10798
}
10899

109100
func (payload SafeWriterPayload) validate(root string, sm gps.SourceManager) error {
@@ -136,13 +127,13 @@ func (payload SafeWriterPayload) validate(root string, sm gps.SourceManager) err
136127
// operations succeeded. It also does its best to roll back if any moves fail.
137128
// This mostly guarantees that dep cannot exit with a partial write that would
138129
// 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)
141132
if err != nil {
142133
return err
143134
}
144135

145-
if !payload.ShouldWriteManifest() && !payload.ShouldWriteLock() && !payload.ShouldWriteVendor() {
136+
if !sw.Payload.ShouldWriteManifest() && !sw.Payload.ShouldWriteLock() && !sw.Payload.ShouldWriteVendor() {
146137
// nothing to do
147138
return nil
148139
}
@@ -157,20 +148,20 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
157148
}
158149
defer os.RemoveAll(td)
159150

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 {
162153
return errors.Wrap(err, "failed to write manifest file to temp dir")
163154
}
164155
}
165156

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 {
168159
return errors.Wrap(err, "failed to write lock file to temp dir")
169160
}
170161
}
171162

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)
174165
if err != nil {
175166
return errors.Wrap(err, "error while writing out vendor tree")
176167
}
@@ -185,7 +176,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
185176
var failerr error
186177
var vendorbak string
187178

188-
if payload.ShouldWriteManifest() {
179+
if sw.Payload.ShouldWriteManifest() {
189180
if _, err := os.Stat(mpath); err == nil {
190181
// Move out the old one.
191182
tmploc := filepath.Join(td, ManifestName+".orig")
@@ -203,7 +194,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
203194
}
204195
}
205196

206-
if payload.ShouldWriteLock() {
197+
if sw.Payload.ShouldWriteLock() {
207198
if _, err := os.Stat(lpath); err == nil {
208199
// Move out the old one.
209200
tmploc := filepath.Join(td, LockName+".orig")
@@ -222,7 +213,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
222213
}
223214
}
224215

225-
if payload.ShouldWriteVendor() {
216+
if sw.Payload.ShouldWriteVendor() {
226217
if _, err := os.Stat(vpath); err == nil {
227218
// Move out the old vendor dir. just do it into an adjacent dir, to
228219
// try to mitigate the possibility of a pointless cross-filesystem
@@ -250,7 +241,7 @@ func (payload SafeWriterPayload) Write(root string, sm gps.SourceManager) error
250241

251242
// Renames all went smoothly. The deferred os.RemoveAll will get the temp
252243
// dir, but if we wrote vendor, we have to clean that up directly
253-
if payload.ShouldWriteVendor() {
244+
if sw.Payload.ShouldWriteVendor() {
254245
// Nothing we can really do about an error at this point, so ignore it
255246
os.RemoveAll(vendorbak)
256247
}
@@ -266,28 +257,28 @@ fail:
266257
return failerr
267258
}
268259

269-
func (payload SafeWriterPayload) PrintPreparedActions() error {
270-
if payload.ShouldWriteManifest() {
260+
func (sw *SafeWriter) PrintPreparedActions() error {
261+
if sw.Payload.ShouldWriteManifest() {
271262
fmt.Println("Would have written the following manifest.json:")
272-
m, err := payload.Manifest.MarshalJSON()
263+
m, err := sw.Payload.Manifest.MarshalJSON()
273264
if err != nil {
274265
return errors.Wrap(err, "ensure DryRun cannot read manifest")
275266
}
276267
fmt.Println(string(m))
277268
}
278269

279-
if payload.ShouldWriteLock() {
270+
if sw.Payload.ShouldWriteLock() {
280271
fmt.Println("Would have written the following lock.json:")
281-
m, err := payload.Lock.MarshalJSON()
272+
m, err := sw.Payload.Lock.MarshalJSON()
282273
if err != nil {
283274
return errors.Wrap(err, "ensure DryRun cannot read lock")
284275
}
285276
fmt.Println(string(m))
286277
}
287278

288-
if payload.ShouldWriteVendor() {
279+
if sw.Payload.ShouldWriteVendor() {
289280
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() {
291282
prj := project.Ident()
292283
rev := GetRevisionFromVersion(project.Version())
293284
if prj.Source == "" {

0 commit comments

Comments
 (0)