Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6c89b0ec
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6c89b0ec
编写于
1月 10, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more tkv
上级
109a891b
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
78 addition
and
7 deletion
+78
-7
source/libs/tkv/inc/tDiskMgr.h
source/libs/tkv/inc/tDiskMgr.h
+6
-2
source/libs/tkv/inc/tPage.h
source/libs/tkv/inc/tPage.h
+41
-0
source/libs/tkv/inc/tkvDef.h
source/libs/tkv/inc/tkvDef.h
+9
-3
source/libs/tkv/src/tDiskMgr.c
source/libs/tkv/src/tDiskMgr.c
+12
-2
source/libs/tkv/test/tDiskMgrTest.cpp
source/libs/tkv/test/tDiskMgrTest.cpp
+10
-0
未找到文件。
source/libs/tkv/inc/tDiskMgr.h
浏览文件 @
6c89b0ec
...
...
@@ -22,10 +22,14 @@ extern "C" {
#include "os.h"
#include "tkvDef.h"
typedef
struct
SDiskMgr
SDiskMgr
;
int
tdmReadPage
(
SDiskMgr
*
pDiskMgr
,
int32_t
pgid
,
void
*
pData
);
int
tdmWritePage
(
SDiskMgr
*
pDiskMgr
,
int32_t
pgid
,
const
void
*
pData
);
int
tdmOpen
(
SDiskMgr
**
ppDiskMgr
,
const
char
*
fname
,
uint16_t
pgsize
);
int
tdmClose
(
SDiskMgr
*
pDiskMgr
);
int
tdmReadPage
(
SDiskMgr
*
pDiskMgr
,
pgid_t
pgid
,
void
*
pData
);
int
tdmWritePage
(
SDiskMgr
*
pDiskMgr
,
pgid_t
pgid
,
const
void
*
pData
);
int32_t
tdmAllocPage
(
SDiskMgr
*
pDiskMgr
);
#ifdef __cplusplus
...
...
source/libs/tkv/inc/tPage.h
0 → 100644
浏览文件 @
6c89b0ec
/*
* 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_TKV_PAGE_H_
#define _TD_TKV_PAGE_H_
#include "os.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
{
uint16_t
dbver
;
uint16_t
pgsize
;
uint32_t
cksm
;
}
SPgHdr
;
typedef
struct
{
SPgHdr
chdr
;
uint16_t
used
;
// number of used slots
uint16_t
loffset
;
// the offset of the starting location of the last slot used
}
SSlottedPgHdr
;
#ifdef __cplusplus
}
#endif
#endif
/*_TD_TKV_PAGE_H_*/
\ No newline at end of file
source/libs/tkv/inc/tkv
Macro
.h
→
source/libs/tkv/inc/tkv
Def
.h
浏览文件 @
6c89b0ec
...
...
@@ -13,15 +13,21 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TD_TKV_MACRO_H_
#define _TD_TKV_MACRO_H_
#ifndef _TD_TKV_DEF_H_
#define _TD_TKV_DEF_H_
#include "os.h"
#ifdef __cplusplus
extern
"C"
{
#endif
// pgid_t
typedef
int32_t
pgid_t
;
#define TKV_IVLD_PGID ((pgid_t)-1)
#ifdef __cplusplus
}
#endif
#endif
/*_TD_TKV_MACRO_H_*/
\ No newline at end of file
#endif
/*_TD_TKV_DEF_H_*/
\ No newline at end of file
source/libs/tkv/src/tDiskMgr.c
浏览文件 @
6c89b0ec
...
...
@@ -24,13 +24,23 @@ struct SDiskMgr {
#define PAGE_OFFSET(PGID, PGSIZE) ((PGID) * (PGSIZE))
int
tdmReadPage
(
SDiskMgr
*
pDiskMgr
,
int32_t
pgid
,
void
*
pData
)
{
int
tdmOpen
(
SDiskMgr
**
ppDiskMgr
,
const
char
*
fname
,
uint16_t
pgsize
)
{
// TODO
return
0
;
}
int
tdmClose
(
SDiskMgr
*
pDiskMgr
)
{
// TODO
return
0
;
}
int
tdmReadPage
(
SDiskMgr
*
pDiskMgr
,
pgid_t
pgid
,
void
*
pData
)
{
taosLSeekFile
(
pDiskMgr
->
fd
,
PAGE_OFFSET
(
pgid
,
pDiskMgr
->
pgsize
),
SEEK_SET
);
taosReadFile
(
pDiskMgr
->
fd
,
pData
,
pDiskMgr
->
pgsize
);
return
0
;
}
int
tdmWritePage
(
SDiskMgr
*
pDiskMgr
,
int32
_t
pgid
,
const
void
*
pData
)
{
int
tdmWritePage
(
SDiskMgr
*
pDiskMgr
,
pgid
_t
pgid
,
const
void
*
pData
)
{
taosLSeekFile
(
pDiskMgr
->
fd
,
PAGE_OFFSET
(
pgid
,
pDiskMgr
->
pgsize
),
SEEK_SET
);
taosWriteFile
(
pDiskMgr
->
fd
,
pData
,
pDiskMgr
->
pgsize
);
return
0
;
...
...
source/libs/tkv/test/tDiskMgrTest.cpp
0 → 100644
浏览文件 @
6c89b0ec
#include "gtest/gtest.h"
#include "iostream"
#include "tDiskMgr.h"
TEST
(
tDiskMgrTest
,
simple_test
)
{
// TODO
std
::
cout
<<
"This is in tDiskMgrTest::simple_test"
<<
std
::
endl
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录