-
Notifications
You must be signed in to change notification settings - Fork 567
/
Copy pathtree-main.go
311 lines (266 loc) · 8.13 KB
/
tree-main.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// Copyright (c) 2015-2022 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package cmd
import (
"context"
"errors"
"fmt"
"path/filepath"
"strings"
"time"
"github.com/fatih/color"
"github.com/minio/cli"
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/v3/console"
)
const (
treeEntry = "├─ "
treeLastEntry = "└─ "
treeNext = "│"
treeLevel = " "
)
// Structured message depending on the type of console.
type treeMessage struct {
Entry string
IsDir bool
BranchString string
}
// Colorized message for console printing.
func (t treeMessage) String() string {
entryType := "File"
if t.IsDir {
entryType = "Dir"
}
return fmt.Sprintf("%s%s", t.BranchString, console.Colorize(entryType, t.Entry))
}
// JSON'ified message for scripting.
// Does No-op. JSON requests are redirected to `ls -r --json`
func (t treeMessage) JSON() string {
fatalIf(probe.NewError(errors.New("JSON() should never be called here")), "Unable to list in tree format. Please report this issue at https://github.com/minio/mc/issues")
return ""
}
var treeFlags = []cli.Flag{
cli.BoolFlag{
Name: "files, f",
Usage: "includes files in tree",
},
cli.IntFlag{
Name: "depth, d",
Usage: "sets the depth threshold",
Value: -1,
},
cli.StringFlag{
Name: "rewind",
Usage: "display tree no later than specified date",
},
}
// trees files and folders.
var treeCmd = cli.Command{
Name: "tree",
Usage: "list buckets and objects in a tree format",
Action: mainTree,
OnUsageError: onUsageError,
Before: setGlobalsFromContext,
Flags: append(treeFlags, globalFlags...),
CustomHelpTemplate: `NAME:
{{.HelpName}} - {{.Usage}}
USAGE:
{{.HelpName}} [FLAGS] TARGET [TARGET ...]
FLAGS:
{{range .VisibleFlags}}{{.}}
{{end}}
EXAMPLES:
1. List all buckets and directories on MinIO object storage server in tree format.
{{.Prompt}} {{.HelpName}} myminio
2. List all directories in "mybucket" on MinIO object storage server in tree format.
{{.Prompt}} {{.HelpName}} myminio/mybucket/
3. List all directories in "mybucket" on MinIO object storage server hosted on Microsoft Windows in tree format.
{{.Prompt}} {{.HelpName}} myminio\mybucket\
4. List all directories and objects in "mybucket" on MinIO object storage server in tree format.
{{.Prompt}} {{.HelpName}} --files myminio/mybucket/
5. List all directories upto depth level '2' in tree format.
{{.Prompt}} {{.HelpName}} --depth 2 myminio/mybucket/
`,
}
// parseTreeSyntax - validate all the passed arguments
func parseTreeSyntax(ctx context.Context, cliCtx *cli.Context) (args []string, depth int, files bool, timeRef time.Time) {
args = cliCtx.Args()
depth = cliCtx.Int("depth")
files = cliCtx.Bool("files")
rewind := cliCtx.String("rewind")
timeRef = parseRewindFlag(rewind)
if depth < -1 || cliCtx.Int("depth") == 0 {
fatalIf(errInvalidArgument().Trace(args...),
"please set a proper depth, for example: '--depth 1' to limit the tree output, default (-1) output displays everything")
}
if len(args) == 0 {
return
}
for _, url := range args {
_, _, err := url2Stat(ctx, url2StatOptions{urlStr: url, versionID: "", fileAttr: false, encKeyDB: nil, timeRef: timeRef, isZip: false, ignoreBucketExistsCheck: false})
fatalIf(err.Trace(url), "Unable to tree `"+url+"`.")
}
return
}
// doTree - list all entities inside a folder in a tree format.
func doTree(ctx context.Context, url string, timeRef time.Time, level int, branchString string, depth int, includeFiles bool) error {
targetAlias, targetURL, _ := mustExpandAlias(url)
if !strings.HasSuffix(targetURL, "/") {
targetURL += "/"
}
clnt, err := newClientFromAlias(targetAlias, targetURL)
fatalIf(err.Trace(targetURL), "Unable to initialize target `"+targetURL+"`.")
prefixPath := clnt.GetURL().Path
separator := string(clnt.GetURL().Separator)
if !strings.HasSuffix(prefixPath, separator) {
prefixPath = filepath.Dir(prefixPath) + "/"
}
bucketNameShowed := false
var prev *ClientContent
show := func(end bool) error {
currbranchString := branchString
if level == 1 && !bucketNameShowed {
bucketNameShowed = true
printMsg(treeMessage{
Entry: url,
IsDir: true,
BranchString: branchString,
})
}
isLevelClosed := strings.HasSuffix(currbranchString, treeLastEntry)
if isLevelClosed {
currbranchString = strings.TrimSuffix(currbranchString, treeLastEntry)
} else {
currbranchString = strings.TrimSuffix(currbranchString, treeEntry)
}
if level != 1 {
if isLevelClosed {
currbranchString += " " + treeLevel
} else {
currbranchString += treeNext + treeLevel
}
}
if end {
currbranchString += treeLastEntry
} else {
currbranchString += treeEntry
}
// Convert any os specific delimiters to "/".
contentURL := filepath.ToSlash(prev.URL.Path)
prefixPath = filepath.ToSlash(prefixPath)
// Trim prefix of current working dir
prefixPath = strings.TrimPrefix(prefixPath, "."+separator)
if prev.Type.IsDir() {
nextURL := ""
if targetAlias != "" {
nextURL = targetAlias + "/" + contentURL
} else {
nextURL = contentURL
}
if nextURL == url {
return nil
}
printMsg(treeMessage{
Entry: strings.TrimSuffix(strings.TrimPrefix(contentURL, prefixPath), "/"),
IsDir: true,
BranchString: currbranchString,
})
} else {
printMsg(treeMessage{
Entry: strings.TrimPrefix(contentURL, prefixPath),
IsDir: false,
BranchString: currbranchString,
})
}
if prev.Type.IsDir() {
url := ""
if targetAlias != "" {
url = targetAlias + "/" + contentURL
} else {
url = contentURL
}
if depth == -1 || level <= depth {
if err := doTree(ctx, url, timeRef, level+1, currbranchString, depth, includeFiles); err != nil {
return err
}
}
}
return nil
}
for content := range clnt.List(ctx, ListOptions{Recursive: false, TimeRef: timeRef, ShowDir: DirFirst}) {
if content.Err != nil {
errorIf(content.Err.Trace(clnt.GetURL().String()), "Unable to tree.")
continue
}
if !includeFiles && !content.Type.IsDir() {
continue
}
if prev != nil {
if err := show(false); err != nil {
return err
}
}
prev = content
}
if prev != nil {
if err := show(true); err != nil {
return err
}
}
return nil
}
// mainTree - is a handler for mc tree command
func mainTree(cliCtx *cli.Context) error {
ctx, cancelList := context.WithCancel(globalContext)
defer cancelList()
console.SetColor("File", color.New(color.Bold))
console.SetColor("Dir", color.New(color.FgCyan, color.Bold))
// parse 'tree' cliCtx arguments.
args, depth, includeFiles, timeRef := parseTreeSyntax(ctx, cliCtx)
// mimic operating system tool behavior.
if len(args) == 0 {
args = []string{"."}
}
var cErr error
for _, targetURL := range args {
if !globalJSON {
if e := doTree(ctx, targetURL, timeRef, 1, "", depth, includeFiles); e != nil {
cErr = e
}
} else {
targetAlias, targetURL, _ := mustExpandAlias(targetURL)
if !strings.HasSuffix(targetURL, "/") {
targetURL += "/"
}
clnt, err := newClientFromAlias(targetAlias, targetURL)
fatalIf(err.Trace(targetURL), "Unable to initialize target `"+targetURL+"`.")
opts := doListOptions{
timeRef: timeRef,
isRecursive: true,
isIncomplete: false,
isSummary: false,
withVersions: false,
listZip: false,
filter: "*",
}
if e := doList(ctx, clnt, opts); e != nil {
cErr = e
}
}
}
return cErr
}