stream.c 6.1 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#include "streamInc.h"
17
#include "ttimer.h"
L
Liu Jicong 已提交
18

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
int32_t streamInit() {
  int8_t old;
  while (1) {
    old = atomic_val_compare_exchange_8(&streamEnv.inited, 0, 2);
    if (old != 2) break;
  }

  if (old == 0) {
    streamEnv.timer = taosTmrInit(10000, 100, 10000, "STREAM");
    if (streamEnv.timer == NULL) {
      atomic_store_8(&streamEnv.inited, 0);
      return -1;
    }
    atomic_store_8(&streamEnv.inited, 1);
  }
  return 0;
}

void streamCleanUp() {
  int8_t old;
  while (1) {
    old = atomic_val_compare_exchange_8(&streamEnv.inited, 1, 2);
    if (old != 2) break;
  }

  if (old == 1) {
    taosTmrCleanUp(streamEnv.timer);
    atomic_store_8(&streamEnv.inited, 0);
  }
}

void streamTriggerByTimer(void* param, void* tmrId) {
  SStreamTask* pTask = (void*)param;

  if (atomic_load_8(&pTask->triggerStatus) == TASK_TRIGGER_STATUS__ACTIVE) {
    SStreamTrigger* trigger = taosAllocateQitem(sizeof(SStreamTrigger), DEF_QITEM);
    if (trigger == NULL) return;
    trigger->type = STREAM_INPUT__TRIGGER;
    trigger->pBlock = taosMemoryCalloc(1, sizeof(SSDataBlock));
    if (trigger->pBlock == NULL) {
      taosFreeQitem(trigger);
      return;
    }
    trigger->pBlock->info.type = STREAM_GET_ALL;

    atomic_store_8(&pTask->triggerStatus, TASK_TRIGGER_STATUS__IN_ACTIVE);

    streamTaskInput(pTask, (SStreamQueueItem*)trigger);
L
Liu Jicong 已提交
67
    streamLaunchByWrite(pTask, pTask->nodeId);
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
  }

  taosTmrReset(streamTriggerByTimer, (int32_t)pTask->triggerParam, pTask, streamEnv.timer, &pTask->timer);
}

int32_t streamSetupTrigger(SStreamTask* pTask) {
  if (pTask->triggerParam != 0) {
    if (streamInit() < 0) {
      return -1;
    }
    pTask->timer = taosTmrStart(streamTriggerByTimer, (int32_t)pTask->triggerParam, pTask, streamEnv.timer);
    pTask->triggerStatus = TASK_TRIGGER_STATUS__IN_ACTIVE;
  }
  return 0;
}

L
Liu Jicong 已提交
84
int32_t streamLaunchByWrite(SStreamTask* pTask, int32_t vgId) {
L
Liu Jicong 已提交
85 86 87 88 89 90 91 92 93 94
  int8_t execStatus = atomic_load_8(&pTask->status);
  if (execStatus == TASK_STATUS__IDLE || execStatus == TASK_STATUS__CLOSING) {
    SStreamTaskRunReq* pRunReq = rpcMallocCont(sizeof(SStreamTaskRunReq));
    if (pRunReq == NULL) return -1;

    // TODO: do we need htonl?
    pRunReq->head.vgId = vgId;
    pRunReq->streamId = pTask->streamId;
    pRunReq->taskId = pTask->taskId;
    SRpcMsg msg = {
95
        .msgType = TDMT_STREAM_TASK_RUN,
L
Liu Jicong 已提交
96 97 98
        .pCont = pRunReq,
        .contLen = sizeof(SStreamTaskRunReq),
    };
L
Liu Jicong 已提交
99
    tmsgPutToQueue(pTask->pMsgCb, FETCH_QUEUE, &msg);
L
Liu Jicong 已提交
100 101 102 103 104
  }
  return 0;
}

int32_t streamTaskEnqueue(SStreamTask* pTask, SStreamDispatchReq* pReq, SRpcMsg* pRsp) {
L
Liu Jicong 已提交
105
  SStreamDataBlock* pData = taosAllocateQitem(sizeof(SStreamDataBlock), DEF_QITEM);
L
Liu Jicong 已提交
106 107 108
  int8_t            status;

  // enqueue
L
Liu Jicong 已提交
109 110 111 112 113
  if (pData != NULL) {
    pData->type = STREAM_DATA_TYPE_SSDATA_BLOCK;
    pData->sourceVg = pReq->sourceVg;
    // decode
    /*pData->blocks = pReq->data;*/
L
Liu Jicong 已提交
114
    /*pBlock->sourceVer = pReq->sourceVer;*/
L
Liu Jicong 已提交
115 116
    streamDispatchReqToData(pReq, pData);
    if (streamTaskInput(pTask, (SStreamQueueItem*)pData) == 0) {
L
Liu Jicong 已提交
117 118 119 120 121 122 123 124 125 126
      status = TASK_INPUT_STATUS__NORMAL;
    } else {
      status = TASK_INPUT_STATUS__FAILED;
    }
  } else {
    streamTaskInputFail(pTask);
    status = TASK_INPUT_STATUS__FAILED;
  }

  // rsp by input status
127
  void* buf = rpcMallocCont(sizeof(SMsgHead) + sizeof(SStreamDispatchRsp));
L
Liu Jicong 已提交
128
  ((SMsgHead*)buf)->vgId = htonl(pReq->upstreamNodeId);
129
  SStreamDispatchRsp* pCont = POINTER_SHIFT(buf, sizeof(SMsgHead));
L
Liu Jicong 已提交
130 131 132
  pCont->inputStatus = status;
  pCont->streamId = pReq->streamId;
  pCont->taskId = pReq->sourceTaskId;
133 134
  pRsp->pCont = buf;
  pRsp->contLen = sizeof(SMsgHead) + sizeof(SStreamDispatchRsp);
L
Liu Jicong 已提交
135 136 137 138
  tmsgSendRsp(pRsp);
  return status == TASK_INPUT_STATUS__NORMAL ? 0 : -1;
}

L
Liu Jicong 已提交
139 140 141
int32_t streamProcessDispatchReq(SStreamTask* pTask, SStreamDispatchReq* pReq, SRpcMsg* pRsp) {
  qInfo("task %d receive dispatch req from node %d task %d", pTask->taskId, pReq->upstreamNodeId, pReq->sourceTaskId);

L
Liu Jicong 已提交
142 143 144 145 146 147 148
  // 1. handle input
  streamTaskEnqueue(pTask, pReq, pRsp);

  // 2. try exec
  // 2.1. idle: exec
  // 2.2. executing: return
  // 2.3. closing: keep trying
149
  if (pTask->execType != TASK_EXEC__NONE) {
L
Liu Jicong 已提交
150
    streamExec(pTask, pTask->pMsgCb);
151 152 153 154 155 156 157 158 159 160
  } else {
    ASSERT(pTask->sinkType != TASK_SINK__NONE);
    while (1) {
      void* data = streamQueueNextItem(pTask->inputQueue);
      if (data == NULL) return 0;
      if (streamTaskOutput(pTask, data) < 0) {
        ASSERT(0);
      }
    }
  }
L
Liu Jicong 已提交
161 162 163 164

  // 3. handle output
  // 3.1 check and set status
  // 3.2 dispatch / sink
165
  if (pTask->dispatchType != TASK_DISPATCH__NONE) {
L
Liu Jicong 已提交
166
    streamDispatch(pTask, pTask->pMsgCb);
167
  }
L
Liu Jicong 已提交
168 169 170 171

  return 0;
}

L
Liu Jicong 已提交
172
int32_t streamProcessDispatchRsp(SStreamTask* pTask, SStreamDispatchRsp* pRsp) {
173
  ASSERT(pRsp->inputStatus == TASK_OUTPUT_STATUS__NORMAL || pRsp->inputStatus == TASK_OUTPUT_STATUS__BLOCKED);
L
Liu Jicong 已提交
174 175 176

  qInfo("task %d receive dispatch rsp", pTask->taskId);

177 178
  int8_t old = atomic_exchange_8(&pTask->outputStatus, pRsp->inputStatus);
  ASSERT(old == TASK_OUTPUT_STATUS__WAIT);
L
Liu Jicong 已提交
179 180
  if (pRsp->inputStatus == TASK_INPUT_STATUS__BLOCKED) {
    // TODO: init recover timer
L
Liu Jicong 已提交
181
    ASSERT(0);
182
    return 0;
L
Liu Jicong 已提交
183 184
  }
  // continue dispatch
L
Liu Jicong 已提交
185
  streamDispatch(pTask, pTask->pMsgCb);
L
Liu Jicong 已提交
186 187 188
  return 0;
}

L
Liu Jicong 已提交
189 190
int32_t streamProcessRunReq(SStreamTask* pTask) {
  streamExec(pTask, pTask->pMsgCb);
191
  if (pTask->dispatchType != TASK_DISPATCH__NONE) {
L
Liu Jicong 已提交
192
    streamDispatch(pTask, pTask->pMsgCb);
193
  }
L
Liu Jicong 已提交
194 195 196
  return 0;
}

L
Liu Jicong 已提交
197
int32_t streamProcessRecoverReq(SStreamTask* pTask, SStreamTaskRecoverReq* pReq, SRpcMsg* pMsg) {
L
Liu Jicong 已提交
198 199 200 201 202 203 204 205
  //
  return 0;
}

int32_t streamProcessRecoverRsp(SStreamTask* pTask, SStreamTaskRecoverRsp* pRsp) {
  //
  return 0;
}