Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
898bd0ed
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看板
提交
898bd0ed
编写于
2月 21, 2023
作者:
S
slzhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: script open function accept env item
上级
48bcec46
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
37 addition
and
4 deletion
+37
-4
include/libs/function/taosudf.h
include/libs/function/taosudf.h
+6
-2
source/libs/function/src/udfd.c
source/libs/function/src/udfd.c
+31
-2
未找到文件。
include/libs/function/taosudf.h
浏览文件 @
898bd0ed
...
...
@@ -261,6 +261,10 @@ typedef int32_t (*TUdfAggMergeFunc)(SUdfInterBuf *inputBuf1, SUdfInterBuf *input
typedef
int32_t
(
*
TUdfAggFinishFunc
)(
SUdfInterBuf
*
buf
,
SUdfInterBuf
*
resultData
);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
typedef
struct
SScriptUdfEnvItem
{
char
*
name
;
char
*
value
;
}
SScriptUdfEnvItem
;
typedef
enum
EUdfFuncType
{
UDF_FUNC_TYPE_SCALAR
=
1
,
...
...
@@ -291,8 +295,8 @@ typedef int32_t (*TScriptUdfInitFunc)(SScriptUdfInfo *info, void **pUdfCtx);
typedef
int32_t
(
*
TScriptUdfDestoryFunc
)(
void
*
udfCtx
);
// the following function is for open/close script plugin.
typedef
int32_t
(
*
TScriptOpenFunc
)(
void
*
scriptCtx
);
typedef
int32_t
(
*
TScriptCloseFunc
)(
void
*
scriptCtx
);
typedef
int32_t
(
*
TScriptOpenFunc
)(
SScriptUdfEnvItem
*
items
,
int
numItems
);
typedef
int32_t
(
*
TScriptCloseFunc
)();
#ifdef __cplusplus
}
...
...
source/libs/function/src/udfd.c
浏览文件 @
898bd0ed
...
...
@@ -48,9 +48,9 @@ typedef struct SUdfCPluginCtx {
TUdfDestroyFunc
destroyFunc
;
}
SUdfCPluginCtx
;
int32_t
udfdCPluginOpen
(
void
*
scriptCtx
)
{
return
0
;
}
int32_t
udfdCPluginOpen
(
SScriptUdfEnvItem
*
items
,
int
numItems
)
{
return
0
;
}
int32_t
udfdCPluginClose
(
void
*
scriptCtx
)
{
return
0
;
}
int32_t
udfdCPluginClose
()
{
return
0
;
}
int32_t
udfdCPluginUdfInit
(
SScriptUdfInfo
*
udf
,
void
**
pUdfCtx
)
{
int32_t
err
=
0
;
...
...
@@ -308,6 +308,9 @@ void udfdInitializeCPlugin(SUdfScriptPlugin *plugin) {
plugin
->
udfAggProcFunc
=
udfdCPluginUdfAggProc
;
plugin
->
udfAggMergeFunc
=
udfdCPluginUdfAggMerge
;
plugin
->
udfAggFinishFunc
=
udfdCPluginUdfAggFinish
;
SScriptUdfEnvItem
items
[
0
];
plugin
->
openFunc
(
items
,
0
);
return
;
}
...
...
@@ -343,19 +346,45 @@ void udfdInitializePythonPlugin(SUdfScriptPlugin *plugin) {
fnError
(
"can not load python plugin. lib path %s"
,
plugin
->
libPath
);
return
;
}
if
(
plugin
->
openFunc
)
{
SScriptUdfEnvItem
items
[]
=
{{
"PYTHONPATH"
,
tsUdfdLdLibPath
}};
plugin
->
openFunc
(
items
,
1
);
}
plugin
->
libLoaded
=
true
;
return
;
}
void
udfdDeinitCPlugin
(
SUdfScriptPlugin
*
plugin
)
{
if
(
plugin
->
closeFunc
)
{
plugin
->
closeFunc
();
}
plugin
->
openFunc
=
NULL
;
plugin
->
closeFunc
=
NULL
;
plugin
->
udfInitFunc
=
NULL
;
plugin
->
udfDestroyFunc
=
NULL
;
plugin
->
udfScalarProcFunc
=
NULL
;
plugin
->
udfAggStartFunc
=
NULL
;
plugin
->
udfAggProcFunc
=
NULL
;
plugin
->
udfAggMergeFunc
=
NULL
;
plugin
->
udfAggFinishFunc
=
NULL
;
return
;
}
void
udfdDeinitPythonPlugin
(
SUdfScriptPlugin
*
plugin
)
{
plugin
->
closeFunc
();
uv_dlclose
(
&
plugin
->
lib
);
if
(
plugin
->
libLoaded
)
{
plugin
->
libLoaded
=
false
;
}
plugin
->
openFunc
=
NULL
;
plugin
->
closeFunc
=
NULL
;
plugin
->
udfInitFunc
=
NULL
;
plugin
->
udfDestroyFunc
=
NULL
;
plugin
->
udfScalarProcFunc
=
NULL
;
plugin
->
udfAggStartFunc
=
NULL
;
plugin
->
udfAggProcFunc
=
NULL
;
plugin
->
udfAggMergeFunc
=
NULL
;
plugin
->
udfAggFinishFunc
=
NULL
;
}
void
udfdInitScriptPlugins
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录