This repository was archived by the owner on Nov 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarshalling.go
60 lines (53 loc) · 1.42 KB
/
marshalling.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package bencode
import (
"fmt"
"reflect"
"strconv"
)
func Marshal(v interface{}) []byte {
value := reflect.ValueOf(v)
return convertValue(value)
}
func convertValue(value reflect.Value) []byte {
switch value.Type().Kind() {
case reflect.Int:
return convertInt(value.Interface().(int))
case reflect.String:
return convertString(value.Interface().(string))
case reflect.Slice:
return convertSlice(value)
case reflect.Struct:
return convertDict(value)
}
return []byte{}
}
func convertInt(i int) []byte {
return []byte("i" + strconv.Itoa(i) + "e")
}
func convertString(s string) []byte {
return []byte(fmt.Sprintf("%v:%v", len([]byte(s)), s))
}
func convertSlice(value reflect.Value) (representation []byte) {
representation = append(representation, 'l')
for i := 0; i < value.Len(); i++ {
valueRepresentation := convertValue(value.Index(i))
representation = append(representation, valueRepresentation...)
}
representation = append(representation, 'e')
return
}
func convertDict(value reflect.Value) (representation []byte) {
representation = append(representation, 'd')
for i := 0; i < value.NumField(); i++ {
field := value.Type().Field(i)
if field.PkgPath != "" {
continue
}
key := convertString(field.Name)
representation = append(representation, key...)
value := convertValue(value.Field(i))
representation = append(representation, value...)
}
representation = append(representation, 'e')
return
}