mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
f5f00a9108
Bumps the dependencies group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/containerd/containerd/v2](https://github.com/containerd/containerd) | `2.1.1` | `2.1.3` | | [github.com/dgraph-io/badger/v4](https://github.com/dgraph-io/badger) | `4.7.0` | `4.8.0` | | [github.com/sergi/go-diff](https://github.com/sergi/go-diff) | `1.3.1` | `1.4.0` | | [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.6` | `1.0.7` | | [github.com/tchap/go-patricia/v2](https://github.com/tchap/go-patricia) | `2.3.2` | `2.3.3` | | [github.com/vektah/gqlparser/v2](https://github.com/vektah/gqlparser) | `2.5.28` | `2.5.30` | | [golang.org/x/net](https://github.com/golang/net) | `0.41.0` | `0.42.0` | | [golang.org/x/time](https://github.com/golang/time) | `0.11.0` | `0.12.0` | | [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.73.0` | `1.74.2` | | [sigs.k8s.io/yaml](https://github.com/kubernetes-sigs/yaml) | `1.4.0` | `1.6.0` | Updates `github.com/containerd/containerd/v2` from 2.1.1 to 2.1.3 - [Release notes](https://github.com/containerd/containerd/releases) - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md) - [Commits](https://github.com/containerd/containerd/compare/v2.1.1...v2.1.3) Updates `github.com/dgraph-io/badger/v4` from 4.7.0 to 4.8.0 - [Release notes](https://github.com/dgraph-io/badger/releases) - [Changelog](https://github.com/hypermodeinc/badger/blob/main/CHANGELOG.md) - [Commits](https://github.com/dgraph-io/badger/compare/v4.7.0...v4.8.0) Updates `github.com/sergi/go-diff` from 1.3.1 to 1.4.0 - [Commits](https://github.com/sergi/go-diff/compare/v1.3.1...v1.4.0) Updates `github.com/spf13/pflag` from 1.0.6 to 1.0.7 - [Release notes](https://github.com/spf13/pflag/releases) - [Commits](https://github.com/spf13/pflag/compare/v1.0.6...v1.0.7) Updates `github.com/tchap/go-patricia/v2` from 2.3.2 to 2.3.3 - [Commits](https://github.com/tchap/go-patricia/compare/v2.3.2...v2.3.3) Updates `github.com/vektah/gqlparser/v2` from 2.5.28 to 2.5.30 - [Release notes](https://github.com/vektah/gqlparser/releases) - [Commits](https://github.com/vektah/gqlparser/compare/v2.5.28...v2.5.30) Updates `golang.org/x/net` from 0.41.0 to 0.42.0 - [Commits](https://github.com/golang/net/compare/v0.41.0...v0.42.0) Updates `golang.org/x/time` from 0.11.0 to 0.12.0 - [Commits](https://github.com/golang/time/compare/v0.11.0...v0.12.0) Updates `google.golang.org/grpc` from 1.73.0 to 1.74.2 - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.73.0...v1.74.2) Updates `sigs.k8s.io/yaml` from 1.4.0 to 1.6.0 - [Release notes](https://github.com/kubernetes-sigs/yaml/releases) - [Changelog](https://github.com/kubernetes-sigs/yaml/blob/master/RELEASE.md) - [Commits](https://github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.6.0) --- updated-dependencies: - dependency-name: github.com/containerd/containerd/v2 dependency-version: 2.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: github.com/dgraph-io/badger/v4 dependency-version: 4.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: github.com/sergi/go-diff dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: github.com/spf13/pflag dependency-version: 1.0.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: github.com/tchap/go-patricia/v2 dependency-version: 2.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: github.com/vektah/gqlparser/v2 dependency-version: 2.5.30 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: golang.org/x/net dependency-version: 0.42.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: golang.org/x/time dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: google.golang.org/grpc dependency-version: 1.74.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: sigs.k8s.io/yaml dependency-version: 1.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
119 lines
3.9 KiB
Go
119 lines
3.9 KiB
Go
package pflag
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
// TimeValue adapts time.Time for use as a flag.
|
|
type timeValue struct {
|
|
*time.Time
|
|
formats []string
|
|
}
|
|
|
|
func newTimeValue(val time.Time, p *time.Time, formats []string) *timeValue {
|
|
*p = val
|
|
return &timeValue{
|
|
Time: p,
|
|
formats: formats,
|
|
}
|
|
}
|
|
|
|
// Set time.Time value from string based on accepted formats.
|
|
func (d *timeValue) Set(s string) error {
|
|
s = strings.TrimSpace(s)
|
|
for _, f := range d.formats {
|
|
v, err := time.Parse(f, s)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
*d.Time = v
|
|
return nil
|
|
}
|
|
|
|
formatsString := ""
|
|
for i, f := range d.formats {
|
|
if i > 0 {
|
|
formatsString += ", "
|
|
}
|
|
formatsString += fmt.Sprintf("`%s`", f)
|
|
}
|
|
|
|
return fmt.Errorf("invalid time format `%s` must be one of: %s", s, formatsString)
|
|
}
|
|
|
|
// Type name for time.Time flags.
|
|
func (d *timeValue) Type() string {
|
|
return "time"
|
|
}
|
|
|
|
func (d *timeValue) String() string { return d.Time.Format(time.RFC3339Nano) }
|
|
|
|
// GetTime return the time value of a flag with the given name
|
|
func (f *FlagSet) GetTime(name string) (time.Time, error) {
|
|
flag := f.Lookup(name)
|
|
if flag == nil {
|
|
err := fmt.Errorf("flag accessed but not defined: %s", name)
|
|
return time.Time{}, err
|
|
}
|
|
|
|
if flag.Value.Type() != "time" {
|
|
err := fmt.Errorf("trying to get %s value of flag of type %s", "time", flag.Value.Type())
|
|
return time.Time{}, err
|
|
}
|
|
|
|
val, ok := flag.Value.(*timeValue)
|
|
if !ok {
|
|
return time.Time{}, fmt.Errorf("value %s is not a time", flag.Value)
|
|
}
|
|
|
|
return *val.Time, nil
|
|
}
|
|
|
|
// TimeVar defines a time.Time flag with specified name, default value, and usage string.
|
|
// The argument p points to a time.Time variable in which to store the value of the flag.
|
|
func (f *FlagSet) TimeVar(p *time.Time, name string, value time.Time, formats []string, usage string) {
|
|
f.TimeVarP(p, name, "", value, formats, usage)
|
|
}
|
|
|
|
// TimeVarP is like TimeVar, but accepts a shorthand letter that can be used after a single dash.
|
|
func (f *FlagSet) TimeVarP(p *time.Time, name, shorthand string, value time.Time, formats []string, usage string) {
|
|
f.VarP(newTimeValue(value, p, formats), name, shorthand, usage)
|
|
}
|
|
|
|
// TimeVar defines a time.Time flag with specified name, default value, and usage string.
|
|
// The argument p points to a time.Time variable in which to store the value of the flag.
|
|
func TimeVar(p *time.Time, name string, value time.Time, formats []string, usage string) {
|
|
CommandLine.TimeVarP(p, name, "", value, formats, usage)
|
|
}
|
|
|
|
// TimeVarP is like TimeVar, but accepts a shorthand letter that can be used after a single dash.
|
|
func TimeVarP(p *time.Time, name, shorthand string, value time.Time, formats []string, usage string) {
|
|
CommandLine.VarP(newTimeValue(value, p, formats), name, shorthand, usage)
|
|
}
|
|
|
|
// Time defines a time.Time flag with specified name, default value, and usage string.
|
|
// The return value is the address of a time.Time variable that stores the value of the flag.
|
|
func (f *FlagSet) Time(name string, value time.Time, formats []string, usage string) *time.Time {
|
|
return f.TimeP(name, "", value, formats, usage)
|
|
}
|
|
|
|
// TimeP is like Time, but accepts a shorthand letter that can be used after a single dash.
|
|
func (f *FlagSet) TimeP(name, shorthand string, value time.Time, formats []string, usage string) *time.Time {
|
|
p := new(time.Time)
|
|
f.TimeVarP(p, name, shorthand, value, formats, usage)
|
|
return p
|
|
}
|
|
|
|
// Time defines a time.Time flag with specified name, default value, and usage string.
|
|
// The return value is the address of a time.Time variable that stores the value of the flag.
|
|
func Time(name string, value time.Time, formats []string, usage string) *time.Time {
|
|
return CommandLine.TimeP(name, "", value, formats, usage)
|
|
}
|
|
|
|
// TimeP is like Time, but accepts a shorthand letter that can be used after a single dash.
|
|
func TimeP(name, shorthand string, value time.Time, formats []string, usage string) *time.Time {
|
|
return CommandLine.TimeP(name, shorthand, value, formats, usage)
|
|
}
|