org.sagacity.sqltoy.plugins.function.impl.GroupConcat Maven / Gradle / Ivy
package org.sagacity.sqltoy.plugins.function.impl;
import java.util.regex.Pattern;
import org.sagacity.sqltoy.plugins.function.IFunction;
import org.sagacity.sqltoy.utils.DataSourceUtils.DBType;
import org.sagacity.sqltoy.utils.StringUtil;
/**
* @project sqltoy-orm
* @description 转换group_concat 分组拼接函数 在不同数据库中的实现
* @author zhongxuchen
* @version v1.0,Date:2019-10-21
*/
public class GroupConcat extends IFunction {
private static Pattern regex = Pattern.compile("(?i)\\W(group_concat|string_agg)\\(");
private static Pattern separtorPattern = Pattern.compile("\\Wseparator\\W");
@Override
public String dialects() {
return ALL;
}
@Override
public Pattern regex() {
return regex;
}
@Override
public String wrap(int dialect, String functionName, boolean hasArgs, String... args) {
if (args == null || args.length == 0) {
return super.IGNORE;
}
String tmp = args[args.length - 1];
String sign = "','";
int matchIndex = StringUtil.matchIndex(tmp.toLowerCase(), separtorPattern);
if (matchIndex > 0) {
// "\\Wseparator\\W" 表达式长度11
sign = tmp.substring(matchIndex + 11).trim();
}
if (dialect == DBType.POSTGRESQL || dialect == DBType.POSTGRESQL15 || dialect == DBType.GAUSSDB
|| dialect == DBType.OPENGAUSS || dialect == DBType.OSCAR || dialect == DBType.STARDB
|| dialect == DBType.MOGDB || dialect == DBType.VASTBASE) {
if ("string_agg".equals(functionName.toLowerCase())) {
return super.IGNORE;
}
// 原则上可以通过string_agg 但如果类型不是字符串就会报错
if (args.length > 1) {
return " array_to_string(ARRAY_AGG(" + args[0] + ")," + args[1] + ") ";
}
if (matchIndex > 0) {
return " array_to_string(ARRAY_AGG(" + args[0].substring(0, matchIndex) + ")," + sign + ") ";
} else {
return " array_to_string(ARRAY_AGG(" + args[0] + ")," + sign + ") ";
}
}
if (dialect == DBType.MYSQL || dialect == DBType.TIDB || dialect == DBType.MYSQL57 || dialect == DBType.H2) {
if ("group_concat".equals(functionName.toLowerCase())) {
return super.IGNORE;
}
return " group_concat(" + args[0] + " separator " + args[1] + ") ";
}
return super.IGNORE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy