2021-04-19 13:42:47 +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.
|
|
|
|
|
2020-11-02 16:44:54 +08:00
|
|
|
package flowgraph
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-11-03 14:53:36 +08:00
|
|
|
"sync"
|
|
|
|
|
2021-03-05 10:15:27 +08:00
|
|
|
"errors"
|
2020-11-02 16:44:54 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type TimeTickedFlowGraph struct {
|
2020-11-09 16:27:11 +08:00
|
|
|
ctx context.Context
|
2021-08-03 22:43:25 +08:00
|
|
|
cancel context.CancelFunc
|
2020-11-09 16:27:11 +08:00
|
|
|
nodeCtx map[NodeName]*nodeCtx
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
2021-02-25 17:35:36 +08:00
|
|
|
func (fg *TimeTickedFlowGraph) AddNode(node Node) {
|
|
|
|
nodeName := node.Name()
|
2020-11-02 16:44:54 +08:00
|
|
|
nodeCtx := nodeCtx{
|
2020-11-03 14:53:36 +08:00
|
|
|
node: node,
|
2021-03-25 14:41:46 +08:00
|
|
|
inputChannels: make([]chan Msg, 0),
|
2020-11-02 16:44:54 +08:00
|
|
|
downstreamInputChanIdx: make(map[string]int),
|
|
|
|
}
|
|
|
|
fg.nodeCtx[nodeName] = &nodeCtx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fg *TimeTickedFlowGraph) SetEdges(nodeName string, in []string, out []string) error {
|
|
|
|
currentNode, ok := fg.nodeCtx[nodeName]
|
|
|
|
if !ok {
|
|
|
|
errMsg := "Cannot find node:" + nodeName
|
|
|
|
return errors.New(errMsg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// init current node's downstream
|
|
|
|
currentNode.downstream = make([]*nodeCtx, len(out))
|
|
|
|
|
|
|
|
// set in nodes
|
|
|
|
for i, inNodeName := range in {
|
|
|
|
inNode, ok := fg.nodeCtx[inNodeName]
|
|
|
|
if !ok {
|
|
|
|
errMsg := "Cannot find in node:" + inNodeName
|
|
|
|
return errors.New(errMsg)
|
|
|
|
}
|
|
|
|
inNode.downstreamInputChanIdx[nodeName] = i
|
|
|
|
}
|
|
|
|
|
|
|
|
// set out nodes
|
|
|
|
for i, n := range out {
|
|
|
|
outNode, ok := fg.nodeCtx[n]
|
|
|
|
if !ok {
|
|
|
|
errMsg := "Cannot find out node:" + n
|
|
|
|
return errors.New(errMsg)
|
|
|
|
}
|
2021-02-25 17:35:36 +08:00
|
|
|
maxQueueLength := outNode.node.MaxQueueLength()
|
2021-03-25 14:41:46 +08:00
|
|
|
outNode.inputChannels = append(outNode.inputChannels, make(chan Msg, maxQueueLength))
|
2020-11-02 16:44:54 +08:00
|
|
|
currentNode.downstream[i] = outNode
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fg *TimeTickedFlowGraph) Start() {
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
for _, v := range fg.nodeCtx {
|
|
|
|
wg.Add(1)
|
|
|
|
go v.Start(fg.ctx, &wg)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2020-11-12 12:04:12 +08:00
|
|
|
func (fg *TimeTickedFlowGraph) Close() {
|
2020-11-02 16:44:54 +08:00
|
|
|
for _, v := range fg.nodeCtx {
|
2020-11-17 20:00:23 +08:00
|
|
|
// close message stream
|
2021-03-26 18:40:04 +08:00
|
|
|
// if v.node.IsInputNode() {
|
|
|
|
// inStream, ok := v.node.(*InputNode)
|
|
|
|
// if !ok {
|
|
|
|
// log.Fatal("Invalid inputNode")
|
|
|
|
// }
|
|
|
|
// (*inStream.inStream).Close()
|
|
|
|
// }
|
|
|
|
v.Close()
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
2021-08-03 22:43:25 +08:00
|
|
|
fg.cancel()
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTimeTickedFlowGraph(ctx context.Context) *TimeTickedFlowGraph {
|
2021-08-03 22:43:25 +08:00
|
|
|
ctx1, cancel := context.WithCancel(ctx)
|
2020-11-02 16:44:54 +08:00
|
|
|
flowGraph := TimeTickedFlowGraph{
|
2021-08-03 22:43:25 +08:00
|
|
|
ctx: ctx1,
|
|
|
|
cancel: cancel,
|
2020-11-02 16:44:54 +08:00
|
|
|
nodeCtx: make(map[string]*nodeCtx),
|
|
|
|
}
|
|
|
|
|
|
|
|
return &flowGraph
|
|
|
|
}
|