Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
ceeec650
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看板
提交
ceeec650
编写于
10月 27, 2020
作者:
陶建辉(Jeff)
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
first version
上级
6c0e3572
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
50 addition
and
20 deletion
+50
-20
src/client/inc/tsclient.h
src/client/inc/tsclient.h
+3
-1
src/client/src/tscServer.c
src/client/src/tscServer.c
+7
-4
src/client/src/tscSql.c
src/client/src/tscSql.c
+3
-1
src/client/src/tscSystem.c
src/client/src/tscSystem.c
+4
-0
src/client/src/tscUtil.c
src/client/src/tscUtil.c
+3
-3
src/connector/go
src/connector/go
+1
-1
src/rpc/src/rpcMain.c
src/rpc/src/rpcMain.c
+29
-10
未找到文件。
src/client/inc/tsclient.h
浏览文件 @
ceeec650
...
...
@@ -30,6 +30,7 @@ extern "C" {
#include "tsqlfunction.h"
#include "tutil.h"
#include "tcache.h"
#include "tref.h"
#include "qExecutor.h"
#include "qSqlparser.h"
...
...
@@ -446,7 +447,7 @@ void tscFreeSqlObj(SSqlObj *pSql);
void
tscFreeRegisteredSqlObj
(
void
*
pSql
);
void
tscFreeTableMetaHelper
(
void
*
pTableMeta
);
void
tscCloseTscObj
(
STscObj
*
pObj
);
void
tscCloseTscObj
(
void
*
pObj
);
// todo move to taos? or create a new file: taos_internal.h
TAOS
*
taos_connect_a
(
char
*
ip
,
char
*
user
,
char
*
pass
,
char
*
db
,
uint16_t
port
,
void
(
*
fp
)(
void
*
,
TAOS_RES
*
,
int
),
...
...
@@ -516,6 +517,7 @@ extern void * tscQhandle;
extern
int
tscKeepConn
[];
extern
int
tsInsertHeadSize
;
extern
int
tscNumOfThreads
;
extern
int
tscRefId
;
extern
SRpcCorEpSet
tscMgmtEpSet
;
...
...
src/client/src/tscServer.c
浏览文件 @
ceeec650
...
...
@@ -190,18 +190,19 @@ void tscProcessHeartBeatRsp(void *param, TAOS_RES *tres, int code) {
void
tscProcessActivityTimer
(
void
*
handle
,
void
*
tmrId
)
{
STscObj
*
pObj
=
(
STscObj
*
)
handle
;
if
(
pObj
==
NULL
||
pObj
->
signature
!=
pObj
)
{
int
ret
=
taosAcquireRef
(
tscRefId
,
pObj
);
if
(
ret
<
0
)
{
tscTrace
(
"%p failed to acquire TSC obj, reason:%s"
,
pObj
,
tstrerror
(
ret
));
return
;
}
SSqlObj
*
pHB
=
pObj
->
pHb
;
if
(
pObj
->
pTimer
!=
tmrId
||
pHB
==
NULL
)
{
return
;
}
void
**
p
=
taosCacheAcquireByKey
(
tscObjCache
,
&
pHB
,
sizeof
(
TSDB_CACHE_PTR_TYPE
));
if
(
p
==
NULL
)
{
tscWarn
(
"%p HB object has been released already"
,
pHB
);
taosReleaseRef
(
tscRefId
,
pObj
);
return
;
}
...
...
@@ -213,6 +214,8 @@ void tscProcessActivityTimer(void *handle, void *tmrId) {
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
tscError
(
"%p failed to sent HB to server, reason:%s"
,
pHB
,
tstrerror
(
code
));
}
taosReleaseRef
(
tscRefId
,
pObj
);
}
int
tscSendMsgToServer
(
SSqlObj
*
pSql
)
{
...
...
src/client/src/tscSql.c
浏览文件 @
ceeec650
...
...
@@ -161,6 +161,7 @@ static SSqlObj *taosConnectImpl(const char *ip, const char *user, const char *pa
registerSqlObj
(
pSql
);
tsInsertHeadSize
=
sizeof
(
SMsgDesc
)
+
sizeof
(
SSubmitMsg
);
taosAddRef
(
tscRefId
,
pObj
);
return
pSql
;
}
...
...
@@ -296,7 +297,8 @@ void taos_close(TAOS *taos) {
}
tscDebug
(
"%p all sqlObj are freed, free tscObj and close dnodeConn:%p"
,
pObj
,
pObj
->
pDnodeConn
);
tscCloseTscObj
(
pObj
);
taosRemoveRef
(
tscRefId
,
pObj
);
}
void
waitForQueryRsp
(
void
*
param
,
TAOS_RES
*
tres
,
int
code
)
{
...
...
src/client/src/tscSystem.c
浏览文件 @
ceeec650
...
...
@@ -36,6 +36,7 @@ void * tscTmr;
void
*
tscQhandle
;
void
*
tscCheckDiskUsageTmr
;
int
tsInsertHeadSize
;
int
tscRefId
;
int
tscNumOfThreads
;
...
...
@@ -146,6 +147,8 @@ void taos_init_imp(void) {
tscObjCache
=
taosCacheInit
(
TSDB_CACHE_PTR_KEY
,
refreshTime
/
2
,
false
,
tscFreeRegisteredSqlObj
,
"sqlObj"
);
}
tscRefId
=
taosOpenRef
(
200
,
tscCloseTscObj
);
tscDebug
(
"client is initialized successfully"
);
}
...
...
@@ -165,6 +168,7 @@ void taos_cleanup() {
tscQhandle
=
NULL
;
}
taosCloseRef
(
tscRefId
);
taosCleanupKeywordsTable
();
taosCloseLog
();
...
...
src/client/src/tscUtil.c
浏览文件 @
ceeec650
...
...
@@ -404,7 +404,7 @@ void tscFreeRegisteredSqlObj(void *pSql) {
tscDebug
(
"%p free sqlObj completed, tscObj:%p ref:%d"
,
*
p
,
pTscObj
,
ref
);
if
(
ref
==
0
)
{
tscDebug
(
"%p all sqlObj freed, free tscObj:%p"
,
*
p
,
pTscObj
);
t
scCloseTscObj
(
pTscObj
);
t
aosRemoveRef
(
tscRefId
,
pTscObj
);
}
}
...
...
@@ -786,8 +786,8 @@ int32_t tscMergeTableDataBlocks(SSqlObj* pSql, SArray* pTableDataBlockList) {
}
// TODO: all subqueries should be freed correctly before close this connection.
void
tscCloseTscObj
(
STscObj
*
pObj
)
{
assert
(
pObj
!=
NULL
)
;
void
tscCloseTscObj
(
void
*
param
)
{
STscObj
*
pObj
=
param
;
pObj
->
signature
=
NULL
;
taosTmrStopA
(
&
(
pObj
->
pTimer
));
...
...
go
@
8c58c512
比较
8d7bf743
...
8c58c512
Subproject commit 8
d7bf743852897110cbdcc7c4322cd7a74d4167b
Subproject commit 8
c58c512b6acda8bcdfa48fdc7140227b5221766
src/rpc/src/rpcMain.c
浏览文件 @
ceeec650
...
...
@@ -20,6 +20,7 @@
#include "ttimer.h"
#include "tutil.h"
#include "lz4.h"
#include "tref.h"
#include "taoserror.h"
#include "tsocket.h"
#include "tglobal.h"
...
...
@@ -72,7 +73,6 @@ typedef struct {
SRpcInfo
*
pRpc
;
// associated SRpcInfo
SRpcEpSet
epSet
;
// ip list provided by app
void
*
ahandle
;
// handle provided by app
void
*
signature
;
// for validation
struct
SRpcConn
*
pConn
;
// pConn allocated
char
msgType
;
// message type
uint8_t
*
pCont
;
// content provided by app
...
...
@@ -132,6 +132,10 @@ int tsRpcMaxRetry;
int
tsRpcHeadSize
;
int
tsRpcOverhead
;
static
int
tsRpcRefId
=
-
1
;
static
int32_t
tsRpcNum
=
0
;
static
pthread_once_t
tsRpcInit
=
PTHREAD_ONCE_INIT
;
// server:0 client:1 tcp:2 udp:0
#define RPC_CONN_UDPS 0
#define RPC_CONN_UDPC 1
...
...
@@ -211,14 +215,21 @@ static void rpcUnlockConn(SRpcConn *pConn);
static
void
rpcAddRef
(
SRpcInfo
*
pRpc
);
static
void
rpcDecRef
(
SRpcInfo
*
pRpc
);
void
*
rpcOpen
(
const
SRpcInit
*
pInit
)
{
SRpcInfo
*
pRpc
;
static
void
rpcInit
(
void
)
{
tsProgressTimer
=
tsRpcTimer
/
2
;
tsRpcMaxRetry
=
tsRpcMaxTime
*
1000
/
tsProgressTimer
;
tsRpcHeadSize
=
RPC_MSG_OVERHEAD
;
tsRpcOverhead
=
sizeof
(
SRpcReqContext
);
tsRpcRefId
=
taosOpenRef
(
200
,
free
);
}
void
*
rpcOpen
(
const
SRpcInit
*
pInit
)
{
SRpcInfo
*
pRpc
;
pthread_once
(
&
tsRpcInit
,
rpcInit
);
pRpc
=
(
SRpcInfo
*
)
calloc
(
1
,
sizeof
(
SRpcInfo
));
if
(
pRpc
==
NULL
)
return
NULL
;
...
...
@@ -237,6 +248,8 @@ void *rpcOpen(const SRpcInit *pInit) {
pRpc
->
afp
=
pInit
->
afp
;
pRpc
->
refCount
=
1
;
atomic_add_fetch_32
(
&
tsRpcNum
,
1
);
size_t
size
=
sizeof
(
SRpcConn
)
*
pRpc
->
sessions
;
pRpc
->
connList
=
(
SRpcConn
*
)
calloc
(
1
,
size
);
if
(
pRpc
->
connList
==
NULL
)
{
...
...
@@ -363,7 +376,6 @@ void rpcSendRequest(void *shandle, const SRpcEpSet *pEpSet, SRpcMsg *pMsg) {
int
contLen
=
rpcCompressRpcMsg
(
pMsg
->
pCont
,
pMsg
->
contLen
);
pContext
=
(
SRpcReqContext
*
)
((
char
*
)
pMsg
->
pCont
-
sizeof
(
SRpcHead
)
-
sizeof
(
SRpcReqContext
));
pContext
->
ahandle
=
pMsg
->
ahandle
;
pContext
->
signature
=
pContext
;
pContext
->
pRpc
=
(
SRpcInfo
*
)
shandle
;
pContext
->
epSet
=
*
pEpSet
;
pContext
->
contLen
=
contLen
;
...
...
@@ -386,6 +398,7 @@ void rpcSendRequest(void *shandle, const SRpcEpSet *pEpSet, SRpcMsg *pMsg) {
// set the handle to pContext, so app can cancel the request
if
(
pMsg
->
handle
)
*
((
void
**
)
pMsg
->
handle
)
=
pContext
;
taosAddRef
(
tsRpcRefId
,
pContext
);
rpcSendReqToServer
(
pRpc
,
pContext
);
return
;
...
...
@@ -536,14 +549,15 @@ int rpcReportProgress(void *handle, char *pCont, int contLen) {
void
rpcCancelRequest
(
void
*
handle
)
{
SRpcReqContext
*
pContext
=
handle
;
// signature is used to check if pContext is freed.
// pContext may have been released just before app calls the rpcCancelRequest
if
(
pContext
==
NULL
||
pContext
->
signature
!=
pContext
)
return
;
int
code
=
taosAcquireRef
(
tsRpcRefId
,
pContext
);
if
(
code
<
0
)
return
;
if
(
pContext
->
pConn
)
{
tDebug
(
"%s, app tries to cancel request"
,
pContext
->
pConn
->
info
);
rpcCloseConn
(
pContext
->
pConn
);
}
taosReleaseRef
(
tsRpcRefId
,
pContext
);
}
static
void
rpcFreeMsg
(
void
*
msg
)
{
...
...
@@ -612,7 +626,7 @@ static void rpcReleaseConn(SRpcConn *pConn) {
// if there is an outgoing message, free it
if
(
pConn
->
outType
&&
pConn
->
pReqMsg
)
{
if
(
pConn
->
pContext
)
pConn
->
pContext
->
pConn
=
NULL
;
rpcFreeMsg
(
pConn
->
pReqMsg
);
taosRemoveRef
(
tsRpcRefId
,
pConn
->
pContext
);
}
}
...
...
@@ -1068,7 +1082,6 @@ static void *rpcProcessMsgFromPeer(SRecvInfo *pRecv) {
static
void
rpcNotifyClient
(
SRpcReqContext
*
pContext
,
SRpcMsg
*
pMsg
)
{
SRpcInfo
*
pRpc
=
pContext
->
pRpc
;
pContext
->
signature
=
NULL
;
pContext
->
pConn
=
NULL
;
if
(
pContext
->
pRsp
)
{
// for synchronous API
...
...
@@ -1085,7 +1098,7 @@ static void rpcNotifyClient(SRpcReqContext *pContext, SRpcMsg *pMsg) {
}
// free the request message
rpcFreeCont
(
pContext
->
pCon
t
);
taosRemoveRef
(
tsRpcRefId
,
pContex
t
);
}
static
void
rpcProcessIncomingMsg
(
SRpcConn
*
pConn
,
SRpcHead
*
pHead
,
SRpcReqContext
*
pContext
)
{
...
...
@@ -1593,6 +1606,12 @@ static void rpcDecRef(SRpcInfo *pRpc)
pthread_mutex_destroy
(
&
pRpc
->
mutex
);
tDebug
(
"%s rpc resources are released"
,
pRpc
->
label
);
taosTFree
(
pRpc
);
int
count
=
atomic_sub_fetch_32
(
&
tsRpcNum
,
1
);
if
(
count
==
0
)
{
taosCloseRef
(
tsRpcRefId
);
tsRpcInit
=
PTHREAD_ONCE_INIT
;
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录