123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package test
- import (
- "fmt"
- "github.com/emqx/kuiper/common"
- "github.com/emqx/kuiper/xsql"
- "github.com/emqx/kuiper/xstream/api"
- "sync"
- "time"
- )
- type MockSource struct {
- data []*xsql.Tuple
- offset int
- sync.Mutex
- }
- const TIMELEAP = 200
- func NewMockSource(data []*xsql.Tuple) *MockSource {
- mock := &MockSource{
- data: data,
- }
- return mock
- }
- func (m *MockSource) Open(ctx api.StreamContext, consumer chan<- api.SourceTuple, _ chan<- error) {
- log := ctx.GetLogger()
- mockClock := GetMockClock()
- log.Infof("%d: mock source %s starts", common.GetNowInMilli(), ctx.GetOpId())
- log.Debugf("mock source %s starts with offset %d", ctx.GetOpId(), m.offset)
- for i, d := range m.data {
- if i < m.offset {
- log.Debugf("mock source is skipping %d", i)
- continue
- }
- log.Debugf("mock source is waiting %d", i)
- diff := d.Timestamp - common.GetNowInMilli()
- if diff <= 0 {
- log.Warnf("Time stamp invalid, current time is %d, but timestamp is %d", common.GetNowInMilli(), d.Timestamp)
- diff = TIMELEAP
- }
- next := mockClock.After(time.Duration(diff) * time.Millisecond)
- //Mock timer, only send out the data once the mock time goes to the timestamp.
- //Another mechanism must be imposed to move forward the mock time.
- select {
- case <-next:
- m.Lock()
- m.offset = i + 1
- consumer <- api.NewDefaultSourceTuple(d.Message, xsql.Metadata{"topic": "mock"})
- log.Debugf("%d: mock source %s is sending data %d:%s", common.TimeToUnixMilli(mockClock.Now()), ctx.GetOpId(), i, d)
- m.Unlock()
- case <-ctx.Done():
- log.Debugf("mock source open DONE")
- return
- }
- }
- log.Debugf("mock source sends out all data")
- }
- func (m *MockSource) GetOffset() (interface{}, error) {
- m.Lock()
- defer m.Unlock()
- return m.offset, nil
- }
- func (m *MockSource) Rewind(offset interface{}) error {
- oi, err := common.ToInt(offset)
- if err != nil {
- return fmt.Errorf("mock source fails to rewind: %s", err)
- } else {
- m.offset = oi
- }
- return nil
- }
- func (m *MockSource) Close(_ api.StreamContext) error {
- m.offset = 0
- return nil
- }
- func (m *MockSource) Configure(_ string, _ map[string]interface{}) error {
- return nil
- }
|