-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal.go
84 lines (67 loc) · 1.95 KB
/
global.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
package gocontainer
var (
// GlobalContainer global container instance
// instance initialized by package's init() function
GlobalContainer Container
)
// Register service by id
func Register(id string, object interface{}) {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
GlobalContainer.Register(id, object)
}
// Deregister service be id
func Deregister(id string) {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
GlobalContainer.Deregister(id)
}
// Has checks if container has an object
func Has(id string) bool {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
return GlobalContainer.Has(id)
}
// Get a service by id
func Get(id string) (interface{}, bool) {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
return GlobalContainer.Get(id)
}
// MustGet calls Get underneath
// will panic if object not found within container
func MustGet(id string) interface{} {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
return GlobalContainer.MustGet(id)
}
// Invoke gets a service safely typed by passing it to a closure
// will panic if callback is not a function
func Invoke(id string, fn interface{}) {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
GlobalContainer.Invoke(id, fn)
}
// MustInvoke calls MustGet underneath
// will panic if object not found within container
func MustInvoke(id string, fn interface{}) {
if GlobalContainer == nil {
panic("Global container instance is not initialized")
}
GlobalContainer.MustInvoke(id, fn)
}
// MustInvokeMany calls MustInvoke underneath
// returns many services from container
// will panic if object not found within container
func MustInvokeMany(ids ...string) func(fn interface{}) {
return GlobalContainer.MustInvokeMany(ids...)
}
func init() {
GlobalContainer = New()
}