forked from GoogleCloudPlatform/gcsfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflags.go
418 lines (352 loc) · 10.4 KB
/
flags.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
// Copyright 2015 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 (
"fmt"
"net/url"
"os"
"strconv"
"time"
mountpkg "github.com/googlecloudplatform/gcsfuse/internal/mount"
"github.com/urfave/cli"
)
// Set up custom help text for gcsfuse; in particular the usage section.
func init() {
cli.AppHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
{{.Name}} {{if .Flags}}[global options]{{end}} [bucket] mountpoint
{{if .Version}}
VERSION:
{{.Version}}
{{end}}{{if len .Authors}}
AUTHOR(S):
{{range .Authors}}{{ . }}{{end}}
{{end}}{{if .Flags}}
GLOBAL OPTIONS:
{{range .Flags}}{{.}}
{{end}}{{end}}{{if .Copyright }}
COPYRIGHT:
{{.Copyright}}
{{end}}
`
}
func newApp() (app *cli.App) {
dirModeValue := new(OctalInt)
*dirModeValue = 0755
fileModeValue := new(OctalInt)
*fileModeValue = 0644
app = &cli.App{
Name: "gcsfuse",
Version: getVersion(),
Usage: "Mount a specified GCS bucket or all accessible buckets locally",
Writer: os.Stderr,
Flags: []cli.Flag{
cli.StringFlag{
Name: "app-name",
Value: "",
Usage: "The application name of this mount.",
},
cli.BoolFlag{
Name: "foreground",
Usage: "Stay in the foreground after mounting.",
},
/////////////////////////
// File system
/////////////////////////
cli.StringSliceFlag{
Name: "o",
Usage: "Additional system-specific mount options. Be careful!",
},
cli.GenericFlag{
Name: "dir-mode",
Value: dirModeValue,
Usage: "Permissions bits for directories, in octal.",
},
cli.GenericFlag{
Name: "file-mode",
Value: fileModeValue,
Usage: "Permission bits for files, in octal.",
},
cli.IntFlag{
Name: "uid",
Value: -1,
Usage: "UID owner of all inodes.",
},
cli.IntFlag{
Name: "gid",
Value: -1,
Usage: "GID owner of all inodes.",
},
cli.BoolFlag{
Name: "implicit-dirs",
Usage: "Implicitly define directories based on content. See " +
"docs/semantics.md",
},
cli.StringFlag{
Name: "only-dir",
Usage: "Mount only the given directory, relative to the bucket root.",
},
cli.IntFlag{
Name: "rename-dir-limit",
Value: 0,
Usage: "Allow rename a directory containing fewer descendants " +
"than this limit.",
},
/////////////////////////
// GCS
/////////////////////////
cli.StringFlag{
Name: "endpoint",
Value: "https://www.googleapis.com:443",
Usage: "The endpoint to connect to.",
},
cli.StringFlag{
Name: "billing-project",
Value: "",
Usage: "Project to use for billing when accessing requester pays buckets. " +
"(default: none)",
},
cli.StringFlag{
Name: "key-file",
Value: "",
Usage: "Absolute path to JSON key file for use with GCS. " +
"(default: none, Google application default credentials used)",
},
cli.StringFlag{
Name: "token-url",
Value: "",
Usage: "An url for getting an access token when key-file is absent.",
},
cli.Float64Flag{
Name: "limit-bytes-per-sec",
Value: -1,
Usage: "Bandwidth limit for reading data, measured over a 30-second " +
"window. (use -1 for no limit)",
},
cli.Float64Flag{
Name: "limit-ops-per-sec",
Value: -1,
Usage: "Operations per second limit, measured over a 30-second window " +
"(use -1 for no limit)",
},
/////////////////////////
// Tuning
/////////////////////////
cli.DurationFlag{
Name: "max-retry-sleep",
Value: time.Minute,
Usage: "The maximum duration allowed to sleep in a retry loop with " +
"exponential backoff for failed requests to GCS backend. Once the " +
"backoff duration exceeds this limit, the retry stops. The default " +
"is 1 minute. A value of 0 disables retries.",
},
cli.IntFlag{
Name: "stat-cache-capacity",
Value: 4096,
Usage: "How many entries can the stat cache hold (impacts memory consumption)",
},
cli.DurationFlag{
Name: "stat-cache-ttl",
Value: time.Minute,
Usage: "How long to cache StatObject results and inode attributes.",
},
cli.DurationFlag{
Name: "type-cache-ttl",
Value: time.Minute,
Usage: "How long to cache name -> file/dir mappings in directory " +
"inodes.",
},
cli.BoolFlag{
Name: "local-file-cache",
Usage: "Cache GCS files on local disk for reads.",
},
cli.StringFlag{
Name: "temp-dir",
Value: "",
Usage: "Absolute path to temporary directory for local GCS object " +
"copies. (default: system default, likely /tmp)",
},
cli.BoolFlag{
Name: "disable-http2",
Usage: "Once set, the protocol used for communicating with " +
"GCS backend would be HTTP/1.1, instead of the default HTTP/2.",
},
cli.IntFlag{
Name: "max-conns-per-host",
Value: 10,
Usage: "The max number of TCP connections allowed per server. " +
"This is effective when --disable-http2 is set.",
},
/////////////////////////
// Monitoring & Logging
/////////////////////////
cli.DurationFlag{
Name: "stackdriver-export-interval",
Value: 0,
Usage: "Export metrics to stackdriver with this interval. The default value 0 indicates no exporting.",
},
cli.StringFlag{
Name: "log-file",
Value: "",
Usage: "The file for storing logs that can be parsed by " +
"fluentd. When not provided, plain text logs are printed to " +
"stdout.",
},
cli.StringFlag{
Name: "log-format",
Value: "json",
Usage: "The format of the log file: 'text' or 'json'.",
},
/////////////////////////
// Debugging
/////////////////////////
cli.BoolFlag{
Name: "debug_fuse",
Usage: "Enable fuse-related debugging output.",
},
cli.BoolFlag{
Name: "debug_fs",
Usage: "Enable file system debugging output.",
},
cli.BoolFlag{
Name: "debug_gcs",
Usage: "Print GCS request and timing information.",
},
cli.BoolFlag{
Name: "debug_http",
Usage: "Dump HTTP requests and responses to/from GCS.",
},
cli.BoolFlag{
Name: "debug_invariants",
Usage: "Panic when internal invariants are violated.",
},
cli.BoolFlag{
Name: "debug_mutex",
Usage: "Print debug messages when a mutex is held too long.",
},
},
}
return
}
type flagStorage struct {
AppName string
Foreground bool
// File system
MountOptions map[string]string
DirMode os.FileMode
FileMode os.FileMode
Uid int64
Gid int64
ImplicitDirs bool
OnlyDir string
RenameDirLimit int64
// GCS
Endpoint *url.URL
BillingProject string
KeyFile string
TokenUrl string
EgressBandwidthLimitBytesPerSecond float64
OpRateLimitHz float64
// Tuning
MaxRetrySleep time.Duration
StatCacheCapacity int
StatCacheTTL time.Duration
TypeCacheTTL time.Duration
LocalFileCache bool
TempDir string
DisableHTTP2 bool
MaxConnsPerHost int
// Monitoring & Logging
StackdriverExportInterval time.Duration
LogFile string
LogFormat string
// Debugging
DebugFuse bool
DebugFS bool
DebugGCS bool
DebugHTTP bool
DebugInvariants bool
DebugMutex bool
}
// Add the flags accepted by run to the supplied flag set, returning the
// variables into which the flags will parse.
func populateFlags(c *cli.Context) (flags *flagStorage) {
endpoint, err := url.Parse(c.String("endpoint"))
if err != nil {
fmt.Printf("Could not parse endpoint")
return nil
}
flags = &flagStorage{
AppName: c.String("app-name"),
Foreground: c.Bool("foreground"),
// File system
MountOptions: make(map[string]string),
DirMode: os.FileMode(*c.Generic("dir-mode").(*OctalInt)),
FileMode: os.FileMode(*c.Generic("file-mode").(*OctalInt)),
Uid: int64(c.Int("uid")),
Gid: int64(c.Int("gid")),
ImplicitDirs: c.Bool("implicit-dirs"),
OnlyDir: c.String("only-dir"),
RenameDirLimit: int64(c.Int("rename-dir-limit")),
// GCS,
Endpoint: endpoint,
BillingProject: c.String("billing-project"),
KeyFile: c.String("key-file"),
TokenUrl: c.String("token-url"),
EgressBandwidthLimitBytesPerSecond: c.Float64("limit-bytes-per-sec"),
OpRateLimitHz: c.Float64("limit-ops-per-sec"),
// Tuning,
MaxRetrySleep: c.Duration("max-retry-sleep"),
StatCacheCapacity: c.Int("stat-cache-capacity"),
StatCacheTTL: c.Duration("stat-cache-ttl"),
TypeCacheTTL: c.Duration("type-cache-ttl"),
LocalFileCache: c.Bool("local-file-cache"),
TempDir: c.String("temp-dir"),
DisableHTTP2: c.Bool("disable-http2"),
MaxConnsPerHost: c.Int("max-conns-per-host"),
// Monitoring & Logging
StackdriverExportInterval: c.Duration("stackdriver-export-interval"),
LogFile: c.String("log-file"),
LogFormat: c.String("log-format"),
// Debugging,
DebugFuse: c.Bool("debug_fuse"),
DebugGCS: c.Bool("debug_gcs"),
DebugFS: c.Bool("debug_fs"),
DebugHTTP: c.Bool("debug_http"),
DebugInvariants: c.Bool("debug_invariants"),
DebugMutex: c.Bool("debug_mutex"),
}
// Handle the repeated "-o" flag.
for _, o := range c.StringSlice("o") {
mountpkg.ParseOptions(flags.MountOptions, o)
}
return
}
// A cli.Generic that can be used with cli.GenericFlag to obtain an int flag
// that is parsed in octal.
type OctalInt int
var _ cli.Generic = (*OctalInt)(nil)
func (oi *OctalInt) Set(value string) (err error) {
tmp, err := strconv.ParseInt(value, 8, 32)
if err != nil {
err = fmt.Errorf("Parsing as octal: %w", err)
return
}
*oi = OctalInt(tmp)
return
}
func (oi OctalInt) String() string {
return fmt.Sprintf("%o", oi)
}