indexInt.h 4.4 KB
Newer Older
H
refact  
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_INDEX_INT_H_
#define _TD_INDEX_INT_H_

S
Shengliang Guan 已提交
19 20
#include "os.h"

dengyihao's avatar
dengyihao 已提交
21
#include "index.h"
dengyihao's avatar
dengyihao 已提交
22
#include "taos.h"
S
Shengliang Guan 已提交
23
#include "tarray.h"
dengyihao's avatar
dengyihao 已提交
24
#include "tchecksum.h"
25 26
#include "thash.h"
#include "tlog.h"
S
Shengliang Guan 已提交
27
#include "tutil.h"
dengyihao's avatar
dengyihao 已提交
28 29 30 31 32

#ifdef USE_LUCENE
#include <lucene++/Lucene_c.h>
#endif

H
refact  
Hongze Cheng 已提交
33 34 35 36
#ifdef __cplusplus
extern "C" {
#endif

dengyihao's avatar
dengyihao 已提交
37
typedef enum { LT, LE, GT, GE } RangeType;
38
typedef enum { kTypeValue, kTypeDeletion } STermValueType;
dengyihao's avatar
dengyihao 已提交
39

dengyihao's avatar
dengyihao 已提交
40
typedef struct SIndexStat {
41 42 43 44 45 46
  int32_t totalAdded;    //
  int32_t totalDeled;    //
  int32_t totalUpdated;  //
  int32_t totalTerms;    //
  int32_t distinctCol;   // distinct column
} SIndexStat;
dengyihao's avatar
dengyihao 已提交
47

dengyihao's avatar
dengyihao 已提交
48
struct SIndex {
dengyihao's avatar
dengyihao 已提交
49
  int64_t   refId;
dengyihao's avatar
dengyihao 已提交
50 51 52
  void*     cache;
  void*     tindex;
  SHashObj* colObj;  // < field name, field id>
53 54 55 56

  int64_t suid;      // current super table id, -1 is normal table
  int32_t cVersion;  // current version allocated to cache

dengyihao's avatar
dengyihao 已提交
57 58
  char* path;

dengyihao's avatar
dengyihao 已提交
59
  SIndexStat    stat;
wafwerar's avatar
wafwerar 已提交
60
  TdThreadMutex mtx;
dengyihao's avatar
dengyihao 已提交
61
  tsem_t        sem;
dengyihao's avatar
dengyihao 已提交
62
  bool          quit;
63
};
dengyihao's avatar
dengyihao 已提交
64 65

struct SIndexOpts {
66
#ifdef USE_LUCENE
dengyihao's avatar
dengyihao 已提交
67
  void* opts;
68
#endif
dengyihao's avatar
dengyihao 已提交
69 70

#ifdef USE_INVERTED_INDEX
71
  int32_t cacheSize;  // MB
dengyihao's avatar
dengyihao 已提交
72 73
  // add cache module later
#endif
dengyihao's avatar
dengyihao 已提交
74
  int32_t cacheOpt;  // MB
dengyihao's avatar
dengyihao 已提交
75 76
};

dengyihao's avatar
dengyihao 已提交
77
struct SIndexMultiTermQuery {
78
  EIndexOperatorType opera;
dengyihao's avatar
dengyihao 已提交
79
  SArray*            query;
dengyihao's avatar
dengyihao 已提交
80 81 82 83
};

// field and key;
typedef struct SIndexTerm {
84 85 86
  int64_t            suid;
  SIndexOperOnColumn operType;  // oper type, add/del/update
  uint8_t            colType;   // term data type, str/interger/json
dengyihao's avatar
dengyihao 已提交
87
  char*              colName;
88
  int32_t            nColName;
dengyihao's avatar
dengyihao 已提交
89
  char*              colVal;
90
  int32_t            nColVal;
dengyihao's avatar
dengyihao 已提交
91 92 93
} SIndexTerm;

typedef struct SIndexTermQuery {
dengyihao's avatar
dengyihao 已提交
94
  SIndexTerm*     term;
dengyihao's avatar
dengyihao 已提交
95
  EIndexQueryType qType;
dengyihao's avatar
dengyihao 已提交
96 97
} SIndexTermQuery;

dengyihao's avatar
dengyihao 已提交
98 99 100
typedef struct Iterate Iterate;

typedef struct IterateValue {
dengyihao's avatar
dengyihao 已提交
101 102 103 104
  int8_t   type;  // opera type, ADD_VALUE/DELETE_VALUE
  uint64_t ver;   // data ver, tfile data version is 0
  char*    colVal;

dengyihao's avatar
dengyihao 已提交
105
  SArray* val;
dengyihao's avatar
dengyihao 已提交
106 107 108 109 110 111 112
} IterateValue;

typedef struct Iterate {
  void*        iter;
  IterateValue val;
  bool (*next)(Iterate* iter);
  IterateValue* (*getValue)(Iterate* iter);
dengyihao's avatar
dengyihao 已提交
113
} Iterate;
dengyihao's avatar
dengyihao 已提交
114 115 116

void iterateValueDestroy(IterateValue* iv, bool destroy);

dengyihao's avatar
dengyihao 已提交
117 118
extern void* indexQhandle;

dengyihao's avatar
dengyihao 已提交
119 120 121 122 123 124 125
typedef struct TFileCacheKey {
  uint64_t suid;
  uint8_t  colType;
  char*    colName;
  int32_t  nColName;
} ICacheKey;

dengyihao's avatar
dengyihao 已提交
126
int indexFlushCacheToTFile(SIndex* sIdx, void*);
dengyihao's avatar
dengyihao 已提交
127

dengyihao's avatar
dengyihao 已提交
128 129 130 131 132
int64_t indexAddRef(void* p);
int32_t indexRemoveRef(int64_t ref);
void    indexAcquireRef(int64_t ref);
void    indexReleaseRef(int64_t ref);

dengyihao's avatar
dengyihao 已提交
133
int32_t indexSerialCacheKey(ICacheKey* key, char* buf);
dengyihao's avatar
dengyihao 已提交
134 135
// int32_t indexSerialKey(ICacheKey* key, char* buf);
// int32_t indexSerialTermKey(SIndexTerm* itm, char* buf);
dengyihao's avatar
dengyihao 已提交
136

dengyihao's avatar
dengyihao 已提交
137
// clang-format off
dengyihao's avatar
dengyihao 已提交
138 139 140 141 142 143
#define indexFatal(...) do { if (sDebugFlag & DEBUG_FATAL) {  taosPrintLog("INDEX FATAL ", DEBUG_FATAL, 255, __VA_ARGS__); }} while (0)
#define indexError(...) do { if (sDebugFlag & DEBUG_ERROR) {  taosPrintLog("INDEX ERROR ", DEBUG_ERROR, 255, __VA_ARGS__); }} while (0)
#define indexWarn(...)  do { if (sDebugFlag & DEBUG_WARN)  {  taosPrintLog("INDEX WARN ", DEBUG_WARN, 255, __VA_ARGS__); }} while (0)
#define indexInfo(...)  do { if (sDebugFlag & DEBUG_INFO)  { taosPrintLog("INDEX ", DEBUG_INFO, 255, __VA_ARGS__); } } while (0)
#define indexDebug(...) do { if (sDebugFlag & DEBUG_DEBUG) { taosPrintLog("INDEX ", DEBUG_DEBUG, sDebugFlag, __VA_ARGS__);} } while (0)
#define indexTrace(...) do { if (sDebugFlag & DEBUG_TRACE) { taosPrintLog("INDEX ", DEBUG_TRACE, sDebugFlag, __VA_ARGS__);} } while (0)
dengyihao's avatar
dengyihao 已提交
144
// clang-format on
dengyihao's avatar
dengyihao 已提交
145 146

#define INDEX_TYPE_CONTAIN_EXTERN_TYPE(ty, exTy) (((ty >> 4) & (exTy)) != 0)
dengyihao's avatar
dengyihao 已提交
147 148 149

#define INDEX_TYPE_GET_TYPE(ty) (ty & 0x0F)

dengyihao's avatar
dengyihao 已提交
150 151 152 153 154
#define INDEX_TYPE_ADD_EXTERN_TYPE(ty, exTy) \
  do {                                       \
    uint8_t oldTy = ty;                      \
    ty = (ty >> 4) | exTy;                   \
    ty = (ty << 4) | oldTy;                  \
155
  } while (0)
dengyihao's avatar
dengyihao 已提交
156

H
refact  
Hongze Cheng 已提交
157 158 159 160
#ifdef __cplusplus
}
#endif

dengyihao's avatar
dengyihao 已提交
161
#endif /*_TD_INDEX_INT_H_*/