Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
dca6a9d2
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看板
提交
dca6a9d2
编写于
8月 21, 2021
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-5992] add set config interface for connector
上级
36c70110
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
68 addition
and
37 deletion
+68
-37
src/client/jni/com_taosdata_jdbc_TSDBJNIConnector.h
src/client/jni/com_taosdata_jdbc_TSDBJNIConnector.h
+8
-0
src/client/src/TSDBJNIConnector.c
src/client/src/TSDBJNIConnector.c
+15
-1
src/client/src/tscSystem.c
src/client/src/tscSystem.c
+45
-36
未找到文件。
src/client/jni/com_taosdata_jdbc_TSDBJNIConnector.h
浏览文件 @
dca6a9d2
...
@@ -41,6 +41,14 @@ JNIEXPORT void JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_initImp
...
@@ -41,6 +41,14 @@ JNIEXPORT void JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_initImp
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions
(
JNIEnv
*
,
jclass
,
jint
,
jstring
);
(
JNIEnv
*
,
jclass
,
jint
,
jstring
);
/*
* Class: com_taosdata_jdbc_TSDBJNIConnector
* Method: setConfig
* Signature: (ILjava/lang/String;)I
*/
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setConfig
(
JNIEnv
*
,
jclass
,
jstring
);
/*
/*
* Class: com_taosdata_jdbc_TSDBJNIConnector
* Class: com_taosdata_jdbc_TSDBJNIConnector
* Method: getTsCharset
* Method: getTsCharset
...
...
src/client/src/TSDBJNIConnector.c
浏览文件 @
dca6a9d2
...
@@ -170,6 +170,20 @@ JNIEXPORT void JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_initImp(JNIEnv *e
...
@@ -170,6 +170,20 @@ JNIEXPORT void JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_initImp(JNIEnv *e
jniDebug
(
"jni initialized successfully, config directory: %s"
,
configDir
);
jniDebug
(
"jni initialized successfully, config directory: %s"
,
configDir
);
}
}
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setConfig
(
JNIEnv
*
env
,
jclass
jobj
,
jstring
config
){
if
(
config
==
NULL
)
{
jniDebug
(
"config value is null"
);
return
-
1
;
}
const
char
*
cfg
=
(
*
env
)
->
GetStringUTFChars
(
env
,
config
,
NULL
);
if
(
!
cfg
)
{
return
-
1
;
}
return
taos_set_config
(
cfg
);
}
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions
(
JNIEnv
*
env
,
jobject
jobj
,
jint
optionIndex
,
JNIEXPORT
jint
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions
(
JNIEnv
*
env
,
jobject
jobj
,
jint
optionIndex
,
jstring
optionValue
)
{
jstring
optionValue
)
{
if
(
optionValue
==
NULL
)
{
if
(
optionValue
==
NULL
)
{
...
@@ -213,7 +227,7 @@ JNIEXPORT jint JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions(JNIEnv
...
@@ -213,7 +227,7 @@ JNIEXPORT jint JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_setOptions(JNIEnv
return
res
;
return
res
;
}
}
JNIEXPORT
jlong
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_connectImp
(
JNIEnv
*
env
,
jobject
jobj
,
jstring
jhost
,
JNIEXPORT
jlong
JNICALL
Java_com_taosdata_jdbc_TSDBJNIConnector_connectImp
(
JNIEnv
*
env
,
jobject
j
obj
,
jstring
jhost
,
jint
jport
,
jstring
jdbName
,
jstring
juser
,
jint
jport
,
jstring
jdbName
,
jstring
juser
,
jstring
jpass
)
{
jstring
jpass
)
{
jlong
ret
=
0
;
jlong
ret
=
0
;
...
...
src/client/src/tscSystem.c
浏览文件 @
dca6a9d2
...
@@ -120,42 +120,6 @@ int32_t tscAcquireRpc(const char *key, const char *user, const char *secretEncry
...
@@ -120,42 +120,6 @@ int32_t tscAcquireRpc(const char *key, const char *user, const char *secretEncry
return
0
;
return
0
;
}
}
#include "cJSON.h"
static
pthread_mutex_t
setConfMutex
=
PTHREAD_MUTEX_INITIALIZER
;
static
bool
setConfFlag
=
false
;
int
taos_set_config
(
const
char
*
config
){
if
(
taos_init
()){
tscError
(
"failed to call taos_init"
);
return
-
1
;
}
pthread_mutex_lock
(
&
setConfMutex
);
if
(
setConfFlag
)
{
tscError
(
"already set config"
);
return
0
;
}
cJSON
*
root
=
cJSON_Parse
(
config
);
if
(
root
==
NULL
)
{
tscError
(
"failed to set config, invalid json format: %s"
,
config
);
return
-
1
;
}
int
size
=
cJSON_GetArraySize
(
root
);
for
(
int
i
=
0
;
i
<
size
;
i
++
){
cJSON
*
item
=
cJSON_GetArrayItem
(
root
,
i
);
if
(
!
item
)
{
tscError
(
"failed to read index:%d"
,
i
);
continue
;
}
taosReadConfigOption
(
item
->
string
,
item
->
valuestring
,
NULL
,
NULL
);
}
taosPrintGlobalCfg
();
setConfFlag
=
true
;
pthread_mutex_unlock
(
&
setConfMutex
);
return
0
;
}
void
taos_init_imp
(
void
)
{
void
taos_init_imp
(
void
)
{
char
temp
[
128
]
=
{
0
};
char
temp
[
128
]
=
{
0
};
...
@@ -473,3 +437,48 @@ int taos_options(TSDB_OPTION option, const void *arg, ...) {
...
@@ -473,3 +437,48 @@ int taos_options(TSDB_OPTION option, const void *arg, ...) {
atomic_store_32
(
&
lock
,
0
);
atomic_store_32
(
&
lock
,
0
);
return
ret
;
return
ret
;
}
}
#include "cJSON.h"
static
int
taos_set_config_imp
(
const
char
*
config
){
static
bool
setConfFlag
=
false
;
if
(
setConfFlag
)
{
tscError
(
"already set config"
);
return
-
1
;
}
cJSON
*
root
=
cJSON_Parse
(
config
);
if
(
root
==
NULL
)
{
tscError
(
"failed to set config, invalid json format: %s"
,
config
);
return
-
1
;
}
int
size
=
cJSON_GetArraySize
(
root
);
for
(
int
i
=
0
;
i
<
size
;
i
++
){
cJSON
*
item
=
cJSON_GetArrayItem
(
root
,
i
);
if
(
!
item
)
{
tscError
(
"failed to read index:%d"
,
i
);
continue
;
}
taosReadConfigOption
(
item
->
string
,
item
->
valuestring
,
NULL
,
NULL
);
}
taosPrintGlobalCfg
();
setConfFlag
=
true
;
}
int
taos_set_config
(
const
char
*
config
){
if
(
taos_init
()){
tscError
(
"failed to call taos_init"
);
return
-
1
;
}
static
int32_t
lock
=
0
;
for
(
int
i
=
1
;
atomic_val_compare_exchange_32
(
&
lock
,
0
,
1
)
!=
0
;
++
i
)
{
if
(
i
%
1000
==
0
)
{
tscInfo
(
"haven't acquire lock after spin %d times."
,
i
);
sched_yield
();
}
}
int
ret
=
taos_set_config_imp
(
config
);
atomic_store_32
(
&
lock
,
0
);
return
ret
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录