| package action |
| |
| import ( |
| "github.com/Masterminds/glide/cfg" |
| "github.com/Masterminds/glide/msg" |
| gpath "github.com/Masterminds/glide/path" |
| "github.com/Masterminds/glide/repo" |
| ) |
| |
| func Remove(packages []string, inst *repo.Installer) { |
| base := gpath.Basepath() |
| EnsureGopath() |
| EnsureVendorDir() |
| conf := EnsureConfig() |
| glidefile, err := gpath.Glide() |
| if err != nil { |
| msg.Die("Could not find Glide file: %s", err) |
| } |
| |
| msg.Info("Preparing to remove %d packages.", len(packages)) |
| conf.Imports = rmDeps(packages, conf.Imports) |
| conf.DevImports = rmDeps(packages, conf.DevImports) |
| |
| // Copy used to generate locks. |
| confcopy := conf.Clone() |
| |
| confcopy.Imports = inst.List(confcopy) |
| |
| if err := repo.SetReference(confcopy); err != nil { |
| msg.Error("Failed to set references: %s", err) |
| } |
| |
| // TODO: Right now, there is no flag to enable this, so this will never be |
| // run. I am not sure whether we should allow this in a rm op or not. |
| if inst.UpdateVendored { |
| repo.VendoredCleanup(confcopy) |
| } |
| |
| // Write glide.yaml |
| if err := conf.WriteFile(glidefile); err != nil { |
| msg.Die("Failed to write glide YAML file: %s", err) |
| } |
| |
| // Write glide lock |
| writeLock(conf, confcopy, base) |
| } |
| |
| // rmDeps returns a list of dependencies that do not contain the given pkgs. |
| // |
| // It generates neither an error nor a warning for a pkg that does not exist |
| // in the list of deps. |
| func rmDeps(pkgs []string, deps []*cfg.Dependency) []*cfg.Dependency { |
| res := []*cfg.Dependency{} |
| for _, d := range deps { |
| rem := false |
| for _, p := range pkgs { |
| if p == d.Name { |
| rem = true |
| } |
| } |
| if !rem { |
| res = append(res, d) |
| } |
| } |
| return res |
| } |