Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
77837f6e
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看板
提交
77837f6e
编写于
7月 30, 2022
作者:
D
dapan1121
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: fix crash issue
上级
80a32d62
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
18 deletion
+23
-18
include/os/osString.h
include/os/osString.h
+1
-0
source/client/src/clientEnv.c
source/client/src/clientEnv.c
+2
-0
source/dnode/mgmt/exe/dmMain.c
source/dnode/mgmt/exe/dmMain.c
+2
-0
source/os/src/osString.c
source/os/src/osString.c
+18
-18
未找到文件。
include/os/osString.h
浏览文件 @
77837f6e
...
...
@@ -62,6 +62,7 @@ typedef int32_t TdUcs4;
int32_t
taosUcs4len
(
TdUcs4
*
ucs4
);
int64_t
taosStr2int64
(
const
char
*
str
);
void
taosConvInit
(
void
);
void
taosConvDestroy
();
int32_t
taosUcs4ToMbs
(
TdUcs4
*
ucs4
,
int32_t
ucs4_max_len
,
char
*
mbs
);
bool
taosMbsToUcs4
(
const
char
*
mbs
,
size_t
mbs_len
,
TdUcs4
*
ucs4
,
int32_t
ucs4_max_len
,
int32_t
*
len
);
...
...
source/client/src/clientEnv.c
浏览文件 @
77837f6e
...
...
@@ -361,6 +361,8 @@ void taos_init_imp(void) {
initQueryModuleMsgHandle
();
taosConvInit
();
rpcInit
();
SCatalogCfg
cfg
=
{.
maxDBCacheNum
=
100
,
.
maxTblCacheNum
=
100
};
...
...
source/dnode/mgmt/exe/dmMain.c
浏览文件 @
77837f6e
...
...
@@ -218,6 +218,8 @@ int mainWindows(int argc,char** argv) {
taosCleanupArgs
();
return
-
1
;
}
taosConvInit
();
if
(
global
.
dumpConfig
)
{
dmDumpCfg
();
...
...
source/os/src/osString.c
浏览文件 @
77837f6e
...
...
@@ -143,29 +143,29 @@ SConv *gConv = NULL;
int32_t
convUsed
=
0
;
int32_t
gConvMaxNum
=
0
;
void
taosConvInit
Impl
(
void
)
{
void
taosConvInit
(
void
)
{
gConvMaxNum
=
512
;
gConv
=
taosMemoryCalloc
(
gConvMaxNum
,
sizeof
(
SConv
));
for
(
int32_t
i
=
0
;
i
<
gConvMaxNum
;
++
i
)
{
gConv
[
i
].
conv
=
iconv_open
(
DEFAULT_UNICODE_ENCODEC
,
tsCharset
);
if
((
iconv_t
)
-
1
==
gConv
[
i
].
conv
||
(
iconv_t
)
0
==
gConv
[
i
].
conv
)
{
ASSERT
(
0
);
}
}
}
static
TdThreadOnce
convInit
=
PTHREAD_ONCE_INIT
;
void
taosConvInit
()
{
taosThreadOnce
(
&
convInit
,
taosConvInitImpl
);
}
void
taosConvDestroy
()
{
for
(
int32_t
i
=
0
;
i
<
gConvMaxNum
;
++
i
)
{
iconv_close
(
gConv
[
i
].
conv
);
}
taosMemoryFreeClear
(
gConv
);
gConvMaxNum
=
-
1
;
}
void
taosAcquireConv
(
int32_t
*
idx
)
{
if
(
0
==
gConvMaxNum
)
{
taosConvInit
();
iconv_t
taosAcquireConv
(
int32_t
*
idx
)
{
if
(
gConvMaxNum
<=
0
)
{
*
idx
=
-
1
;
return
iconv_open
(
DEFAULT_UNICODE_ENCODEC
,
tsCharset
);
}
while
(
true
)
{
...
...
@@ -193,12 +193,12 @@ void taosAcquireConv(int32_t *idx) {
}
*
idx
=
startId
;
return
gConv
[
startId
].
conv
;
}
void
taosReleaseConv
(
int32_t
idx
)
{
if
(
0
==
gConvMaxNum
)
{
iconv_close
(
gConv
[
0
].
conv
);
taosMemoryFreeClear
(
gConv
);
void
taosReleaseConv
(
int32_t
idx
,
iconv_t
conv
)
{
if
(
idx
<
0
)
{
iconv_close
(
conv
);
return
;
}
...
...
@@ -213,16 +213,16 @@ bool taosMbsToUcs4(const char *mbs, size_t mbsLength, TdUcs4 *ucs4, int32_t ucs4
#else
memset
(
ucs4
,
0
,
ucs4_max_len
);
int32_t
idx
=
0
;
taosAcquireConv
(
&
idx
);
int32_t
idx
=
-
1
;
iconv_t
conv
=
taosAcquireConv
(
&
idx
);
size_t
ucs4_input_len
=
mbsLength
;
size_t
outLeft
=
ucs4_max_len
;
if
(
iconv
(
gConv
[
idx
].
conv
,
(
char
**
)
&
mbs
,
&
ucs4_input_len
,
(
char
**
)
&
ucs4
,
&
outLeft
)
==
-
1
)
{
taosReleaseConv
(
idx
);
if
(
iconv
(
conv
,
(
char
**
)
&
mbs
,
&
ucs4_input_len
,
(
char
**
)
&
ucs4
,
&
outLeft
)
==
-
1
)
{
taosReleaseConv
(
idx
,
conv
);
return
false
;
}
taosReleaseConv
(
idx
);
taosReleaseConv
(
idx
,
conv
);
if
(
len
!=
NULL
)
{
*
len
=
(
int32_t
)(
ucs4_max_len
-
outLeft
);
if
(
*
len
<
0
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录