Skip to content

Commit 5f5f7bd

Browse files
committed
Use reflect for int types in writeInterfaceType
1 parent 8d911da commit 5f5f7bd

File tree

1 file changed

+9
-22
lines changed

1 file changed

+9
-22
lines changed

encoder.go

+9-22
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ package bencode
2424

2525
import (
2626
"bytes"
27+
"reflect"
2728
"sort"
2829
"strconv"
2930
)
@@ -51,31 +52,17 @@ func (encoder *encoder) writeUint(v uint64) {
5152
}
5253

5354
func (encoder *encoder) writeInterfaceType(v interface{}) {
54-
switch v.(type) {
55+
switch v := v.(type) {
5556
case string:
56-
encoder.writeString(v.(string))
57+
encoder.writeString(v)
5758
case []interface{}:
58-
encoder.writeList(v.([]interface{}))
59+
encoder.writeList(v)
5960
case map[string]interface{}:
60-
encoder.writeDictionary(v.(map[string]interface{}))
61-
case int:
62-
encoder.writeInt(int64(v.(int)))
63-
case int8:
64-
encoder.writeInt(int64(v.(int8)))
65-
case int16:
66-
encoder.writeInt(int64(v.(int16)))
67-
case int32:
68-
encoder.writeInt(int64(v.(int32)))
69-
case int64:
70-
encoder.writeInt(v.(int64))
71-
case uint8:
72-
encoder.writeUint(uint64(v.(uint8)))
73-
case uint16:
74-
encoder.writeUint(uint64(v.(uint16)))
75-
case uint32:
76-
encoder.writeUint(uint64(v.(uint32)))
77-
case uint64:
78-
encoder.writeUint(v.(uint64))
61+
encoder.writeDictionary(v)
62+
case int, int8, int16, int32, int64:
63+
encoder.writeInt(reflect.ValueOf(v).Int())
64+
case uint, uint8, uint16, uint32, uint64:
65+
encoder.writeUint(reflect.ValueOf(v).Uint())
7966
}
8067
}
8168

0 commit comments

Comments
 (0)