Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
83671062
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
83671062
编写于
3月 04, 2020
作者:
H
hzcheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
97e979f4
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
51 addition
and
11 deletion
+51
-11
src/vnode/common/inc/dataformat.h
src/vnode/common/inc/dataformat.h
+13
-2
src/vnode/common/src/dataformat.c
src/vnode/common/src/dataformat.c
+17
-1
src/vnode/tsdb/inc/tsdbMeta.h
src/vnode/tsdb/inc/tsdbMeta.h
+1
-1
src/vnode/tsdb/src/tsdbMeta.c
src/vnode/tsdb/src/tsdbMeta.c
+20
-7
未找到文件。
src/vnode/common/inc/dataformat.h
浏览文件 @
83671062
...
...
@@ -60,6 +60,12 @@ typedef char * SDataCol;
*/
typedef
char
*
SDataCols
;
typedef
struct
{
int32_t
rowCounter
;
int32_t
totalRows
;
SDataRow
row
;
}
SDataRowsIter
;
// ----------------- Data column structure
// ---- operation on SDataRow;
...
...
@@ -72,8 +78,8 @@ void tdFreeSDataRow(SDataRow rdata);
// ---- operation on SDataRows
#define TD_DATAROWS_LEN(pDataRows) (*(int32_t *)(pDataRows))
#define TD_DATAROWS_ROWS(pDataRows) (*(int32_t *)(
pDataRows
+ sizeof(int32_t)))
#define TD_
NEXT_DATAROW(pDataRow) ((pDataRow) + TD_DATAROW_LEN(pDataRow
))
#define TD_DATAROWS_ROWS(pDataRows) (*(int32_t *)(
(pDataRows)
+ sizeof(int32_t)))
#define TD_
DATAROWS_DATA(pDataRows) (SDataRow)((pDataRows) + 2 * sizeof(int32_t
))
// ---- operation on SDataCol
#define TD_DATACOL_LEN(pDataCol) (*(int32_t *)(pDataCol))
...
...
@@ -83,6 +89,11 @@ void tdFreeSDataRow(SDataRow rdata);
#define TD_DATACOLS_LEN(pDataCols) (*(int32_t *)(pDataCols))
#define TD_DATACOLS_NPOINTS(pDataCols) (*(int32_t *)(pDataCols + sizeof(int32_t)))
// ---- operation on SDataRowIter
int32_t
tdInitSDataRowsIter
(
SDataRows
rows
,
SDataRowsIter
*
pIter
);
int32_t
tdRdataIterEnd
(
SDataRowsIter
*
pIter
);
void
tdRdataIterNext
(
SDataRowsIter
*
pIter
);
// ----
/**
* Get the maximum
...
...
src/vnode/common/src/dataformat.c
浏览文件 @
83671062
...
...
@@ -35,4 +35,20 @@ SDataRow tdSDataRowDup(SDataRow rdata) { return NULL; }
void
tdFreeSDataRow
(
SDataRow
rdata
)
{
if
(
rdata
==
NULL
)
return
;
free
(
rdata
);
}
\ No newline at end of file
}
int32_t
tdInitSDataRowsIter
(
SDataRows
rows
,
SDataRowsIter
*
pIter
)
{
pIter
->
totalRows
=
TD_DATAROWS_ROWS
(
rows
);
pIter
->
rowCounter
=
1
;
pIter
->
row
=
TD_DATAROWS_DATA
(
rows
);
}
void
tdRdataIterNext
(
SDataRowsIter
*
pIter
)
{
pIter
->
rowCounter
++
;
pIter
->
row
=
pIter
->
row
+
TD_DATAROW_LEN
(
pIter
->
row
);
}
int32_t
tdRdataIterEnd
(
SDataRowsIter
*
pIter
)
{
return
pIter
->
rowCounter
>=
pIter
->
totalRows
;
}
src/vnode/tsdb/inc/tsdbMeta.h
浏览文件 @
83671062
...
...
@@ -114,7 +114,7 @@ STsdbMeta *tsdbOpenMeta(char *tsdbDir);
int32_t
tsdbCreateTableImpl
(
STsdbMeta
*
pMeta
,
STableCfg
*
pCfg
);
int32_t
tsdbDropTableImpl
(
STsdbMeta
*
pMeta
,
STableId
tableId
);
int32_t
tsdbInsertDataImpl
(
STsdbMeta
*
pMeta
,
STableId
tableId
,
char
*
pData
);
int32_t
tsdbInsertDataImpl
(
STsdbMeta
*
pMeta
,
STableId
tableId
,
SDataRows
rows
);
#ifdef __cplusplus
}
...
...
src/vnode/tsdb/src/tsdbMeta.c
浏览文件 @
83671062
...
...
@@ -16,6 +16,7 @@ static int tsdbAddTableToMeta(STsdbMeta *pMeta, STable *pTable);
static
int
tsdbAddTableIntoMap
(
STsdbMeta
*
pMeta
,
STable
*
pTable
);
static
int
tsdbAddTableIntoIndex
(
STsdbMeta
*
pMeta
,
STable
*
pTable
);
static
int
tsdbRemoveTableFromIndex
(
STsdbMeta
*
pMeta
,
STable
*
pTable
);
static
int
tsdbInsertRowToTable
(
STable
*
pTable
,
SDataRow
row
);
STsdbMeta
*
tsdbCreateMeta
(
int32_t
maxTables
)
{
STsdbMeta
*
pMeta
=
(
STsdbMeta
*
)
malloc
(
sizeof
(
STsdbMeta
));
...
...
@@ -136,16 +137,23 @@ STsdbMeta *tsdbOpenMeta(char *tsdbDir) {
return
pMeta
;
}
int32_t
tsdbInsertDataImpl
(
STsdbMeta
*
pMeta
,
STableId
tableId
,
char
*
pData
)
{
STable
*
pTable
=
pMeta
->
tables
[
tableId
.
tid
]
;
int32_t
tsdbInsertDataImpl
(
STsdbMeta
*
pMeta
,
STableId
tableId
,
SDataRows
rows
)
{
STable
*
pTable
=
tsdbGetTableByUid
(
pMeta
,
tableId
.
uid
)
;
if
(
pTable
==
NULL
)
{
// TODO: deal with the error here
return
0
;
return
-
1
;
}
if
(
pTable
->
tableId
.
uid
!=
tableId
.
uid
)
{
// TODO: deal with the error here
return
0
;
if
(
TSDB_TABLE_IS_SUPER_TABLE
(
pTable
))
return
-
1
;
if
(
pTable
->
tableId
.
tid
!=
tableId
.
tid
)
return
-
1
;
// Loop to write each row
SDataRowsIter
sdataIter
;
tdInitSDataRowsIter
(
rows
,
&
sdataIter
);
while
(
!
tdRdataIterEnd
(
&
sdataIter
))
{
// Insert the row to it
tsdbInsertRowToTable
(
pTable
,
sdataIter
.
row
);
tdRdataIterNext
(
&
sdataIter
);
}
return
0
;
...
...
@@ -247,4 +255,9 @@ static int tsdbRemoveTableFromIndex(STsdbMeta *pMeta, STable *pTable) {
assert
(
pTable
->
type
==
TSDB_STABLE
);
// TODO
return
0
;
}
static
int
tsdbInsertRowToTable
(
STable
*
pTable
,
SDataRow
row
)
{
// TODO
return
0
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录