forked from polarismesh/grpc-go-polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.go
113 lines (100 loc) · 2.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
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
/**
* Tencent is pleased to support the open source community by making Polaris available.
*
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* 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
* specific language governing permissions and limitations under the License.
*/
package grpcpolaris
import (
"strings"
"sync"
"time"
"github.com/polarismesh/polaris-go/api"
"github.com/polarismesh/polaris-go/pkg/config"
)
const (
lbConfig = `
{
"loadBalancingConfig":[
{
"%s":{}
}
]
}
`
)
var (
// DefaultNamespace default namespace when namespace is not set
DefaultNamespace = "default"
// DefaultTTL default ttl value when ttl is not set
DefaultTTL = 20
// DefaultGracefulStopMaxWaitDuration default stop max wait duration when not set
DefaultGracefulStopMaxWaitDuration = 30 * time.Second
// DefaultDelayStopWaitDuration default delay time before stop
DefaultDelayStopWaitDuration = 4 * 2 * time.Second
// MinGracefulStopWaitDuration low bound of stop wait duration
MinGracefulStopWaitDuration = 5 * time.Second
)
const (
polarisCallerServiceKey = "polaris.request.caller.service"
polarisCallerNamespaceKey = "polaris.request.caller.namespace"
)
var (
polarisContext api.SDKContext
polarisConfig config.Configuration
mutexPolarisContext sync.Mutex
oncePolarisConfig sync.Once
)
// PolarisContext get or init the global polaris context
func PolarisContext() (api.SDKContext, error) {
mutexPolarisContext.Lock()
defer mutexPolarisContext.Unlock()
if nil != polarisContext {
return polarisContext, nil
}
var err error
polarisContext, err = api.InitContextByConfig(PolarisConfig())
return polarisContext, err
}
func setPolarisContext(sdkContext api.SDKContext) {
mutexPolarisContext.Lock()
defer mutexPolarisContext.Unlock()
polarisContext = sdkContext
}
// PolarisConfig get or init the global polaris configuration
func PolarisConfig() config.Configuration {
if polarisConfig == nil {
oncePolarisConfig.Do(func() {
polarisConfig = api.NewConfiguration()
})
}
return polarisConfig
}
// setPolarisConfig set the global polaris configuration
func setPolarisConfig(cfg config.Configuration) {
polarisConfig = cfg
}
func extractBareMethodName(fullMethodName string) string {
index := strings.LastIndex(fullMethodName, "/")
if index == -1 {
return ""
}
return fullMethodName[index+1:]
}
func extractBareServiceName(fullMethodName string) string {
index := strings.LastIndex(fullMethodName, "/")
if index == -1 {
return ""
}
return fullMethodName[:index]
}