-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathext.go
164 lines (136 loc) · 3.38 KB
/
ext.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package ext
import (
"fmt"
"reflect"
"runtime"
"runtime/debug"
"sort"
"strings"
"sync"
)
// TODO: Make an ExtensionRegistry?
//
//nolint:gochecknoglobals
var (
mx sync.RWMutex
extensions = make(map[ExtensionType]map[string]*Extension)
)
// ExtensionType is the type of all supported k6 extensions.
type ExtensionType uint8
// All supported k6 extension types.
const (
JSExtension ExtensionType = iota + 1
OutputExtension
SecretSourceExtension
)
func (e ExtensionType) String() string {
var s string
switch e {
case JSExtension:
s = "js"
case OutputExtension:
s = "output"
case SecretSourceExtension:
s = "secret-source"
}
return s
}
// Extension is a generic container for any k6 extension.
type Extension struct {
Name, Path, Version string
Type ExtensionType
Module interface{}
}
func (e Extension) String() string {
return fmt.Sprintf("%s %s, %s [%s]", e.Path, e.Version, e.Name, e.Type)
}
// Register a new extension with the given name and type. This function will
// panic if an unsupported extension type is provided, or if an extension of the
// same type and name is already registered.
func Register(name string, typ ExtensionType, mod interface{}) {
mx.Lock()
defer mx.Unlock()
exts, ok := extensions[typ]
if !ok {
panic(fmt.Sprintf("unsupported extension type: %T", typ))
}
if _, ok := exts[name]; ok {
panic(fmt.Sprintf("extension already registered: %s", name))
}
path, version := extractModuleInfo(mod)
exts[name] = &Extension{
Name: name,
Type: typ,
Module: mod,
Path: path,
Version: version,
}
}
// Get returns all extensions of the specified type.
func Get(typ ExtensionType) map[string]*Extension {
mx.RLock()
defer mx.RUnlock()
exts, ok := extensions[typ]
if !ok {
panic(fmt.Sprintf("unsupported extension type: %T", typ))
}
result := make(map[string]*Extension, len(exts))
for name, ext := range exts {
result[name] = ext
}
return result
}
// GetAll returns all extensions, sorted by their import path and name.
func GetAll() []*Extension {
mx.RLock()
defer mx.RUnlock()
js, out := extensions[JSExtension], extensions[OutputExtension]
result := make([]*Extension, 0, len(js)+len(out))
for _, e := range js {
result = append(result, e)
}
for _, e := range out {
result = append(result, e)
}
sort.Slice(result, func(i, j int) bool {
if result[i].Path == result[j].Path {
return result[i].Name < result[j].Name
}
return result[i].Path < result[j].Path
})
return result
}
// extractModuleInfo attempts to return the package path and version of the Go
// module that created the given value.
func extractModuleInfo(mod interface{}) (path, version string) {
t := reflect.TypeOf(mod)
switch t.Kind() {
case reflect.Ptr:
if t.Elem() != nil {
path = t.Elem().PkgPath()
}
case reflect.Func:
path = runtime.FuncForPC(reflect.ValueOf(mod).Pointer()).Name()
default:
return
}
buildInfo, ok := debug.ReadBuildInfo()
if !ok {
return
}
for _, dep := range buildInfo.Deps {
depPath := strings.TrimSpace(dep.Path)
if strings.HasPrefix(path, depPath) {
if dep.Replace != nil {
return depPath, dep.Replace.Version
}
return depPath, dep.Version
}
}
return
}
func init() {
extensions[JSExtension] = make(map[string]*Extension)
extensions[OutputExtension] = make(map[string]*Extension)
extensions[SecretSourceExtension] = make(map[string]*Extension)
}