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 pathhelpers.go
70 lines (55 loc) · 1.35 KB
/
helpers.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
61
62
63
64
65
66
67
68
69
70
package bencode
import (
"reflect"
)
type structHolder interface {
getField(name string) reflect.Value
}
type realStructHolder struct {
struc *reflect.Value
}
func (h realStructHolder) getField(name string) reflect.Value {
structType := h.struc.Type()
for i := 0; i < h.struc.NumField(); i++ {
field := structType.Field(i)
if field.PkgPath != "" { // if field not exported, it can't be set
continue
}
tagName := field.Tag.Get("bencode")
if tagName != "" && name == tagName {
return h.struc.Field(i)
} else if name == field.Name {
return h.struc.Field(i)
}
}
return reflect.Value{}
}
type fakeStructHolder struct{}
func (h fakeStructHolder) getField(name string) reflect.Value {
return reflect.Value{}
}
type sliceBuffer interface {
newValue() reflect.Value
push(value reflect.Value)
value() reflect.Value
}
type realBuffer struct {
slice *reflect.Value
}
func (s realBuffer) newValue() reflect.Value {
return reflect.New(s.slice.Type().Elem()).Elem()
}
func (s realBuffer) push(value reflect.Value) {
*s.slice = reflect.Append(*s.slice, value)
}
func (s realBuffer) value() reflect.Value {
return *s.slice
}
type fakeBuffer struct{}
func (b fakeBuffer) newValue() reflect.Value {
return reflect.Value{}
}
func (b fakeBuffer) push(value reflect.Value) {}
func (b fakeBuffer) value() reflect.Value {
return reflect.Value{}
}