qextbuffer.h 6.7 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 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 TDENGINE_TEXTBUFFER_H
#define TDENGINE_TEXTBUFFER_H

#ifdef __cplusplus
extern "C" {
#endif

22

H
hjxilinx 已提交
23
#include "os.h"
S
slguan 已提交
24
#include "taosmsg.h"
25 26

#include "tarray.h"
H
hjxilinx 已提交
27
#include "tutil.h"
28 29
#include "dataformat.h"
#include "talgo.h"
H
hzcheng 已提交
30

H
hjxilinx 已提交
31 32 33 34
#define DEFAULT_PAGE_SIZE 16384  // 16k larger than the SHistoInfo
#define MIN_BUFFER_SIZE (1 << 19)
#define MAX_TMPFILE_PATH_LENGTH PATH_MAX
#define INITIAL_ALLOCATION_BUFFER_SIZE 64
H
hzcheng 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

typedef enum EXT_BUFFER_FLUSH_MODEL {
  /*
   * all data that have been flushed to disk is belonged to the same group
   * which means, all data in disk are sorted, or order is not matter in this case
   */
  SINGLE_APPEND_MODEL,

  /*
   * each flush operation to disk is completely independant to any other flush operation
   * we simply merge several set of data in one file, to reduce the count of flat files
   * in disk. So in this case, we need to keep the flush-out information in tFlushoutInfo
   * structure.
   */
  MULTIPLE_APPEND_MODEL,
} EXT_BUFFER_FLUSH_MODEL;

typedef struct tFlushoutInfo {
  uint32_t startPageId;
  uint32_t numOfPages;
} tFlushoutInfo;

typedef struct tFlushoutData {
  uint32_t       nAllocSize;
  uint32_t       nLength;
  tFlushoutInfo *pFlushoutInfo;
} tFlushoutData;

63
typedef struct SExtFileInfo {
H
hzcheng 已提交
64
  uint32_t      nFileSize;  // in pages
H
hjxilinx 已提交
65
  uint32_t      pageSize;
H
hzcheng 已提交
66 67
  uint32_t      numOfElemsInFile;
  tFlushoutData flushoutData;
68
} SExtFileInfo;
H
hzcheng 已提交
69 70 71 72 73 74 75 76 77 78 79

typedef struct tFilePage {
  uint64_t numOfElems;
  char     data[];
} tFilePage;

typedef struct tFilePagesItem {
  struct tFilePagesItem *pNext;
  tFilePage              item;
} tFilePagesItem;

S
slguan 已提交
80 81
typedef struct SSchemaEx {
  struct SSchema field;
H
hjxilinx 已提交
82
  int16_t        offset;
S
slguan 已提交
83
} SSchemaEx;
H
hjxilinx 已提交
84 85 86 87 88

typedef struct SColumnModel {
  int32_t    capacity;
  int32_t    numOfCols;
  int16_t    rowSize;
S
slguan 已提交
89
  SSchemaEx *pFields;
H
hjxilinx 已提交
90
} SColumnModel;
H
hzcheng 已提交
91

H
hjxilinx 已提交
92 93
typedef struct SColumnOrderInfo {
  int32_t numOfCols;
H
hzcheng 已提交
94
  int16_t pData[];
H
hjxilinx 已提交
95
} SColumnOrderInfo;
H
hzcheng 已提交
96 97

typedef struct tOrderDescriptor {
H
hjxilinx 已提交
98 99 100
  SColumnModel *   pColumnModel;
  int32_t          tsOrder;  // timestamp order type if exists
  SColumnOrderInfo orderIdx;
H
hzcheng 已提交
101 102 103
} tOrderDescriptor;

typedef struct tExtMemBuffer {
H
hjxilinx 已提交
104
  int32_t inMemCapacity;
H
hzcheng 已提交
105
  int32_t nElemSize;
H
hjxilinx 已提交
106 107
  int32_t pageSize;
  int32_t numOfTotalElems;
H
hzcheng 已提交
108 109
  int32_t numOfElemsInBuffer;
  int32_t numOfElemsPerPage;
H
hjxilinx 已提交
110
  int16_t numOfInMemPages;
H
hzcheng 已提交
111 112 113 114

  tFilePagesItem *pHead;
  tFilePagesItem *pTail;

H
hjxilinx 已提交
115 116
  char *    path;
  FILE *    file;
117
  SExtFileInfo fileMeta;
H
hzcheng 已提交
118

H
hjxilinx 已提交
119
  SColumnModel *         pColumnModel;
H
hzcheng 已提交
120 121 122
  EXT_BUFFER_FLUSH_MODEL flushModel;
} tExtMemBuffer;

123 124 125 126 127
//typedef struct tTagSchema {
//  struct SSchema *pSchema;
//  int32_t         numOfCols;
//  int32_t         colOffset[];
//} tTagSchema;
S
slguan 已提交
128

H
hjxilinx 已提交
129 130 131 132 133 134
/**
 *
 * @param inMemSize
 * @param elemSize
 * @param pModel
 * @return
H
hzcheng 已提交
135
 */
H
hjxilinx 已提交
136
tExtMemBuffer *createExtMemBuffer(int32_t inMemSize, int32_t elemSize, SColumnModel *pModel);
H
hzcheng 已提交
137

H
hjxilinx 已提交
138 139 140 141
/**
 *
 * @param pMemBuffer
 * @return
H
hzcheng 已提交
142
 */
H
hjxilinx 已提交
143
void *destoryExtMemBuffer(tExtMemBuffer *pMemBuffer);
H
hzcheng 已提交
144

H
hjxilinx 已提交
145
/**
H
hzcheng 已提交
146 147 148 149 150 151 152 153
 * @param pMemBuffer
 * @param data       input data pointer
 * @param numOfRows  number of rows in data
 * @param pModel     column format model
 * @return           number of pages in memory
 */
int16_t tExtMemBufferPut(tExtMemBuffer *pMemBuffer, void *data, int32_t numOfRows);

H
hjxilinx 已提交
154 155 156 157
/**
 *
 * @param pMemBuffer
 * @return
H
hzcheng 已提交
158 159 160
 */
bool tExtMemBufferFlush(tExtMemBuffer *pMemBuffer);

H
hjxilinx 已提交
161 162
/**
 *
H
hzcheng 已提交
163 164 165 166 167 168 169 170 171 172 173 174
 * remove all data that has been put into buffer, including in buffer or
 * ext-buffer(disk)
 */
void tExtMemBufferClear(tExtMemBuffer *pMemBuffer);

/*
 * this function should be removed.
 * since the flush to disk operation is transparent to client this structure should provide stream operation for data,
 * and there is an internal cursor point to the data.
 */
bool tExtMemBufferLoadData(tExtMemBuffer *pMemBuffer, tFilePage *pFilePage, int32_t flushIdx, int32_t pageIdx);

H
hjxilinx 已提交
175 176 177 178 179
/**
 *
 * @param pMemBuffer
 * @return
 */
H
hzcheng 已提交
180 181
bool tExtMemBufferIsAllDataInMem(tExtMemBuffer *pMemBuffer);

H
hjxilinx 已提交
182 183 184 185 186 187 188
/**
 *
 * @param fields
 * @param numOfCols
 * @param blockCapacity
 * @return
 */
S
slguan 已提交
189
SColumnModel *createColumnModel(SSchema *fields, int32_t numOfCols, int32_t blockCapacity);
H
hjxilinx 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

/**
 *
 * @param pSrc
 * @return
 */
SColumnModel *cloneColumnModel(SColumnModel *pSrc);

/**
 *
 * @param pModel
 */
void destroyColumnModel(SColumnModel *pModel);

/*
 * compress data into consecutive block without hole in data
 */
void tColModelCompact(SColumnModel *pModel, tFilePage *inputBuffer, int32_t maxElemsCapacity);

void     tColModelErase(SColumnModel *pModel, tFilePage *inputBuffer, int32_t maxCapacity, int32_t s, int32_t e);
S
slguan 已提交
210
SSchema *getColumnModelSchema(SColumnModel *pColumnModel, int32_t index);
H
hzcheng 已提交
211

H
hjxilinx 已提交
212
int16_t getColumnModelOffset(SColumnModel *pColumnModel, int32_t index);
H
hzcheng 已提交
213 214 215 216 217 218 219 220 221

typedef struct SSrcColumnInfo {
  int32_t functionId;
  int32_t type;
} SSrcColumnInfo;

/*
 * display data in column format model for debug purpose only
 */
H
hjxilinx 已提交
222
void tColModelDisplay(SColumnModel *pModel, void *pData, int32_t numOfRows, int32_t maxCount);
H
hzcheng 已提交
223

H
hjxilinx 已提交
224
void tColModelDisplayEx(SColumnModel *pModel, void *pData, int32_t numOfRows, int32_t maxCount, SSrcColumnInfo *pInfo);
H
hzcheng 已提交
225

H
hjxilinx 已提交
226 227
tOrderDescriptor *tOrderDesCreate(const int32_t *orderColIdx, int32_t numOfOrderCols, SColumnModel *pModel,
                                  int32_t tsOrderType);
H
hzcheng 已提交
228 229 230

void tOrderDescDestroy(tOrderDescriptor *pDesc);

H
hjxilinx 已提交
231
void tColModelAppend(SColumnModel *dstModel, tFilePage *dstPage, void *srcData, int32_t srcStartRows,
H
hzcheng 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
                     int32_t numOfRowsToWrite, int32_t srcCapacity);

typedef int (*__col_compar_fn_t)(tOrderDescriptor *, int32_t numOfRows, int32_t idx1, int32_t idx2, char *data);

void tColDataQSort(tOrderDescriptor *, int32_t numOfRows, int32_t start, int32_t end, char *data, int32_t orderType);

int32_t compare_sa(tOrderDescriptor *, int32_t numOfRows, int32_t idx1, int32_t idx2, char *data);

int32_t compare_sd(tOrderDescriptor *, int32_t numOfRows, int32_t idx1, int32_t idx2, char *data);

int32_t compare_a(tOrderDescriptor *, int32_t numOfRow1, int32_t s1, char *data1, int32_t numOfRow2, int32_t s2,
                  char *data2);

int32_t compare_d(tOrderDescriptor *, int32_t numOfRow1, int32_t s1, char *data1, int32_t numOfRow2, int32_t s2,
                  char *data2);

#ifdef __cplusplus
}
#endif

#endif  // TBASE_SORT_H