Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e9876077
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看板
未验证
提交
e9876077
编写于
7月 27, 2022
作者:
dengyihao
提交者:
GitHub
7月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #15469 from taosdata/enh/rpcBUf
fix: read buf
上级
216d753e
5ed23e79
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
3 deletion
+18
-3
source/libs/transport/src/transCli.c
source/libs/transport/src/transCli.c
+13
-0
source/libs/transport/src/transComm.c
source/libs/transport/src/transComm.c
+4
-2
source/libs/transport/src/transSvr.c
source/libs/transport/src/transSvr.c
+1
-1
未找到文件。
source/libs/transport/src/transCli.c
浏览文件 @
e9876077
...
...
@@ -60,6 +60,7 @@ typedef struct SCliThrd {
int64_t
pid
;
// pid
uv_loop_t
*
loop
;
SAsyncPool
*
asyncPool
;
uv_idle_t
*
idle
;
uv_timer_t
timer
;
void
*
pool
;
// conn pool
...
...
@@ -116,6 +117,7 @@ static void cliSendCb(uv_write_t* req, int status);
// callback after conn to server
static
void
cliConnCb
(
uv_connect_t
*
req
,
int
status
);
static
void
cliAsyncCb
(
uv_async_t
*
handle
);
static
void
cliIdleCb
(
uv_idle_t
*
handle
);
static
int
cliAppCb
(
SCliConn
*
pConn
,
STransMsg
*
pResp
,
SCliMsg
*
pMsg
);
...
...
@@ -962,6 +964,10 @@ static void cliAsyncCb(uv_async_t* handle) {
}
if
(
pThrd
->
stopMsg
!=
NULL
)
cliHandleQuit
(
pThrd
->
stopMsg
,
pThrd
);
}
static
void
cliIdleCb
(
uv_idle_t
*
handle
)
{
SCliThrd
*
thrd
=
handle
->
data
;
tTrace
(
"do idle work"
);
}
static
void
*
cliWorkThread
(
void
*
arg
)
{
SCliThrd
*
pThrd
=
(
SCliThrd
*
)
arg
;
...
...
@@ -1024,6 +1030,11 @@ static SCliThrd* createThrdObj() {
uv_timer_init
(
pThrd
->
loop
,
&
pThrd
->
timer
);
pThrd
->
timer
.
data
=
pThrd
;
// pThrd->idle = taosMemoryCalloc(1, sizeof(uv_idle_t));
// uv_idle_init(pThrd->loop, pThrd->idle);
// pThrd->idle->data = pThrd;
// uv_idle_start(pThrd->idle, cliIdleCb);
pThrd
->
pool
=
createConnPool
(
4
);
transDQCreate
(
pThrd
->
loop
,
&
pThrd
->
delayQueue
);
...
...
@@ -1045,6 +1056,8 @@ static void destroyThrdObj(SCliThrd* pThrd) {
transDQDestroy
(
pThrd
->
delayQueue
,
destroyCmsg
);
transDQDestroy
(
pThrd
->
timeoutQueue
,
NULL
);
taosMemoryFree
(
pThrd
->
idle
);
taosMemoryFree
(
pThrd
->
loop
);
taosMemoryFree
(
pThrd
);
}
...
...
source/libs/transport/src/transComm.c
浏览文件 @
e9876077
...
...
@@ -152,16 +152,18 @@ int transDumpFromBuffer(SConnBuffer* connBuf, char** buf) {
int
transResetBuffer
(
SConnBuffer
*
connBuf
)
{
SConnBuffer
*
p
=
connBuf
;
if
(
p
->
total
<
=
p
->
len
)
{
if
(
p
->
total
<
p
->
len
)
{
int
left
=
p
->
len
-
p
->
total
;
memmove
(
p
->
buf
,
p
->
buf
+
p
->
total
,
left
);
p
->
left
=
-
1
;
p
->
total
=
0
;
p
->
len
=
left
;
}
else
{
}
else
if
(
p
->
total
==
p
->
len
)
{
p
->
left
=
-
1
;
p
->
total
=
0
;
p
->
len
=
0
;
}
else
{
assert
(
0
);
}
return
0
;
}
...
...
source/libs/transport/src/transSvr.c
浏览文件 @
e9876077
...
...
@@ -238,7 +238,7 @@ static void uvHandleReq(SSvrConn* pConn) {
transMsg
.
msgType
=
pHead
->
msgType
;
transMsg
.
code
=
pHead
->
code
;
transClearBuffer
(
&
pConn
->
readBuf
);
//
transClearBuffer(&pConn->readBuf);
pConn
->
inType
=
pHead
->
msgType
;
if
(
pConn
->
status
==
ConnNormal
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录