forked from google/googet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
googet_clean.go
101 lines (89 loc) · 2.6 KB
/
googet_clean.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
94
95
96
97
98
99
100
101
/*
Copyright 2016 Google Inc. All Rights Reserved.
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 main
import (
"context"
"flag"
"fmt"
"os"
"path/filepath"
"strings"
"github.com/google/googet/v2/goolib"
"github.com/google/googet/v2/oswrap"
"github.com/google/logger"
"github.com/google/subcommands"
)
type cleanCmd struct {
all bool
packages string
}
func (*cleanCmd) Name() string { return "clean" }
func (*cleanCmd) Synopsis() string { return "clean the cache directory" }
func (*cleanCmd) Usage() string {
return fmt.Sprintf("%s clean\n", filepath.Base(os.Args[0]))
}
func (cmd *cleanCmd) SetFlags(f *flag.FlagSet) {
f.BoolVar(&cmd.all, "all", false, "clear out the entire cache directory")
f.StringVar(&cmd.packages, "packages", "", "comma separated list of packages to clear out of the cache")
}
func (cmd *cleanCmd) Execute(_ context.Context, _ *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus {
if cmd.all {
fmt.Println("Removing all files and directories in cachedir.")
clean(nil)
} else if cmd.packages != "" {
pl := strings.Split(cmd.packages, ",")
fmt.Printf("Removing package cache for %s\n", pl)
cleanPackages(pl)
} else {
fmt.Println("Removing all files and directories in cachedir that don't correspond to a currently installed package.")
cleanOld()
}
return subcommands.ExitSuccess
}
func cleanPackages(pl []string) {
state, err := readState(filepath.Join(rootDir, stateFile))
if err != nil {
logger.Fatal(err)
}
for _, pkg := range *state {
if goolib.ContainsString(pkg.PackageSpec.Name, pl) {
if err := oswrap.RemoveAll(pkg.LocalPath); err != nil {
logger.Error(err)
}
}
}
}
func clean(il []string) {
files, err := filepath.Glob(filepath.Join(rootDir, cacheDir, "*"))
if err != nil {
logger.Fatal(err)
}
for _, file := range files {
if !goolib.ContainsString(file, il) {
if err := oswrap.RemoveAll(file); err != nil {
logger.Error(err)
}
}
}
}
func cleanOld() {
state, err := readState(filepath.Join(rootDir, stateFile))
if err != nil {
logger.Fatal(err)
}
var il []string
for _, pkg := range *state {
il = append(il, pkg.LocalPath)
}
clean(il)
}