mirror of
https://github.com/aceld/kis-flow.git
synced 2025-01-23 07:30:23 +08:00
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package kis
|
|
|
|
import (
|
|
"context"
|
|
"kis-flow/common"
|
|
)
|
|
|
|
/*
|
|
Function Call
|
|
*/
|
|
// FaaS Function as a Service
|
|
type FaaS func(context.Context, Flow) error
|
|
|
|
// funcRouter
|
|
// key: Function Name
|
|
// value: Function 回调自定义业务
|
|
type funcRouter map[string]FaaS
|
|
|
|
// flowRouter
|
|
// key: Flow Name
|
|
// value: Flow
|
|
type flowRouter map[string]Flow
|
|
|
|
/*
|
|
Connector Init
|
|
*/
|
|
// ConnInit Connector 第三方挂载存储初始化
|
|
type ConnInit func(conn Connector) error
|
|
|
|
// connInitRouter
|
|
//key:
|
|
type connInitRouter map[string]ConnInit
|
|
|
|
/*
|
|
Connector Call
|
|
*/
|
|
// CaaS Connector的存储读取业务实现
|
|
type CaaS func(context.Context, Connector, Function, Flow, interface{}) error
|
|
|
|
// connFuncRouter 通过FunctionName索引到CaaS回调存储业务的映射关系
|
|
// key: Function Name
|
|
// value: Connector的存储读取业务实现
|
|
type connFuncRouter map[string]CaaS
|
|
|
|
// connSL 通过KisMode 将connFuncRouter分为两个子树
|
|
// key: Function KisMode S/L
|
|
// value: NsConnRouter
|
|
type connSL map[common.KisMode]connFuncRouter
|
|
|
|
// connTree
|
|
// key: Connector Name
|
|
// value: connSL 二级树
|
|
type connTree map[string]connSL
|