forked from apolloconfig/agollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepository.go
232 lines (181 loc) · 4.84 KB
/
repository.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
* @Description:
* @Author: liv
* @Date: 2019-09-26 15:06:11
* @LastEditTime: 2019-09-26 15:37:07
* @LastEditors: liv
*/
package agollo
import (
"fmt"
"github.com/coocood/freecache"
"strconv"
"sync"
)
const (
empty = ""
//50m
apolloConfigCacheSize = 10 * 1024 * 1024
//1 minute
configCacheExpireTime = 120
)
var (
currentConnApolloConfig = ¤tApolloConfig{}
//config from apollo
apolloConfigCache CacheInterface = freecache.NewCache(apolloConfigCacheSize)
)
func initCache(cacheInterface CacheInterface) {
apolloConfigCache = cacheInterface
}
type CacheInterface interface {
Set(key, value []byte, expireSeconds int) (err error)
EntryCount() (entryCount int64)
Get(key []byte) (value []byte, err error)
Del(key []byte) (affected bool)
NewIterator() *freecache.Iterator
TTL(key []byte) (timeLeft uint32, err error)
Clear()
}
type currentApolloConfig struct {
l sync.RWMutex
config *ApolloConnConfig
}
func updateApolloConfig(apolloConfig *ApolloConfig, isBackupConfig bool) {
if apolloConfig == nil {
logger.Error("apolloConfig is null,can't update!")
return
}
//get change list
changeList := updateApolloConfigCache(apolloConfig.Configurations, configCacheExpireTime)
if len(changeList) > 0 {
//create config change event base on change list
event := createConfigChangeEvent(changeList, apolloConfig.NamespaceName)
//push change event to channel
pushChangeEvent(event)
}
//update apollo connection config
currentConnApolloConfig.l.Lock()
defer currentConnApolloConfig.l.Unlock()
currentConnApolloConfig.config = &apolloConfig.ApolloConnConfig
if isBackupConfig {
//write config file async
go writeConfigFile(apolloConfig, appConfig.getBackupConfigPath())
}
}
func updateApolloConfigCache(configurations map[string]string, expireTime int) map[string]*ConfigChange {
if (configurations == nil || len(configurations) == 0) && apolloConfigCache.EntryCount() == 0 {
return nil
}
//get old keys
mp := map[string]bool{}
it := apolloConfigCache.NewIterator()
for en := it.Next(); en != nil; en = it.Next() {
mp[string(en.Key)] = true
}
changes := make(map[string]*ConfigChange)
if configurations != nil {
// update new
// keys
for key, value := range configurations {
//key state insert or update
//insert
if !mp[key] {
changes[key] = createAddConfigChange(value)
} else {
//update
oldValue, _ := apolloConfigCache.Get([]byte(key))
if string(oldValue) != value {
changes[key] = createModifyConfigChange(string(oldValue), value)
}
}
apolloConfigCache.Set([]byte(key), []byte(value), expireTime)
delete(mp, string(key))
}
}
// remove del keys
for key := range mp {
//get old value and del
oldValue, _ := apolloConfigCache.Get([]byte(key))
changes[key] = createDeletedConfigChange(string(oldValue))
apolloConfigCache.Del([]byte(key))
}
return changes
}
//base on changeList create Change event
func createConfigChangeEvent(changes map[string]*ConfigChange, nameSpace string) *ChangeEvent {
return &ChangeEvent{
Namespace: nameSpace,
Changes: changes,
}
}
func touchApolloConfigCache() error {
updateApolloConfigCacheTime(configCacheExpireTime)
return nil
}
func updateApolloConfigCacheTime(expireTime int) {
it := apolloConfigCache.NewIterator()
for i := int64(0); i < apolloConfigCache.EntryCount(); i++ {
entry := it.Next()
if entry == nil {
break
}
apolloConfigCache.Set([]byte(entry.Key), []byte(entry.Value), expireTime)
}
}
func GetApolloConfigCache() CacheInterface {
return apolloConfigCache
}
func GetCurrentApolloConfig() *ApolloConnConfig {
currentConnApolloConfig.l.RLock()
defer currentConnApolloConfig.l.RUnlock()
return currentConnApolloConfig.config
}
func getConfigValue(key string) interface{} {
value, err := apolloConfigCache.Get([]byte(key))
if err != nil {
logger.Error(fmt.Sprintf("get config value fail!key:%s,err:%s", key, err))
return empty
}
return string(value)
}
func getValue(key string) string {
value := getConfigValue(key)
if value == nil {
return empty
}
return value.(string)
}
func GetStringValue(key string, defaultValue string) string {
value := getValue(key)
if value == empty {
return defaultValue
}
return value
}
func GetIntValue(key string, defaultValue int) int {
value := getValue(key)
i, err := strconv.Atoi(value)
if err != nil {
logger.Debug("convert to int fail!error:", err)
return defaultValue
}
return i
}
func GetFloatValue(key string, defaultValue float64) float64 {
value := getValue(key)
i, err := strconv.ParseFloat(value, 64)
if err != nil {
logger.Debug("convert to float fail!error:", err)
return defaultValue
}
return i
}
func GetBoolValue(key string, defaultValue bool) bool {
value := getValue(key)
b, err := strconv.ParseBool(value)
if err != nil {
logger.Debug("convert to bool fail!error:", err)
return defaultValue
}
return b
}