91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
/*
 | 
						|
 * 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 __INDEX_CACHE_H__
 | 
						|
#define __INDEX_CACHE_H__
 | 
						|
 | 
						|
#include "indexInt.h"
 | 
						|
#include "indexUtil.h"
 | 
						|
#include "tskiplist.h"
 | 
						|
 | 
						|
// ----------------- key structure in skiplist ---------------------
 | 
						|
 | 
						|
/* A data row, the format is like below
 | 
						|
 * content: |<---colVal---->|<-- version--->|<-- uid--->|<-- colType --->|<--operaType--->|
 | 
						|
 */
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct MemTable {
 | 
						|
  T_REF_DECLARE()
 | 
						|
  SSkipList* mem;
 | 
						|
  void*      pCache;
 | 
						|
} MemTable;
 | 
						|
typedef struct IndexCache {
 | 
						|
  T_REF_DECLARE()
 | 
						|
  MemTable *mem, *imm;
 | 
						|
  int32_t   merging;
 | 
						|
  SIndex*   index;
 | 
						|
  char*     colName;
 | 
						|
  int64_t   version;
 | 
						|
  int64_t   occupiedMem;
 | 
						|
  int8_t    type;
 | 
						|
  uint64_t  suid;
 | 
						|
 | 
						|
  TdThreadMutex mtx;
 | 
						|
  TdThreadCond  finished;
 | 
						|
} IndexCache;
 | 
						|
 | 
						|
#define CACHE_VERSION(cache) atomic_load_64(&cache->version)
 | 
						|
 | 
						|
typedef struct CacheTerm {
 | 
						|
  // key
 | 
						|
  char*   colVal;
 | 
						|
  int64_t version;
 | 
						|
  // value
 | 
						|
  uint64_t uid;
 | 
						|
  int8_t   colType;
 | 
						|
 | 
						|
  SIndexOperOnColumn operaType;
 | 
						|
} CacheTerm;
 | 
						|
//
 | 
						|
 | 
						|
IndexCache* idxCacheCreate(SIndex* idx, uint64_t suid, const char* colName, int8_t type);
 | 
						|
 | 
						|
void idxCacheForceToMerge(void* cache);
 | 
						|
void idxCacheDestroy(void* cache);
 | 
						|
void idxCacheBroadcast(void* cache);
 | 
						|
void idxCacheWait(void* cache);
 | 
						|
 | 
						|
Iterate* idxCacheIteratorCreate(IndexCache* cache);
 | 
						|
void     idxCacheIteratorDestroy(Iterate* iiter);
 | 
						|
 | 
						|
int idxCachePut(void* cache, SIndexTerm* term, uint64_t uid);
 | 
						|
 | 
						|
// int indexCacheGet(void *cache, uint64_t *rst);
 | 
						|
int idxCacheSearch(void* cache, SIndexTermQuery* query, SIdxTRslt* tr, STermValueType* s);
 | 
						|
 | 
						|
void idxCacheRef(IndexCache* cache);
 | 
						|
void idxCacheUnRef(IndexCache* cache);
 | 
						|
 | 
						|
void idxCacheDebug(IndexCache* cache);
 | 
						|
 | 
						|
void idxCacheDestroyImm(IndexCache* cache);
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |