qExtbuffer.h 6.5 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

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

#include "tarray.h"
H
hjxilinx 已提交
26
#include "tutil.h"
S
slguan 已提交
27
#include "tdataformat.h"
28
#include "talgo.h"
H
hzcheng 已提交
29

H
Haojun Liao 已提交
30
#define MAX_TMPFILE_PATH_LENGTH        PATH_MAX
H
hjxilinx 已提交
31
#define INITIAL_ALLOCATION_BUFFER_SIZE 64
H
Haojun Liao 已提交
32
#define DEFAULT_PAGE_SIZE              (1024L)  // 16k larger than the SHistoInfo
H
hzcheng 已提交
33 34 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

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;

61
typedef struct SExtFileInfo {
H
hzcheng 已提交
62
  uint32_t      nFileSize;  // in pages
H
hjxilinx 已提交
63
  uint32_t      pageSize;
H
hzcheng 已提交
64 65
  uint32_t      numOfElemsInFile;
  tFlushoutData flushoutData;
66
} SExtFileInfo;
H
hzcheng 已提交
67 68

typedef struct tFilePage {
69
  uint64_t num;
H
hzcheng 已提交
70 71 72 73 74 75 76 77
  char     data[];
} tFilePage;

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

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

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

H
hjxilinx 已提交
90 91
typedef struct SColumnOrderInfo {
  int32_t numOfCols;
H
Haojun Liao 已提交
92
  int16_t colIndex[];
H
hjxilinx 已提交
93
} SColumnOrderInfo;
H
hzcheng 已提交
94 95

typedef struct tOrderDescriptor {
H
hjxilinx 已提交
96 97
  SColumnModel *   pColumnModel;
  int32_t          tsOrder;  // timestamp order type if exists
H
Haojun Liao 已提交
98
  SColumnOrderInfo orderInfo;
H
hzcheng 已提交
99 100 101
} tOrderDescriptor;

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

  tFilePagesItem *pHead;
  tFilePagesItem *pTail;

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

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

H
hjxilinx 已提交
121 122 123 124 125 126
/**
 *
 * @param inMemSize
 * @param elemSize
 * @param pModel
 * @return
H
hzcheng 已提交
127
 */
H
Haojun Liao 已提交
128
tExtMemBuffer *createExtMemBuffer(int32_t inMemSize, int32_t elemSize, int32_t pagesize, SColumnModel *pModel);
H
hzcheng 已提交
129

H
hjxilinx 已提交
130 131 132 133
/**
 *
 * @param pMemBuffer
 * @return
H
hzcheng 已提交
134
 */
H
hjxilinx 已提交
135
void *destoryExtMemBuffer(tExtMemBuffer *pMemBuffer);
H
hzcheng 已提交
136

H
hjxilinx 已提交
137
/**
H
hzcheng 已提交
138 139 140 141 142 143 144 145
 * @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 已提交
146 147 148 149
/**
 *
 * @param pMemBuffer
 * @return
H
hzcheng 已提交
150
 */
151
int32_t tExtMemBufferFlush(tExtMemBuffer *pMemBuffer);
H
hzcheng 已提交
152

H
hjxilinx 已提交
153 154
/**
 *
H
hzcheng 已提交
155 156 157 158 159 160 161 162 163 164 165 166
 * 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 已提交
167 168 169 170 171
/**
 *
 * @param pMemBuffer
 * @return
 */
H
hzcheng 已提交
172 173
bool tExtMemBufferIsAllDataInMem(tExtMemBuffer *pMemBuffer);

H
hjxilinx 已提交
174 175 176 177 178 179 180
/**
 *
 * @param fields
 * @param numOfCols
 * @param blockCapacity
 * @return
 */
S
slguan 已提交
181
SColumnModel *createColumnModel(SSchema *fields, int32_t numOfCols, int32_t blockCapacity);
H
hjxilinx 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201

/**
 *
 * @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 已提交
202
SSchema *getColumnModelSchema(SColumnModel *pColumnModel, int32_t index);
H
hzcheng 已提交
203

H
hjxilinx 已提交
204
int16_t getColumnModelOffset(SColumnModel *pColumnModel, int32_t index);
H
hzcheng 已提交
205 206 207 208 209 210 211 212 213

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

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

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

H
hjxilinx 已提交
218 219
tOrderDescriptor *tOrderDesCreate(const int32_t *orderColIdx, int32_t numOfOrderCols, SColumnModel *pModel,
                                  int32_t tsOrderType);
H
hzcheng 已提交
220 221 222

void tOrderDescDestroy(tOrderDescriptor *pDesc);

H
hjxilinx 已提交
223
void tColModelAppend(SColumnModel *dstModel, tFilePage *dstPage, void *srcData, int32_t srcStartRows,
H
hzcheng 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
                     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