All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
db.sql.api.impl.cmd.dbFun.ConcatAs Maven / Gradle / Ivy
package db.sql.api.impl.cmd.dbFun;
import db.sql.api.Cmd;
import db.sql.api.DbType;
import db.sql.api.SqlBuilderContext;
import db.sql.api.impl.cmd.Methods;
import db.sql.api.impl.cmd.basic.BasicValue;
import db.sql.api.impl.tookit.SqlConst;
import db.sql.api.tookit.CmdUtils;
import static db.sql.api.impl.tookit.SqlConst.CONCAT_WS;
public class ConcatAs extends BasicFunction {
private final Cmd[] values;
private final Cmd split;
public ConcatAs(Cmd key, String split, Object... values) {
super(CONCAT_WS, key);
this.split = Methods.cmd(split);
Cmd[] vs = new Cmd[values.length];
int i = 0;
for (Object value : values) {
if (value == null) {
continue;
}
if (value instanceof Cmd) {
vs[i++] = (Cmd) value;
} else {
vs[i++] = Methods.cmd(value);
}
}
this.values = vs;
}
private static StringBuilder join(Cmd module, Cmd parent, SqlBuilderContext context, StringBuilder builder, Cmd[] cmds, char[] delimiter) {
if (cmds == null || cmds.length < 1) {
return builder;
}
int length = cmds.length;
for (int i = 0; i < length; i++) {
if (i != 0 && delimiter != null) {
builder.append(delimiter);
}
Cmd value = cmds[i];
builder = cmds[i].sql(module, parent, context, builder);
if (value.getClass() == BasicValue.class && context.getDbType() == DbType.PGSQL) {
builder.append(SqlConst.CAST_TEXT);
}
}
return builder;
}
@Override
public StringBuilder functionSql(Cmd module, Cmd parent, SqlBuilderContext context, StringBuilder sqlBuilder) {
if (this.values == null || this.values.length < 1) {
return sqlBuilder;
}
if (context.getDbType() == DbType.ORACLE || context.getDbType() == DbType.DB2) {
sqlBuilder.append(SqlConst.BRACKET_LEFT);
this.key.sql(module, parent, context, sqlBuilder);
for (Cmd value : this.values) {
sqlBuilder.append(SqlConst.CONCAT_SPLIT_SYMBOL);
this.split.sql(module, parent, context, sqlBuilder);
sqlBuilder.append(SqlConst.CONCAT_SPLIT_SYMBOL);
value.sql(module, parent, context, sqlBuilder);
}
sqlBuilder.append(SqlConst.BRACKET_RIGHT);
return sqlBuilder;
}
sqlBuilder.append(this.operator).append(SqlConst.BRACKET_LEFT);
this.split.sql(module, this, context, sqlBuilder);
sqlBuilder.append(SqlConst.DELIMITER);
this.key.sql(module, this, context, sqlBuilder);
sqlBuilder.append(SqlConst.DELIMITER);
join(module, this, context, sqlBuilder, this.values, SqlConst.DELIMITER);
sqlBuilder.append(SqlConst.BRACKET_RIGHT);
return sqlBuilder;
}
@Override
public boolean contain(Cmd cmd) {
return CmdUtils.contain(cmd, this.key, this.values);
}
}