2020-11-16 21:10:43 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 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 paramtable
|
|
|
|
|
|
|
|
import (
|
2021-10-28 23:16:40 +08:00
|
|
|
"fmt"
|
2020-11-21 15:06:46 +08:00
|
|
|
"os"
|
2020-11-16 21:10:43 +08:00
|
|
|
"path"
|
|
|
|
"runtime"
|
2020-12-08 14:41:04 +08:00
|
|
|
"strconv"
|
2020-11-16 21:10:43 +08:00
|
|
|
"strings"
|
2021-09-26 19:46:17 +08:00
|
|
|
"syscall"
|
2020-11-16 21:10:43 +08:00
|
|
|
|
2021-09-11 14:40:01 +08:00
|
|
|
"go.uber.org/zap"
|
2021-01-19 18:32:57 +08:00
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
memkv "github.com/milvus-io/milvus/internal/kv/mem"
|
2021-09-11 14:40:01 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/commonpb"
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
2020-11-19 10:46:17 +08:00
|
|
|
"github.com/spf13/cast"
|
2020-11-16 21:10:43 +08:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2021-10-26 22:35:05 +08:00
|
|
|
// UniqueID is type alias of typeutil.UniqueID
|
2020-12-08 14:41:04 +08:00
|
|
|
type UniqueID = typeutil.UniqueID
|
|
|
|
|
2020-11-16 21:10:43 +08:00
|
|
|
type Base interface {
|
|
|
|
Load(key string) (string, error)
|
|
|
|
LoadRange(key, endKey string, limit int) ([]string, []string, error)
|
|
|
|
LoadYaml(fileName string) error
|
|
|
|
Remove(key string) error
|
|
|
|
Save(key, value string) error
|
|
|
|
Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
type BaseTable struct {
|
2021-09-11 14:40:01 +08:00
|
|
|
params *memkv.MemoryKV
|
|
|
|
configDir string
|
2021-09-26 21:18:11 +08:00
|
|
|
|
2021-10-01 08:52:50 +08:00
|
|
|
RoleName string
|
|
|
|
Log log.Config
|
|
|
|
LogConfigFunction func(log.Config)
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) Init() {
|
2020-12-07 15:22:20 +08:00
|
|
|
gp.params = memkv.NewMemoryKV()
|
2020-12-08 14:41:04 +08:00
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
gp.configDir = gp.initConfPath()
|
2021-09-11 14:40:01 +08:00
|
|
|
log.Debug("config directory", zap.String("configDir", gp.configDir))
|
2020-12-08 14:41:04 +08:00
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
gp.loadFromCommonYaml()
|
|
|
|
|
2021-10-28 21:24:41 +08:00
|
|
|
gp.loadFromMilvusYaml()
|
|
|
|
|
2020-12-31 11:20:03 +08:00
|
|
|
gp.tryloadFromEnv()
|
2021-10-01 08:52:50 +08:00
|
|
|
|
|
|
|
gp.InitLogCfg()
|
2020-12-31 11:20:03 +08:00
|
|
|
}
|
|
|
|
|
2021-09-11 14:40:01 +08:00
|
|
|
func (gp *BaseTable) GetConfigDir() string {
|
|
|
|
return gp.configDir
|
|
|
|
}
|
|
|
|
|
2021-01-19 18:32:57 +08:00
|
|
|
func (gp *BaseTable) LoadFromKVPair(kvPairs []*commonpb.KeyValuePair) error {
|
|
|
|
for _, pair := range kvPairs {
|
|
|
|
err := gp.Save(pair.Key, pair.Value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
func (gp *BaseTable) initConfPath() string {
|
|
|
|
// check if user set conf dir through env
|
|
|
|
configDir, find := syscall.Getenv("MILVUSCONF")
|
|
|
|
if !find {
|
|
|
|
runPath, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
configDir = runPath + "/configs/"
|
|
|
|
if _, err := os.Stat(configDir); err != nil {
|
|
|
|
_, fpath, _, _ := runtime.Caller(0)
|
|
|
|
// TODO, this is a hack, need to find better solution for relative path
|
|
|
|
configDir = path.Dir(fpath) + "/../../../configs/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return configDir
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) loadFromMilvusYaml() {
|
|
|
|
if err := gp.LoadYaml("milvus.yaml"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) loadFromCommonYaml() bool {
|
|
|
|
configFile := gp.configDir + "advanced/common.yaml"
|
|
|
|
if _, err := os.Stat(configFile); err == nil {
|
|
|
|
if err := gp.LoadYaml("advanced/common.yaml"); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
log.Debug("failed to find common.yaml in config, skip..")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-12-31 11:20:03 +08:00
|
|
|
func (gp *BaseTable) tryloadFromEnv() {
|
2020-12-07 15:22:20 +08:00
|
|
|
minioAddress := os.Getenv("MINIO_ADDRESS")
|
|
|
|
if minioAddress == "" {
|
2020-12-31 11:20:03 +08:00
|
|
|
minioHost, err := gp.Load("minio.address")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
port, err := gp.Load("minio.port")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
minioAddress = minioHost + ":" + port
|
2020-12-05 06:46:01 +08:00
|
|
|
}
|
2020-12-31 11:20:03 +08:00
|
|
|
err := gp.Save("_MinioAddress", minioAddress)
|
2020-12-05 06:46:01 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-06-11 22:04:41 +08:00
|
|
|
etcdEndpoints := os.Getenv("ETCD_ENDPOINTS")
|
|
|
|
if etcdEndpoints == "" {
|
|
|
|
etcdEndpoints, err = gp.Load("etcd.endpoints")
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-21 15:06:46 +08:00
|
|
|
}
|
2021-06-11 22:04:41 +08:00
|
|
|
err = gp.Save("_EtcdEndpoints", etcdEndpoints)
|
2020-11-16 21:10:43 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-11-21 15:06:46 +08:00
|
|
|
pulsarAddress := os.Getenv("PULSAR_ADDRESS")
|
|
|
|
if pulsarAddress == "" {
|
2020-12-31 11:20:03 +08:00
|
|
|
pulsarHost, err := gp.Load("pulsar.address")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
port, err := gp.Load("pulsar.port")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pulsarAddress = "pulsar://" + pulsarHost + ":" + port
|
2020-11-21 15:06:46 +08:00
|
|
|
}
|
2020-11-16 21:10:43 +08:00
|
|
|
err = gp.Save("_PulsarAddress", pulsarAddress)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-06-25 19:44:11 +08:00
|
|
|
rocksmqPath := os.Getenv("ROCKSMQ_PATH")
|
|
|
|
if rocksmqPath == "" {
|
|
|
|
path, err := gp.Load("rocksmq.path")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
rocksmqPath = path
|
|
|
|
}
|
|
|
|
err = gp.Save("_RocksmqPath", rocksmqPath)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-06-22 19:08:03 +08:00
|
|
|
rootCoordAddress := os.Getenv("ROOT_COORD_ADDRESS")
|
|
|
|
if rootCoordAddress == "" {
|
|
|
|
rootCoordHost, err := gp.Load("rootCoord.address")
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
port, err := gp.Load("rootCoord.port")
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
rootCoordAddress = rootCoordHost + ":" + port
|
2020-11-21 15:06:46 +08:00
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
err = gp.Save("_RootCoordAddress", rootCoordAddress)
|
2020-11-16 21:10:43 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-12-31 11:20:03 +08:00
|
|
|
|
2021-06-22 19:08:03 +08:00
|
|
|
indexCoordAddress := os.Getenv("INDEX_COORD_ADDRESS")
|
|
|
|
if indexCoordAddress == "" {
|
|
|
|
indexCoordHost, err := gp.Load("indexCoord.address")
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
port, err := gp.Load("indexCoord.port")
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
indexCoordAddress = indexCoordHost + ":" + port
|
2020-12-31 11:20:03 +08:00
|
|
|
}
|
2021-06-22 19:08:03 +08:00
|
|
|
err = gp.Save("_IndexCoordAddress", indexCoordAddress)
|
2020-12-31 11:20:03 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-22 14:28:06 +08:00
|
|
|
|
2021-06-22 19:08:03 +08:00
|
|
|
queryCoordAddress := os.Getenv("QUERY_COORD_ADDRESS")
|
2021-06-22 16:44:09 +08:00
|
|
|
if queryCoordAddress == "" {
|
|
|
|
serviceHost, err := gp.Load("queryCoord.address")
|
2021-01-22 14:28:06 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 16:44:09 +08:00
|
|
|
port, err := gp.Load("queryCoord.port")
|
2021-01-22 14:28:06 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-22 16:44:09 +08:00
|
|
|
queryCoordAddress = serviceHost + ":" + port
|
2021-01-22 14:28:06 +08:00
|
|
|
}
|
2021-06-22 16:44:09 +08:00
|
|
|
err = gp.Save("_QueryCoordAddress", queryCoordAddress)
|
2021-01-22 14:28:06 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-26 15:13:20 +08:00
|
|
|
|
2021-06-22 19:08:03 +08:00
|
|
|
dataCoordAddress := os.Getenv("DATA_COORD_ADDRESS")
|
2021-06-21 18:22:13 +08:00
|
|
|
if dataCoordAddress == "" {
|
|
|
|
serviceHost, err := gp.Load("dataCoord.address")
|
2021-01-26 15:13:20 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-21 18:22:13 +08:00
|
|
|
port, err := gp.Load("dataCoord.port")
|
2021-01-26 15:13:20 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-06-21 18:22:13 +08:00
|
|
|
dataCoordAddress = serviceHost + ":" + port
|
2021-01-26 15:13:20 +08:00
|
|
|
}
|
2021-06-21 18:22:13 +08:00
|
|
|
err = gp.Save("_DataCoordAddress", dataCoordAddress)
|
2021-01-26 15:13:20 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
2021-09-30 17:45:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
insertBufferFlushSize := os.Getenv("DATA_NODE_IBUFSIZE")
|
|
|
|
if insertBufferFlushSize == "" {
|
|
|
|
//var err error
|
|
|
|
insertBufferFlushSize, err = gp.Load("datanode.flush.insertBufSize")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if insertBufferFlushSize == "" {
|
|
|
|
insertBufferFlushSize = "16777216" //use default
|
|
|
|
}
|
|
|
|
err = gp.Save("_DATANODE_INSERTBUFSIZE", insertBufferFlushSize)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
2021-01-26 15:13:20 +08:00
|
|
|
}
|
2021-10-26 15:10:03 +08:00
|
|
|
|
|
|
|
minioAccessKey := os.Getenv("MINIO_ACCESS_KEY")
|
|
|
|
if minioAccessKey == "" {
|
|
|
|
minioAccessKey, err = gp.Load("minio.accessKeyID")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = gp.Save("_MinioAccessKeyID", minioAccessKey)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
minioSecretKey := os.Getenv("MINIO_SECRET_KEY")
|
|
|
|
if minioSecretKey == "" {
|
|
|
|
minioSecretKey, err = gp.Load("minio.secretAccessKey")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = gp.Save("_MinioSecretAccessKey", minioSecretKey)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
minioUseSSL := os.Getenv("MINIO_USE_SSL")
|
|
|
|
if minioUseSSL == "" {
|
|
|
|
minioUseSSL, err = gp.Load("minio.useSSL")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = gp.Save("_MinioUseSSL", minioUseSSL)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
minioBucketName := os.Getenv("MINIO_BUCKET_NAME")
|
|
|
|
if minioBucketName == "" {
|
|
|
|
minioBucketName, err = gp.Load("minio.bucketName")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = gp.Save("_MinioBucketName", minioBucketName)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) Load(key string) (string, error) {
|
|
|
|
return gp.params.Load(strings.ToLower(key))
|
|
|
|
}
|
|
|
|
|
2021-10-29 11:06:37 +08:00
|
|
|
func (gp *BaseTable) LoadWithDefault(key, defaultValue string) string {
|
2021-08-24 09:45:51 +08:00
|
|
|
return gp.params.LoadWithDefault(strings.ToLower(key), defaultValue)
|
|
|
|
}
|
|
|
|
|
2020-11-16 21:10:43 +08:00
|
|
|
func (gp *BaseTable) LoadRange(key, endKey string, limit int) ([]string, []string, error) {
|
|
|
|
return gp.params.LoadRange(strings.ToLower(key), strings.ToLower(endKey), limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) LoadYaml(fileName string) error {
|
|
|
|
config := viper.New()
|
2021-09-11 14:40:01 +08:00
|
|
|
configFile := gp.configDir + fileName
|
|
|
|
if _, err := os.Stat(configFile); err != nil {
|
|
|
|
panic("cannot access config file: " + configFile)
|
2020-11-30 19:08:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
config.SetConfigFile(configFile)
|
2020-11-16 21:10:43 +08:00
|
|
|
if err := config.ReadInConfig(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, key := range config.AllKeys() {
|
2020-11-19 10:46:17 +08:00
|
|
|
val := config.Get(key)
|
|
|
|
str, err := cast.ToStringE(val)
|
|
|
|
if err != nil {
|
|
|
|
switch val := val.(type) {
|
|
|
|
case []interface{}:
|
|
|
|
str = str[:0]
|
|
|
|
for _, v := range val {
|
|
|
|
ss, err := cast.ToStringE(v)
|
|
|
|
if err != nil {
|
2021-09-11 14:40:01 +08:00
|
|
|
panic(err)
|
2020-11-19 10:46:17 +08:00
|
|
|
}
|
2021-10-27 14:44:24 +08:00
|
|
|
if str == "" {
|
2020-11-19 10:46:17 +08:00
|
|
|
str = ss
|
|
|
|
} else {
|
|
|
|
str = str + "," + ss
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2021-09-11 14:40:01 +08:00
|
|
|
panic("undefined config type, key=" + key)
|
2020-11-19 10:46:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
err = gp.params.Save(strings.ToLower(key), str)
|
2020-11-16 21:10:43 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-11-19 10:46:17 +08:00
|
|
|
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) Remove(key string) error {
|
|
|
|
return gp.params.Remove(strings.ToLower(key))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) Save(key, value string) error {
|
|
|
|
return gp.params.Save(strings.ToLower(key), value)
|
|
|
|
}
|
2020-12-08 14:41:04 +08:00
|
|
|
|
2021-08-24 09:45:51 +08:00
|
|
|
func (gp *BaseTable) ParseBool(key string, defaultValue bool) bool {
|
2021-10-28 23:16:40 +08:00
|
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatBool(defaultValue))
|
2021-08-24 09:45:51 +08:00
|
|
|
value, err := strconv.ParseBool(valueStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseFloat(key string) float64 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
value, err := strconv.ParseFloat(valueStr, 64)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
func (gp *BaseTable) ParseFloatWithDefault(key string, defaultValue float64) float64 {
|
|
|
|
valueStr := gp.LoadWithDefault(key, fmt.Sprintf("%f", defaultValue))
|
|
|
|
value, err := strconv.ParseFloat(valueStr, 64)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt64(key string) int64 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 64)
|
2020-12-08 14:41:04 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
return value
|
2020-12-08 14:41:04 +08:00
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
func (gp *BaseTable) ParseInt64WithDefault(key string, defaultValue int64) int64 {
|
|
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(defaultValue, 10))
|
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt32(key string) int32 {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-09-14 18:35:48 +08:00
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 32)
|
2020-12-08 14:41:04 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return int32(value)
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
func (gp *BaseTable) ParseInt32WithDefault(key string, defaultValue int32) int32 {
|
|
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(int64(defaultValue), 10))
|
|
|
|
value, err := strconv.ParseInt(valueStr, 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return int32(value)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
func (gp *BaseTable) ParseInt(key string) int {
|
|
|
|
valueStr, err := gp.Load(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
value, err := strconv.Atoi(valueStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2021-10-28 23:16:40 +08:00
|
|
|
func (gp *BaseTable) ParseIntWithDefault(key string, defaultValue int) int {
|
|
|
|
valueStr := gp.LoadWithDefault(key, strconv.FormatInt(int64(defaultValue), 10))
|
|
|
|
value, err := strconv.Atoi(valueStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:41:04 +08:00
|
|
|
// package methods
|
|
|
|
|
|
|
|
func ConvertRangeToIntRange(rangeStr, sep string) []int {
|
|
|
|
items := strings.Split(rangeStr, sep)
|
|
|
|
if len(items) != 2 {
|
|
|
|
panic("Illegal range ")
|
|
|
|
}
|
|
|
|
|
|
|
|
startStr := items[0]
|
|
|
|
endStr := items[1]
|
|
|
|
start, err := strconv.Atoi(startStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
end, err := strconv.Atoi(endStr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if start < 0 || end < 0 {
|
|
|
|
panic("Illegal range value")
|
|
|
|
}
|
|
|
|
if start > end {
|
|
|
|
panic("Illegal range value, start > end")
|
|
|
|
}
|
|
|
|
return []int{start, end}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ConvertRangeToIntSlice(rangeStr, sep string) []int {
|
|
|
|
rangeSlice := ConvertRangeToIntRange(rangeStr, sep)
|
|
|
|
start, end := rangeSlice[0], rangeSlice[1]
|
|
|
|
var ret []int
|
|
|
|
for i := start; i < end; i++ {
|
|
|
|
ret = append(ret, i)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
|
2021-10-01 08:52:50 +08:00
|
|
|
func (gp *BaseTable) InitLogCfg() {
|
2021-09-26 21:18:11 +08:00
|
|
|
gp.Log = log.Config{}
|
|
|
|
format, err := gp.Load("log.format")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
gp.Log.Format = format
|
|
|
|
level, err := gp.Load("log.level")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
gp.Log.Level = level
|
|
|
|
gp.Log.File.MaxSize = gp.ParseInt("log.file.maxSize")
|
|
|
|
gp.Log.File.MaxBackups = gp.ParseInt("log.file.maxBackups")
|
|
|
|
gp.Log.File.MaxDays = gp.ParseInt("log.file.maxAge")
|
2021-10-01 08:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) SetLogConfig(f func(log.Config)) {
|
|
|
|
gp.LogConfigFunction = f
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gp *BaseTable) SetLogger(id UniqueID) {
|
2021-09-26 21:18:11 +08:00
|
|
|
rootPath, err := gp.Load("log.file.rootPath")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-10-27 14:44:24 +08:00
|
|
|
if rootPath != "" {
|
2021-10-01 08:52:50 +08:00
|
|
|
log.Debug("Set logger ", zap.Int64("id", id), zap.String("role", gp.RoleName))
|
|
|
|
if id < 0 {
|
|
|
|
gp.Log.File.Filename = path.Join(rootPath, gp.RoleName+".log")
|
|
|
|
} else {
|
|
|
|
gp.Log.File.Filename = path.Join(rootPath, gp.RoleName+"-"+strconv.FormatInt(id, 10)+".log")
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
} else {
|
|
|
|
gp.Log.File.Filename = ""
|
|
|
|
}
|
2021-10-01 08:52:50 +08:00
|
|
|
|
|
|
|
if gp.LogConfigFunction != nil {
|
|
|
|
gp.LogConfigFunction(gp.Log)
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
}
|