Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
3a851ca9
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看板
提交
3a851ca9
编写于
5月 17, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more tdata
上级
d6521a0a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
120 addition
and
2 deletion
+120
-2
include/common/tdataformat.h
include/common/tdataformat.h
+17
-1
source/common/src/tdataformat.c
source/common/src/tdataformat.c
+103
-1
未找到文件。
include/common/tdataformat.h
浏览文件 @
3a851ca9
...
...
@@ -32,6 +32,8 @@ typedef struct STSchema STSchema;
typedef
struct
SColVal
SColVal
;
typedef
struct
STSRow2
STSRow2
;
typedef
struct
STSRowBuilder
STSRowBuilder
;
typedef
struct
STagVal
STagVal
;
typedef
struct
STag
STag
;
// STSchema
int32_t
tTSchemaCreate
(
int32_t
sver
,
SSchema
*
pSchema
,
int32_t
nCols
,
STSchema
**
ppTSchema
);
...
...
@@ -56,6 +58,13 @@ void tTSRowBuilderReset(STSRowBuilder *pBuilder);
int32_t
tTSRowBuilderPut
(
STSRowBuilder
*
pBuilder
,
int32_t
cid
,
uint8_t
*
pData
,
uint32_t
nData
);
int32_t
tTSRowBuilderGetRow
(
STSRowBuilder
*
pBuilder
,
const
STSRow2
**
ppRow
);
// STag
int32_t
tTagNew
(
STagVal
*
pTagVals
,
int16_t
nTag
,
STag
**
ppTag
);
void
tTagFree
(
STag
*
pTag
);
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
int32_t
*
nData
);
int32_t
tEncodeTag
(
SEncoder
*
pEncoder
,
STag
*
pTag
);
int32_t
tDecodeTag
(
SDecoder
*
pDecoder
,
const
STag
**
ppTag
);
// STRUCT =================
struct
STColumn
{
col_id_t
colId
;
...
...
@@ -107,7 +116,14 @@ struct SColVal {
uint8_t
*
pData
;
};
#if 1 //====================================
struct
STagVal
{
int16_t
cid
;
int8_t
type
;
uint32_t
nData
;
uint8_t
*
pData
;
};
#if 1 //================================================================================================================================================
// Imported since 3.0 and use bitmap to demonstrate None/Null/Norm, while use Null/Norm below 3.0 without of bitmap.
#define TD_SUPPORT_BITMAP
#define TD_SUPPORT_READ2
...
...
source/common/src/tdataformat.c
浏览文件 @
3a851ca9
...
...
@@ -31,6 +31,19 @@ typedef struct {
}
STSKVRow
;
#pragma pack(pop)
typedef
struct
STagIdx
{
int16_t
cid
;
uint16_t
offset
;
}
STagIdx
;
#pragma pack(push, 1)
struct
STag
{
uint16_t
len
;
uint16_t
nTag
;
STagIdx
idx
[];
};
#pragma pack(pop)
#define TSROW_IS_KV_ROW(r) ((r)->flags & TSROW_KV_ROW)
#define BIT1_SIZE(n) (((n)-1) / 8 + 1)
#define BIT2_SIZE(n) (((n)-1) / 4 + 1)
...
...
@@ -508,7 +521,96 @@ int32_t tTSRowBuilderGetRow(STSRowBuilder *pBuilder, const STSRow2 **ppRow) {
return
0
;
}
#if 1 // ====================
static
FORCE_INLINE
int
tTagIdxCmprFn
(
const
void
*
p1
,
const
void
*
p2
)
{
STagIdx
*
pTagIdx1
=
(
STagIdx
*
)
p1
;
STagIdx
*
pTagIdx2
=
(
STagIdx
*
)
p2
;
if
(
pTagIdx1
->
cid
<
pTagIdx1
->
cid
)
{
return
-
1
;
}
else
if
(
pTagIdx1
->
cid
>
pTagIdx1
->
cid
)
{
return
1
;
}
return
0
;
}
int32_t
tTagNew
(
STagVal
*
pTagVals
,
int16_t
nTag
,
STag
**
ppTag
)
{
STagVal
*
pTagVal
;
uint8_t
*
p
;
int32_t
n
;
uint16_t
tsize
=
sizeof
(
STag
)
+
sizeof
(
STagIdx
)
*
nTag
;
for
(
int16_t
iTag
=
0
;
iTag
<
nTag
;
iTag
++
)
{
pTagVal
=
&
pTagVals
[
iTag
];
if
(
IS_VAR_DATA_TYPE
(
pTagVal
->
type
))
{
tsize
+=
tPutBinary
(
NULL
,
pTagVal
->
pData
,
pTagVal
->
nData
);
}
else
{
ASSERT
(
pTagVal
->
nData
==
TYPE_BYTES
[
pTagVal
->
type
]);
tsize
+=
pTagVal
->
nData
;
}
}
(
*
ppTag
)
=
(
STag
*
)
taosMemoryMalloc
(
tsize
);
if
(
*
ppTag
==
NULL
)
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
return
-
1
;
}
p
=
(
uint8_t
*
)
&
((
*
ppTag
)
->
idx
[
nTag
]);
n
=
0
;
(
*
ppTag
)
->
len
=
tsize
;
(
*
ppTag
)
->
nTag
=
nTag
;
for
(
int16_t
iTag
=
0
;
iTag
<
nTag
;
iTag
++
)
{
pTagVal
=
&
pTagVals
[
iTag
];
(
*
ppTag
)
->
idx
[
iTag
].
cid
=
pTagVal
->
cid
;
(
*
ppTag
)
->
idx
[
iTag
].
offset
=
n
;
if
(
IS_VAR_DATA_TYPE
(
pTagVal
->
type
))
{
n
+=
tPutBinary
(
p
+
n
,
pTagVal
->
pData
,
pTagVal
->
nData
);
}
else
{
memcpy
(
p
+
n
,
pTagVal
->
pData
,
pTagVal
->
nData
);
n
+=
pTagVal
->
nData
;
}
}
qsort
((
*
ppTag
)
->
idx
,
(
*
ppTag
)
->
nTag
,
sizeof
(
STagIdx
),
tTagIdxCmprFn
);
return
0
;
}
void
tTagFree
(
STag
*
pTag
)
{
if
(
pTag
)
taosMemoryFree
(
pTag
);
}
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
int32_t
*
nData
)
{
STagIdx
*
pTagIdx
=
bsearch
(
&
((
STagIdx
){.
cid
=
cid
}),
pTag
->
idx
,
pTag
->
nTag
,
sizeof
(
STagIdx
),
tTagIdxCmprFn
);
if
(
pTagIdx
==
NULL
)
{
*
ppData
=
NULL
;
*
nData
=
0
;
}
else
{
uint8_t
*
p
=
(
uint8_t
*
)
&
pTag
->
idx
[
pTag
->
nTag
]
+
pTagIdx
->
offset
;
if
(
IS_VAR_DATA_TYPE
(
type
))
{
tGetBinary
(
p
,
ppData
,
nData
);
}
else
{
*
ppData
=
p
;
*
nData
=
TYPE_BYTES
[
type
];
}
}
}
int32_t
tEncodeTag
(
SEncoder
*
pEncoder
,
STag
*
pTag
)
{
// return tEncodeBinary(pEncoder, (uint8_t *)pTag, pTag->len);
ASSERT
(
0
);
return
0
;
}
int32_t
tDecodeTag
(
SDecoder
*
pDecoder
,
const
STag
**
ppTag
)
{
// uint32_t n;
// return tDecodeBinary(pDecoder, (const uint8_t **)ppTag, &n);
ASSERT
(
0
);
return
0
;
}
#if 1 // ===================================================================================================================
static
void
dataColSetNEleNull
(
SDataCol
*
pCol
,
int
nEle
);
int
tdAllocMemForCol
(
SDataCol
*
pCol
,
int
maxPoints
)
{
int
spaceNeeded
=
pCol
->
bytes
*
maxPoints
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录