2021-12-27 22:14:41 +08:00
|
|
|
// 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
|
2021-04-19 13:42:47 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-27 22:14:41 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 13:42:47 +08:00
|
|
|
//
|
2021-12-27 22:14:41 +08:00
|
|
|
// 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.
|
2021-04-19 13:42:47 +08:00
|
|
|
|
2020-11-02 16:44:54 +08:00
|
|
|
package flowgraph
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-03-05 10:15:27 +08:00
|
|
|
"errors"
|
2021-11-15 19:20:34 +08:00
|
|
|
"sync"
|
2020-11-02 16:44:54 +08:00
|
|
|
)
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// TimeTickedFlowGraph flowgraph with input from tt msg stream
|
2020-11-02 16:44:54 +08:00
|
|
|
type TimeTickedFlowGraph struct {
|
2021-09-09 17:12:38 +08:00
|
|
|
nodeCtx map[NodeName]*nodeCtx
|
|
|
|
stopOnce sync.Once
|
|
|
|
startOnce sync.Once
|
2022-09-14 10:32:33 +08:00
|
|
|
closeWg *sync.WaitGroup
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// AddNode add Node into flowgraph
|
2021-02-25 17:35:36 +08:00
|
|
|
func (fg *TimeTickedFlowGraph) AddNode(node Node) {
|
2020-11-02 16:44:54 +08:00
|
|
|
nodeCtx := nodeCtx{
|
2020-11-03 14:53:36 +08:00
|
|
|
node: node,
|
2020-11-02 16:44:54 +08:00
|
|
|
downstreamInputChanIdx: make(map[string]int),
|
2021-09-29 20:19:59 +08:00
|
|
|
closeCh: make(chan struct{}),
|
2022-09-14 10:32:33 +08:00
|
|
|
closeWg: fg.closeWg,
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
2022-06-23 09:58:14 +08:00
|
|
|
fg.nodeCtx[node.Name()] = &nodeCtx
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// SetEdges set directed edges from in nodes to out nodes
|
2020-11-02 16:44:54 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// Start starts all nodes in timetick flowgragh
|
2020-11-02 16:44:54 +08:00
|
|
|
func (fg *TimeTickedFlowGraph) Start() {
|
2021-09-09 17:12:38 +08:00
|
|
|
fg.startOnce.Do(func() {
|
|
|
|
for _, v := range fg.nodeCtx {
|
2022-06-02 19:48:04 +08:00
|
|
|
v.Start()
|
2021-09-09 17:12:38 +08:00
|
|
|
}
|
|
|
|
})
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// Close closes all nodes in flowgraph
|
2020-11-12 12:04:12 +08:00
|
|
|
func (fg *TimeTickedFlowGraph) Close() {
|
2021-09-09 17:12:38 +08:00
|
|
|
fg.stopOnce.Do(func() {
|
|
|
|
for _, v := range fg.nodeCtx {
|
2022-06-02 19:48:04 +08:00
|
|
|
if v.node.IsInputNode() {
|
|
|
|
v.Close()
|
|
|
|
}
|
2021-09-09 17:12:38 +08:00
|
|
|
}
|
2022-09-14 10:32:33 +08:00
|
|
|
fg.closeWg.Wait()
|
2021-09-09 17:12:38 +08:00
|
|
|
})
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 17:12:38 +08:00
|
|
|
// NewTimeTickedFlowGraph create timetick flowgraph
|
2020-11-02 16:44:54 +08:00
|
|
|
func NewTimeTickedFlowGraph(ctx context.Context) *TimeTickedFlowGraph {
|
|
|
|
flowGraph := TimeTickedFlowGraph{
|
|
|
|
nodeCtx: make(map[string]*nodeCtx),
|
2022-09-14 10:32:33 +08:00
|
|
|
closeWg: &sync.WaitGroup{},
|
2020-11-02 16:44:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return &flowGraph
|
|
|
|
}
|