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
|
// BSD 2-Clause License
//
// Copyright (c) 2022, the ct authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// From:
// https://gitlab.torproject.org/rgdd/ct/-/tree/main/internal/ctflag
package ctflag
import (
"flag"
"fmt"
"time"
)
// NewFlagSet outputs a new flag set that continues on errors without standard
// library prints (so that the application gets full control of error handling)
func NewFlagSet() flag.FlagSet {
fs := flag.NewFlagSet("", flag.ContinueOnError)
fs.SetOutput(discard{})
return *fs
}
// Parse tries to parse command-line options into a flag set. Trailing
// arguments are not permitted, i.e., all options must be parseable flags.
func Parse(fs flag.FlagSet, args []string) error {
if err := fs.Parse(args); err != nil {
return err
}
if len(fs.Args()) != 0 {
return fmt.Errorf("trailing arguments: %v", fs.Args())
}
return nil
}
// WantHelp outputs true if the index i is out-of-range, or if the argument at
// index i starts with "help" or "-"
func WantHelp(args []string, i int) bool {
if i+1 > len(args) {
return true
}
if args[i] == "help" {
return true
}
return len(args[i]) == 0 || args[i][0] == '-'
}
// String adds a new string option to a flag set
func String(fs *flag.FlagSet, opt *string, short, long, value string) {
fs.StringVar(opt, short, value, "")
fs.StringVar(opt, long, value, "")
}
// Uint64 adds a new uint64 option to a flag set
func Uint64(fs *flag.FlagSet, opt *uint64, short, long string, value uint64) {
fs.Uint64Var(opt, short, value, "")
fs.Uint64Var(opt, long, value, "")
}
// Duration adds a new duration option to a flag set
func Duration(fs *flag.FlagSet, opt *time.Duration, short, long string, value time.Duration) {
fs.DurationVar(opt, short, value, "")
fs.DurationVar(opt, long, value, "")
}
// Bool adds a new bool option to a flag set
func Bool(fs *flag.FlagSet, opt *bool, short, long string, value bool) {
fs.BoolVar(opt, short, value, "")
fs.BoolVar(opt, long, value, "")
}
type discard struct{}
func (d discard) Write(_ []byte) (int, error) {
return 0, nil
}
|