vnodeWrite.c 2.6 KB
Newer Older
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
refact  
Hongze Cheng 已提交
16 17
#include "vnodeDef.h"

H
refact  
Hongze Cheng 已提交
18
int vnodeProcessWMsgs(SVnode *pVnode, SArray *pMsgs) {
H
more  
Hongze Cheng 已提交
19 20
  SRpcMsg *  pMsg;
  SVnodeReq *pVnodeReq;
H
more  
Hongze Cheng 已提交
21

H
more  
Hongze Cheng 已提交
22 23
  for (int i = 0; i < taosArrayGetSize(pMsgs); i++) {
    pMsg = *(SRpcMsg **)taosArrayGet(pMsgs, i);
H
more  
Hongze Cheng 已提交
24

H
more  
Hongze Cheng 已提交
25
    // ser request version
H
more  
Hongze Cheng 已提交
26 27
    void **pBuf = &(pMsg->pCont);
    taosEncodeFixedU64(pBuf, pVnode->state.processed++);
H
more  
Hongze Cheng 已提交
28

H
more  
Hongze Cheng 已提交
29
    if (walWrite(pVnode->pWal, pVnodeReq->ver, pMsg->pCont, pMsg->contLen) < 0) {
H
more  
Hongze Cheng 已提交
30 31
      // TODO: handle error
    }
H
more  
Hongze Cheng 已提交
32 33
  }

H
more  
Hongze Cheng 已提交
34
  walFsync(pVnode->pWal, false);
H
refact  
Hongze Cheng 已提交
35

H
more  
Hongze Cheng 已提交
36 37 38
  // Apply each request now
  for (int i = 0; i < taosArrayGetSize(pMsgs); i++) {
    pMsg = *(SRpcMsg **)taosArrayGet(pMsgs, i);
H
more  
Hongze Cheng 已提交
39
    SVnodeReq vReq;
H
refact  
Hongze Cheng 已提交
40

H
more  
Hongze Cheng 已提交
41 42 43 44 45
    // Apply the request
    {
      void *ptr = vnodeMalloc(pVnode, pMsg->contLen);
      if (ptr == NULL) {
        // TODO: handle error
H
more  
Hongze Cheng 已提交
46
      }
H
more  
Hongze Cheng 已提交
47

H
more  
Hongze Cheng 已提交
48 49
      // TODO: copy here need to be extended
      memcpy(ptr, pMsg->pCont, pMsg->contLen);
H
more  
Hongze Cheng 已提交
50

H
more  
Hongze Cheng 已提交
51 52 53 54
      // // todo: change the interface here
      uint64_t ver;
      taosDecodeFixedU64(pMsg->pCont, &ver);
      if (tqPushMsg(pVnode->pTq, ptr, ver) < 0) {
H
more  
Hongze Cheng 已提交
55 56 57
        // TODO: handle error
      }

H
more  
Hongze Cheng 已提交
58 59
      vnodeParseReq(pMsg->pCont, &vReq, pMsg->msgType);

H
more  
Hongze Cheng 已提交
60 61
      switch (pMsg->msgType) {
        case TSDB_MSG_TYPE_CREATE_TABLE:
H
more  
Hongze Cheng 已提交
62
          if (metaCreateTable(pVnode->pMeta, &(vReq.ctReq)) < 0) {
H
more  
Hongze Cheng 已提交
63 64 65 66 67 68
            // TODO: handle error
          }

          // TODO: maybe need to clear the requst struct
          break;
        case TSDB_MSG_TYPE_DROP_TABLE:
H
more  
Hongze Cheng 已提交
69
          if (metaDropTable(pVnode->pMeta, vReq.dtReq.uid) < 0) {
H
more  
Hongze Cheng 已提交
70 71
            // TODO: handle error
          }
H
more  
Hongze Cheng 已提交
72 73 74 75 76 77
          break;
        case TSDB_MSG_TYPE_SUBMIT:
          /* code */
          break;
        default:
          break;
H
more  
Hongze Cheng 已提交
78
      }
H
more  
Hongze Cheng 已提交
79 80 81 82 83 84 85 86
    }

    pVnode->state.applied = pVnodeReq->ver;

    // Check if it needs to commit
    if (vnodeShouldCommit(pVnode)) {
      if (vnodeAsyncCommit(pVnode) < 0) {
        // TODO: handle error
H
more  
Hongze Cheng 已提交
87
      }
H
more  
Hongze Cheng 已提交
88
    }
H
refact  
Hongze Cheng 已提交
89 90
  }

H
more  
Hongze Cheng 已提交
91
  return 0;
H
more  
Hongze Cheng 已提交
92 93
}

H
more  
Hongze Cheng 已提交
94 95 96 97 98
int vnodeApplyWMsg(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
  // TODO
  return 0;
}

H
Hongze Cheng 已提交
99
/* ------------------------ STATIC METHODS ------------------------ */