-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support custom
grpc.MaxConcurrentStreams
- Loading branch information
Showing
11 changed files
with
188 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package flags | ||
|
||
import ( | ||
"flag" | ||
"fmt" | ||
"strconv" | ||
) | ||
|
||
type uint32Value uint32 | ||
|
||
func NewUint32Value(s string) *uint32Value { | ||
var u uint32Value | ||
if s == "" || s == "0" { | ||
return &u | ||
} | ||
if err := u.Set(s); err != nil { | ||
panic(fmt.Sprintf("new uint32Value should never fail: %v", err)) | ||
} | ||
return &u | ||
} | ||
|
||
func (i *uint32Value) Set(s string) error { | ||
v, err := strconv.ParseUint(s, 0, 32) | ||
*i = uint32Value(v) | ||
return err | ||
} | ||
func (i *uint32Value) Type() string { | ||
return "uint32" | ||
} | ||
func (i *uint32Value) String() string { return strconv.FormatUint(uint64(*i), 10) } | ||
|
||
// Uint32FromFlag return the uint32 value of a flag with the given name | ||
func Uint32FromFlag(fs *flag.FlagSet, name string) uint32 { | ||
val := *fs.Lookup(name).Value.(*uint32Value) | ||
return uint32(val) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package flags | ||
|
||
import ( | ||
"reflect" | ||
"testing" | ||
) | ||
|
||
func TestInvalidUint32(t *testing.T) { | ||
tests := []string{ | ||
// string | ||
"invalid", | ||
// negative number | ||
"-1", | ||
// float number | ||
"0.1", | ||
"-0.2", | ||
// larger than math.MaxUint32 | ||
"4294967296", | ||
} | ||
for i, in := range tests { | ||
var u uint32Value | ||
if err := u.Set(in); err == nil { | ||
t.Errorf(`#%d: unexpected nil error for in=%q`, i, in) | ||
} | ||
} | ||
} | ||
|
||
func TestUint32Value(t *testing.T) { | ||
tests := []struct { | ||
s string | ||
exp uint32 | ||
}{ | ||
{s: "0", exp: 0}, | ||
{s: "1", exp: 1}, | ||
{s: "", exp: 0}, | ||
} | ||
for i := range tests { | ||
ss := uint32(*NewUint32Value(tests[i].s)) | ||
if !reflect.DeepEqual(tests[i].exp, ss) { | ||
t.Fatalf("#%d: expected %q, got %q", i, tests[i].exp, ss) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters