tsdbReadImpl.h 5.4 KB
Newer Older
H
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_TSDB_READ_IMPL_H_
#define _TD_TSDB_READ_IMPL_H_

19 20 21 22 23 24 25
#include "tfs.h"
#include "tsdb.h"
#include "os.h"
#include "tsdbFile.h"
#include "tskiplist.h"
#include "tsdbMeta.h"

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

typedef struct {
  int32_t  tid;
  uint32_t len;
  uint32_t offset;
  uint32_t hasLast : 2;
  uint32_t numOfBlocks : 30;
  uint64_t uid;
  TSKEY    maxKey;
} SBlockIdx;

typedef struct {
  int64_t last : 1;
  int64_t offset : 63;
  int32_t algorithm : 8;
  int32_t numOfRows : 24;
  int32_t len;
H
refact  
Hongze Cheng 已提交
44
  int32_t keyLen;  // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
C
Cary Xu 已提交
45 46 47 48
  int16_t numOfSubBlocks;
  int16_t numOfCols;  // not including timestamp column
  TSKEY   keyFirst;
  TSKEY   keyLast;
49 50
#ifdef __TD_6117__
  int64_t hasAggr : 1;
C
Cary Xu 已提交
51 52
  int64_t blkVer : 7;
  int64_t aggrOffset : 56;
53 54
  int32_t aggrLen;
#endif
H
Hongze Cheng 已提交
55 56 57
} SBlock;

typedef struct {
H
refact  
Hongze Cheng 已提交
58 59 60 61
  int32_t  delimiter;  // For recovery usage
  int32_t  tid;
  uint64_t uid;
  SBlock   blocks[];
H
Hongze Cheng 已提交
62 63 64
} SBlockInfo;

typedef struct {
65 66 67 68
  int16_t  colId;
  int32_t  len;
  uint32_t type : 8;
  uint32_t offset : 24;
C
Cary Xu 已提交
69 70 71 72 73 74
  // int64_t  sum;
  // int64_t  max;
  // int64_t  min;
  // int16_t  maxIndex;
  // int16_t  minIndex;
  // int16_t  numOfNull;
75 76
  uint8_t  offsetH;
  char     padding[1];
H
Hongze Cheng 已提交
77 78
} SBlockCol;

79 80 81 82 83 84 85 86 87 88
typedef struct {
  int16_t colId;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
  int64_t sum;
  int64_t max;
  int64_t min;
} SAggrBlkCol;

89 90 91 92 93 94 95 96 97 98 99 100
// Code here just for back-ward compatibility
static FORCE_INLINE void tsdbSetBlockColOffset(SBlockCol *pBlockCol, uint32_t offset) {
  pBlockCol->offset = offset & ((((uint32_t)1) << 24) - 1);
  pBlockCol->offsetH = (uint8_t)(offset >> 24);
}

static FORCE_INLINE uint32_t tsdbGetBlockColOffset(SBlockCol *pBlockCol) {
  uint32_t offset1 = pBlockCol->offset;
  uint32_t offset2 = pBlockCol->offsetH;
  return (offset1 | (offset2 << 24));
}

H
Hongze Cheng 已提交
101
typedef struct {
H
refact  
Hongze Cheng 已提交
102 103 104
  int32_t   delimiter;  // For recovery usage
  int32_t   numOfCols;  // For recovery usage
  uint64_t  uid;        // For recovery usage
H
Hongze Cheng 已提交
105 106
  SBlockCol cols[];
} SBlockData;
107 108 109 110 111 112
typedef struct {
  int32_t     delimiter;  // For recovery usage
  int32_t     numOfCols;  // For recovery usage
  uint64_t    uid;        // For recovery usage
  SAggrBlkCol cols[];
} SAggrBlkData;
H
Hongze Cheng 已提交
113 114 115

struct SReadH {
  STsdbRepo * pRepo;
H
Hongze Cheng 已提交
116 117 118 119
  SDFileSet   rSet;     // FSET to read
  SArray *    aBlkIdx;  // SBlockIdx array
  STable *    pTable;   // table to read
  SBlockIdx * pBlkIdx;  // current reading table SBlockIdx
H
Hongze Cheng 已提交
120 121
  int         cidx;
  SBlockInfo *pBlkInfo;
H
Hongze Cheng 已提交
122
  SBlockData *pBlkData;  // Block info
C
Cary Xu 已提交
123
  SAggrBlkData *pAggrBlkData;  // Aggregate Block info
H
Hongze Cheng 已提交
124
  SDataCols * pDCols[2];
C
Cary Xu 已提交
125
  void *      pBuf;   // buffer
H
Hongze Cheng 已提交
126
  void *      pCBuf;  // compression buffer
127
  void *      pExBuf;  // extra buffer
H
Hongze Cheng 已提交
128 129
};

H
Hongze Cheng 已提交
130 131
#define TSDB_READ_REPO(rh) ((rh)->pRepo)
#define TSDB_READ_REPO_ID(rh) REPO_ID(TSDB_READ_REPO(rh))
H
refact  
Hongze Cheng 已提交
132
#define TSDB_READ_FSET(rh) (&((rh)->rSet))
H
Hongze Cheng 已提交
133
#define TSDB_READ_TABLE(rh) ((rh)->pTable)
H
Hongze Cheng 已提交
134 135 136
#define TSDB_READ_HEAD_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_HEAD)
#define TSDB_READ_DATA_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_DATA)
#define TSDB_READ_LAST_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_LAST)
137
#define TSDB_READ_AGGR_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_SMA)
C
Cary Xu 已提交
138
#define TSDB_READ_BUF(rh) ((rh)->pBuf)
H
Hongze Cheng 已提交
139
#define TSDB_READ_COMP_BUF(rh) ((rh)->pCBuf)
140
#define TSDB_READ_EXBUF(rh) ((rh)->pExBuf)
H
Hongze Cheng 已提交
141 142

#define TSDB_BLOCK_STATIS_SIZE(ncols) (sizeof(SBlockData) + sizeof(SBlockCol) * (ncols) + sizeof(TSCKSUM))
143
#define TSDB_BLOCK_AGGR_SIZE(ncols) (sizeof(SAggrBlkData) + sizeof(SAggrBlkCol) * (ncols) + sizeof(TSCKSUM))
H
Hongze Cheng 已提交
144 145 146 147 148 149 150 151

int   tsdbInitReadH(SReadH *pReadh, STsdbRepo *pRepo);
void  tsdbDestroyReadH(SReadH *pReadh);
int   tsdbSetAndOpenReadFSet(SReadH *pReadh, SDFileSet *pSet);
void  tsdbCloseAndUnsetFSet(SReadH *pReadh);
int   tsdbLoadBlockIdx(SReadH *pReadh);
int   tsdbSetReadTable(SReadH *pReadh, STable *pTable);
int   tsdbLoadBlockInfo(SReadH *pReadh, void *pTarget);
H
Hongze Cheng 已提交
152 153
int   tsdbLoadBlockData(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlockInfo);
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, int16_t *colIds, int numOfColsIds);
H
Hongze Cheng 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols);

static FORCE_INLINE int tsdbMakeRoom(void **ppBuf, size_t size) {
  void * pBuf = *ppBuf;
  size_t tsize = taosTSizeof(pBuf);

  if (tsize < size) {
    if (tsize == 0) tsize = 1024;

    while (tsize < size) {
      tsize *= 2;
    }

    *ppBuf = taosTRealloc(pBuf, tsize);
    if (*ppBuf == NULL) {
      terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
      return -1;
    }
  }

  return 0;
}
H
Hongze Cheng 已提交
179

180
#endif /*_TD_TSDB_READ_IMPL_H_*/