123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- // Copyright 2021-2023 EMQ Technologies Co., Ltd.
- //
- // 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 runtime
- import (
- "encoding/json"
- "errors"
- "fmt"
- "go.nanomsg.org/mangos/v3"
- "github.com/lf-edge/ekuiper/internal/conf"
- "github.com/lf-edge/ekuiper/pkg/api"
- "github.com/lf-edge/ekuiper/pkg/infra"
- )
- // Error handling: wrap all error in a function to handle
- type PortableSource struct {
- symbolName string
- reg *PluginMeta
- clean func() error
- topic string
- props map[string]interface{}
- }
- func NewPortableSource(symbolName string, reg *PluginMeta) *PortableSource {
- return &PortableSource{
- symbolName: symbolName,
- reg: reg,
- }
- }
- func (ps *PortableSource) Open(ctx api.StreamContext, consumer chan<- api.SourceTuple, errCh chan<- error) {
- ctx.GetLogger().Infof("Start running portable source %s with datasource %s and conf %+v", ps.symbolName, ps.topic, ps.props)
- pm := GetPluginInsManager()
- ins, err := pm.getOrStartProcess(ps.reg, PortbleConf)
- if err != nil {
- infra.DrainError(ctx, err, errCh)
- return
- }
- ctx.GetLogger().Infof("Plugin started successfully")
- // wait for plugin data
- dataCh, err := CreateSourceChannel(ctx)
- if err != nil {
- infra.DrainError(ctx, err, errCh)
- return
- }
- // Control: send message to plugin to ask starting symbol
- c := &Control{
- Meta: Meta{
- RuleId: ctx.GetRuleId(),
- OpId: ctx.GetOpId(),
- InstanceId: ctx.GetInstanceId(),
- },
- SymbolName: ps.symbolName,
- PluginType: TYPE_SOURCE,
- DataSource: ps.topic,
- Config: ps.props,
- }
- err = ins.StartSymbol(ctx, c)
- if err != nil {
- ctx.GetLogger().Error(err)
- infra.DrainError(ctx, err, errCh)
- _ = dataCh.Close()
- return
- }
- ps.clean = func() error {
- ctx.GetLogger().Info("clean up source")
- err1 := dataCh.Close()
- err2 := ins.StopSymbol(ctx, c)
- if err1 != nil {
- err1 = fmt.Errorf("%s:%v", "dataCh", err1)
- }
- if err2 != nil {
- err2 = fmt.Errorf("%s:%v", "symbol", err2)
- }
- return errors.Join(err1, err2)
- }
- for {
- var msg []byte
- // make sure recv has timeout
- msg, err = dataCh.Recv()
- switch err {
- case mangos.ErrClosed:
- ctx.GetLogger().Info("stop source after close")
- return
- case mangos.ErrRecvTimeout:
- ctx.GetLogger().Debug("source receive timeout, retry")
- select {
- case <-ctx.Done():
- ctx.GetLogger().Info("stop source")
- return
- default:
- continue
- }
- case nil:
- // do nothing
- default:
- infra.DrainError(ctx, fmt.Errorf("cannot receive from mangos Socket: %s", err.Error()), errCh)
- return
- }
- result := &api.DefaultSourceTuple{Time: conf.GetNow()}
- e := json.Unmarshal(msg, result)
- if e != nil {
- ctx.GetLogger().Errorf("Invalid data format, cannot decode %s to json format with error %s", string(msg), e)
- continue
- }
- select {
- case consumer <- result:
- ctx.GetLogger().Debugf("send data to source node")
- case <-ctx.Done():
- ctx.GetLogger().Info("stop source")
- return
- }
- }
- }
- func (ps *PortableSource) Configure(topic string, props map[string]interface{}) error {
- ps.topic = topic
- ps.props = props
- return nil
- }
- func (ps *PortableSource) Close(ctx api.StreamContext) error {
- ctx.GetLogger().Infof("Closing source %s", ps.symbolName)
- if ps.clean != nil {
- return ps.clean()
- }
- return nil
- }
|