Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
9842da79
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9842da79
编写于
2月 23, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
932a77b5
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
9 addition
and
7 deletion
+9
-7
source/libs/tdb/CMakeLists.txt
source/libs/tdb/CMakeLists.txt
+1
-0
source/libs/tdb/src/db/tdbEnv.c
source/libs/tdb/src/db/tdbEnv.c
+3
-1
source/libs/tdb/src/db/tdbUtil.c
source/libs/tdb/src/db/tdbUtil.c
+1
-1
source/libs/tdb/src/inc/tdbEnv.h
source/libs/tdb/src/inc/tdbEnv.h
+2
-0
source/libs/tdb/src/inc/tdbInt.h
source/libs/tdb/src/inc/tdbInt.h
+1
-4
source/libs/tdb/src/inc/tdbUtil.h
source/libs/tdb/src/inc/tdbUtil.h
+1
-1
未找到文件。
source/libs/tdb/CMakeLists.txt
浏览文件 @
9842da79
...
...
@@ -9,6 +9,7 @@ target_sources(tdb
PRIVATE
"src/db/tdbPCache.c"
"src/db/tdbPFile.c"
"src/db/tdbUtil.c"
)
target_include_directories
(
...
...
source/libs/tdb/src/db/tdbEnv.c
浏览文件 @
9842da79
...
...
@@ -15,6 +15,7 @@
#include "tdbInt.h"
#if 0
struct STDbEnv {
char * rootDir; // root directory of the environment
char * jname; // journal file name
...
...
@@ -170,4 +171,5 @@ int tdbEnvRgstPageFile(TENV *pEnv, SPgFile *pPgFile) {
int tdbEnvRgstDB(TENV *pEnv, TDB *pDb) {
// TODO
return 0;
}
\ No newline at end of file
}
#endif
\ No newline at end of file
source/libs/tdb/src/db/tdbUtil.c
浏览文件 @
9842da79
...
...
@@ -51,7 +51,7 @@ int tdbCheckFileAccess(const char *pathname, int mode) {
return
access
(
pathname
,
flags
);
}
int
tdbGetFileSize
(
const
char
*
fname
,
pgsz_
t
pgSize
,
SPgno
*
pSize
)
{
int
tdbGetFileSize
(
const
char
*
fname
,
in
t
pgSize
,
SPgno
*
pSize
)
{
struct
stat
st
;
int
ret
;
...
...
source/libs/tdb/src/inc/tdbEnv.h
浏览文件 @
9842da79
...
...
@@ -20,11 +20,13 @@
extern
"C"
{
#endif
#if 0
const char* tdbEnvGetRootDir(TENV* pEnv);
SPgFile* tdbEnvGetPageFile(TENV* pEnv, const uint8_t fileid[]);
SPgCache* tdbEnvGetPgCache(TENV* pEnv);
int tdbEnvRgstPageFile(TENV* pEnv, SPgFile* pPgFile);
int tdbEnvRgstDB(TENV* pEnv, TDB* pDb);
#endif
#ifdef __cplusplus
}
...
...
source/libs/tdb/src/inc/tdbInt.h
浏览文件 @
9842da79
...
...
@@ -19,7 +19,7 @@
#include "tlist.h"
#include "tlockfree.h"
#include "tdb.h"
//
#include "tdb.h"
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -70,9 +70,6 @@ typedef int32_t frame_id_t;
#define TDB_DEFAULT_PGSIZE 4096
#define TDB_IS_PGSIZE_VLD(s) (((s) >= TDB_MIN_PGSIZE) && ((s) <= TDB_MAX_PGSIZE))
// pgoff_t
typedef
pgsz_t
pgoff_t
;
// cache
#define TDB_DEFAULT_CACHE_SIZE (256 * 4096) // 1M
...
...
source/libs/tdb/src/inc/tdbUtil.h
浏览文件 @
9842da79
...
...
@@ -35,7 +35,7 @@ int tdbGnrtFileID(const char *fname, uint8_t *fileid, bool unique);
#define TDB_W_OK 0x4
int
tdbCheckFileAccess
(
const
char
*
pathname
,
int
mode
);
int
tdbGetFileSize
(
const
char
*
fname
,
pgsz_
t
pgSize
,
SPgno
*
pSize
);
int
tdbGetFileSize
(
const
char
*
fname
,
in
t
pgSize
,
SPgno
*
pSize
);
#ifdef __cplusplus
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录