forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.go
More file actions
126 lines (114 loc) · 3.11 KB
/
Copy pathconfig.go
File metadata and controls
126 lines (114 loc) · 3.11 KB
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
// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 of the 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 specific language governing permissions and
// limitations under the License.
package config
import (
"fmt"
"log"
"strings"
"github.com/cockroachdb/errors"
"github.com/spf13/cast"
"go.uber.org/zap"
"github.com/milvus-io/milvus/pkg/v2/util/typeutil"
)
var (
ErrNotInitial = errors.New("config is not initialized")
ErrIgnoreChange = errors.New("ignore change")
ErrKeyNotFound = errors.New("key not found")
)
const (
NotFormatPrefix = "knowhere."
)
func Init(opts ...Option) (*Manager, error) {
o := &Options{}
for _, opt := range opts {
opt(o)
}
sourceManager := NewManager()
if o.FileInfo != nil {
s := NewFileSource(o.FileInfo)
err := sourceManager.AddSource(s)
if err != nil {
log.Fatal("failed to add FileSource config", zap.Error(err))
}
}
if o.EnvKeyFormatter != nil {
sourceManager.AddSource(NewEnvSource(o.EnvKeyFormatter))
}
if o.EtcdInfo != nil {
s, err := NewEtcdSource(o.EtcdInfo)
if err != nil {
return nil, err
}
sourceManager.AddSource(s)
}
return sourceManager, nil
}
var formattedKeys = typeutil.NewConcurrentMap[string, string]()
func lowerKey(key string) string {
if strings.HasPrefix(key, NotFormatPrefix) {
return key
}
return strings.ToLower(key)
}
func formatKey(key string) string {
if strings.HasPrefix(key, NotFormatPrefix) {
return key
}
cached, ok := formattedKeys.Get(key)
if ok {
return cached
}
result := strings.NewReplacer("/", "", "_", "", ".", "").Replace(strings.ToLower(key))
formattedKeys.Insert(key, result)
return result
}
func flattenAndMergeMap(prefix string, m map[string]interface{}, result map[string]string) {
for k, v := range m {
fullKey := k
if prefix != "" {
fullKey = prefix + "." + k
}
switch val := v.(type) {
case map[string]interface{}:
flattenAndMergeMap(fullKey, val, result)
case map[interface{}]interface{}:
flattenAndMergeMap(fullKey, cast.ToStringMap(val), result)
case []interface{}:
str := ""
for i, item := range val {
itemStr, err := cast.ToStringE(item)
if err != nil {
continue
}
if i == 0 {
str = itemStr
} else {
str = str + "," + itemStr
}
}
result[lowerKey(fullKey)] = str
result[formatKey(fullKey)] = str
default:
str, err := cast.ToStringE(val)
if err != nil {
fmt.Printf("cast to string failed %s, error = %s\n", fullKey, err.Error())
continue
}
result[lowerKey(fullKey)] = str
result[formatKey(fullKey)] = str
}
}
}