Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
993d28df
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看板
提交
993d28df
编写于
11月 07, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
save
上级
a92aa1c5
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
148 addition
and
17 deletion
+148
-17
include/server/vnode/impl/vnodeImpl.h
include/server/vnode/impl/vnodeImpl.h
+39
-0
include/server/vnode/vnode.h
include/server/vnode/vnode.h
+20
-6
source/dnode/vnode/impl/CMakeLists.txt
source/dnode/vnode/impl/CMakeLists.txt
+1
-0
source/dnode/vnode/impl/inc/vnodeDef.h
source/dnode/vnode/impl/inc/vnodeDef.h
+32
-0
source/dnode/vnode/impl/inc/vnodeInt.h
source/dnode/vnode/impl/inc/vnodeInt.h
+0
-10
source/dnode/vnode/impl/inc/vnodeRead.h
source/dnode/vnode/impl/inc/vnodeRead.h
+2
-0
source/dnode/vnode/impl/inc/vnodeWrite.h
source/dnode/vnode/impl/inc/vnodeWrite.h
+4
-1
source/dnode/vnode/impl/src/vnodeInt.c
source/dnode/vnode/impl/src/vnodeInt.c
+3
-0
source/dnode/vnode/impl/src/vnodeMain.c
source/dnode/vnode/impl/src/vnodeMain.c
+27
-0
source/dnode/vnode/impl/src/vnodeOptions.c
source/dnode/vnode/impl/src/vnodeOptions.c
+20
-0
未找到文件。
include/server/vnode/impl/vnodeImpl.h
0 → 100644
浏览文件 @
993d28df
/*
* 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_VNODE_IMPL_H_
#define _TD_VNODE_IMPL_H_
#include "os.h"
#include "meta.h"
#include "tq.h"
#include "tsdb.h"
#ifdef __cplusplus
extern
"C"
{
#endif
struct
SVnodeOptions
{
STsdbOptions
tsdbOptions
;
SMetaOptions
metaOptions
;
// STqOptions tqOptions; // TODO
};
#ifdef __cplusplus
}
#endif
#endif
/*_TD_VNODE_IMPL_H_*/
\ No newline at end of file
include/server/vnode/vnode.h
浏览文件 @
993d28df
...
...
@@ -16,15 +16,29 @@
#ifndef _TD_VNODE_H_
#define _TD_VNODE_H_
#include "os.h"
#include "taosmsg.h"
#include "trpc.h"
#include "impl/vnodeImpl.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
SVnode
SVnode
;
/* ------------------------ TYPES EXPOSED ------------------------ */
typedef
struct
SVnode
SVnode
;
typedef
struct
SVnodeOptions
SVnodeOptions
;
/* ------------------------ SVnode ------------------------ */
SVnode
*
vnodeOpen
(
const
char
*
path
,
const
SVnodeOptions
*
pVnodeOptions
);
void
vnodeClose
(
SVnode
*
pVnode
);
void
vnodeDestroy
(
const
char
*
path
);
/* ------------------------ SVnodeOptions ------------------------ */
void
vnodeOptionsInit
(
SVnodeOptions
*
);
void
vnodeOptionsClear
(
SVnodeOptions
*
);
#if 1
#include "taosMsg.h"
#include "trpc.h"
typedef
struct
{
char
db
[
TSDB_FULL_DB_NAME_LEN
];
...
...
@@ -70,8 +84,6 @@ typedef struct {
int32_t
vnodeInit
(
SVnodePara
);
void
vnodeCleanup
();
SVnode
*
vnodeOpen
(
int32_t
vgId
,
const
char
*
path
);
void
vnodeClose
(
SVnode
*
pVnode
);
int32_t
vnodeAlter
(
SVnode
*
pVnode
,
const
SVnodeCfg
*
pCfg
);
SVnode
*
vnodeCreate
(
int32_t
vgId
,
const
char
*
path
,
const
SVnodeCfg
*
pCfg
);
void
vnodeDrop
(
SVnode
*
pVnode
);
...
...
@@ -85,6 +97,8 @@ int32_t vnodeAppendMsg(SVnodeMsg *pMsg, SRpcMsg *pRpcMsg);
void
vnodeCleanupMsg
(
SVnodeMsg
*
pMsg
);
void
vnodeProcessMsg
(
SVnode
*
pVnode
,
SVnodeMsg
*
pMsg
,
EVnMsgType
msgType
);
#endif
#ifdef __cplusplus
}
#endif
...
...
source/dnode/vnode/impl/CMakeLists.txt
浏览文件 @
993d28df
...
...
@@ -7,6 +7,7 @@ target_include_directories(
)
target_link_libraries
(
vnode
PUBLIC os
PUBLIC transport
PUBLIC meta
PUBLIC tq
...
...
source/dnode/vnode/impl/inc/vnodeDef.h
0 → 100644
浏览文件 @
993d28df
/*
* 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_VNODE_DEF_H_
#define _TD_VNODE_DEF_H_
#include "vnode.h"
#ifdef __cplusplus
extern
"C"
{
#endif
struct
SVnode
{
};
#ifdef __cplusplus
}
#endif
#endif
/*_TD_VNODE_DEF_H_*/
\ No newline at end of file
source/dnode/vnode/impl/inc/vnodeInt.h
浏览文件 @
993d28df
...
...
@@ -39,16 +39,6 @@ extern int32_t vDebugFlag;
#define vDebug(...) { if (vDebugFlag & DEBUG_DEBUG) { taosPrintLog("VND ", vDebugFlag, __VA_ARGS__); }}
#define vTrace(...) { if (vDebugFlag & DEBUG_TRACE) { taosPrintLog("VND ", vDebugFlag, __VA_ARGS__); }}
typedef
struct
SVnode
{
int32_t
vgId
;
SVnodeCfg
cfg
;
SMeta
*
pMeta
;
STsdb
*
pTsdb
;
STQ
*
pTQ
;
SWal
*
pWal
;
SSyncNode
*
pSync
;
}
SVnode
;
#ifdef __cplusplus
}
#endif
...
...
source/dnode/vnode/impl/inc/vnodeRead.h
浏览文件 @
993d28df
...
...
@@ -21,6 +21,8 @@ extern "C" {
#endif
#include "vnodeInt.h"
typedef
void
SVnodeMsg
;
void
vnodeProcessReadMsg
(
SVnode
*
pVnode
,
SVnodeMsg
*
pMsg
);
#ifdef __cplusplus
...
...
source/dnode/vnode/impl/inc/vnodeWrite.h
浏览文件 @
993d28df
...
...
@@ -16,10 +16,13 @@
#ifndef _TD_VNODE_WRITE_H_
#define _TD_VNODE_WRITE_H_
#include "vnode.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#include "vnodeInt.h"
typedef
void
SVnodeMsg
;
void
vnodeProcessWriteMsg
(
SVnode
*
pVnode
,
SVnodeMsg
*
pMsg
);
...
...
source/dnode/vnode/impl/src/vnodeInt.c
浏览文件 @
993d28df
...
...
@@ -13,6 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#if 0
#define _DEFAULT_SOURCE
#include "vnodeInt.h"
#include "tqueue.h"
...
...
@@ -70,3 +71,5 @@ void vnodeProcessMsg(SVnode *pVnode, SVnodeMsg *pMsg, EVnMsgType msgType) {
break;
}
}
#endif
\ No newline at end of file
source/dnode/vnode/impl/src/vnodeMain.c
0 → 100644
浏览文件 @
993d28df
/*
* 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/>.
*/
#include "vnodeDef.h"
SVnode
*
vnodeOpen
(
const
char
*
path
,
const
SVnodeOptions
*
pVnodeOptions
)
{
SVnode
*
pVnode
=
NULL
;
/* TODO */
return
pVnode
;
}
void
vnodeCloee
(
SVnode
*
pVnode
)
{
/* TODO */
}
void
vnodeDestroy
(
const
char
*
path
)
{
taosRemoveDir
(
path
);
}
\ No newline at end of file
source/dnode/vnode/impl/src/vnodeOptions.c
0 → 100644
浏览文件 @
993d28df
/*
* 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/>.
*/
#include "vnodeDef.h"
void
vnodeOptionsInit
(
SVnodeOptions
*
pVnodeOptions
)
{
/* TODO */
}
void
vnodeOptionsClear
(
SVnodeOptions
*
pVnodeOptions
)
{
/* TODO */
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录