-
Notifications
You must be signed in to change notification settings - Fork 63
/
flags_string.go
41 lines (33 loc) · 1.19 KB
/
flags_string.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
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2012 Alex Ogier.
// Copyright (c) 2012 The Go Authors.
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package cmdfactory
import (
"github.com/spf13/pflag"
)
type stringValue string
func newStringValue(val string, p *string) *stringValue {
*p = val
return (*stringValue)(p)
}
func (s *stringValue) Set(val string) error {
*s = stringValue(val)
return nil
}
func (s *stringValue) Type() string {
return "string"
}
func (s *stringValue) String() string { return string(*s) }
// StringVar returns an instantiated flag for to an associated pointer string
// value with a given name, default value and usage line.
func StringVar(p *string, name string, value string, usage string) *pflag.Flag {
return VarF(newStringValue(value, p), name, usage)
}
// StringVarP is like StringVar, but accepts a shorthand letter that can be used
// after a single dash.
func StringVarP(p *string, name, shorthand string, value string, usage string) *pflag.Flag {
return VarPF(newStringValue(value, p), name, shorthand, usage)
}