kis-flow/file/config_import.go

200 lines
5.4 KiB
Go
Raw Normal View History

2024-01-12 17:27:43 +08:00
package file
import (
"errors"
"fmt"
"kis-flow/common"
"kis-flow/config"
"kis-flow/flow"
"kis-flow/kis"
2024-03-04 14:53:29 +08:00
"kis-flow/metrics"
2024-01-12 17:27:43 +08:00
"os"
"path"
"path/filepath"
2024-03-01 16:29:07 +08:00
"gopkg.in/yaml.v3"
2024-01-12 17:27:43 +08:00
)
type allConfig struct {
Flows map[string]*config.KisFlowConfig
Funcs map[string]*config.KisFuncConfig
Conns map[string]*config.KisConnConfig
}
// kisTypeFlowConfigure 解析Flow配置文件yaml格式
func kisTypeFlowConfigure(all *allConfig, confData []byte, fileName string, kisType interface{}) error {
2024-03-01 16:29:07 +08:00
flowCfg := new(config.KisFlowConfig)
if ok := yaml.Unmarshal(confData, flowCfg); ok != nil {
2024-01-12 17:27:43 +08:00
return errors.New(fmt.Sprintf("%s has wrong format kisType = %s", fileName, kisType))
}
// 如果FLow状态为关闭则不做配置加载
2024-03-01 16:29:07 +08:00
if common.KisOnOff(flowCfg.Status) == common.FlowDisable {
2024-01-12 17:27:43 +08:00
return nil
}
2024-03-01 16:29:07 +08:00
if _, ok := all.Flows[flowCfg.FlowName]; ok {
return errors.New(fmt.Sprintf("%s set repeat flow_id:%s", fileName, flowCfg.FlowName))
2024-01-12 17:27:43 +08:00
}
// 加入配置集合中
2024-03-01 16:29:07 +08:00
all.Flows[flowCfg.FlowName] = flowCfg
2024-01-12 17:27:43 +08:00
return nil
}
// kisTypeFuncConfigure 解析Function配置文件yaml格式
func kisTypeFuncConfigure(all *allConfig, confData []byte, fileName string, kisType interface{}) error {
function := new(config.KisFuncConfig)
if ok := yaml.Unmarshal(confData, function); ok != nil {
return errors.New(fmt.Sprintf("%s has wrong format kisType = %s", fileName, kisType))
}
if _, ok := all.Funcs[function.FName]; ok {
return errors.New(fmt.Sprintf("%s set repeat function_id:%s", fileName, function.FName))
}
// 加入配置集合中
all.Funcs[function.FName] = function
return nil
}
// kisTypeConnConfigure 解析Connector配置文件yaml格式
func kisTypeConnConfigure(all *allConfig, confData []byte, fileName string, kisType interface{}) error {
conn := new(config.KisConnConfig)
if ok := yaml.Unmarshal(confData, conn); ok != nil {
2024-03-04 14:53:29 +08:00
return errors.New(fmt.Sprintf("%s is wrong format kisType = %s", fileName, kisType))
2024-01-12 17:27:43 +08:00
}
if _, ok := all.Conns[conn.CName]; ok {
return errors.New(fmt.Sprintf("%s set repeat conn_id:%s", fileName, conn.CName))
}
// 加入配置集合中
all.Conns[conn.CName] = conn
return nil
}
2024-03-04 14:53:29 +08:00
// kisTypeGlobalConfigure 解析Global配置文件yaml格式
func kisTypeGlobalConfigure(confData []byte, fileName string, kisType interface{}) error {
// 全局配置
if ok := yaml.Unmarshal(confData, config.GlobalConfig); ok != nil {
return errors.New(fmt.Sprintf("%s is wrong format kisType = %s", fileName, kisType))
}
// 启动Metrics服务
metrics.RunMetrics()
return nil
}
2024-01-12 17:27:43 +08:00
// parseConfigWalkYaml 全盘解析配置文件yaml格式, 讲配置信息解析到allConfig中
func parseConfigWalkYaml(loadPath string) (*allConfig, error) {
all := new(allConfig)
all.Flows = make(map[string]*config.KisFlowConfig)
all.Funcs = make(map[string]*config.KisFuncConfig)
all.Conns = make(map[string]*config.KisConnConfig)
err := filepath.Walk(loadPath, func(filePath string, info os.FileInfo, err error) error {
// 校验文件后缀是否合法
if suffix := path.Ext(filePath); suffix != ".yml" && suffix != ".yaml" {
return nil
}
// 读取文件内容
2024-03-01 16:32:36 +08:00
confData, err := os.ReadFile(filePath)
2024-01-12 17:27:43 +08:00
if err != nil {
return err
}
confMap := make(map[string]interface{})
// 校验yaml合法性
if err := yaml.Unmarshal(confData, confMap); err != nil {
return err
}
// 判断kisType是否存在
if kisType, ok := confMap["kistype"]; !ok {
return errors.New(fmt.Sprintf("yaml file %s has no file [kistype]!", filePath))
} else {
switch kisType {
case common.KisIdTypeFlow:
return kisTypeFlowConfigure(all, confData, filePath, kisType)
case common.KisIdTypeFunction:
return kisTypeFuncConfigure(all, confData, filePath, kisType)
2024-03-01 16:29:07 +08:00
case common.KisIdTypeConnector:
2024-01-12 17:27:43 +08:00
return kisTypeConnConfigure(all, confData, filePath, kisType)
2024-03-04 14:53:29 +08:00
case common.KisIdTypeGlobal:
return kisTypeGlobalConfigure(confData, filePath, kisType)
2024-01-12 17:27:43 +08:00
default:
return errors.New(fmt.Sprintf("%s set wrong kistype %s", filePath, kisType))
}
}
})
if err != nil {
return nil, err
}
return all, nil
}
func buildFlow(all *allConfig, fp config.KisFlowFunctionParam, newFlow kis.Flow, flowName string) error {
2024-03-01 16:29:07 +08:00
// 加载当前Flow依赖的Function
2024-01-12 17:27:43 +08:00
if funcConfig, ok := all.Funcs[fp.FuncName]; !ok {
return errors.New(fmt.Sprintf("FlowName [%s] need FuncName [%s], But has No This FuncName Config", flowName, fp.FuncName))
} else {
2024-03-01 16:29:07 +08:00
// flow add connector
2024-01-12 17:27:43 +08:00
if funcConfig.Option.CName != "" {
// 加载当前Function依赖的Connector
if connConf, ok := all.Conns[funcConfig.Option.CName]; !ok {
return errors.New(fmt.Sprintf("FuncName [%s] need ConnName [%s], But has No This ConnName Config", fp.FuncName, funcConfig.Option.CName))
} else {
// Function Config 关联 Connector Config
_ = funcConfig.AddConnConfig(connConf)
}
}
2024-03-01 16:29:07 +08:00
// flow add function
2024-01-12 17:27:43 +08:00
if err := newFlow.Link(funcConfig, fp.Params); err != nil {
return err
}
}
return nil
}
// ConfigImportYaml 全盘解析配置文件yaml格式
func ConfigImportYaml(loadPath string) error {
all, err := parseConfigWalkYaml(loadPath)
if err != nil {
return err
}
for flowName, flowConfig := range all.Flows {
// 构建一个Flow
newFlow := flow.NewKisFlow(flowConfig)
for _, fp := range flowConfig.Flows {
if err := buildFlow(all, fp, newFlow, flowName); err != nil {
return err
}
}
2024-03-01 16:29:07 +08:00
// 将flow添加到FlowPool中
2024-01-12 17:27:43 +08:00
kis.Pool().AddFlow(flowName, newFlow)
}
return nil
}