-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctl.go
55 lines (49 loc) · 1.14 KB
/
ctl.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
package pkgCtl
import (
"sort"
)
var (
units = make([]Unit, 0, 16)
)
type (
Handler interface {
mustEmbedUnimplemented()
Create() error
Start() error
Destroy() error
Async() bool
}
HandlerFunc func(*Context) Handler
Unit struct {
Seq int
Name string
Handle HandlerFunc
}
DUnit struct {
Seq int
Name string
Unit Handler
}
UnimplementedHandler struct{}
)
func (h UnimplementedHandler) mustEmbedUnimplemented() {}
func (h UnimplementedHandler) Create() error { panic("Unimplemented Create") }
func (h UnimplementedHandler) Start() error { panic("Unimplemented Create") }
func (h UnimplementedHandler) Destroy() error { panic("Unimplemented Create") }
func (h UnimplementedHandler) Async() bool { panic("Unimplemented Create") }
func Register(seq int, name string, handler HandlerFunc) {
units = append(units, Unit{
Seq: seq,
Name: name,
Handle: handler,
})
}
func Bootstrap(activeFunc func()) {
if activeFunc == nil {
panic("===== unset active func =====")
}
activeFunc()
sort.Slice(units, func(i, j int) bool {
return units[i].Seq < units[j].Seq
})
}