Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
d06be8bf
提交
d06be8bf
编写于
5月 06, 2023
作者:
hebao@lab.ibiz5.com
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test
上级
7588d44e
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
15 行增加
和
39 行删除
+15
-39
AnalyseSqlServiceImpl.java
...bizlab/core/extensions/service/AnalyseSqlServiceImpl.java
+15
-39
未找到文件。
ibzdst-core/src/main/java/cn/ibizlab/core/extensions/service/AnalyseSqlServiceImpl.java
浏览文件 @
d06be8bf
package
cn
.
ibizlab
.
core
.
extensions
.
service
;
import
cn.ibizlab.core.analysis.domain.DADimension
;
import
cn.ibizlab.core.dict.extensions.service.DictDstService
;
import
cn.ibizlab.core.extensions.domain.ResultsMQMsg
;
import
cn.ibizlab.core.extensions.domain.BaseRequest
;
import
cn.ibizlab.core.extensions.domain.SqlResultsMQMsg
;
import
cn.ibizlab.core.extensions.util.ExpiryMap
;
import
cn.ibizlab.core.extensions.util.MsgProducerService
;
import
cn.ibizlab.core.rule.domain.ExecResult
;
import
cn.ibizlab.core.extensions.domain.BaseRequest
;
import
cn.ibizlab.core.lite.extensions.domain.FieldObj
;
import
cn.ibizlab.core.lite.extensions.domain.ModelObj
;
import
cn.ibizlab.core.rule.domain.ExecLog
;
import
cn.ibizlab.core.rule.domain.ExecResult
;
import
cn.ibizlab.core.rule.service.IExecLogService
;
import
cn.ibizlab.core.rule.service.IExecResultService
;
import
cn.ibizlab.util.dict.CodeItem
;
import
cn.ibizlab.util.dict.CodeList
;
import
cn.ibizlab.util.helper.CachedBeanCopier
;
...
...
@@ -44,6 +41,9 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
@Lazy
private
DABuildExService
daBuildExService
;
@Autowired
protected
IExecLogService
ruExecLogService
;
@Value
(
"${rocketmq.sendResultsBatchSize:1000}"
)
private
Integer
sendResultsBatchSize
;
...
...
@@ -81,15 +81,12 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
if
(
timefield
!=
null
)
result
.
setTimeField
(
timefield
);
String
ext1
=
EXT1FIELD
.
getValues
();
if
(
ext1
.
length
()>
330
)
ext1
=
ext1
.
substring
(
0
,
330
)+
"..."
;
if
(!
StringUtils
.
isEmpty
(
ext1
))
result
.
setExt1Field
(
ext1
);
String
ext2
=
EXT2FIELD
.
getValues
();
if
(
ext2
.
length
()>
330
)
ext2
=
ext2
.
substring
(
0
,
330
)+
"..."
;
...
...
@@ -99,19 +96,7 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
result
.
setDomainsField
(
DOMAINSFIELD
.
getValue
(
String
.
class
,
""
));
result
.
setSystemId
(
DataObject
.
getStringValue
(
param
.
get
(
"systemid"
),
null
));
// Object resultDataSource = Default_ResultDataSource;
// Object resultTableName = Default_ResultTableName;
// if(param.get("resultDataSource")!=null){
// resultDataSource = param.get("resultDataSource");
// }
// if(param.get("resultTableName")!=null){
// resultTableName = param.get("resultTableName");
// }
// result.set(Tag_EngineId,param.get(Tag_EngineId));
// result.set("resultDataSource", resultDataSource);
// result.set("resultTableName", resultTableName);
if
((!
StringUtils
.
isEmpty
(
result
.
getRuleId
()))&&(!
StringUtils
.
isEmpty
(
result
.
getKeyValueField
())))
{
if
((!
StringUtils
.
isEmpty
(
result
.
getRuleId
()))&&(!
StringUtils
.
isEmpty
(
result
.
getDomainsField
()))&&(!
StringUtils
.
isEmpty
(
result
.
getKeyValueField
()))&&(!
ObjectUtils
.
isEmpty
(
result
.
getTimeField
())))
{
List
<
DADimension
>
dims
=
getDims
(
result
.
getBusinessCat
());
if
(
dims
!=
null
)
{
...
...
@@ -136,20 +121,16 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
CachedBeanCopier
.
copy
(
result
,
result2
);
result2
.
setDimField
(
code
.
getValue
().
toString
());
result2
.
setId
(
result2
.
getDefaultKey
(
true
).
toString
());
if
(
result2
.
getRetValue
()==
1
)
//ruExecResultService.saveAsync(result2);
this
.
addResults
(
param
,
Tag_SaveResults
,
result2
);
else
// ruExecResultService.deleteAsync(result2);
this
.
addResults
(
param
,
Tag_DeleteResults
,
result2
);
//非逐层核算或无父代码项退出
if
(
dim
.
getRecursive
()
==
0
||
StringUtils
.
isEmpty
(
code
.
getParent
()))
{
break
;
}
else
{
}
else
{
val
=
code
.
getParent
();
}
}
...
...
@@ -163,10 +144,8 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
CachedBeanCopier
.
copy
(
result
,
result2
);
result2
.
setId
(
result2
.
getDefaultKey
(
true
).
toString
());
if
(
result2
.
getRetValue
()==
1
)
// ruExecResultService.saveAsync(result2);
this
.
addResults
(
param
,
Tag_SaveResults
,
result2
);
else
// ruExecResultService.deleteAsync(result2);
this
.
addResults
(
param
,
Tag_DeleteResults
,
result2
);
}
}
...
...
@@ -175,7 +154,6 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
}
// log.debug("saveResult:{},{} cost:{}", param.getRowKey(), RULEID, System.currentTimeMillis() - start);
}
/**
...
...
@@ -192,14 +170,17 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
results
=
new
ArrayList
<>();
param
.
set
(
tag
,
results
);
}
results
.
add
(
result
);
if
(
Tag_SaveResults
.
equals
(
tag
))
{
results
.
add
(
result
);
}
else
{
ExecResult
result2
=
new
ExecResult
();
result2
.
setId
(
result
.
getId
());
results
.
add
(
result2
);
}
}
@Autowired
protected
IExecLogService
ruExecLogService
;
public
ExecLog
processAll
(
BaseRequest
msg
)
{
ExecLog
execlog
=
new
ExecLog
();
execlog
.
setId
(
msg
.
getId
());
execlog
.
setRunBody
(
msg
.
toString
());
...
...
@@ -334,10 +315,6 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
log
.
info
(
new
StringBuilder
().
append
(
"Service成功,process successfully:"
).
append
(
msg
.
toString
()).
toString
());
strErrorInfo
.
append
(
"Service成功,process successfully\r\n"
);
execlog
.
setCnt
(
count
);
execlog
.
setSucc
(
count
-
errorcount
);
if
(
execlog
.
getCnt
()==
0
)
...
...
@@ -349,7 +326,6 @@ public class AnalyseSqlServiceImpl extends BaseEntityServiceImpl {
return
execlog
;
}
private
ExpiryMap
<
String
,
List
<
DADimension
>>
dimlistMap
=
new
ExpiryMap
<>();
public
List
<
DADimension
>
getDims
(
String
id
)
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录