Skip to content

Commit 1410f7d

Browse files
authored
1 parent 8afe68f commit 1410f7d

File tree

8 files changed

+117
-29
lines changed

8 files changed

+117
-29
lines changed

core/jsonx/json.go

+10-9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ func Marshal(v interface{}) ([]byte, error) {
1313
return json.Marshal(v)
1414
}
1515

16+
// MarshalToString marshals v into a string.
17+
func MarshalToString(v interface{}) (string, error) {
18+
data, err := Marshal(v)
19+
if err != nil {
20+
return "", err
21+
}
22+
23+
return string(data), nil
24+
}
25+
1626
// Unmarshal unmarshals data bytes into v.
1727
func Unmarshal(data []byte, v interface{}) error {
1828
decoder := json.NewDecoder(bytes.NewReader(data))
@@ -53,12 +63,3 @@ func unmarshalUseNumber(decoder *json.Decoder, v interface{}) error {
5363
func formatError(v string, err error) error {
5464
return fmt.Errorf("string: `%s`, error: `%w`", v, err)
5565
}
56-
57-
// MarshalToString marshals v into string.
58-
func MarshalToString(v interface{}) (string, error) {
59-
data, err := Marshal(v)
60-
if err != nil {
61-
return "", formatError(string(data), err)
62-
}
63-
return string(data), nil
64-
}

core/jsonx/json_test.go

+16-13
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ func TestMarshal(t *testing.T) {
2020
assert.Equal(t, `{"name":"John","age":30}`, string(bs))
2121
}
2222

23+
func TestMarshalToString(t *testing.T) {
24+
var v = struct {
25+
Name string `json:"name"`
26+
Age int `json:"age"`
27+
}{
28+
Name: "John",
29+
Age: 30,
30+
}
31+
toString, err := MarshalToString(v)
32+
assert.Nil(t, err)
33+
assert.Equal(t, `{"name":"John","age":30}`, toString)
34+
35+
_, err = MarshalToString(make(chan int))
36+
assert.NotNil(t, err)
37+
}
38+
2339
func TestUnmarshal(t *testing.T) {
2440
const s = `{"name":"John","age":30}`
2541
var v struct {
@@ -85,16 +101,3 @@ func TestUnmarshalFromReaderError(t *testing.T) {
85101
err := UnmarshalFromReader(strings.NewReader(s), &v)
86102
assert.NotNil(t, err)
87103
}
88-
89-
func TestMarshalToString(t *testing.T) {
90-
var v = struct {
91-
Name string `json:"name"`
92-
Age int `json:"age"`
93-
}{
94-
Name: "John",
95-
Age: 30,
96-
}
97-
toString, err := MarshalToString(v)
98-
assert.Nil(t, err)
99-
assert.Equal(t, `{"name":"John","age":30}`, toString)
100-
}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ require (
4040
k8s.io/api v0.22.9
4141
k8s.io/apimachinery v0.22.9
4242
k8s.io/client-go v0.22.9
43-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
43+
k8s.io/utils v0.0.0-20220706174534-f6158b442e7c
4444
)
4545

4646
require (

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,8 @@ k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2R
868868
k8s.io/utils v0.0.0-20211116205334-6203023598ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
869869
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 h1:HNSDgDCrr/6Ly3WEGKZftiE7IY19Vz2GdbOCyI4qqhc=
870870
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
871+
k8s.io/utils v0.0.0-20220706174534-f6158b442e7c h1:hFZO68mv/0xe8+V0gRT9BAq3/31cKjjeVv4nScriuBk=
872+
k8s.io/utils v0.0.0-20220706174534-f6158b442e7c/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
871873
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
872874
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
873875
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=

zrpc/internal/serverinterceptors/statinterceptor.go

+24-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ package serverinterceptors
33
import (
44
"context"
55
"encoding/json"
6+
"sync"
67
"time"
78

9+
"github.com/zeromicro/go-zero/core/lang"
810
"github.com/zeromicro/go-zero/core/logx"
911
"github.com/zeromicro/go-zero/core/stat"
1012
"github.com/zeromicro/go-zero/core/syncx"
@@ -15,7 +17,15 @@ import (
1517

1618
const defaultSlowThreshold = time.Millisecond * 500
1719

18-
var slowThreshold = syncx.ForAtomicDuration(defaultSlowThreshold)
20+
var (
21+
notLoggingContentMethods sync.Map
22+
slowThreshold = syncx.ForAtomicDuration(defaultSlowThreshold)
23+
)
24+
25+
// DontLogContentForMethod disable logging content for given method.
26+
func DontLogContentForMethod(method string) {
27+
notLoggingContentMethods.Store(method, lang.Placeholder)
28+
}
1929

2030
// SetSlowThreshold sets the slow threshold.
2131
func SetSlowThreshold(threshold time.Duration) {
@@ -45,13 +55,24 @@ func logDuration(ctx context.Context, method string, req interface{}, duration t
4555
if ok {
4656
addr = client.Addr.String()
4757
}
58+
59+
logger := logx.WithContext(ctx).WithDuration(duration)
60+
_, ok = notLoggingContentMethods.Load(method)
61+
if ok {
62+
if duration > slowThreshold.Load() {
63+
logger.Slowf("[RPC] slowcall - %s - %s - %s", addr, method)
64+
} else {
65+
logger.Infof("%s - %s - %s", addr, method)
66+
}
67+
}
68+
4869
content, err := json.Marshal(req)
4970
if err != nil {
5071
logx.WithContext(ctx).Errorf("%s - %s", addr, err.Error())
5172
} else if duration > slowThreshold.Load() {
52-
logx.WithContext(ctx).WithDuration(duration).Slowf("[RPC] slowcall - %s - %s - %s",
73+
logger.Slowf("[RPC] slowcall - %s - %s - %s",
5374
addr, method, string(content))
5475
} else {
55-
logx.WithContext(ctx).WithDuration(duration).Infof("%s - %s - %s", addr, method, string(content))
76+
logger.Infof("%s - %s - %s", addr, method, string(content))
5677
}
5778
}

zrpc/internal/serverinterceptors/statinterceptor_test.go

+55
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,58 @@ func TestLogDuration(t *testing.T) {
8383
})
8484
}
8585
}
86+
87+
func TestLogDurationWithoutContent(t *testing.T) {
88+
addrs, err := net.InterfaceAddrs()
89+
assert.Nil(t, err)
90+
assert.True(t, len(addrs) > 0)
91+
92+
tests := []struct {
93+
name string
94+
ctx context.Context
95+
req interface{}
96+
duration time.Duration
97+
}{
98+
{
99+
name: "normal",
100+
ctx: context.Background(),
101+
req: "foo",
102+
},
103+
{
104+
name: "bad req",
105+
ctx: context.Background(),
106+
req: make(chan lang.PlaceholderType), // not marshalable
107+
},
108+
{
109+
name: "timeout",
110+
ctx: context.Background(),
111+
req: "foo",
112+
duration: time.Second,
113+
},
114+
{
115+
name: "timeout",
116+
ctx: peer.NewContext(context.Background(), &peer.Peer{
117+
Addr: addrs[0],
118+
}),
119+
req: "foo",
120+
},
121+
{
122+
name: "timeout",
123+
ctx: context.Background(),
124+
req: "foo",
125+
duration: slowThreshold.Load() + time.Second,
126+
},
127+
}
128+
129+
DontLogContentForMethod("foo")
130+
for _, test := range tests {
131+
test := test
132+
t.Run(test.name, func(t *testing.T) {
133+
t.Parallel()
134+
135+
assert.NotPanics(t, func() {
136+
logDuration(test.ctx, "foo", test.req, test.duration)
137+
})
138+
})
139+
}
140+
}

zrpc/server.go

+5
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ func (rs *RpcServer) Stop() {
9797
logx.Close()
9898
}
9999

100+
// DontLogContentForMethod disable logging content for given method.
101+
func DontLogContentForMethod(method string) {
102+
serverinterceptors.DontLogContentForMethod(method)
103+
}
104+
100105
// SetServerSlowThreshold sets the slow threshold on server side.
101106
func SetServerSlowThreshold(threshold time.Duration) {
102107
serverinterceptors.SetSlowThreshold(threshold)

zrpc/server_test.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ func TestServer_setupInterceptors(t *testing.T) {
3535
}
3636

3737
func TestServer(t *testing.T) {
38+
DontLogContentForMethod("foo")
3839
SetServerSlowThreshold(time.Second)
3940
svr := MustNewServer(RpcServerConf{
4041
ServiceConf: service.ServiceConf{
@@ -121,7 +122,7 @@ type mockedServer struct {
121122
streamInterceptors []grpc.StreamServerInterceptor
122123
}
123124

124-
func (m *mockedServer) AddOptions(options ...grpc.ServerOption) {
125+
func (m *mockedServer) AddOptions(_ ...grpc.ServerOption) {
125126
}
126127

127128
func (m *mockedServer) AddStreamInterceptors(interceptors ...grpc.StreamServerInterceptor) {
@@ -132,9 +133,9 @@ func (m *mockedServer) AddUnaryInterceptors(interceptors ...grpc.UnaryServerInte
132133
m.unaryInterceptors = append(m.unaryInterceptors, interceptors...)
133134
}
134135

135-
func (m *mockedServer) SetName(s string) {
136+
func (m *mockedServer) SetName(_ string) {
136137
}
137138

138-
func (m *mockedServer) Start(register internal.RegisterFn) error {
139+
func (m *mockedServer) Start(_ internal.RegisterFn) error {
139140
return nil
140141
}

0 commit comments

Comments
 (0)