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

Commit bf5b9fc

Browse files
authored
Merge pull request #1219 from ibrasho-forks/optimize-gps-prune
gps: Refactor prune and filesystem functions
2 parents 74a1bc5 + cef261f commit bf5b9fc

23 files changed

+1003
-1207
lines changed

cmd/dep/ensure.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
265265
// that "verification" is supposed to look like (#121); in the meantime,
266266
// we unconditionally write out vendor/ so that `dep ensure`'s behavior
267267
// is maximally compatible with what it will eventually become.
268-
sw, err := dep.NewSafeWriter(nil, p.Lock, p.Lock, dep.VendorAlways)
268+
sw, err := dep.NewSafeWriter(nil, p.Lock, p.Lock, dep.VendorAlways, p.Manifest.PruneOptions)
269269
if err != nil {
270270
return err
271271
}
@@ -290,7 +290,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
290290
return handleAllTheFailuresOfTheWorld(err)
291291
}
292292

293-
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), cmd.vendorBehavior())
293+
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), cmd.vendorBehavior(), p.Manifest.PruneOptions)
294294
if err != nil {
295295
return err
296296
}
@@ -315,7 +315,7 @@ func (cmd *ensureCommand) runVendorOnly(ctx *dep.Ctx, args []string, p *dep.Proj
315315
}
316316
// Pass the same lock as old and new so that the writer will observe no
317317
// difference and choose not to write it out.
318-
sw, err := dep.NewSafeWriter(nil, p.Lock, p.Lock, dep.VendorAlways)
318+
sw, err := dep.NewSafeWriter(nil, p.Lock, p.Lock, dep.VendorAlways, p.Manifest.PruneOptions)
319319
if err != nil {
320320
return err
321321
}
@@ -380,7 +380,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
380380
return handleAllTheFailuresOfTheWorld(err)
381381
}
382382

383-
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), cmd.vendorBehavior())
383+
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), cmd.vendorBehavior(), p.Manifest.PruneOptions)
384384
if err != nil {
385385
return err
386386
}
@@ -679,7 +679,7 @@ func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm
679679
}
680680
sort.Strings(reqlist)
681681

682-
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), dep.VendorOnChanged)
682+
sw, err := dep.NewSafeWriter(nil, p.Lock, dep.LockFromSolution(solution), dep.VendorOnChanged, p.Manifest.PruneOptions)
683683
if err != nil {
684684
return err
685685
}

cmd/dep/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
211211
ctx.Err.Printf("Old vendor backed up to %v", vendorbak)
212212
}
213213

214-
sw, err := dep.NewSafeWriter(p.Manifest, nil, p.Lock, dep.VendorAlways)
214+
sw, err := dep.NewSafeWriter(p.Manifest, nil, p.Lock, dep.VendorAlways, gps.DefaultRootPruneOptions())
215215
if err != nil {
216216
return errors.Wrap(err, "init failed: unable to create a SafeWriter")
217217
}

cmd/dep/main.go

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ func (c *Config) Run() int {
6868
&statusCommand{},
6969
&ensureCommand{},
7070
&hashinCommand{},
71-
&pruneCommand{},
7271
&versionCommand{},
7372
}
7473

cmd/dep/prune.go

-206
This file was deleted.

cmd/dep/prune_test.go

-50
This file was deleted.

cmd/dep/testdata/harness_tests/prune/without_lock/final/Gopkg.toml

-3
This file was deleted.

cmd/dep/testdata/harness_tests/prune/without_lock/initial/Gopkg.toml

-3
This file was deleted.

cmd/dep/testdata/harness_tests/prune/without_lock/testcase.json

-6
This file was deleted.

0 commit comments

Comments
 (0)