streamInc.h 1.8 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

L
Liu Jicong 已提交
16 17 18 19 20 21
#ifndef _STREAM_INC_H_
#define _STREAM_INC_H_

#include "executor.h"
#include "tstream.h"

L
Liu Jicong 已提交
22 23 24 25
#ifdef __cplusplus
extern "C" {
#endif

26
typedef struct {
27 28
  int8_t inited;
  void*  timer;
29 30 31 32
} SStreamGlobalEnv;

static SStreamGlobalEnv streamEnv;

L
Liu Jicong 已提交
33
int32_t streamDispatch(SStreamTask* pTask);
L
Liu Jicong 已提交
34
int32_t streamDispatchReqToData(const SStreamDispatchReq* pReq, SStreamDataBlock* pData);
L
Liu Jicong 已提交
35
int32_t streamRetrieveReqToData(const SStreamRetrieveReq* pReq, SStreamDataBlock* pData);
L
Liu Jicong 已提交
36
int32_t streamDispatchAllBlocks(SStreamTask* pTask, const SStreamDataBlock* data);
37

L
Liu Jicong 已提交
38 39 40 41
int32_t streamBroadcastToChildren(SStreamTask* pTask, const SSDataBlock* pBlock);

int32_t tEncodeStreamRetrieveReq(SEncoder* pEncoder, const SStreamRetrieveReq* pReq);

42 43
int32_t streamDispatchOneCheckReq(SStreamTask* pTask, const SStreamTaskCheckReq* pReq, int32_t nodeId, SEpSet* pEpSet);

L
Liu Jicong 已提交
44 45 46
int32_t streamDispatchOneRecoverFinishReq(SStreamTask* pTask, const SStreamRecoverFinishReq* pReq, int32_t vgId,
                                          SEpSet* pEpSet);

47
SStreamQueueItem* streamMergeQueueItem(SStreamQueueItem* dst, SStreamQueueItem* pElem);
L
Liu Jicong 已提交
48

L
Liu Jicong 已提交
49 50 51 52
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
53
#endif /* ifndef _STREAM_INC_H_ */