forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
service_map.go
58 lines (48 loc) · 1.64 KB
/
service_map.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
// Copyright 2014, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package servenv
import (
"flag"
log "github.com/golang/glog"
"github.com/youtube/vitess/go/flagutil"
)
var (
serviceMapFlag flagutil.StringListValue
// serviceMap is the used version of the service map.
// init() functions can add default values to it (using InitServiceMap).
// service_map command line parameter will alter the map.
// Can only be used after servenv.Init has been called.
serviceMap = make(map[string]bool)
)
func init() {
flag.Var(&serviceMapFlag, "service_map", "comma separated list of services to enable (or disable if prefixed with '-') Example: grpc-vtworker")
onInit(func() {
updateServiceMap()
})
}
// InitServiceMap will set the default value for a protocol/name to be served.
func InitServiceMap(protocol, name string) {
serviceMap[protocol+"-"+name] = true
}
// updateServiceMap takes the command line parameter, and updates the
// ServiceMap accordingly
func updateServiceMap() {
for _, s := range serviceMapFlag {
if s[0] == '-' {
delete(serviceMap, s[1:])
} else {
serviceMap[s] = true
}
}
}
// CheckServiceMap returns if we should register a RPC service
// (and also logs how to enable / disable it)
func CheckServiceMap(protocol, name string) bool {
if serviceMap[protocol+"-"+name] {
log.Infof("Registering %v for %v, disable it with -%v-%v service_map parameter", name, protocol, protocol, name)
return true
}
log.Infof("Not registering %v for %v, enable it with %v-%v service_map parameter", name, protocol, protocol, name)
return false
}