vnodeRequest.c 3.2 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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
more  
Hongze Cheng 已提交
14 15 16 17
 */

#include "vnodeDef.h"

H
more  
Hongze Cheng 已提交
18 19 20
static int   vnodeBuildCreateTableReq(void **buf, const SVCreateTableReq *pReq);
static void *vnodeParseCreateTableReq(void *buf, SVCreateTableReq *pReq);

H
more  
Hongze Cheng 已提交
21 22 23 24 25 26 27
int vnodeBuildReq(void **buf, const SVnodeReq *pReq, uint8_t type) {
  int tsize = 0;

  tsize += taosEncodeFixedU64(buf, pReq->ver);
  switch (type) {
    case TSDB_MSG_TYPE_CREATE_TABLE:
      tsize += vnodeBuildCreateTableReq(buf, &(pReq->ctReq));
H
more  
Hongze Cheng 已提交
28 29
      break;
    case TSDB_MSG_TYPE_SUBMIT:
H
more  
Hongze Cheng 已提交
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
      /* code */
      break;
    default:
      break;
  }
  /* TODO */
  return tsize;
}

void *vnodeParseReq(void *buf, SVnodeReq *pReq, uint8_t type) {
  buf = taosDecodeFixedU64(buf, &(pReq->ver));

  switch (type) {
    case TSDB_MSG_TYPE_CREATE_TABLE:
      buf = vnodeParseCreateTableReq(buf, &(pReq->ctReq));
      break;

    default:
      break;
  }

  // TODO
  return buf;
}

H
more  
Hongze Cheng 已提交
55
static int vnodeBuildCreateTableReq(void **buf, const SVCreateTableReq *pReq) {
H
more  
Hongze Cheng 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  int tsize = 0;

  tsize += taosEncodeString(buf, pReq->name);
  tsize += taosEncodeFixedU32(buf, pReq->ttl);
  tsize += taosEncodeFixedU32(buf, pReq->keep);
  tsize += taosEncodeFixedU8(buf, pReq->type);

  switch (pReq->type) {
    case META_SUPER_TABLE:
      tsize += taosEncodeFixedU64(buf, pReq->stbCfg.suid);
      tsize += tdEncodeSchema(buf, pReq->stbCfg.pSchema);
      tsize += tdEncodeSchema(buf, pReq->stbCfg.pTagSchema);
      break;
    case META_CHILD_TABLE:
      tsize += taosEncodeFixedU64(buf, pReq->ctbCfg.suid);
      tsize += tdEncodeKVRow(buf, pReq->ctbCfg.pTag);
      break;
    case META_NORMAL_TABLE:
      tsize += tdEncodeSchema(buf, pReq->ntbCfg.pSchema);
      break;
    default:
      break;
  }

  return tsize;
}

H
more  
Hongze Cheng 已提交
83
static void *vnodeParseCreateTableReq(void *buf, SVCreateTableReq *pReq) {
H
more  
Hongze Cheng 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96
  buf = taosDecodeString(buf, &(pReq->name));
  buf = taosDecodeFixedU32(buf, &(pReq->ttl));
  buf = taosDecodeFixedU32(buf, &(pReq->keep));
  buf = taosDecodeFixedU8(buf, &(pReq->type));

  switch (pReq->type) {
    case META_SUPER_TABLE:
      buf = taosDecodeFixedU64(buf, &(pReq->stbCfg.suid));
      buf = tdDecodeSchema(buf, &(pReq->stbCfg.pSchema));
      buf = tdDecodeSchema(buf, &(pReq->stbCfg.pTagSchema));
      break;
    case META_CHILD_TABLE:
      buf = taosDecodeFixedU64(buf, &(pReq->ctbCfg.suid));
H
Hongze Cheng 已提交
97
      buf = tdDecodeKVRow(buf, &(pReq->ctbCfg.pTag));
H
more  
Hongze Cheng 已提交
98 99 100 101 102 103 104 105 106 107 108
      break;
    case META_NORMAL_TABLE:
      buf = tdDecodeSchema(buf, &(pReq->ntbCfg.pSchema));
      break;
    default:
      break;
  }

  return buf;
}

H
more  
Hongze Cheng 已提交
109 110 111
int vnodeBuildDropTableReq(void **buf, const SVDropTableReq *pReq) {
  // TODO
  return 0;
H
more  
Hongze Cheng 已提交
112 113 114
}

void *vnodeParseDropTableReq(void *buf, SVDropTableReq *pReq) {
H
more  
Hongze Cheng 已提交
115
  // TODO
H
more  
Hongze Cheng 已提交
116
}