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

H
more  
Hongze Cheng 已提交
18 19 20 21 22
#if __STDC_VERSION__ >= 201112L
static_assert(sizeof(float) == sizeof(uint32_t), "sizeof(float) must equal to sizeof(uint32_t)");
static_assert(sizeof(double) == sizeof(uint64_t), "sizeof(double) must equal to sizeof(uint64_t)");
#endif

H
mor  
Hongze Cheng 已提交
23 24 25 26 27 28
void tCoderInit(SCoder* pCoder, td_endian_t endian, uint8_t* data, int32_t size, td_coder_t type) {
  if (type == TD_ENCODER) {
    if (data == NULL) size = 0;
  } else {
    ASSERT(data && size > 0);
  }
H
mroe  
Hongze Cheng 已提交
29

H
mor  
Hongze Cheng 已提交
30
  pCoder->type = type;
H
mroe  
Hongze Cheng 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  pCoder->endian = endian;
  pCoder->data = data;
  pCoder->size = size;
  pCoder->pos = 0;
  tFreeListInit(&(pCoder->fl));
  TD_SLIST_INIT(&(pCoder->stack));
}

void tCoderClear(SCoder* pCoder) {
  tFreeListClear(&(pCoder->fl));
  struct SCoderNode* pNode;
  for (;;) {
    pNode = TD_SLIST_HEAD(&(pCoder->stack));
    if (pNode == NULL) break;
    TD_SLIST_POP(&(pCoder->stack));
    free(pNode);
  }
}

int tStartEncode(SCoder* pCoder) {
H
refact  
Hongze Cheng 已提交
51 52
  struct SCoderNode* pNode;

H
Hongze Cheng 已提交
53
  ASSERT(pCoder->type == TD_ENCODER);
H
mroe  
Hongze Cheng 已提交
54
  if (pCoder->data) {
H
refact  
Hongze Cheng 已提交
55 56 57
    if (pCoder->size - pCoder->pos < sizeof(int32_t)) return -1;

    pNode = malloc(sizeof(*pNode));
H
mroe  
Hongze Cheng 已提交
58 59 60 61 62 63
    if (pNode == NULL) return -1;

    pNode->data = pCoder->data;
    pNode->pos = pCoder->pos;
    pNode->size = pCoder->size;

H
more  
Hongze Cheng 已提交
64
    pCoder->data = pNode->data + pNode->pos + sizeof(int32_t);
H
mroe  
Hongze Cheng 已提交
65 66 67 68 69 70 71 72 73 74 75 76
    pCoder->pos = 0;
    pCoder->size = pNode->size - pNode->pos - sizeof(int32_t);

    TD_SLIST_PUSH(&(pCoder->stack), pNode);
  } else {
    pCoder->pos += sizeof(int32_t);
  }
  return 0;
}

void tEndEncode(SCoder* pCoder) {
  struct SCoderNode* pNode;
H
more  
Hongze Cheng 已提交
77
  int32_t            len;
H
mroe  
Hongze Cheng 已提交
78

H
Hongze Cheng 已提交
79
  ASSERT(pCoder->type == TD_ENCODER);
H
mroe  
Hongze Cheng 已提交
80 81 82 83 84
  if (pCoder->data) {
    pNode = TD_SLIST_HEAD(&(pCoder->stack));
    ASSERT(pNode);
    TD_SLIST_POP(&(pCoder->stack));

H
more  
Hongze Cheng 已提交
85
    len = pCoder->pos;
H
mroe  
Hongze Cheng 已提交
86 87 88

    pCoder->data = pNode->data;
    pCoder->size = pNode->size;
H
more  
Hongze Cheng 已提交
89 90
    pCoder->pos = pNode->pos;

H
Hongze Cheng 已提交
91
    tEncodeI32(pCoder, len);
H
more  
Hongze Cheng 已提交
92

H
Hongze Cheng 已提交
93
    TD_CODER_MOVE_POS(pCoder, len);
H
mroe  
Hongze Cheng 已提交
94 95 96 97 98 99

    free(pNode);
  }
}

int tStartDecode(SCoder* pCoder) {
H
more  
Hongze Cheng 已提交
100
  int32_t            len;
H
mroe  
Hongze Cheng 已提交
101 102
  struct SCoderNode* pNode;

H
Hongze Cheng 已提交
103
  ASSERT(pCoder->type == TD_DECODER);
H
more  
Hongze Cheng 已提交
104
  if (tDecodeI32(pCoder, &len) < 0) return -1;
H
refact  
Hongze Cheng 已提交
105

H
mroe  
Hongze Cheng 已提交
106 107 108 109 110 111 112
  pNode = malloc(sizeof(*pNode));
  if (pNode == NULL) return -1;

  pNode->data = pCoder->data;
  pNode->pos = pCoder->pos;
  pNode->size = pCoder->size;

H
more  
Hongze Cheng 已提交
113 114
  pCoder->data = pNode->data + pNode->pos;
  pCoder->size = len;
H
mroe  
Hongze Cheng 已提交
115 116 117 118 119 120 121 122 123 124
  pCoder->pos = 0;

  TD_SLIST_PUSH(&(pCoder->stack), pNode);

  return 0;
}

void tEndDecode(SCoder* pCoder) {
  struct SCoderNode* pNode;

H
Hongze Cheng 已提交
125 126
  ASSERT(pCoder->type == TD_DECODER);

H
mroe  
Hongze Cheng 已提交
127 128 129 130 131
  pNode = TD_SLIST_HEAD(&(pCoder->stack));
  ASSERT(pNode);
  TD_SLIST_POP(&(pCoder->stack));

  pCoder->data = pNode->data;
H
Hongze Cheng 已提交
132
  pCoder->pos = pCoder->size + pNode->pos;
H
mroe  
Hongze Cheng 已提交
133 134 135 136
  pCoder->size = pNode->size;

  free(pNode);
}