dataSinkMgt.c 2.7 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
static SDataSinkManager gDataSinkManager = {0};
D
dapan1121 已提交
22
SDataSinkStat gDataSinkStat = {0};
23

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

D
dapan1121 已提交
30 31 32 33 34 35 36
int32_t dsDataSinkGetCacheSize(SDataSinkStat *pStat) {
  pStat->cachedSize = atomic_load_64(&gDataSinkStat.cachedSize);

  return 0;
}


D
dapan1121 已提交
37 38 39 40 41 42
int32_t dsCreateDataSinker(const SDataSinkNode *pDataSink, DataSinkHandle* pHandle, void* pParam) {
  switch (nodeType(pDataSink)) {
    case QUERY_NODE_PHYSICAL_PLAN_DISPATCH:
      return createDataDispatcher(&gDataSinkManager, pDataSink, pHandle);
    case QUERY_NODE_PHYSICAL_PLAN_DELETE:
      return createDataDeleter(&gDataSinkManager, pDataSink, pHandle, pParam);
X
Xiaoyu Wang 已提交
43 44 45 46
  }
  return TSDB_CODE_FAILED;
}

X
Xiaoyu Wang 已提交
47
int32_t dsPutDataBlock(DataSinkHandle handle, const SInputData* pInput, bool* pContinue) {
X
Xiaoyu Wang 已提交
48
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
49
  return pHandleImpl->fPut(pHandleImpl, pInput, pContinue);
X
Xiaoyu Wang 已提交
50 51
}

D
dapan1121 已提交
52
void dsEndPut(DataSinkHandle handle, uint64_t useconds) {
53
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
54
  return pHandleImpl->fEndPut(pHandleImpl, useconds);
X
Xiaoyu Wang 已提交
55 56
}

X
Xiaoyu Wang 已提交
57
void dsGetDataLength(DataSinkHandle handle, int32_t* pLen, bool* pQueryEnd) {
X
Xiaoyu Wang 已提交
58
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
59
  pHandleImpl->fGetLen(pHandleImpl, pLen, pQueryEnd);
X
Xiaoyu Wang 已提交
60 61
}

X
Xiaoyu Wang 已提交
62
int32_t dsGetDataBlock(DataSinkHandle handle, SOutputData* pOutput) {
63
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
X
Xiaoyu Wang 已提交
64
  return pHandleImpl->fGetData(pHandleImpl, pOutput);
X
Xiaoyu Wang 已提交
65 66
}

D
dapan1121 已提交
67 68 69 70 71 72
int32_t dsGetCacheSize(DataSinkHandle handle, uint64_t *pSize) {
  SDataSinkHandle* pHandleImpl = (SDataSinkHandle*)handle;
  return pHandleImpl->fGetCacheSize(pHandleImpl, pSize);
}


X
Xiaoyu Wang 已提交
73 74 75 76 77 78 79
void dsScheduleProcess(void* ahandle, void* pItem) {
  // todo
}

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