Skip to content

Commit c6e7269

Browse files
committed
performance optimization
1 parent 540257c commit c6e7269

File tree

4 files changed

+67
-12
lines changed

4 files changed

+67
-12
lines changed

io/string_decoder.go

+14-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| |
77
| io/string_decoder.go |
88
| |
9-
| LastModified: Jun 5, 2021 |
9+
| LastModified: Feb 14, 2022 |
1010
| Author: Ma Bingyao <[email protected]> |
1111
| |
1212
\*________________________________________________________*/
@@ -85,7 +85,10 @@ func (dec *Decoder) readStringAsBytes(utf16Length int) (data []byte, safe bool)
8585
data = append(data, buf[:off]...)
8686
return
8787
}
88-
safe = true
88+
if !safe {
89+
safe = true
90+
data = make([]byte, 0, utf16Length*3)
91+
}
8992
data = append(data, buf...)
9093
if !dec.loadMore() {
9194
if remains < 0 {
@@ -106,7 +109,9 @@ func (dec *Decoder) readStringAsSafeBytes(utf16Length int) []byte {
106109
if safe {
107110
return data
108111
}
109-
return append(([]byte)(nil), data...)
112+
result := make([]byte, len(data))
113+
copy(result, data)
114+
return result
110115
}
111116

112117
// ReadStringAsBytes reads string as bytes.
@@ -125,11 +130,14 @@ func (dec *Decoder) readUnsafeString(utf16Length int) (s string) {
125130
}
126131

127132
func (dec *Decoder) readSafeString(utf16Length int) (s string) {
128-
data := dec.readStringAsSafeBytes(utf16Length)
133+
data, safe := dec.readStringAsBytes(utf16Length)
129134
if data == nil {
130135
return
131136
}
132-
return unsafeString(data)
137+
if safe {
138+
return unsafeString(data)
139+
}
140+
return string(data)
133141
}
134142

135143
// ReadUnsafeString reads unsafe string.
@@ -148,7 +156,7 @@ func (dec *Decoder) ReadSafeString() (s string) {
148156

149157
// ReadString reads safe string and add reference.
150158
func (dec *Decoder) ReadString() (s string) {
151-
s = dec.ReadSafeString()
159+
s = dec.ReadUnsafeString()
152160
dec.AddReference(s)
153161
return
154162
}

io/string_decoder_test.go

+45-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| |
77
| io/string_decoder_test.go |
88
| |
9-
| LastModified: May 14, 2021 |
9+
| LastModified: Feb 14, 2022 |
1010
| Author: Ma Bingyao <[email protected]> |
1111
| |
1212
\*________________________________________________________*/
@@ -177,3 +177,47 @@ func TestDecodeStringFromReader(t *testing.T) {
177177
dec.Decode(&s)
178178
assert.Equal(t, "👩‍👩‍👧‍👧", *s)
179179
}
180+
181+
func TestLongStringDecode(t *testing.T) {
182+
sb := new(strings.Builder)
183+
for i := 0; i < 100000; i++ {
184+
sb.WriteString("测试")
185+
sb.WriteString(strconv.Itoa(i))
186+
}
187+
src := sb.String()
188+
sb = new(strings.Builder)
189+
enc := NewEncoder(sb)
190+
enc.Encode(src)
191+
enc.Encode(src)
192+
enc.Encode(src)
193+
dec := NewDecoderFromReader(bytes.NewReader(([]byte)(sb.String())), 512)
194+
var s *string
195+
dec.Decode(&s)
196+
assert.Equal(t, src, *s)
197+
dec.Decode(&s)
198+
assert.Equal(t, src, *s)
199+
dec.Decode(&s)
200+
assert.Equal(t, src, *s)
201+
}
202+
203+
func BenchmarkLongStringDecode(b *testing.B) {
204+
sb := new(strings.Builder)
205+
for i := 0; i < 100000; i++ {
206+
sb.WriteString("测试")
207+
sb.WriteString(strconv.Itoa(i))
208+
}
209+
src := sb.String()
210+
sb = new(strings.Builder)
211+
enc := NewEncoder(sb)
212+
enc.Encode(src)
213+
enc.Encode(src)
214+
enc.Encode(src)
215+
b.ResetTimer()
216+
for i := 0; i < b.N; i++ {
217+
dec := NewDecoderFromReader(bytes.NewReader(([]byte)(sb.String())), 512)
218+
var s *string
219+
dec.Decode(&s)
220+
dec.Decode(&s)
221+
dec.Decode(&s)
222+
}
223+
}

rpc/codec/jsonrpc/client_codec.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| |
77
| rpc/codec/jsonrpc/client_codec.go |
88
| |
9-
| LastModified: Aug 24, 2021 |
9+
| LastModified: Feb 14, 2022 |
1010
| Author: Ma Bingyao <[email protected]> |
1111
| |
1212
\*________________________________________________________*/
@@ -60,9 +60,11 @@ func (c *ClientCodec) Decode(response []byte, context *core.ClientContext) (resu
6060
if err = c.Codec.Unmarshal(data, p); err != nil {
6161
return
6262
}
63-
result = append(result, t.Indirect(p))
63+
result = []interface{}{t.Indirect(p)}
6464
default:
65-
for i, r := range resp.Result.([]interface{}) {
65+
res := resp.Result.([]interface{})
66+
result = make([]interface{}, 0, len(res))
67+
for i, r := range res {
6668
data, _ := c.Codec.Marshal(r)
6769
t := reflect2.Type2(context.ReturnType[i])
6870
p := t.New()

rpc/plugins/reverse/provider.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| |
77
| rpc/plugins/reverse/provider.go |
88
| |
9-
| LastModified: May 19, 2021 |
9+
| LastModified: Feb 14, 2022 |
1010
| Author: Ma Bingyao <[email protected]> |
1111
| |
1212
\*________________________________________________________*/
@@ -150,8 +150,9 @@ func (p *Provider) Execute(ctx context.Context, name string, args []interface{})
150150
out = out[:n-1]
151151
n--
152152
}
153+
result = make([]interface{}, n)
153154
for i := 0; i < n; i++ {
154-
result = append(result, out[i].Interface())
155+
result[i] = out[i].Interface()
155156
}
156157
return
157158
}

0 commit comments

Comments
 (0)