80 lines
2.4 KiB
C
80 lines
2.4 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 _TQ_META_STORE_H_
|
|
#define _TQ_META_STORE_H_
|
|
|
|
#include "os.h"
|
|
#include "tq.h"
|
|
|
|
#define TQ_BUCKET_SIZE 0xFF
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct TqMetaHandle {
|
|
int64_t key;
|
|
int64_t offset;
|
|
void *valueInUse;
|
|
void *valueInTxn;
|
|
} TqMetaHandle;
|
|
|
|
typedef struct TqMetaList {
|
|
TqMetaHandle handle;
|
|
struct TqMetaList* next;
|
|
//struct TqMetaList* inTxnPrev;
|
|
//struct TqMetaList* inTxnNext;
|
|
struct TqMetaList* unpersistPrev;
|
|
struct TqMetaList* unpersistNext;
|
|
} TqMetaList;
|
|
|
|
typedef struct TqMetaStore {
|
|
TqMetaList* bucket[TQ_BUCKET_SIZE];
|
|
//a table head, key is empty
|
|
TqMetaList* unpersistHead;
|
|
int fileFd; //TODO:temporaral use, to be replaced by unified tfile
|
|
int idxFd; //TODO:temporaral use, to be replaced by unified tfile
|
|
int (*serializer)(TqGroupHandle*, void**);
|
|
const void* (*deserializer)(const void*, TqGroupHandle*);
|
|
void (*deleter)(void*);
|
|
} TqMetaStore;
|
|
|
|
TqMetaStore* tqStoreOpen(const char* path,
|
|
int serializer(TqGroupHandle*, void**),
|
|
const void* deserializer(const void*, TqGroupHandle*),
|
|
void deleter(void*));
|
|
int32_t tqStoreClose(TqMetaStore*);
|
|
//int32_t tqStoreDelete(TqMetaStore*);
|
|
//int32_t TqStoreCommitAll(TqMetaStore*);
|
|
int32_t tqStorePersist(TqMetaStore*);
|
|
|
|
TqMetaHandle* tqHandleGet(TqMetaStore*, int64_t key);
|
|
int32_t tqHandlePut(TqMetaStore*, int64_t key, void* value);
|
|
//do commit
|
|
int32_t tqHandleCommit(TqMetaStore*, int64_t key);
|
|
//delete uncommitted
|
|
int32_t tqHandleAbort(TqMetaStore*, int64_t key);
|
|
//delete committed
|
|
int32_t tqHandleDel(TqMetaStore*, int64_t key);
|
|
//delete both committed and uncommitted
|
|
int32_t tqHandleClear(TqMetaStore*, int64_t key);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ifndef _TQ_META_STORE_H_ */
|