-
-
Notifications
You must be signed in to change notification settings - Fork 409
/
Copy pathbundle.go
135 lines (110 loc) · 2.99 KB
/
bundle.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
/*
* Copyright (C) 2016 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy ofthe License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specificlanguage governing permissions and
* limitations under the License.
*
*/
package probe
import (
"errors"
"fmt"
"github.com/safchain/insanelock"
api "github.com/skydive-project/skydive/graffiti/api/server"
"github.com/skydive-project/skydive/graffiti/service"
)
// ErrNotImplemented unimplemented feature
var ErrNotImplemented = errors.New("not implemented")
// ErrNotCompiled is thrown when a probe was not compiled within the binary
var ErrNotCompiled = fmt.Errorf("probe not compiled")
// ErrNotStopped is used when a not stopped probe is started
var ErrNotStopped = errors.New("probe is not stopped")
// ErrNotRunning is used when a probe is not running
var ErrNotRunning = errors.New("probe is not running")
// Handler describes a probe
type Handler interface {
Start() error
Stop()
}
// ServiceStatus describes the status returned by GetStatus
type ServiceStatus struct {
Status service.State
}
// Bundle describes a bundle of probes (topology of flow)
type Bundle struct {
insanelock.RWMutex
Handlers map[string]Handler
}
// Start a bundle of probes
func (p *Bundle) Start() error {
p.RLock()
defer p.RUnlock()
for _, probe := range p.Handlers {
if err := probe.Start(); err != nil {
return err
}
}
return nil
}
// Stop a bundle of probes
func (p *Bundle) Stop() {
p.RLock()
defer p.RUnlock()
for _, probe := range p.Handlers {
probe.Stop()
}
}
// GetHandler retrieve a specific handler
func (p *Bundle) GetHandler(typ string) Handler {
p.RLock()
defer p.RUnlock()
if probe, ok := p.Handlers[typ]; ok {
return probe
}
return nil
}
// EnabledProbes returns all enabled probes name
func (p *Bundle) EnabledProbes() []string {
p.RLock()
defer p.RUnlock()
activeProbes := make([]string, 0, len(p.Handlers))
for k := range p.Handlers {
activeProbes = append(activeProbes, k)
}
return activeProbes
}
// GetStatus returns the status of all the probes
func (p *Bundle) GetStatus() map[string]interface{} {
p.RLock()
defer p.RUnlock()
status := make(map[string]interface{})
for k, v := range p.Handlers {
if v, ok := v.(api.StatusReporter); ok {
status[k] = v.GetStatus()
} else {
status[k] = &ServiceStatus{Status: service.RunningState}
}
}
return status
}
// AddHandler adds a probe to the bundle
func (p *Bundle) AddHandler(typ string, handler Handler) {
p.Lock()
defer p.Unlock()
p.Handlers[typ] = handler
}
// NewBundle creates a new probe handler bundle
func NewBundle() *Bundle {
return &Bundle{
Handlers: make(map[string]Handler),
}
}