dataSinkMgt.c 2.2 KB
Newer Older
X
Xiaoyu Wang 已提交
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/>.
 */

H
Haojun Liao 已提交
16
#include "tarray.h"
X
Xiaoyu Wang 已提交
17 18 19 20
#include "dataSinkMgt.h"
#include "dataSinkInt.h"
#include "planner.h"

21 22
static SDataSinkManager gDataSinkManager = {0};

X
Xiaoyu Wang 已提交
23
int32_t dsDataSinkMgtInit(SDataSinkMgtCfg *cfg) {
24
  gDataSinkManager.cfg = *cfg;
wafwerar's avatar
wafwerar 已提交
25
  taosThreadMutexInit(&gDataSinkManager.mutex, NULL);
26
  return 0; // to avoid compiler eror
X
Xiaoyu Wang 已提交
27 28
}

X
Xiaoyu Wang 已提交
29
int32_t dsCreateDataSinker(const SDataSinkNode *pDataSink, DataSinkHandle* pHandle) {
X
Xiaoyu Wang 已提交
30
  if (QUERY_NODE_PHYSICAL_PLAN_DISPATCH == nodeType(pDataSink)) {
31
    return createDataDispatcher(&gDataSinkManager, pDataSink, pHandle);
X
Xiaoyu Wang 已提交
32 33 34 35
  }
  return TSDB_CODE_FAILED;
}

X
Xiaoyu Wang 已提交
36
int32_t dsPutDataBlock(DataSinkHandle handle, const SInputData* pInput, bool* pContinue) {
X
Xiaoyu Wang 已提交
37
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
38
  return pHandleImpl->fPut(pHandleImpl, pInput, pContinue);
X
Xiaoyu Wang 已提交
39 40
}

D
dapan1121 已提交
41
void dsEndPut(DataSinkHandle handle, uint64_t useconds) {
42
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
43
  return pHandleImpl->fEndPut(pHandleImpl, useconds);
X
Xiaoyu Wang 已提交
44 45
}

X
Xiaoyu Wang 已提交
46
void dsGetDataLength(DataSinkHandle handle, int32_t* pLen, bool* pQueryEnd) {
X
Xiaoyu Wang 已提交
47
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
48
  pHandleImpl->fGetLen(pHandleImpl, pLen, pQueryEnd);
X
Xiaoyu Wang 已提交
49 50
}

X
Xiaoyu Wang 已提交
51
int32_t dsGetDataBlock(DataSinkHandle handle, SOutputData* pOutput) {
52
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
53
  return pHandleImpl->fGetData(pHandleImpl, pOutput);
X
Xiaoyu Wang 已提交
54 55 56 57 58 59 60 61 62
}

void dsScheduleProcess(void* ahandle, void* pItem) {
  // todo
}

void dsDestroyDataSinker(DataSinkHandle handle) {
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
  pHandleImpl->fDestroy(pHandleImpl);
D
dapan1121 已提交
63
  taosMemoryFree(pHandleImpl);
X
Xiaoyu Wang 已提交
64
}