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
refact  
Hongze Cheng 已提交
18 19
#if 0

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

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

  tsize += taosEncodeFixedU64(buf, pReq->ver);
  switch (type) {
S
Shengliang Guan 已提交
28
    case TDMT_VND_CREATE_STB:
H
more  
Hongze Cheng 已提交
29
      tsize += vnodeBuildCreateTableReq(buf, &(pReq->ctReq));
H
more  
Hongze Cheng 已提交
30
      break;
H
Hongze Cheng 已提交
31
    case TDMT_VND_SUBMIT:
H
more  
Hongze Cheng 已提交
32 33 34 35 36 37 38 39 40
      /* code */
      break;
    default:
      break;
  }
  /* TODO */
  return tsize;
}

H
Hongze Cheng 已提交
41
void *vnodeParseReq(void *buf, SVnodeReq *pReq, tmsg_t type) {
H
more  
Hongze Cheng 已提交
42 43 44
  buf = taosDecodeFixedU64(buf, &(pReq->ver));

  switch (type) {
S
Shengliang Guan 已提交
45
    case TDMT_VND_CREATE_STB:
H
more  
Hongze Cheng 已提交
46 47 48 49 50 51 52 53 54 55 56
      buf = vnodeParseCreateTableReq(buf, &(pReq->ctReq));
      break;

    default:
      break;
  }

  // TODO
  return buf;
}

H
more  
Hongze Cheng 已提交
57
static int vnodeBuildCreateTableReq(void **buf, const SVCreateTableReq *pReq) {
H
more  
Hongze Cheng 已提交
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 83 84
  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 已提交
85
static void *vnodeParseCreateTableReq(void *buf, SVCreateTableReq *pReq) {
H
more  
Hongze Cheng 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98
  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 已提交
99
      buf = tdDecodeKVRow(buf, &(pReq->ctbCfg.pTag));
H
more  
Hongze Cheng 已提交
100 101 102 103 104 105 106 107 108 109 110
      break;
    case META_NORMAL_TABLE:
      buf = tdDecodeSchema(buf, &(pReq->ntbCfg.pSchema));
      break;
    default:
      break;
  }

  return buf;
}

S
Shengliang Guan 已提交
111
int vnodeBuildDropTableReq(void **buf, const SVDropTbReq *pReq) {
H
more  
Hongze Cheng 已提交
112 113
  // TODO
  return 0;
H
more  
Hongze Cheng 已提交
114 115
}

S
Shengliang Guan 已提交
116
void *vnodeParseDropTableReq(void *buf, SVDropTbReq *pReq) {
H
more  
Hongze Cheng 已提交
117
  // TODO
H
refact  
Hongze Cheng 已提交
118 119
}
#endif