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

#ifndef _TD_UTIL_ENCODE_H_
#define _TD_UTIL_ENCODE_H_

H
more  
Hongze Cheng 已提交
19
#include "tcoding.h"
H
Hongze Cheng 已提交
20
#include "tlist.h"
H
more  
Hongze Cheng 已提交
21 22 23 24 25

#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
typedef struct SEncoderNode SEncoderNode;
typedef struct SDecoderNode SDecoderNode;

typedef struct SCoderMem {
  struct SCoderMem* next;
} SCoderMem;

typedef struct {
  uint8_t*      data;
  uint32_t      size;
  uint32_t      pos;
  SCoderMem*    mList;
  SEncoderNode* eStack;
} SEncoder;

typedef struct {
H
Hongze Cheng 已提交
42 43 44 45 46
  uint8_t*      data;
  uint32_t      size;
  uint32_t      pos;
  SCoderMem*    mList;
  SDecoderNode* dStack;
H
Hongze Cheng 已提交
47 48
} SDecoder;

H
more  
Hongze Cheng 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
#define tPut(TYPE, BUF, VAL) ((TYPE*)(BUF))[0] = (VAL)
#define tGet(TYPE, BUF, VAL) (VAL) = ((TYPE*)(BUF))[0]

#define tRPut16(PDEST, PSRC)                      \
  ((uint8_t*)(PDEST))[0] = ((uint8_t*)(PSRC))[1]; \
  ((uint8_t*)(PDEST))[1] = ((uint8_t*)(PSRC))[0];

#define tRPut32(PDEST, PSRC)                      \
  ((uint8_t*)(PDEST))[0] = ((uint8_t*)(PSRC))[3]; \
  ((uint8_t*)(PDEST))[1] = ((uint8_t*)(PSRC))[2]; \
  ((uint8_t*)(PDEST))[2] = ((uint8_t*)(PSRC))[1]; \
  ((uint8_t*)(PDEST))[3] = ((uint8_t*)(PSRC))[0];

#define tRPut64(PDEST, PSRC)                      \
  ((uint8_t*)(PDEST))[0] = ((uint8_t*)(PSRC))[7]; \
  ((uint8_t*)(PDEST))[1] = ((uint8_t*)(PSRC))[6]; \
  ((uint8_t*)(PDEST))[2] = ((uint8_t*)(PSRC))[5]; \
  ((uint8_t*)(PDEST))[3] = ((uint8_t*)(PSRC))[4]; \
  ((uint8_t*)(PDEST))[4] = ((uint8_t*)(PSRC))[3]; \
  ((uint8_t*)(PDEST))[5] = ((uint8_t*)(PSRC))[2]; \
  ((uint8_t*)(PDEST))[6] = ((uint8_t*)(PSRC))[1]; \
  ((uint8_t*)(PDEST))[7] = ((uint8_t*)(PSRC))[0];

#define tRGet16 tRPut16
#define tRGet32 tRPut32
#define tRGet64 tRPut64

S
Shengliang Guan 已提交
76 77 78
#define TD_CODER_POS(CODER)                            ((CODER)->pos)
#define TD_CODER_CURRENT(CODER)                        ((CODER)->data + (CODER)->pos)
#define TD_CODER_MOVE_POS(CODER, MOVE)                 ((CODER)->pos += (MOVE))
H
refact  
Hongze Cheng 已提交
79
#define TD_CODER_CHECK_CAPACITY_FAILED(CODER, EXPSIZE) (((CODER)->size - (CODER)->pos) < (EXPSIZE))
wafwerar's avatar
wafwerar 已提交
80

H
Hongze Cheng 已提交
81 82 83 84
#define tEncodeSize(E, S, SIZE, RET) \
  do {                               \
    SEncoder coder = {0};            \
    tEncoderInit(&coder, NULL, 0);   \
85
    if ((E)(&coder, S) >= 0) {       \
H
Hongze Cheng 已提交
86 87 88 89 90 91
      SIZE = coder.pos;              \
      RET = 0;                       \
    } else {                         \
      RET = -1;                      \
    }                                \
    tEncoderClear(&coder);           \
H
Hongze Cheng 已提交
92
  } while (0)
H
Hongze Cheng 已提交
93

H
Hongze Cheng 已提交
94 95
static void* tEncoderMalloc(SEncoder* pCoder, int32_t size);
static void* tDecoderMalloc(SDecoder* pCoder, int32_t size);
H
mor  
Hongze Cheng 已提交
96 97

/* ------------------------ ENCODE ------------------------ */
H
Hongze Cheng 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
void           tEncoderInit(SEncoder* pCoder, uint8_t* data, uint32_t size);
void           tEncoderClear(SEncoder* pCoder);
int32_t        tStartEncode(SEncoder* pCoder);
void           tEndEncode(SEncoder* pCoder);
static int32_t tEncodeU8(SEncoder* pCoder, uint8_t val);
static int32_t tEncodeI8(SEncoder* pCoder, int8_t val);
static int32_t tEncodeU16(SEncoder* pCoder, uint16_t val);
static int32_t tEncodeI16(SEncoder* pCoder, int16_t val);
static int32_t tEncodeU32(SEncoder* pCoder, uint32_t val);
static int32_t tEncodeI32(SEncoder* pCoder, int32_t val);
static int32_t tEncodeU64(SEncoder* pCoder, uint64_t val);
static int32_t tEncodeI64(SEncoder* pCoder, int64_t val);
static int32_t tEncodeU16v(SEncoder* pCoder, uint16_t val);
static int32_t tEncodeI16v(SEncoder* pCoder, int16_t val);
static int32_t tEncodeU32v(SEncoder* pCoder, uint32_t val);
static int32_t tEncodeI32v(SEncoder* pCoder, int32_t val);
static int32_t tEncodeU64v(SEncoder* pCoder, uint64_t val);
static int32_t tEncodeI64v(SEncoder* pCoder, int64_t val);
static int32_t tEncodeFloat(SEncoder* pCoder, float val);
static int32_t tEncodeDouble(SEncoder* pCoder, double val);
static int32_t tEncodeBinary(SEncoder* pCoder, const uint8_t* val, uint32_t len);
static int32_t tEncodeCStrWithLen(SEncoder* pCoder, const char* val, uint32_t len);
static int32_t tEncodeCStr(SEncoder* pCoder, const char* val);
H
mor  
Hongze Cheng 已提交
121 122

/* ------------------------ DECODE ------------------------ */
H
Hongze Cheng 已提交
123
void           tDecoderInit(SDecoder* pCoder, uint8_t* data, uint32_t size);
H
Hongze Cheng 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
void           tDecoderClear(SDecoder* SDecoder);
int32_t        tStartDecode(SDecoder* pCoder);
void           tEndDecode(SDecoder* pCoder);
static bool    tDecodeIsEnd(SDecoder* pCoder);
static int32_t tDecodeU8(SDecoder* pCoder, uint8_t* val);
static int32_t tDecodeI8(SDecoder* pCoder, int8_t* val);
static int32_t tDecodeU16(SDecoder* pCoder, uint16_t* val);
static int32_t tDecodeI16(SDecoder* pCoder, int16_t* val);
static int32_t tDecodeU32(SDecoder* pCoder, uint32_t* val);
static int32_t tDecodeI32(SDecoder* pCoder, int32_t* val);
static int32_t tDecodeU64(SDecoder* pCoder, uint64_t* val);
static int32_t tDecodeI64(SDecoder* pCoder, int64_t* val);
static int32_t tDecodeU16v(SDecoder* pCoder, uint16_t* val);
static int32_t tDecodeI16v(SDecoder* pCoder, int16_t* val);
static int32_t tDecodeU32v(SDecoder* pCoder, uint32_t* val);
static int32_t tDecodeI32v(SDecoder* pCoder, int32_t* val);
static int32_t tDecodeU64v(SDecoder* pCoder, uint64_t* val);
static int32_t tDecodeI64v(SDecoder* pCoder, int64_t* val);
static int32_t tDecodeFloat(SDecoder* pCoder, float* val);
static int32_t tDecodeDouble(SDecoder* pCoder, double* val);
H
Hongze Cheng 已提交
144 145 146
static int32_t tDecodeBinary(SDecoder* pCoder, uint8_t** val, uint32_t* len);
static int32_t tDecodeCStrAndLen(SDecoder* pCoder, char** val, uint32_t* len);
static int32_t tDecodeCStr(SDecoder* pCoder, char** val);
H
Hongze Cheng 已提交
147
static int32_t tDecodeCStrTo(SDecoder* pCoder, char* val);
H
mor  
Hongze Cheng 已提交
148 149 150 151 152

/* ------------------------ IMPL ------------------------ */
#define TD_ENCODE_MACRO(CODER, VAL, TYPE, BITS)                        \
  if ((CODER)->data) {                                                 \
    if (TD_CODER_CHECK_CAPACITY_FAILED(CODER, sizeof(VAL))) return -1; \
H
Hongze Cheng 已提交
153
    tPut(TYPE, TD_CODER_CURRENT(CODER), (VAL));                        \
H
mor  
Hongze Cheng 已提交
154 155
  }                                                                    \
  TD_CODER_MOVE_POS(CODER, sizeof(VAL));                               \
H
more  
Hongze Cheng 已提交
156 157
  return 0;

H
mor  
Hongze Cheng 已提交
158
#define TD_ENCODE_VARIANT_MACRO(CODER, VAL)                       \
H
more  
Hongze Cheng 已提交
159
  while ((VAL) >= ENCODE_LIMIT) {                                 \
H
mor  
Hongze Cheng 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173
    if ((CODER)->data) {                                          \
      if (TD_CODER_CHECK_CAPACITY_FAILED(CODER, 1)) return -1;    \
      TD_CODER_CURRENT(CODER)[0] = ((VAL) | ENCODE_LIMIT) & 0xff; \
    }                                                             \
                                                                  \
    (VAL) >>= 7;                                                  \
    TD_CODER_MOVE_POS(CODER, 1);                                  \
  }                                                               \
                                                                  \
  if ((CODER)->data) {                                            \
    if (TD_CODER_CHECK_CAPACITY_FAILED(CODER, 1)) return -1;      \
    TD_CODER_CURRENT(CODER)[0] = (uint8_t)(VAL);                  \
  }                                                               \
  TD_CODER_MOVE_POS(CODER, 1);                                    \
H
more  
Hongze Cheng 已提交
174 175
  return 0;

H
mor  
Hongze Cheng 已提交
176 177
#define TD_DECODE_MACRO(CODER, PVAL, TYPE, BITS)                         \
  if (TD_CODER_CHECK_CAPACITY_FAILED(CODER, sizeof(*(PVAL)))) return -1; \
H
Hongze Cheng 已提交
178
  tGet(TYPE, TD_CODER_CURRENT(CODER), *(PVAL));                          \
H
mor  
Hongze Cheng 已提交
179
  TD_CODER_MOVE_POS(CODER, sizeof(*(PVAL)));                             \
H
more  
Hongze Cheng 已提交
180 181
  return 0;

H
mor  
Hongze Cheng 已提交
182 183 184 185 186 187 188 189
#define TD_DECODE_VARIANT_MACRO(CODER, PVAL, TYPE)           \
  int32_t i = 0;                                             \
  *(PVAL) = 0;                                               \
  for (;;) {                                                 \
    if (TD_CODER_CHECK_CAPACITY_FAILED(CODER, 1)) return -1; \
    TYPE tval = TD_CODER_CURRENT(CODER)[0];                  \
    if (tval < ENCODE_LIMIT) {                               \
      *(PVAL) |= (tval << (7 * i));                          \
H
Hongze Cheng 已提交
190
      TD_CODER_MOVE_POS(pCoder, 1);                          \
H
mor  
Hongze Cheng 已提交
191 192 193 194
      break;                                                 \
    } else {                                                 \
      *(PVAL) |= (((tval) & (ENCODE_LIMIT - 1)) << (7 * i)); \
      i++;                                                   \
H
Hongze Cheng 已提交
195
      TD_CODER_MOVE_POS(pCoder, 1);                          \
H
mor  
Hongze Cheng 已提交
196 197 198
    }                                                        \
  }                                                          \
                                                             \
H
more  
Hongze Cheng 已提交
199 200
  return 0;

H
mor  
Hongze Cheng 已提交
201
// 8
H
Hongze Cheng 已提交
202 203 204 205
static FORCE_INLINE int32_t tEncodeU8(SEncoder* pCoder, uint8_t val) {
  if (pCoder->data) {
    if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, sizeof(val))) return -1;
    tPut(uint8_t, TD_CODER_CURRENT(pCoder), val);
H
more  
Hongze Cheng 已提交
206
  }
H
Hongze Cheng 已提交
207
  TD_CODER_MOVE_POS(pCoder, sizeof(val));
H
more  
Hongze Cheng 已提交
208 209 210
  return 0;
}

H
Hongze Cheng 已提交
211 212 213 214
static FORCE_INLINE int32_t tEncodeI8(SEncoder* pCoder, int8_t val) {
  if (pCoder->data) {
    if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, sizeof(val))) return -1;
    tPut(int8_t, TD_CODER_CURRENT(pCoder), val);
H
more  
Hongze Cheng 已提交
215
  }
H
Hongze Cheng 已提交
216
  TD_CODER_MOVE_POS(pCoder, sizeof(val));
H
more  
Hongze Cheng 已提交
217 218 219
  return 0;
}

H
mor  
Hongze Cheng 已提交
220
// 16
H
Hongze Cheng 已提交
221 222
static FORCE_INLINE int32_t tEncodeU16(SEncoder* pCoder, uint16_t val) { TD_ENCODE_MACRO(pCoder, val, uint16_t, 16); }
static FORCE_INLINE int32_t tEncodeI16(SEncoder* pCoder, int16_t val) { TD_ENCODE_MACRO(pCoder, val, int16_t, 16); }
H
mor  
Hongze Cheng 已提交
223
// 32
H
Hongze Cheng 已提交
224 225
static FORCE_INLINE int32_t tEncodeU32(SEncoder* pCoder, uint32_t val) { TD_ENCODE_MACRO(pCoder, val, uint32_t, 32); }
static FORCE_INLINE int32_t tEncodeI32(SEncoder* pCoder, int32_t val) { TD_ENCODE_MACRO(pCoder, val, int32_t, 32); }
H
more  
Hongze Cheng 已提交
226
// 64
H
Hongze Cheng 已提交
227 228
static FORCE_INLINE int32_t tEncodeU64(SEncoder* pCoder, uint64_t val) { TD_ENCODE_MACRO(pCoder, val, uint64_t, 64); }
static FORCE_INLINE int32_t tEncodeI64(SEncoder* pCoder, int64_t val) { TD_ENCODE_MACRO(pCoder, val, int64_t, 64); }
H
more  
Hongze Cheng 已提交
229
// 16v
H
Hongze Cheng 已提交
230 231 232
static FORCE_INLINE int32_t tEncodeU16v(SEncoder* pCoder, uint16_t val) { TD_ENCODE_VARIANT_MACRO(pCoder, val); }
static FORCE_INLINE int32_t tEncodeI16v(SEncoder* pCoder, int16_t val) {
  return tEncodeU16v(pCoder, ZIGZAGE(int16_t, val));
H
more  
Hongze Cheng 已提交
233
}
H
more  
Hongze Cheng 已提交
234
// 32v
H
Hongze Cheng 已提交
235 236 237
static FORCE_INLINE int32_t tEncodeU32v(SEncoder* pCoder, uint32_t val) { TD_ENCODE_VARIANT_MACRO(pCoder, val); }
static FORCE_INLINE int32_t tEncodeI32v(SEncoder* pCoder, int32_t val) {
  return tEncodeU32v(pCoder, ZIGZAGE(int32_t, val));
H
more  
Hongze Cheng 已提交
238
}
H
more  
Hongze Cheng 已提交
239
// 64v
H
Hongze Cheng 已提交
240 241 242
static FORCE_INLINE int32_t tEncodeU64v(SEncoder* pCoder, uint64_t val) { TD_ENCODE_VARIANT_MACRO(pCoder, val); }
static FORCE_INLINE int32_t tEncodeI64v(SEncoder* pCoder, int64_t val) {
  return tEncodeU64v(pCoder, ZIGZAGE(int64_t, val));
H
more  
Hongze Cheng 已提交
243
}
H
more  
Hongze Cheng 已提交
244

H
Hongze Cheng 已提交
245
static FORCE_INLINE int32_t tEncodeFloat(SEncoder* pCoder, float val) {
H
more  
Hongze Cheng 已提交
246 247 248
  union {
    uint32_t ui;
    float    f;
wafwerar's avatar
wafwerar 已提交
249 250
  } v;
  v.f = val;
H
more  
Hongze Cheng 已提交
251

H
Hongze Cheng 已提交
252
  return tEncodeU32(pCoder, v.ui);
H
more  
Hongze Cheng 已提交
253 254
}

H
Hongze Cheng 已提交
255
static FORCE_INLINE int32_t tEncodeDouble(SEncoder* pCoder, double val) {
H
refact  
Hongze Cheng 已提交
256
  union {
H
more  
Hongze Cheng 已提交
257 258
    uint64_t ui;
    double   d;
wafwerar's avatar
wafwerar 已提交
259 260
  } v;
  v.d = val;
H
more  
Hongze Cheng 已提交
261

H
Hongze Cheng 已提交
262
  return tEncodeU64(pCoder, v.ui);
H
more  
Hongze Cheng 已提交
263 264
}

H
Hongze Cheng 已提交
265 266 267 268 269
static FORCE_INLINE int32_t tEncodeBinary(SEncoder* pCoder, const uint8_t* val, uint32_t len) {
  if (tEncodeU32v(pCoder, len) < 0) return -1;
  if (pCoder->data) {
    if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, len)) return -1;
    memcpy(TD_CODER_CURRENT(pCoder), val, len);
H
more  
Hongze Cheng 已提交
270 271
  }

H
Hongze Cheng 已提交
272
  TD_CODER_MOVE_POS(pCoder, len);
H
more  
Hongze Cheng 已提交
273 274 275
  return 0;
}

H
Hongze Cheng 已提交
276
static FORCE_INLINE int32_t tEncodeCStrWithLen(SEncoder* pCoder, const char* val, uint32_t len) {
H
Hongze Cheng 已提交
277
  return tEncodeBinary(pCoder, (uint8_t*)val, len + 1);
H
more  
Hongze Cheng 已提交
278 279
}

H
Hongze Cheng 已提交
280 281
static FORCE_INLINE int32_t tEncodeCStr(SEncoder* pCoder, const char* val) {
  return tEncodeCStrWithLen(pCoder, val, (uint32_t)strlen(val));
H
more  
Hongze Cheng 已提交
282 283
}

H
more  
Hongze Cheng 已提交
284 285
/* ------------------------ FOR DECODER ------------------------ */
// 8
H
Hongze Cheng 已提交
286 287 288 289
static FORCE_INLINE int32_t tDecodeU8(SDecoder* pCoder, uint8_t* val) {
  if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, sizeof(*val))) return -1;
  tGet(uint8_t, TD_CODER_CURRENT(pCoder), *val);
  TD_CODER_MOVE_POS(pCoder, sizeof(*val));
H
more  
Hongze Cheng 已提交
290 291 292
  return 0;
}

H
Hongze Cheng 已提交
293 294 295 296
static FORCE_INLINE int32_t tDecodeI8(SDecoder* pCoder, int8_t* val) {
  if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, sizeof(*val))) return -1;
  tGet(int8_t, TD_CODER_CURRENT(pCoder), *val);
  TD_CODER_MOVE_POS(pCoder, sizeof(*val));
H
more  
Hongze Cheng 已提交
297 298 299 300
  return 0;
}

// 16
H
Hongze Cheng 已提交
301 302
static FORCE_INLINE int32_t tDecodeU16(SDecoder* pCoder, uint16_t* val) { TD_DECODE_MACRO(pCoder, val, uint16_t, 16); }
static FORCE_INLINE int32_t tDecodeI16(SDecoder* pCoder, int16_t* val) { TD_DECODE_MACRO(pCoder, val, int16_t, 16); }
H
more  
Hongze Cheng 已提交
303
// 32
H
Hongze Cheng 已提交
304 305
static FORCE_INLINE int32_t tDecodeU32(SDecoder* pCoder, uint32_t* val) { TD_DECODE_MACRO(pCoder, val, uint32_t, 32); }
static FORCE_INLINE int32_t tDecodeI32(SDecoder* pCoder, int32_t* val) { TD_DECODE_MACRO(pCoder, val, int32_t, 32); }
H
more  
Hongze Cheng 已提交
306
// 64
H
Hongze Cheng 已提交
307 308
static FORCE_INLINE int32_t tDecodeU64(SDecoder* pCoder, uint64_t* val) { TD_DECODE_MACRO(pCoder, val, uint64_t, 64); }
static FORCE_INLINE int32_t tDecodeI64(SDecoder* pCoder, int64_t* val) { TD_DECODE_MACRO(pCoder, val, int64_t, 64); }
H
more  
Hongze Cheng 已提交
309

H
more  
Hongze Cheng 已提交
310
// 16v
H
Hongze Cheng 已提交
311 312
static FORCE_INLINE int32_t tDecodeU16v(SDecoder* pCoder, uint16_t* val) {
  TD_DECODE_VARIANT_MACRO(pCoder, val, uint16_t);
H
more  
Hongze Cheng 已提交
313 314
}

H
Hongze Cheng 已提交
315
static FORCE_INLINE int32_t tDecodeI16v(SDecoder* pCoder, int16_t* val) {
H
Hongze Cheng 已提交
316
  uint16_t tval;
H
Hongze Cheng 已提交
317
  if (tDecodeU16v(pCoder, &tval) < 0) {
H
Hongze Cheng 已提交
318 319
    return -1;
  }
H
Hongze Cheng 已提交
320
  if (val) *val = ZIGZAGD(int16_t, tval);
H
more  
Hongze Cheng 已提交
321 322 323 324
  return 0;
}

// 32v
H
Hongze Cheng 已提交
325 326
static FORCE_INLINE int32_t tDecodeU32v(SDecoder* pCoder, uint32_t* val) {
  TD_DECODE_VARIANT_MACRO(pCoder, val, uint32_t);
H
more  
Hongze Cheng 已提交
327 328
}

H
Hongze Cheng 已提交
329
static FORCE_INLINE int32_t tDecodeI32v(SDecoder* pCoder, int32_t* val) {
H
Hongze Cheng 已提交
330
  uint32_t tval;
H
Hongze Cheng 已提交
331
  if (tDecodeU32v(pCoder, &tval) < 0) {
H
Hongze Cheng 已提交
332 333
    return -1;
  }
H
Hongze Cheng 已提交
334
  if (val) *val = ZIGZAGD(int32_t, tval);
H
more  
Hongze Cheng 已提交
335 336 337 338
  return 0;
}

// 64v
H
Hongze Cheng 已提交
339 340
static FORCE_INLINE int32_t tDecodeU64v(SDecoder* pCoder, uint64_t* val) {
  TD_DECODE_VARIANT_MACRO(pCoder, val, uint64_t);
H
more  
Hongze Cheng 已提交
341 342
}

H
Hongze Cheng 已提交
343
static FORCE_INLINE int32_t tDecodeI64v(SDecoder* pCoder, int64_t* val) {
H
Hongze Cheng 已提交
344
  uint64_t tval;
H
Hongze Cheng 已提交
345
  if (tDecodeU64v(pCoder, &tval) < 0) {
H
Hongze Cheng 已提交
346 347
    return -1;
  }
H
Hongze Cheng 已提交
348
  if (val) *val = ZIGZAGD(int64_t, tval);
H
more  
Hongze Cheng 已提交
349 350 351
  return 0;
}

H
Hongze Cheng 已提交
352
static FORCE_INLINE int32_t tDecodeFloat(SDecoder* pCoder, float* val) {
H
more  
Hongze Cheng 已提交
353 354 355 356 357
  union {
    uint32_t ui;
    float    f;
  } v;

H
Hongze Cheng 已提交
358
  if (tDecodeU32(pCoder, &(v.ui)) < 0) {
H
more  
Hongze Cheng 已提交
359 360 361 362
    return -1;
  }

  *val = v.f;
H
more  
Hongze Cheng 已提交
363 364 365
  return 0;
}

H
Hongze Cheng 已提交
366
static FORCE_INLINE int32_t tDecodeDouble(SDecoder* pCoder, double* val) {
H
more  
Hongze Cheng 已提交
367 368 369 370 371
  union {
    uint64_t ui;
    double   d;
  } v;

H
Hongze Cheng 已提交
372
  if (tDecodeU64(pCoder, &(v.ui)) < 0) {
H
more  
Hongze Cheng 已提交
373 374 375 376
    return -1;
  }

  *val = v.d;
H
more  
Hongze Cheng 已提交
377 378 379
  return 0;
}

H
Hongze Cheng 已提交
380
static FORCE_INLINE int32_t tDecodeBinary(SDecoder* pCoder, uint8_t** val, uint32_t* len) {
H
Hongze Cheng 已提交
381
  if (tDecodeU32v(pCoder, len) < 0) return -1;
H
more  
Hongze Cheng 已提交
382

H
Hongze Cheng 已提交
383
  if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, *len)) return -1;
H
Hongze Cheng 已提交
384
  if (val) {
H
Hongze Cheng 已提交
385
    *val = (uint8_t*)TD_CODER_CURRENT(pCoder);
H
Hongze Cheng 已提交
386
  }
H
more  
Hongze Cheng 已提交
387

H
Hongze Cheng 已提交
388
  TD_CODER_MOVE_POS(pCoder, *len);
H
more  
Hongze Cheng 已提交
389 390 391
  return 0;
}

H
Hongze Cheng 已提交
392 393
static FORCE_INLINE int32_t tDecodeCStrAndLen(SDecoder* pCoder, char** val, uint32_t* len) {
  if (tDecodeBinary(pCoder, (uint8_t**)val, len) < 0) return -1;
H
more  
Hongze Cheng 已提交
394
  (*len) -= 1;
H
more  
Hongze Cheng 已提交
395 396 397
  return 0;
}

H
Hongze Cheng 已提交
398
static FORCE_INLINE int32_t tDecodeCStr(SDecoder* pCoder, char** val) {
H
Hongze Cheng 已提交
399
  uint32_t len;
H
Hongze Cheng 已提交
400
  return tDecodeCStrAndLen(pCoder, val, &len);
H
more  
Hongze Cheng 已提交
401 402
}

H
Hongze Cheng 已提交
403
static int32_t tDecodeCStrTo(SDecoder* pCoder, char* val) {
H
Hongze Cheng 已提交
404 405
  char*    pStr;
  uint32_t len;
H
Hongze Cheng 已提交
406
  if (tDecodeCStrAndLen(pCoder, &pStr, &len) < 0) return -1;
H
more  
Hongze Cheng 已提交
407

H
Hongze Cheng 已提交
408
  memcpy(val, pStr, len + 1);
H
more  
Hongze Cheng 已提交
409 410 411
  return 0;
}

H
Hongze Cheng 已提交
412 413
static FORCE_INLINE int32_t tDecodeBinaryAlloc(SDecoder* pCoder, void** val, uint64_t* len) {
  if (tDecodeU64v(pCoder, len) < 0) return -1;
L
Liu Jicong 已提交
414

H
Hongze Cheng 已提交
415
  if (TD_CODER_CHECK_CAPACITY_FAILED(pCoder, *len)) return -1;
wafwerar's avatar
wafwerar 已提交
416
  *val = taosMemoryMalloc(*len);
L
Liu Jicong 已提交
417
  if (*val == NULL) return -1;
H
Hongze Cheng 已提交
418
  memcpy(*val, TD_CODER_CURRENT(pCoder), *len);
L
Liu Jicong 已提交
419

H
Hongze Cheng 已提交
420
  TD_CODER_MOVE_POS(pCoder, *len);
L
Liu Jicong 已提交
421 422 423
  return 0;
}

H
Hongze Cheng 已提交
424 425
static FORCE_INLINE int32_t tDecodeCStrAndLenAlloc(SDecoder* pCoder, char** val, uint64_t* len) {
  if (tDecodeBinaryAlloc(pCoder, (void**)val, len) < 0) return -1;
L
Liu Jicong 已提交
426 427 428 429
  (*len) -= 1;
  return 0;
}

H
Hongze Cheng 已提交
430
static FORCE_INLINE int32_t tDecodeCStrAlloc(SDecoder* pCoder, char** val) {
L
Liu Jicong 已提交
431
  uint64_t len;
H
Hongze Cheng 已提交
432 433 434 435 436 437 438 439 440 441 442 443 444 445
  return tDecodeCStrAndLenAlloc(pCoder, val, &len);
}

static FORCE_INLINE bool tDecodeIsEnd(SDecoder* pCoder) { return (pCoder->size == pCoder->pos); }

static FORCE_INLINE void* tEncoderMalloc(SEncoder* pCoder, int32_t size) {
  void*      p = NULL;
  SCoderMem* pMem = (SCoderMem*)taosMemoryMalloc(sizeof(*pMem) + size);
  if (pMem) {
    pMem->next = pCoder->mList;
    pCoder->mList = pMem;
    p = (void*)&pMem[1];
  }
  return p;
L
Liu Jicong 已提交
446 447
}

H
Hongze Cheng 已提交
448 449 450 451 452 453 454 455 456 457
static FORCE_INLINE void* tDecoderMalloc(SDecoder* pCoder, int32_t size) {
  void*      p = NULL;
  SCoderMem* pMem = (SCoderMem*)taosMemoryMalloc(sizeof(*pMem) + size);
  if (pMem) {
    pMem->next = pCoder->mList;
    pCoder->mList = pMem;
    p = (void*)&pMem[1];
  }
  return p;
}
H
more  
Hongze Cheng 已提交
458

H
Hongze Cheng 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
// ===========================================
#define tPutV(p, v)                    \
  do {                                 \
    int32_t n = 0;                     \
    for (;;) {                         \
      if (v <= 0x7f) {                 \
        if (p) p[n] = v;               \
        n++;                           \
        break;                         \
      }                                \
      if (p) p[n] = (v & 0x7f) | 0x80; \
      n++;                             \
      v >>= 7;                         \
    }                                  \
    return n;                          \
  } while (0)
H
Hongze Cheng 已提交
475

H
Hongze Cheng 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
#define tGetV(p, v)                              \
  do {                                           \
    int32_t n = 0;                               \
    if (v) *v = 0;                               \
    for (;;) {                                   \
      if (p[n] <= 0x7f) {                        \
        if (v) (*v) |= (p[n] << (7 * n));        \
        n++;                                     \
        break;                                   \
      }                                          \
      if (v) (*v) |= ((p[n] & 0x7f) << (7 * n)); \
      n++;                                       \
    }                                            \
    return n;                                    \
  } while (0)

// PUT
static FORCE_INLINE int32_t tPutU8(uint8_t* p, uint8_t v) {
  if (p) ((uint8_t*)p)[0] = v;
  return sizeof(uint8_t);
}

static FORCE_INLINE int32_t tPutI8(uint8_t* p, int8_t v) {
  if (p) ((int8_t*)p)[0] = v;
  return sizeof(int8_t);
}

static FORCE_INLINE int32_t tPutU16(uint8_t* p, uint16_t v) {
  if (p) ((uint16_t*)p)[0] = v;
  return sizeof(uint16_t);
}

static FORCE_INLINE int32_t tPutI16(uint8_t* p, int16_t v) {
  if (p) ((int16_t*)p)[0] = v;
  return sizeof(int16_t);
}

static FORCE_INLINE int32_t tPutU32(uint8_t* p, uint32_t v) {
  if (p) ((uint32_t*)p)[0] = v;
  return sizeof(uint32_t);
}

static FORCE_INLINE int32_t tPutI32(uint8_t* p, int32_t v) {
  if (p) ((int32_t*)p)[0] = v;
  return sizeof(int32_t);
}

static FORCE_INLINE int32_t tPutU64(uint8_t* p, uint64_t v) {
  if (p) ((uint64_t*)p)[0] = v;
  return sizeof(uint64_t);
}

static FORCE_INLINE int32_t tPutI64(uint8_t* p, int64_t v) {
  if (p) ((int64_t*)p)[0] = v;
  return sizeof(int64_t);
}

static FORCE_INLINE int32_t tPutU16v(uint8_t* p, uint16_t v) { tPutV(p, v); }

static FORCE_INLINE int32_t tPutI16v(uint8_t* p, int16_t v) { return tPutU16v(p, ZIGZAGE(int16_t, v)); }

static FORCE_INLINE int32_t tPutU32v(uint8_t* p, uint32_t v) { tPutV(p, v); }

static FORCE_INLINE int32_t tPutI32v(uint8_t* p, int32_t v) { return tPutU32v(p, ZIGZAGE(int32_t, v)); }

static FORCE_INLINE int32_t tPutU64v(uint8_t* p, uint64_t v) { tPutV(p, v); }

static FORCE_INLINE int32_t tPutI64v(uint8_t* p, int64_t v) { return tPutU64v(p, ZIGZAGE(int64_t, v)); }

// GET
static FORCE_INLINE int32_t tGetU8(uint8_t* p, uint8_t* v) {
  if (v) *v = ((uint8_t*)p)[0];
  return sizeof(uint8_t);
}

static FORCE_INLINE int32_t tGetI8(uint8_t* p, int8_t* v) {
  if (v) *v = ((int8_t*)p)[0];
  return sizeof(int8_t);
}

static FORCE_INLINE int32_t tGetU16(uint8_t* p, uint16_t* v) {
  if (v) *v = ((uint16_t*)p)[0];
  return sizeof(uint16_t);
}

static FORCE_INLINE int32_t tGetI16(uint8_t* p, int16_t* v) {
  if (v) *v = ((int16_t*)p)[0];
  return sizeof(int16_t);
}

static FORCE_INLINE int32_t tGetU32(uint8_t* p, uint32_t* v) {
  if (v) *v = ((uint32_t*)p)[0];
  return sizeof(uint32_t);
}

static FORCE_INLINE int32_t tGetI32(uint8_t* p, int32_t* v) {
  if (v) *v = ((int32_t*)p)[0];
  return sizeof(int32_t);
}

static FORCE_INLINE int32_t tGetU64(uint8_t* p, uint64_t* v) {
  if (v) *v = ((uint64_t*)p)[0];
  return sizeof(uint64_t);
}

static FORCE_INLINE int32_t tGetI64(uint8_t* p, int64_t* v) {
  if (v) *v = ((int64_t*)p)[0];
  return sizeof(int64_t);
}

static FORCE_INLINE int32_t tGetU16v(uint8_t* p, uint16_t* v) { tGetV(p, v); }

static FORCE_INLINE int32_t tGetI16v(uint8_t* p, int16_t* v) {
  int32_t  n;
  uint16_t tv;

  n = tGetU16v(p, &tv);
  if (v) *v = ZIGZAGD(int16_t, tv);

  return n;
}

static FORCE_INLINE int32_t tGetU32v(uint8_t* p, uint32_t* v) { tGetV(p, v); }

static FORCE_INLINE int32_t tGetI32v(uint8_t* p, int32_t* v) {
  int32_t  n;
  uint32_t tv;

  n = tGetU32v(p, &tv);
  if (v) *v = ZIGZAGD(int32_t, tv);

  return n;
}

static FORCE_INLINE int32_t tGetU64v(uint8_t* p, uint64_t* v) { tGetV(p, v); }

static FORCE_INLINE int32_t tGetI64v(uint8_t* p, int64_t* v) {
  int32_t  n;
  uint64_t tv;

  n = tGetU64v(p, &tv);
  if (v) *v = ZIGZAGD(int64_t, tv);

  return n;
}

// =====================
static FORCE_INLINE int32_t tPutBinary(uint8_t* p, uint8_t* pData, uint32_t nData) {
  int n = 0;

  n += tPutU32v(p ? p + n : p, nData);
  if (p) memcpy(p + n, pData, nData);
H
Hongze Cheng 已提交
628 629 630 631 632
  n += nData;

  return n;
}

H
Hongze Cheng 已提交
633
static FORCE_INLINE int32_t tGetBinary(uint8_t* p, uint8_t** ppData, uint32_t* nData) {
H
Hongze Cheng 已提交
634
  int32_t  n = 0;
H
Hongze Cheng 已提交
635
  uint32_t nt;
H
Hongze Cheng 已提交
636

H
Hongze Cheng 已提交
637 638
  n += tGetU32v(p, &nt);
  if (nData) *nData = nt;
H
Hongze Cheng 已提交
639
  if (ppData) *ppData = p + n;
H
Hongze Cheng 已提交
640
  n += nt;
H
Hongze Cheng 已提交
641 642 643 644

  return n;
}

H
more  
Hongze Cheng 已提交
645 646 647 648
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
649
#endif /*_TD_UTIL_ENCODE_H_*/