forked from GoogleCloudPlatform/gcsfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flags.go
288 lines (239 loc) · 6.65 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
// 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"
"os"
"strconv"
"time"
"github.com/codegangsta/cli"
mountpkg "github.com/googlecloudplatform/gcsfuse/internal/mount"
)
// 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 GCS bucket locally",
Writer: os.Stderr,
Flags: []cli.Flag{
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.",
},
/////////////////////////
// GCS
/////////////////////////
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.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: 5.0,
Usage: "Operations per second limit, measured over a 30-second window " +
"(use -1 for no limit)",
},
/////////////////////////
// Tuning
/////////////////////////
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.StringFlag{
Name: "temp-dir",
Value: "",
Usage: "Absolute path to temporary directory for local GCS object " +
"copies. (default: system default, likely /tmp)",
},
/////////////////////////
// Debugging
/////////////////////////
cli.BoolFlag{
Name: "debug_fuse",
Usage: "Enable fuse-related 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.",
},
},
}
return
}
type flagStorage struct {
Foreground bool
// File system
MountOptions map[string]string
DirMode os.FileMode
FileMode os.FileMode
Uid int64
Gid int64
ImplicitDirs bool
OnlyDir string
// GCS
BillingProject string
KeyFile string
EgressBandwidthLimitBytesPerSecond float64
OpRateLimitHz float64
// Tuning
StatCacheTTL time.Duration
TypeCacheTTL time.Duration
TempDir string
// Debugging
DebugFuse bool
DebugGCS bool
DebugHTTP bool
DebugInvariants 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) {
flags = &flagStorage{
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"),
// GCS,
BillingProject: c.String("billing-project"),
KeyFile: c.String("key-file"),
EgressBandwidthLimitBytesPerSecond: c.Float64("limit-bytes-per-sec"),
OpRateLimitHz: c.Float64("limit-ops-per-sec"),
// Tuning,
StatCacheTTL: c.Duration("stat-cache-ttl"),
TypeCacheTTL: c.Duration("type-cache-ttl"),
TempDir: c.String("temp-dir"),
// Debugging,
DebugFuse: c.Bool("debug_fuse"),
DebugGCS: c.Bool("debug_gcs"),
DebugHTTP: c.Bool("debug_http"),
DebugInvariants: c.Bool("debug_invariants"),
}
// 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: %v", err)
return
}
*oi = OctalInt(tmp)
return
}
func (oi OctalInt) String() string {
return fmt.Sprintf("%o", oi)
}